Table of locations

Hello!

I'm building an application and must present hundreds of plots. I want to show these plots as an array of slots with the horizontal scroll bar. It is not possible to build a graphic waveform I bulit an array of clusters of waveformgraphs. How to pass the data in this table? Y at - it another way to solve my problem? Any suggestions? The goal is to look through many of the plots, each with a different waveform graph (or some other plot).

Przemek

for this kind og chart

You can use the construction of the cluster

See attachment

Tinnitus

Tags: NI Software

Similar Questions

  • Create a Page item: stop and start the HTML Table presentation - location?

    Where is the "Create Item-> stop and start HTML Table Layout Page" located at? I can't find it.

    kilo1-1 wrote:
    Where the "create point Page--> stop and start HTML layout table" is located at? I can't find it.

    4.2 elements 'Stop and start in HTML table' are replaced by setting new Start grid in grid presentation properties of each element.

    (Please always indicate which version APEX your question relates to.)

  • External table-> fetch location?

    With the help of Oracle 10.2.0.5

    An external table is a construction that gives me access SQL to a file.

    Is it possible to know the name of the file somehow inside to select? Like to add a column with the name of the file?

    example of Pseudo
    CREATE TABLE EXT_DUMMY
    (
        "RECORDTYPE" VARCHAR2(100 BYTE), 
        "COL1" VARCHAR2(100 BYTE), 
        "COL2" VARCHAR2(100 BYTE), 
        "FILE" VARCHAR2(100 BYTE) 
    )
    ORGANIZATION EXTERNAL
    (
        TYPE ORACLE_LOADER DEFAULT DIRECTORY "IMPORT_BAD_FILE" 
        ACCESS PARAMETERS ( 
                 records delimited BY newline 
                 FIELDS TERMINATED BY ';' 
                 MISSING FIELD VALUES ARE NULL 
                   ( RECORDTYPE CHAR
                   , COL1 CHAR 
                   , COL2 CHAR 
                   , FILE CHAR FILLER
                   ) 
                   ) 
        LOCATION ( 'Testfile1.txt, Testfile2.txt' )
    )
        reject limit 10
    ;
    The result might look like this:
    RECORDTYPE   COL1       COL2      FILE
    SAMPLE           DUMMY    DUMMY Testfile1.txt
    SAMPLE           DUMMY1   DUMMY Testfile1.txt
    SAMPLE           DUMMY2   DUMMY Testfile1.txt
    SAMPLE           DUMMY3   DUMMY Testfile1.txt
    SAMPLE           DUMMY1   DUMMY1 Testfile2.txt
    SAMPLE           DUMMY1   DUMMY2 Testfile2.txt
    SAMPLE           DUMMY2   DUMMY1 Testfile2.txt
    I would like to know what file is read a certain rank. Maybe I missed an option in the documentation. In this example, I have two different files as the source for the external table.

    Another use case could be that:
    If I enable a user to switch the external table to a different file
    alter table EXT_DUMMY location ('Testfile3.txt' )
    . How do know us which file is read during the select on the table? When UserA's select, perhaps UserB just modified the location before that selection has been started. That's why UserA reads in a different file than expected.

    Published by: Sven w. on May 26, 2011 16:48

    Published by: Sven w. on May 26, 2011 16:51

    Published by: Sven w. on May 26, 2011 17:11

    Hi Sven,

    I don't know how much we can rely on that, but we will consider the following:

    create table test_xt (
      rec_id  number
    , message varchar2(100)
    )
    organization external (
      default directory test_dir
      access parameters (
        records delimited by newline
        fields terminated by ';'
      )
      location (
        'marc5.txt'
      , 'test1.csv'
      , 'test2.csv'
      , 'test3.csv'
      )
    );
    

    I always thought that the ROWID doesn't hold much meaning for an external table, but...

    SQL> select t.rowid
      2       , dump(t.rowid) as rowid_dump
      3       , regexp_substr(dump(t.rowid,10,9,1),'\d+$') as file#
      4       , t.*
      5  from test_xt t
      6  ;
    
    ROWID              ROWID_DUMP                                                FILE#      REC_ID MESSAGE
    ------------------ --------------------------------------------------------- ------ ---------- -------------------------------
    (AADVyAAAAAAAAAAAA Typ=208 Len=17: 4,0,0,213,200,0,0,0,0,0,0,0,0,0,0,0,0     0               1 this is a line from marc5.txt
    (AADVyAAAAAAAAAAAA Typ=208 Len=17: 4,0,0,213,200,0,0,0,0,0,0,0,0,0,0,0,33    0               2 this is a line from marc5.txt
    (AADVyAAAAAAAAAAAA Typ=208 Len=17: 4,0,0,213,200,0,0,0,0,0,0,0,0,0,0,0,66    0               3 this is a line from marc5.txt
    (AADVyAAAAAAAAAAAA Typ=208 Len=17: 4,0,0,213,200,0,0,0,0,0,0,0,0,0,0,0,99    0               4 this is a line from marc5.txt
    (AADVyAAAAAEAAAAAA Typ=208 Len=17: 4,0,0,213,200,0,0,0,1,0,0,0,0,0,0,0,0     1               1 this is a line from test1.csv
    (AADVyAAAAAEAAAAAA Typ=208 Len=17: 4,0,0,213,200,0,0,0,1,0,0,0,0,0,0,0,33    1               2 this is a line from test1.csv
    (AADVyAAAAAEAAAAAA Typ=208 Len=17: 4,0,0,213,200,0,0,0,1,0,0,0,0,0,0,0,66    1               3 this is a line from test1.csv
    (AADVyAAAAAEAAAAAA Typ=208 Len=17: 4,0,0,213,200,0,0,0,1,0,0,0,0,0,0,0,99    1               4 this is a line from test1.csv
    (AADVyAAAAAIAAAAAA Typ=208 Len=17: 4,0,0,213,200,0,0,0,2,0,0,0,0,0,0,0,0     2               1 this is a line from test2.csv
    (AADVyAAAAAIAAAAAA Typ=208 Len=17: 4,0,0,213,200,0,0,0,2,0,0,0,0,0,0,0,33    2               2 this is a line from test2.csv
    (AADVyAAAAAIAAAAAA Typ=208 Len=17: 4,0,0,213,200,0,0,0,2,0,0,0,0,0,0,0,66    2               3 this is a line from test2.csv
    (AADVyAAAAAMAAAAAA Typ=208 Len=17: 4,0,0,213,200,0,0,0,3,0,0,0,0,0,0,0,0     3               1 this is a line from test3.csv
    (AADVyAAAAAMAAAAAA Typ=208 Len=17: 4,0,0,213,200,0,0,0,3,0,0,0,0,0,0,0,33    3               2 this is a line from test3.csv
    (AADVyAAAAAMAAAAAA Typ=208 Len=17: 4,0,0,213,200,0,0,0,3,0,0,0,0,0,0,0,66    3               3 this is a line from test3.csv
    (AADVyAAAAAMAAAAAA Typ=208 Len=17: 4,0,0,213,200,0,0,0,3,0,0,0,0,0,0,0,99    3               4 this is a line from test3.csv
    (AADVyAAAAAMAAAAAA Typ=208 Len=17: 4,0,0,213,200,0,0,0,3,0,0,0,0,0,0,0,132   3               5 this is a line from test3.csv
    
    16 rows selected
     
    

    Then with a join to EXTERNAL_LOCATION$:

    SQL> with ext_loc as (
      2    select position-1 as pos
      3         , name as filename
      4    from sys.external_location$
      5    where obj# = ( select object_id
      6                   from user_objects
      7                   where object_name = 'TEST_XT' )
      8  )
      9  select x.filename,
     10         t.*
     11  from test_xt t
     12       join ext_loc x on x.pos = to_number(regexp_substr(dump(t.rowid,10,9,1),'\d+$'))
     13  ;
    
    FILENAME       REC_ID MESSAGE
    ------------ -------- --------------------------------
    marc5.txt           1 this is a line from marc5.txt
    marc5.txt           2 this is a line from marc5.txt
    marc5.txt           3 this is a line from marc5.txt
    marc5.txt           4 this is a line from marc5.txt
    test1.csv           1 this is a line from test1.csv
    test1.csv           2 this is a line from test1.csv
    test1.csv           3 this is a line from test1.csv
    test1.csv           4 this is a line from test1.csv
    test2.csv           1 this is a line from test2.csv
    test2.csv           2 this is a line from test2.csv
    test2.csv           3 this is a line from test2.csv
    test3.csv           1 this is a line from test3.csv
    test3.csv           2 this is a line from test3.csv
    test3.csv           3 this is a line from test3.csv
    test3.csv           4 this is a line from test3.csv
    test3.csv           5 this is a line from test3.csv
     
    

    Seems to work... assuming that the files are always read in the order specified by the LOCATION parameter and the ID generated actually means what I think it means.

  • Add entries in table form located on a form page

    I have a form with a tabular presentation on her page. Entries in the form of this table are obviously related to the record displayed on the page of the form. The form is based on a demand_id and my form of table contains all transport on demand, so each record in the form of tables has a transport_id and a demand_id with a FK constraint on it (for cascade delete). Everything works well but one thing. I can create a request, add transport, register the application it will save transport associated and delete request and it will remove the transport associated with it. Hiccup time alone, is that I can not add transport creating demand, because the request is technically not yet created, and the FK constraint won't let me add any transport.

    A work around all about anyone know? Because I really need to be able to add transport on demand that is being created.

    Kind regards
    Matt

    It's no wonder because you are missing citations in all directions. By using a tool like TOAD helps - try to format your code and it will tell you where your problem is. This should compile:

    SELECT apex_item.checkbox (30, transportid) delete_checkbox, transportid,
              apex_item.hidden (31, transportid)
           || apex_item.hidden (32, demandeid)
           || apex_item.hidden (33, seq_id)
           || apex_item.hidden (34, seq_checksum)
           || apex_item.date_popup
                                (35,
                                 NULL,
                                 dt_transport,
                                 'DD/MM/YYYY',
                                 15,
                                 10,
                                    'onchange="f_set_collection_value(this.value,'
                                 || seq_id
                                 || ', ''3'')"'
                                 || 'id=f35_'
                                 || '#ROWNUM#'
                                ) dt_transport,
           apex_item.text
                 (36,
                  hr_transport,
                  8,
                  8,
                     'onchange="f_set_collection_value(this.value,'
                  || seq_id
                  || ', ''4'')"',
                  'f36_' || '#ROWNUM#'
                 ) hr_transport,
           apex_item.text
                        (37,
                         duree,
                         8,
                         8,
                            'onchange="f_set_collection_value(this.value,'
                         || seq_id
                         || ', ''5'')"',
                         'f37_' || '#ROWNUM#'
                        ) duree,
           apex_item.select_list
              (38,
               ind_typetransport,
               'Aller;1,Retour;2,Aller/Retour;3',
                  'onchange="f_set_collection_value(this.value,'
               || seq_id
               || ', ''6'')"',
               'NO',
               NULL,
               NULL,
               'f38_' || '#ROWNUM#',
               NULL,
               'NO'
              ) ind_typetransport
      FROM dates_collection_v
    

    I think that the task is too big for your knowledge of PL/SQL and efforts will not lead to the expected results. It would be best to start with easy stuff.

    Denes Kubicek
    -------------------------------------------------------------------
    http://deneskubicek.blogspot.com/
    http://www.Opal-consulting.de/training
    http://Apex.Oracle.com/pls/OTN/f?p=31517:1
    http://www.Amazon.de/Oracle-Apex-XE-Praxis/DP/3826655494
    -------------------------------------------------------------------

  • How to index a table on multiple sites?

    Hello

    How to index a table on multiple sites?

    I searched this issue and was not able to find the answer. I understand that it can be done with loops, but I don't know how.

    I use the detector of crete vi for frequency domain data collected a VNA (s2p) file. The products contain a table of amplitudes and a table of locations. The problem is that the locations refer to the index of table of amplitude, which is not the same as the frequency. My idea is that I can use this output of the places table to index the frequency to the detected peak frequencies table and then draw these, as well as some analysis data and manipulation on them. Currently, I can do this only by consulting table on the front panel.

    The entrance to the peak detector is currently a table 1 d of the scale (what is the problem?).

    I also looked at the supply frequency & estimate VI, but this VI seems only exit of scalar data for the largest peak, not exactly what I'm looking for.

    Thanks for your help.

    You have a second table for the tested frequency?  If so, then you are right that you just need to index this table with the indexes by the Ridge detector.  Use a loop for.  Automatic index to the index, use index in array to get the value of the frequency and autoindex on frequencies.

  • How could import a 16-bit png image in a table on LabVIEW?

    Hello:

    It seems that LabVIEW support only 1, 4, 8 and 24-bit image, I want to import a 16-bit png image in a table (the value is between 0 and 65535), how can I?

    Thank you very much!

    Hi Wanghh

    Look at this example of table Image located by launching the example Finder, OR by selecting 'Toolkits' and Modules > 'Vision' > 'Functions' and the opening of the Example.vi "ImageToArray".

    If you look at the schema for this example, the Subvi "IMAQ Create" has the option to configure for 16-bit images.

    Kind regards

  • Mathscript I can only index a table with an actual integer not a reference to another table

    Hello

    Basically, I'm trying to write a function in Mathscript that works well in Matlab.

    I did a FFT of a signal that I used VI Ridge detector to find the main summits

    To find the signal of phase I want to refer to the location of the peaks in the phase table

    That is to say

    Phase (rental (1))

    Simply, I get the error-90026. Motorization of matrices the same indices of size must be whole

    Is this a bug

    Hello

    What version of LabVIEW are you using?  Are you maybe get two error codes?  Error-90026 is simply the indexes should be real and positive integers.  If you also get an error on the size of the matrices being incompatible, try your code in the MathScript window.  What is
    Rental (1)
    back?  A scalar value?  Or a table?

    What is the left side of this expression?  In other words, you assign the result to a variable or a submatrix?
    A = Phase (rental (1));
    or
    A (c:d) = Phase (rental (1));

    What is output when you type
    Rental (1)

    It is an integer value greater than 0?  Or is it a double number?  If you calculate the table of location in a certain way, it may be because the data error, you end up exactly a whole number.  Indexing routines will complain about this.  You can truncate to integer with the function of int32.  Try these suggestions.  If you still have problems, post more of your code so we can reproduce the problem that you see.

    Grant M.
    Staff software engineer | LabVIEW Math & Signal Processing | National Instruments

  • Strange question - data double on table 12 c JDev

    Hello

    I have a strange question in my table. I use Oracle JDeveloper 12 c. In my page, I use 2 VO and a secondary has a problem with the display of data - it displays two times. Heard that I deleted the table and put it in my page and always the same problem.nodatatodisplay.png

    No matter if I have all the data to my record in the table primary or not, when there are data to display then it shows twice. I do not know it can help, but for more information table is located in the popup.

    Anyone have this problem?

    Kind regards

    WK

    You must specify exact jdev version (there are two versions of 12 c)

    I had this problem in 12.1.2(a il y a longtemps, et à cause de trop de bugs dans cette version je n'a pas pris la peine de trouver la raison), but it seems that this problem went to 12.1.3(at moins, pour mon application)

    Dario

  • Multi Oracle Table inserts

    Hi every1,

    Do you know how do Oracle multi-table insert in ODI 11 g.

    Thank you
    Kishore.

    Hello

    Yes, you need to import IKM Oracle Multi table Insert location of reference ODI_HOME\oracledi\xm

    In ODi 11 g, you develop project > extend your knowledge Module > expand integration (IKM) and right click on even (integration (IKM) and choose Import Modules of knowledge... it will open a window KM, you them select above the location to directory import file: (search and select the location above) below text box area, you can see all kms toll-free) , out of them, you will need to select IKM Oracle Multi Table Insert KM and click on the OK button

    Kind regards
    Phanikanth

  • Problem with the creation of the table using the parallel Council DEC

    Hello

    We have a database table (CARDS_TAB) with the 1,083,565,232 lines and has created a replica table called T_CARDS_NEW_201111. But the count in the new array is 1,083,566,976 the difference is row of 1744. I have no idea how the new table can contain more lines compared to the original table.
    Oracle version is 11.2.0.2.0.

    The two head of table were taken after creating the table. Script that was used to create the replica table is:
    CREATE TABLE T_CARDS_NEW_201111
    TABLESPACE T_DATA_XLARGE07
    PARTITION BY RANGE (CPS01_DATE_GENERATED)
    SUBPARTITION BY LIST (CPS01_CURRENT_STATUS)
    SUBPARTITION TEMPLATE
      (SUBPARTITION T_NULL VALUES (NULL),
       SUBPARTITION T_0 VALUES (0),
       SUBPARTITION T_1 VALUES (1),
       SUBPARTITION T_3 VALUES (3),
       SUBPARTITION T_OTHERS VALUES (DEFAULT)
      )
    (
      PARTITION T_200612 VALUES LESS THAN (TO_DATE(' 2007-01-01 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
        TABLESPACE T_DATA_XLARGE07
      ( SUBPARTITION T_200612_T_NULL VALUES (NULL)    TABLESPACE T_DATA_XLARGE07,
        SUBPARTITION T_200612_T_0 VALUES (0)    TABLESPACE T_DATA_XLARGE07,
        SUBPARTITION T_200612_T_1 VALUES (1)    TABLESPACE T_DATA_XLARGE07,
        SUBPARTITION T_200612_T_3 VALUES (3)    TABLESPACE T_DATA_XLARGE07,
        SUBPARTITION T_200612_T_OTHERS VALUES (DEFAULT)    TABLESPACE T_DATA_XLARGE07 ),
      PARTITION T_200701 VALUES LESS THAN (TO_DATE(' 2007-02-01 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
        TABLESPACE T_DATA_XLARGE07
      ( SUBPARTITION T_200701_T_NULL VALUES (NULL)    TABLESPACE T_DATA_XLARGE07,
        SUBPARTITION T_200701_T_0 VALUES (0)    TABLESPACE T_DATA_XLARGE07,
        SUBPARTITION T_200701_T_1 VALUES (1)    TABLESPACE T_DATA_XLARGE07,
        SUBPARTITION T_200701_T_3 VALUES (3)    TABLESPACE T_DATA_XLARGE07,
        SUBPARTITION T_200701_T_OTHERS VALUES (DEFAULT)    TABLESPACE T_DATA_XLARGE07 )
    .
    .
    .
    .
    .
      PARTITION T_201211 VALUES LESS THAN (TO_DATE(' 2012-12-01 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
        TABLESPACE T_DATA_XLARGE07
      ( SUBPARTITION T_201211_T_NULL VALUES (NULL)    TABLESPACE T_DATA_XLARGE07,
        SUBPARTITION T_201211_T_0 VALUES (0)    TABLESPACE T_DATA_XLARGE07,
        SUBPARTITION T_201211_T_1 VALUES (1)    TABLESPACE T_DATA_XLARGE07,
        SUBPARTITION T_201211_T_3 VALUES (3)    TABLESPACE T_DATA_XLARGE07,
        SUBPARTITION T_201211_T_OTHERS VALUES (DEFAULT)    TABLESPACE T_DATA_XLARGE07 ),
      PARTITION T_201212 VALUES LESS THAN (TO_DATE(' 2013-01-01 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
        TABLESPACE T_DATA_XLARGE07
      ( SUBPARTITION T_201212_T_NULL VALUES (NULL)    TABLESPACE T_DATA_XLARGE07,
        SUBPARTITION T_201212_T_0 VALUES (0)    TABLESPACE T_DATA_XLARGE07,
        SUBPARTITION T_201212_T_1 VALUES (1)    TABLESPACE T_DATA_XLARGE07,
        SUBPARTITION T_201212_T_3 VALUES (3)    TABLESPACE T_DATA_XLARGE07,
        SUBPARTITION T_201212_T_OTHERS VALUES (DEFAULT)    TABLESPACE T_DATA_XLARGE07 )
    )
    NOCACHE
    NOPARALLEL
    MONITORING
    ENABLE ROW MOVEMENT
    AS
    SELECT /*+ PARALLEL (T,40) */ SERIAL_NUMBER     ,
      PIN_NUMBER        ,
      CARD_TYPE         ,
      DENOMINATION      ,
      DATE_GENERATED    ,
      LOG_PHY_IND       ,
      CARD_ID           ,
      OUTLET_CODE       ,
      MSISDN            ,
      BATCH_NUMBER      ,
      DATE_SOLD         ,
      DIST_CHANNEL      ,
      DATE_CEASED       ,
      DATE_PRINTED      ,
      DATE_RECHARGE     ,
      LOGICAL_ORDER_NR  ,
      DATE_AVAILABLE    ,
      CURRENT_STATUS    ,
      ACCESS_CODE        from CARDS_TAB T
    /
    Database CARDS_TAB table also has a primary key on the column Serial_number. When you try to create a primary key on the new table he throws Exception:
    ALTER TABLE T_CARDS_NEW_201111 ADD
      CONSTRAINT T_PK2_1
     PRIMARY KEY  (SERIAL_NUMBER) USING INDEX
     TABLESPACE T_INDEX_XLARGE07
     PARALLEL 10 NOLOGGING;
    
      CONSTRAINT TP_PK2_1
                 *
    ERROR at line 2:
    ORA-02437: cannot validate (T_PK2_1) - primary key violated
    Thanks in advance.

    With respect,
    Adeline Faure

    For parallel processing the documentation suggests the use automatic degree of parallelism (determined by the system running) or by choosing a power of 2 value
    Look at the post by Florian in your currently neighbor post How to remove duplicate rows from a Table to locate the violations (apparently due to parallel processing)

    Concerning

    Etbin

  • Help on a join of tables

    Hello

    I am trying to write a join on some tables, but can't seem to make it work. The selection criteria are:

    Table A: Master
    Columns: Name, location

    Table b: permissions
    Columns: Name, location

    I need to select the combination of the name, location and compare this combo against B the Table name, location. I need to return the name, the combination of location on the Board where this combination does not exist in Table B.

    Here is an example:

    Table A

    Name: location:
    John U.S.
    Phil U.S.
    John UK


    Table B

    Name: location:
    John U.S.
    Phil U.S.


    John-> UK exist in the table B, so need to return this combination.

    Any help we appreciated, thanks!

    Hello

    Here's a way to do this with a join:

    SELECT     *     -- Or whatever columns you want
    FROM          a
    LEFT OUTER JOIN     b  ON     a.name          = b.name
                         AND     a.location     = b.location
    WHERE   b.name        IS NULL
    ;
    

    In case you like jargon, joining the 2 tables, but only selection of columns of one of them is called a semi Join .

    Include other ways to achieve the same results
    LESS
    a NOT IN subquery
    a NOT EXISTS subquery

    The query above assumes that if the two tables have a NULL value in a column, then you don't want to consider these lines are the same.
    If you don't want to consider the same thing, then:

    SELECT     *
    FROM          a
    LEFT OUTER JOIN     b  ON     'x' || a.name          = 'x' || b.name
                         AND     'x' || a.location     = 'x' || b.location
    WHERE   b.ROWID        IS NULL
    ;
    

    I hope that answers your question.
    If not, post a small example of data (CREATE TABLE and only relevant columns, INSERT statements) for all tables and also post the results desired from these data.
    Explain, using specific examples, how you get these results from these data.
    Always tell what version of Oracle you are using.

  • Add columns to a table

    Hi all
    I have a form that I can add up to 6 columns.
    I created dynamic columns in the table. When I click Add columns until she reach 2, it will automatically add a new table and location number will be added 2. But it is does not work.

    I spent 3 days working on it, but it does not work.
    Pleas help.

    Here is my code:

    Form1.screen17.table3b.BehaviousButtons.AddColumn::click - (JavaScript, client)
    var form1.screen17.table3b.Table3.HeaderRow._SCOL2.count = nCount;

    If (nCount > 0 & & nCount < 3) {}
    Form1.screen17.table3b.table3.HeaderRow._SCOL2.addInstance (1);
    Form1.screen17.table3b.table3.Row1._SCOL2.addInstance (1);
    Form1.screen17.table3b.table3.row2._SCOL2.addInstance (1);
    Form1.screen17.table3b.table3.Row3._SCOL2.addInstance (1);
    Form1.screen17.table3b.table3.Row4._SCOL2.addInstance (1);
    Form1.screen17.table3b.table3.Row5._SCOL2.addInstance (1);
    Form1.screen17.table3b.table3.Row6._SCOL2.addInstance (1);
    Form1.screen17.table3b.table3.Row7._SCOL2.addInstance (1);
    Form1.screen17.table3b.table3.Row8._SCOL2.addInstance (1);

    }
    ElseIf (nCount > = 3) {}
    Form1.screen17.table3b._Table3.addInstance (1);

    }

    Check out post of John Brinkman here: http://blogs.adobe.com/formfeed/2011/10/tables-with-variable-numbers-of-columns.html.

  • How to insert a tab in a table cell

    If you have a table in framemaker and decimals you want to align you must put in a tab at the beginning of cell character by pressing ESC-Tab (at least that is what I said). If you have a bagillion to is there a faster way to do this than tab tab ESC, tab, ESC-tab, tab...

    Lady.

    You can use find/replace to find '\P' (beginning of paragraph) and change to '\t' (tab).

    Interestingly, if the cells of a table are empty only every other cell in the table is located. But then, you might find "\P\f" (beginning of the paragraph, end of the flow) to achieve this.

    HTH,

    -Michael

  • Error in deployment of external Table

    Hello

    I use version 10.2 g OWB to create a database. While deploying the external table, I received the following message:

    «TSS_15MIN_EX ErrMsgKey VLD-0180: it takes a default location for the external table.»

    Could you help me solve this problem?

    Thank you
    Vipul

    Hello

    Double-click on your outer table---> goto location tab
    Make sure that you have specified a default location for this.

    Thank you
    Fati

  • Warning of coherence - [39008] Table size not attached to Source fact

    I have a scheme in which I have the following tables:
    (A) fact Table patient Transaction (e.g., supplies used, procedures performed, etc..)
    (B) demographic Dimension table (houses info like patient location code)
    (C) location Dimension table (tells me what each location unique maps to the hospital)

    Is this table A and table B is a dimension table is attached to A table based on the ID of the Patient, so I can get general information about the patient. This would allow me to apply logic to see just patients transactions where the patient was FEMALE, or has been in the emergency room, by applying conditions to these fields in table B.

    Table C is a lookup table simple accompanied in table B of the Code of location, so I can identify the hospital emergency room where the patient was in for example.

    So the pattern is: has <-b <-C, where B and C are the two dimension tables.

    The query works the way you want, but my consistency check gives me the following WARNING:

    * [39008] logical dimension table D LOCATION MASTER has a source D LOCATION MASTER does not join any source.*

    How to fix this WARNING, or at least remove?

    Hello

    What you need to do is to add the dimension table to store (physical) to the source of the logic of the demographic dimension table, for example by dragging of the layer on top of picture logic source of demographic of MDB layer logical dimension table

    Kind regards
    Stijn

Maybe you are looking for