There is a discrepancy between the number of regions and links under subtabla

Hi all
I get an error when I run my page
What is the exact meaning of this error

and how can I solve this problem?

Revised as follows:

Lets say that we will create 3 tabs:

Step 1: Create a pageLayout region, as you normally would.

Step 2: Select the pageLayout region in the JDeveloper Structure pane, right-click and select new > region. Set the Style property to subTabLayout.

Step 3: Create 3 areas of header in subTabLayout region

Step 4: Select the region of subTabLayout, right-click and select new > SubTabs. JDeveloper creates a child named SubTabs.

Step 5: Select the region of subTabBar, right click and select new > link. Set the text property of the link to the label that you want to display in the sub-tab.

Step 6: Create links plus 2 as per step 5.

Note: Make sure that the link text and the region header text are the same.

-Anand

Published by: T.A.Anand on December 16, 2010 12:58

Tags: Oracle Applications

Similar Questions

  • What gets the relationship between the number of blocks and coherent?

    SQL> CREATE TABLE TEST(ID INT ,NAME VARCHAR2(10));
    
    SQL> CREATE INDEX IND_IDN ON TEST(ID);
    
    SQL> BEGIN
      2  FOR I IN 1 .. 1000
      3  LOOP
      4  EXECUTE IMMEDIATE 'INSERT INTO TEST VALUES('||I||',''LONION'')';
      5  END LOOP;
      6  COMMIT;
      7  END;
      8  /
    
    SQL> EXEC DBMS_STATS.GATHER_TABLE_STATS(USER,'TEST',CASCADE=>TRUE);
    
    SQL> SELECT DISTINCT DBMS_ROWID.rowid_block_number(ROWID) BLOCKS FROM TEST;
    BLOCKS
    -----------
    61762
    61764
    61763         
    
               >> above , there have 3 blocks in table TEST .
    
    SQL> SET AUTOTRACE TRACEONLY;                                     
    
    SQL> SELECT * FROM TEST;
    
    Execution Plan
    ----------------------------------------------------------                      
    Plan hash value: 1357081020                                                     
                                                                                    
    --------------------------------------------------------------------------      
    | Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |      
    --------------------------------------------------------------------------      
    |   0 | SELECT STATEMENT  |      |  1000 | 10000 |     2   (0)| 00:00:01 |      
    |   1 |  TABLE ACCESS FULL| TEST |  1000 | 10000 |     2   (0)| 00:00:01 |      
    --------------------------------------------------------------------------      
    
    
    Statistics information
    ----------------------------------------------------------                      
              0  recursive calls                                                    
              0  db block gets                                                      
             72  consistent gets                                    >>  there have 72  consistent gets                  
              0  physical reads                                                     
              0  redo size                                                          
          24957  bytes sent via SQL*Net to client                                   
           1111  bytes received via SQL*Net from client                             
             68  SQL*Net roundtrips to/from client                                  
              0  sorts (memory)                                                     
              0  sorts (disk)                                                       
           1000  rows processed                                                     
    
    SQL> SELECT /*+ INDEX_FFS(TEST IND_IDN)*/ * FROM TEST WHERE ID IS NOT NULL;
    
    Execution Plan
    ----------------------------------------------------------                      
    Plan hash value: 1357081020                                                     
                                                                                    
    --------------------------------------------------------------------------      
    | Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |      
    --------------------------------------------------------------------------      
    |   0 | SELECT STATEMENT  |      |  1000 | 10000 |     2   (0)| 00:00:01 |      
    |*  1 |  TABLE ACCESS FULL| TEST |  1000 | 10000 |     2   (0)| 00:00:01 |      
    --------------------------------------------------------------------------      
                                                                                    
    Predicate Information (identified by operation id):                             
    ---------------------------------------------------                             
                                                                                    
       1 - filter("ID" IS NOT NULL)                                                 
    
    
    Statistics information
    ----------------------------------------------------------                      
              1  recursive calls                                                    
              0  db block gets                                                      
             72  consistent gets                                   >>  there have 72  consistent gets                  
              0  physical reads                                                     
              0  redo size                                                          
          17759  bytes sent via SQL*Net to client                                   
           1111  bytes received via SQL*Net from client                             
             68  SQL*Net roundtrips to/from client                                  
              0  sorts (memory)                                                     
              0  sorts (disk)                                                       
           1000  rows processed                                                     
    
                                             
    
    SQL> SELECT COUNT(*) FROM TEST;
    
    Execution Plan
    ----------------------------------------------------------                      
    Plan hash value: 1950795681                                                     
                                                                                    
    -------------------------------------------------------------------             
    | Id  | Operation          | Name | Rows  | Cost (%CPU)| Time     |             
    -------------------------------------------------------------------             
    |   0 | SELECT STATEMENT   |      |     1 |     2   (0)| 00:00:01 |             
    |   1 |  SORT AGGREGATE    |      |     1 |            |          |             
    |   2 |   TABLE ACCESS FULL| TEST |  1000 |     2   (0)| 00:00:01 |             
    -------------------------------------------------------------------             
    
    Statistics information
    ----------------------------------------------------------                      
              0  recursive calls                                                    
              0  db block gets                                                      
              5  consistent gets                                      >>  there have 5  consistent gets               
              0  physical reads                                                     
              0  redo size                                                          
            408  bytes sent via SQL*Net to client                                   
            385  bytes received via SQL*Net from client                             
              2  SQL*Net roundtrips to/from client                                  
              0  sorts (memory)                                                     
              0  sorts (disk)                                                       
              1  rows processed                                                     
    
                                                  
    
    SQL> SELECT COUNT(*) FROM TEST WHERE ID IS NOT NULL;
    
    Execution Plan
    ----------------------------------------------------------                      
    Plan hash value: 735384656                                                      
                                                                                    
    --------------------------------------------------------------------------------
    -                                                                               
                                                                                    
    | Id  | Operation             | Name    | Rows  | Bytes | Cost (%CPU)| Time     
    |                                                                               
                                                                                    
    --------------------------------------------------------------------------------
    -                                                                               
                                                                                    
    |   0 | SELECT STATEMENT      |         |     1 |     4 |     2   (0)| 00:00:01 
    |                                                                               
                                                                                    
    |   1 |  SORT AGGREGATE       |         |     1 |     4 |            |          
    |                                                                               
                                                                                    
    |*  2 |   INDEX FAST FULL SCAN| IND_IDN |  1000 |  4000 |     2   (0)| 00:00:01 
    |                                                                               
                                                                                    
    --------------------------------------------------------------------------------
    -                                                                               
                                                                                                                                                                
    Predicate Information (identified by operation id):                             
    ---------------------------------------------------                             
                                                                                    
       2 - filter("ID" IS NOT NULL)                                                 
    
    
    Statistics information
    ----------------------------------------------------------                      
              0  recursive calls                                                    
              0  db block gets                                                      
              5  consistent gets                                                >>  there have 5 consistent gets     
              0  physical reads                                                     
              0  redo size                                                          
            408  bytes sent via SQL*Net to client                                   
            385  bytes received via SQL*Net from client                             
              2  SQL*Net roundtrips to/from client                                  
              0  sorts (memory)                                                     
              0  sorts (disk)                                                       
              1  rows processed                                                     
    
                                              
    
    SQL> SELECT COUNT(ID) FROM TEST WHERE ID IS NOT NULL;
    
    Execution Plan
    ----------------------------------------------------------                      
    Plan hash value: 735384656                                                      
                                                                                    
    --------------------------------------------------------------------------------
    -                                                                               
                                                                                    
    | Id  | Operation             | Name    | Rows  | Bytes | Cost (%CPU)| Time     
    |                                                                               
                                                                                    
    --------------------------------------------------------------------------------
    -                                                                               
                                                                                    
    |   0 | SELECT STATEMENT      |         |     1 |     4 |     2   (0)| 00:00:01 
    |                                                                               
                                                                                    
    |   1 |  SORT AGGREGATE       |         |     1 |     4 |            |          
    |                                                                               
                                                                                    
    |*  2 |   INDEX FAST FULL SCAN| IND_IDN |  1000 |  4000 |     2   (0)| 00:00:01 
    |                                                                               
                                                                                    
    --------------------------------------------------------------------------------
    -                                                                               
                                                                                                                                                              
    Predicate Information (identified by operation id):                             
    ---------------------------------------------------                             
                                                                                    
       2 - filter("ID" IS NOT NULL)                                                 
    
    
    Statistics information
    ----------------------------------------------------------                      
              0  recursive calls                                                    
              0  db block gets                                                      
              5  consistent gets                                        >>  there have 5  consistent gets             
              0  physical reads                                                     
              0  redo size                                                          
            409  bytes sent via SQL*Net to client                                   
            385  bytes received via SQL*Net from client                             
              2  SQL*Net roundtrips to/from client                                  
              0  sorts (memory)                                                     
              0  sorts (disk)                                                       
              1  rows processed                                                     
    QUESTION:

    What gets the relationship between the number of blocks and coherent? How to calculate become consistent?

    You can see that your uniform is getting down to 6 to 12, is it not? Reading of the below thread Asktom.
    http://asktom.Oracle.com/pls/Apex/f?p=100:11:0:P11_QUESTION_ID:880343948514

    Aman...

  • CC of Photoshop runs very slowly on my new Dell Inspiron 7000. Is there a compatibility issue between the CC of Photoshop and new 4K (Radeon R7 M270) videos?

    Just bought new e Dell Inspiron 7000: CC of Photoshop is so slow, so it's actually not possible to use it. No compatibility issues?

    Hi paolol,

    Please click the link below

    Video editing using Adobe Photoshop CC | Shooters from 4K

    Kind regards

    Mohit

  • Is there an upper limit on the number of points that can be plotted using a CW 3 - d graph?

    I started with one of the examples 3-d graphics available on this site. I think it's the 3-d cube (?).

    If I just use the 'Plot3DCurve' method and set the style of track to be the "point", I can trace my data set (approximately 150,000 points) OK.

    If I change the stlye of land on 'line', I get a big blank chart with the exception of the last points of support 30 000 where the plot seems correct.

    If I reduce my data set to 30,000 points seems the sytle of 'line'.

    There is NO error is returned.

    I get similar results if I select a style of track of 'surface '.

    Then...
    Is there an upper limit on the number of points that can be plotted graphic 3-d CW with a style other than the point trace «»
    "?

    Ben

    I can try to post an example this weekend, but I don't know if the scholarship will allow a 5 M attachment.


  • Is there a difference between the HP Envy 4502 and 4507

    Is there a difference between the printers HPEnvy 4502 and HP 4507

    Hello

    They use the same drivers, the same software, same manuals... but one thing may not be the same: ink cartridges.

    Kind regards.

  • Is there a way to change the number of monitor?

    Is there a way to change the number of monitor? My pc screen is showing that monitor 2 and my tv shows as monitor 1. I want my computer is 1, so when I move from one screen to the other, I can turn left to right, not right to left.

    There is a way to get the desired result, but it does not imply a change in the designated number of webs.

    Place the mouse cursor on an empty part of the desktop. Right click of the mouse. Select the screen resolution from the context menu. Place the cursor of the mouse on the representation of the monitor whose posiotion wou want to change. Hold down the left button of the mouse and drag it in the relarive position you dewsire. Release the mouse button.

    Out OK.

    Hope this is what you want.

    Tom Ferguson

  • How to fill out (display) values for several blocks in which there is no relationship between the blocks (tables).

    Hello.

    Is it possible to fill in the values (execute_query) several blocks where there is absolutely no relationship between the tables in the same form?

    There is no relationship between the tables. All are separate tables with different columns. None of the names of columns match

    & also the values of the columns do not match. I created blocks for all tables. When I click on run, only the first block of values (first picture) is filled.

    other values of block did not get filled. Is it possible to fill in the values for all of the blocks where there is not relationship, or when there is no master block?

    Is there something I can do for this? It is mandatory for me to put all the blocks in a single form.

    Help me, please. Please do not respond.

    Thank you.

    Create a key-EXEQRY-trigger on the block where 'throw you' the quers. In it, put something like

    GO_BLOCK ('BLOCK1');

    EXECUTE_QUERY;

    GO_BLOCK ('BLOCK2');

    EXECUTE_QUERY;

    ...

  • There is little space between the paths, please help me solve this problem

    Hello everyone, I have little doubt on the trail. I have this problem every time, I searched and found no answer.

    There is little space between the two tracks of different colors. There are image below to show the more open problem.

    Thanks for help.

    Screenshot_19.png

    sscayir,

    It seems that the artifact/Anti-Aliasing screen problem so often discussed here.

    You can get rid of it by uncheck work of Anti-Aliasing in Edit > Preferences > General, see more of pixelation on screen, but you will probably find that the artifact remains the same size when you zoom in and that he will not appear in the PDF files, print, and images raster created by export or save for Web. and again, it can be a real problem.

    Who is this?

  • Is there a way to get the number of the current item?

    In an article with multiple instances: is there a way to get the number of the current item? If for example, I'm on the 3rd point, is it some sort of integrated "GET CURRENT NUMBER REGISTRATION" which would return a '3' to the program?

    Thank you

    Published by: WayneFMcKinstry on April 9, 2010 10:50

    If I get you correctly in tabular element that you want to know the current record or current, you can try this...

    For the current record

    :SYSTEM.CURSOR_RECORD;
    or
    :SYSTEM.CURRENT_RECORD;
    

    for the current element

    :SYSTEM.CURSOR_ITEM;
    

    -Clément

  • Report icon that appears between the http: box box and google is missing

    In the old version of Firefox the report security icon (Trusteer endpoint protection) is located between the http; area search and the google search box. Use the report to protect a site I just clicked on the icon and asked him to protect. The icon is not visible in the latest version of Firefox, although the software is still loaded. It's on Windows 7 but on a XP machine, the icon is still there?

    You may have an older version installed. While Firefox is closed, install the latest version.

    If this does not resolve the problem, right-click on an empty area of the tab bar and select Customize. Drag the icon from the palette on a toolbar.

    If that doesn't help either,

    1. Type of topic: support in the address bar and press ENTER.
    2. Click the display folder. Opens in a window of Windows Explorer with your profile folder.
    3. Release of Firefox.
    4. Delete the file localstore.rdf in the profile folder.
    5. Launch Firefox and new right click on an empty area of the tab bar and choose Customize, then drag the icon from the palette on a toolbar.

    If the problem persists, contact the author of the add - we support at the link above.

  • Low contrast between the lines of measurement and background

    There is little contrast between the lines of action (dark gray) and (dark gray) background in the arrange window. Did someone come with a 'fix' yet for this?

    I speak now of LPX.

    Thank you!

    Have you tried to check this box...

  • empty space between the scroll bar horizontally and toolbar Add on

    A blank grey bar appears at the bottom of my screen/window between the horizontal scroll bar and the bar of State/add-on.

    The grey area empty is just under 1/2 inch from top and runs the entire width of the screen/window, less the left sidebar.

    When I go to this bar, nothing happens.
    When I right click in this field, nothing happens.

    This empty gray bar appears on every site I visit in the same exact location, which means that it is a matter of Firefox, not only isolated to a single Web site.

    Disabled add-ons to see if space disappears.
    None of my modules had an effect of this area of the screen/window.
    The empty grey area is still visible.

    Create a new profile as a test to see if your profile is the source of the problems.

    See "basic troubleshooting: a new profile:

    There may be extensions and plugins installed by default in a new profile, so check that in "tools > Modules > Extensions & Plugins" in case there are still problems.

    If this new profile works then you can transfer files from the old profile to the new profile, but make sure not to copy corrupted files.

    See:

  • What is the relationship between the library of Photos and the iPhoto library?

    I'm asking this question here because I can't find all the relevant information online.

    I was dealing with imac a client recently who had a full boot drive. I noticed that his old iPhoto library used 126GB while she had already made the transition to the Photos. His photo library said that he was using a lot more (200 + if I remember correctly). I copied the iPhoto on an external drive library and deleted. Then, I opened the contents of the package and imported pictures remains in program pictures to make sure that I wasn't actually remove all of his memories. Once the work is finished, I was surprised to see that there are more than 6 GB of free space on his computer. What gives? Is there a relationship between the old iPhoto library and new photo library? If so, what is it? Is what I did without danger? I understand at the time that she will not be able to return to iPhoto. But what I'm missing?

    Thanks in advance for your comments.

    No - they are totally separate - connection or relationship of any kind is not

    or the other can be deleted without any effect on the other - but it won't save much space at all and is not recommended - which is exactly what you have seen- Photos saves disk space to share images with your iPhoto or Aperture - Apple Support libraries

    LN

  • Differences between the HP Deskjet 3522 and HP Deskjet 3520?

    Hello

    Is could someone please tell me what is the difference between the HP Deskjet 3522 and HP Deskjet 3520?

    I've seen both for sale online and can see no difference between them... so don't know why different model numbers

    Thank you!

    The difference in the number of products, is because it coordinates with the serial number.

    So when you have a problem, or warranty issues, the number of the product will compete with the serial number in the system.

  • Hi I am new to Oracle forms and reports I want to know the differences between the Enter query mode and Normal mode?

    Hi I am new to Oracle forms and reports I want to know the differences between the Enter query mode and Normal mode?

    Welcome to Oracle Forms!  Out of curiosity, what do you mean by 'new '?  You are a student or new to an organization that uses Oracle Forms?  Or just play with Oracle Forms to learn something new?

    Let me start by saying that many of your questions designtime can answer by searching in the help of the constructor of the form library.  It's accessible, like most of the other products in the Builder menu > help.

    Regarding your question, ENTER QUERY mode, as the term implies, is when it is in a State where it is accept input for the execution of a query.  When in this mode, there are various restrictions.  Yet once, it will find more details in the Builder Help.  In this case, search help for these two subjects, "SYSTEM." MODE'and "built-ins comments that are not allowed in the input query Mode".  There are many other pages that contain information about the ENTER_QUERY method, but these two should help you get started.

    Normal mode, as its name implies, is when it is in a State of 'normal '.  Basically to do nothing in particular, but also not in ENTER QUERY mode.  In this State, you can move the shape, INSERT, UPDATE, DELETE, documents, etc..

    You will find additional information, as well as a lot of documentation on the product page of forms of OTN:

    http://www.Oracle.com/technetwork/developer-tools/forms

Maybe you are looking for