Displaying tab page canvas on content canvas in Forms 6i

Forms [32 Bit] Version 6.0.8.8.0 (Production)
I have an existing form which has multiple canvases and there are couple of fields on Content canvas and then on the same content a Tab canvas is layed out. I can see both canvases in same layout editor and select and move the tab canvas.
But when I create a new form and want to layout a tab canvas on top of content, it appears in a separate layout editor window on design time.
I want it like below:
-----------content--------------------
|                                       |
|                                       |
|                                       |
|TabPag1     TabPage2                   |
|                                       |
|                                       |
|                                       |
|                                       |
|                                       |
|                                       |
-------------content------------------How can I create it so that it appears in same layout editor window at design time and appears in same window like one canvas on runtime.

In order for the Tabbed Canvas to appear on the Content Canvas in the Layout Editor, you have to actually draw the Tabbed Canvas on the Content Canvas; eg: open your content canvas in the layout editor, click on the tabbed canvas toolbar button and then draw it on your content canvas. If you create the Tabbed Canvas object through the Object Navigator and then set the properties so it would display on the content canvas - it won't be visible on the content canvas with the layout editor.
This is a bit of a quirk in the Forms Builder and they haven't corrected this in any of the newer versions of Forms yet. :-(
Hope this helps,
Craig B-)
If someone's response is helpful or correct, please mark it accordingly.

Similar Messages

  • Tab canvas after content canvas impossible?

    I am still having problems with tab canvases that come after content canvases in Designer 6i. I have changed the QMSO$BLOCK.QMS$BLOCK_INFO VISIBLE property to YES and this allowed me to generate the form, but now I have the little QMS$BLOCK_INFO item displaying and worse yet all of my multi-record tab pages only display 1 record. Is there something else that needs to be changed in the object library? Can I even generate forms with 2 or more tab pages after a content canvas in Headstart 6i (patch 13)?

    I recommend a couple of things:
    - Create a copy of cgso$block and call it something like my$block_tab_problem. In cgso$block, set qms$block_info back to VISIBLE false. Set qms$block_info to VISIBLE only in the my$block_tab_problem copy. In designer, for each MCO that is on the base canvas and has child blocks on tabs on the same canvas, set the Template/Library Object property to my$block_tab_problem. In other words, only apply this change where you absolutely must apply it - the master block of this particular layout.
    - Code a pre-form trigger that sets the qms$block_item trigger to VISIBLE false using the set_item_property built-in. Again, you will only have to include this code in the few forms where you have this layout. This will hide the ugly item.
    - This will eliminate the problem with the multi-record blocks because they inherit qms$block_info from cgso$block which has been set back to VISIBLE false.
    Regards,
    Lauri

  • Display stacked canvas on content canvas?

    hello all,
    i am try to show the stacked canvas on content canvas at design . but its not display. i set the following properties.
    type-stacked
    displayed:true
    blevel:none
    window: window which is assign to content canvas
    raised on entry: true
    display x position
    display y position
    view hori. scroll bar: true
    after setting above properties stacked canvas is still on showing on content canvas at design .
    please help me
    thanks
    yash

    Hi,
    1.Create one content canvas and create one stacked canvas.
    2.give the label as Conetnt canvas and stack canvas respectively.
    3.Go to conetent canvas layout editor
    4.click on menu view-->Stacked Views and select ur stack canvas.
    5.Now ur stack canvas is placed on ur content canvas.
    6.select the stack canvas in same layout editor and click on one of the corner of stack canvas.
    7.now u can move that stack canvas where ever u want on content canvas.
    if u hav any problem then ask me.

  • Stacked canvas in content canvas desapears when post_query

    Hello.
    I have a content canvas and i draw a stacked canvas into content canvas. I want a horizontal scroll in stacked and a vertical scroll bar in the content. In stacked canvas, i placed a base table data block. In when-form-instance, i have a comand SHOW_VIEW of stacked canvas.When i execute_query, the stacked canvas desapears. I don't understand why...
    This is Developer 10g
    Please help me.
    Best Regards

    I have seen that too, with tab canvas, which is like a stacked canvas.
    On mine, it occurs after a clear_form and synchronize, but before I execute any queries (there are multiple blocks and queries).
    So what I added was this, following the Synchronize:
    Declare
      Tab_View_id      Viewport     := Find_View('TAB');
    Begin
      if get_view_property(Tab_View_id,Visible) = 'FALSE' then
        show_view(Tab_View_id);
      end if;
    End;I actually put the Tab_View_ID variable into a package spec, so Forms only needs to set it once.
    If you can't find the right place to add the code, a form-level when-new-item-instance trigger will work.

  • Tab Canvas on Content Canvas

    i wanted to use a Tab Canvas on my Form
    the Header details are on the Content Canvas (Canvas4). on the same canvas i have inserted a TabCanvas which created a new canvas(Canvas7) which has the details section for the header part.
    when i run the form, i can see only the header part on carvas4.
    i wanted to see the Header and Details of the form...
    how can i do this?

    Am I correct in saying you want the tab canvas to act like a stacked canvas.
    If so have you added it to the view of Canvas4 by performing the following:
    1. View (drop down)--> Stacked Views
    2. highlight Canvas7 and click on ok.
    Alternatively are you performing some kind of navigatoin to an It that is hidden behind the tab canvas?
    If non of this works or is causing you issue. What happens if you use SHOW_VIEW('Canvas7'); and navigate to an item on it in your when-new-form-instance trigger?
    Cheers
    Q

  • Display tab page

    Hi,
    I have created manually a tab canvas named as CA$TAB_PAGE and two pages page1 and page1 in Forms 10g. Content canvas name is Page_1.
    Content canvas only displayed When i run the form. so, how to display tab canvas programatically?
    Regards,
    Murali

    Aaron,
    Make sure that in the Page Properties, the Standard Tab Set property is set to the tab set you created. If the tab set is not set at the page, level, it won't display.
    Hope this helps
    Doug Gault
    www.sumneva.com

  • (another) stacked canvas on content canvas problem

    I've searched the forums for the last 2+ hours and can't find a solution for my problem, although there are hundreds of questions on this subject.
    I have a stacked canvas on top of a content canvas. The canvases share the same window. They also share a data block. I added radio buttons on the main canvas to "show/hide" the stacked (my ultimate goal is to have 2-3 stacked and toggle. When hide, the stacked canvas is hidden, but when i click show, it is not. I understand reading all the posts that the block with focus will display, and I've added both a go_block and go_item prior to the show_view. Below is my code. MEL_DETAILS is content and MEL_LINE_ITEM is stacked.
    IF :stack = 'SHOW_STACK' THEN
    GO_BLOCK('MEL_ITEM');
    GO_ITEM('MEL_ITEM.MIS_PROJECT_NO');
    SHOW_VIEW('MEL_LINE_ITEM');
    SET_VIEW_PROPERTY('MEL_LINE_ITEM', visible, property_true);
    SET_VIEW_PROPERTY('MEL_LINE_ITEM', display_position, 718, 583);
    SET_ITEM_PROPERTY('PROJECTS.STACK',MOUSE_NAVIGATE,PROPERTY_FALSE); -- radio button
    ELSif :stack = 'HIDE_STACK' THEN
    HIDE_VIEW('MEL_LINE_ITEM');
    SET_VIEW_PROPERTY('MEL_LINE_ITEM', visible, property_false);
    SET_ITEM_PROPERTY('PROJECTS.STACK',MOUSE_NAVIGATE,PROPERTY_TRUE);
    END IF;

    user12198246 wrote:
    I've searched the forums for the last 2+ hours and can't find a solution for my problem, although there are hundreds of questions on this subject.
    I have a stacked canvas on top of a content canvas. The canvases share the same window. They also share a data block. I added radio buttons on the main canvas to "show/hide" the stacked (my ultimate goal is to have 2-3 stacked and toggle. When hide, the stacked canvas is hidden, but when i click show, it is not. I understand reading all the posts that the block with focus will display, and I've added both a go_block and go_item prior to the show_view. Below is my code. MEL_DETAILS is content and MEL_LINE_ITEM is stacked.
    IF :stack = 'SHOW_STACK' THEN
    GO_BLOCK('MEL_ITEM');
    GO_ITEM('MEL_ITEM.MIS_PROJECT_NO');
    SHOW_VIEW('MEL_LINE_ITEM');
    SET_VIEW_PROPERTY('MEL_LINE_ITEM', visible, property_true);
    SET_VIEW_PROPERTY('MEL_LINE_ITEM', display_position, 718, 583);
    SET_ITEM_PROPERTY('PROJECTS.STACK',MOUSE_NAVIGATE,PROPERTY_FALSE); -- radio button
    ELSif :stack = 'HIDE_STACK' THEN
    HIDE_VIEW('MEL_LINE_ITEM');
    SET_VIEW_PROPERTY('MEL_LINE_ITEM', visible, property_false);
    SET_ITEM_PROPERTY('PROJECTS.STACK',MOUSE_NAVIGATE,PROPERTY_TRUE);
    END IF;Here, it seems two problem..
    The line..
    SET_VIEW_PROPERTY('MEL_LINE_ITEM', visible, property_true);
    and
    SET_VIEW_PROPERTY('MEL_LINE_ITEM', visible, property_false);No needed
    Hope this helps
    Hamid

  • Displaying one page at a time in a form

    I have a bunch of different single-page forms for people to fill out but they only will be filling out one of them at a time. I want to create one pdf document that contains all the different forms available (about 50 different pages) but only displays one of them at a time. I was wondering if there was a way to have someone chose what form they wanted to fill out when they opened the pdf and then only allow them to view that one page. Any thoughts on how to do this would be a great help!

    Thanks for the help so far. I think the solution that I am going to try to go with is creating a file that has all the forms in it and setting it so that all the visibility is off for all layers and fields when it opens. A pop up comes up and prompts the user to chose several options which are necessary to determine the form they should fill out. Then I will extract that page from the main document into a new pdf and turn on the visibility of that page. I've read conflicting things online about extracting a page to create a new pdf. If I don't specify a path to save the new pdf to will it just allow the user to save it on their own or will this solution not work?

  • HOW TO DISPLAY ALTERNATIVE PAGE NO IN SCRIPT AND SMART FORM

    HI, I HAVE TEN PAGES IN SCRIPT AND FORM, I HAVE TO DISPLAY PAGE-NO IN FIRST PAGE AND 2 PAGE NO NEED TO DISPLAY AGAIN 3RD PAGE HAVE TO DISPLAY. HOW TO DO THIS

    hi......
        In Smart forms u have use "ALTERNATIVE" option for printing alternative page numbers.
        In Sapscript use coding to solve this problem,
                 if ( &page& mod 2 ) = 0
                       &page&
                 endif
    Regards,
    ARUN.

  • How to create tab canvas from content

    Hi,
    I have created a form which has one content canvas and multiple stacked canvases. The content canvas displays the first page and then we hv to click on next to go to the next stacked canvas and so on. I want to try making it in tabs (tab canvas) and then I will decide which one looks better and performs good.
    Can you guys please give me a detailed instruction on how to convert my content and stacked canvases to tab canvases. I have never done tab canvas. I tried one, I changed one of my present stacked canvas to tab but all the fields and texts were gone and there were just two tabs in it.
    Please suggest. Thanks in advance.

    I will do so:
    I will create a blank tab canvas and then I will cut and copy in every tab page the frame of the content canvas
    A tab page for every content canvas
    Regards

  • Error when compiling form - width of content canvas error

    Hello everyone,
    I was compiling my form in Designer and I got the erro message below - I have checked the content canvas width which I had set to 80 which has worked with other forms.
    CDG-01364 ERROR: Module CDS0010F: Available width on content canvas 2 (-199) less than minimum allowable width (450)
    Any help would be appreciated.
    Cathy

    I HAVE FOUND THE SOLUTION. I WAS HITTING A BUG. GO THROUGH THE FOLLOWING DOCUMENT AND YOU WILL ALSO BE ANSWERED.
    Bug No.     1354393
    Filed     13-JUL-2000     Updated     10-DEC-2001
    Product     Oracle Designer/2000     Product Version      6.5.40.3.0
    Platform     Intel Windows NT     Platform Version     No Data
    RDBMS Version     8.1.6.1     Affects Platforms      Generic
    Priority     Severe Loss of Service     Status     Code Bug (Response/Resolution)
    Base Bug     N/A     Fixed in Product Version     No Data
    Problem statement:
    CANT GENERATE MC ON CONTENT CANVAS FOLLOWED BY TABBED CANVASES
    *** 07/13/00 03:16 am ***
    This may possibly be related to bug #1132350.
    I have a module with 3 module components.
    I want the 1st mc displayed on the content canvas. Placement = New Content
    Canvas.
    I want the 2nd and 3rd mc's displayed on tabbed canvases below the 1st mc.
    Placement = New Tab Canvas Page.
    I was able to generate this module with Des6.0
    With Des6i, when I attempt to generate I get the message:
    CDG-01281 ERROR: Module HSD0016F: Oracle Forms binary file for BLOCKS ON TABS
    has NOT been created
    The module will only generate if I set all 3 mc's to Placement = New Tab
    Canvas Page.
    *** 07/14/00 08:35 am *** (CHG: Asg->NEW OWNER)
    *** 07/14/00 08:38 am *** (CHG: FixBy->6.5.40)
    *** 07/20/00 03:37 am *** (CHG: Sta->31)
    *** 07/20/00 03:37 am ***
    Module as described above generates correctly in version 6.5.29
    Please supply a testcase which reproduces your problem.
    *** 07/27/00 12:16 am ***
    I have supplied a test-case to DPUSCEDD as requested.
    *** 08/03/00 01:58 am *** (CHG: Sta->11)
    *** 08/03/00 01:58 am ***
    Test case supplied to dpuscedd.
    See Headstart demo application hsd0016f.
    *** 08/04/00 04:03 am *** (CHG: Asg->NEW OWNER)
    *** 08/16/00 08:59 am *** (CHG: Sta->31)
    *** 08/16/00 08:59 am ***
    hsd0016f generates without error using D32 code.
    Appears to run and be laid-out OK too (but for a minor problem with the
    default menu)
    FYI message output as follows:
    Form Generator (Windows 95/98/NT) : Version 6.5.34.2.0 - Production on Wed Aug
    16 16:56:37 2000
    Generating Module 'HSD0016F' (1 of 1)
    Loading form template from file system
    (t:\cgenf\723200\CGENF61\ADMIN\ofgwebt.fmb)
    Loading object library from file system
    (t:\cgenf\723200\CGENF61\ADMIN\ofgwebol.olb)
    Generating new form module and saving to file system (D:\TESTING\HSD0016F.FMB)
    Compiling form executable file (D:\Testing\HSD0016F.fmx) ...
    Running Form Builder executable file...
    *** 08/16/00 09:00 am ***
    CDG-03517 WARNING: Argument HSD0016F.P_REVISION: Module Argument doesn't have
    any usages set against it
    CDG-01077 WARNING: Window HSD0016F.WINDOW: Implementation source object
    QMSSO$WEB_TOOLBAR_WINDOW of correct type not found in Object Library
    CDG-00037 WARNING: Window HSD0016F.WINDOW: The scrollable window WINDOW does
    not allow vertical scrollbars
    CDG-00038 WARNING: Window HSD0016F.WINDOW: The scrollable window WINDOW does
    not allow horizontal scrollbars
    CDG-01242 WARNING: Bound Item HSD0016F.EMP.ID: HSD_EMPLOYEES.ID enabled and
    navigable to allow scrolling on queried values
    CDG-01077 WARNING: Bound Item HSD0016F.EMP.CREATED_BY: Implementation source
    object QMSSO$QUERY_ONLY_ITEM of correct type not found in Object Library
    CDG-01077 WARNING: Bound Item HSD0016F.EMP.CREATION_DATE: Implementation
    source object QMSSO$QUERY_ONLY_ITEM of correct type not found in Object
    Library
    CDG-01077 WARNING: Bound Item HSD0016F.EMP.LAST_UPDATED_BY: Implementation
    source object QMSSO$QUERY_ONLY_ITEM of correct type not found in Object
    Library
    CDG-01077 WARNING: Bound Item HSD0016F.EMP.LAST_UPDATE_DATE: Implementation
    source object QMSSO$QUERY_ONLY_ITEM of correct type not found in Object
    Library
    CDG-01092 WARNING: Module Component HSD0016F.SUB: Content canvas items will
    not be aligned with tab content canvas items
    *** 08/16/00 09:00 am ***
    CDG-01427 WARNING: Foreign Key HSD_EMPLOYEES.HSD_EMP_EMP_FK1: FK
    HSD_EMP_EMP_FK1 considered mandatory in order to link blocks based on tables
    HSD_EMPLOYEES and HSD_EMPLOYEES
    CDG-01316 WARNING: Foreign Key HSD_EMPLOYEES.HSD_EMP_EMP_FK1: Foreign key
    constraint HSD_EMP_EMP_FK1 in HSD_EMPLOYEES has no enterable items or lookups
    CDG-01157 WARNING: Foreign Key HSD_EMPLOYEES.HSD_EMP_EMP_FK1: Foreign key
    item(s) in HSD_EMPLOYEES not enterable; those in lookup not a unique key
    CDG-01077 WARNING: Bound Item HSD0016F.SUB.CREATED_BY: Implementation source
    object QMSSO$QUERY_ONLY_ITEM of correct type not found in Object Library
    CDG-01077 WARNING: Bound Item HSD0016F.SUB.CREATION_DATE: Implementation
    source object QMSSO$QUERY_ONLY_ITEM of correct type not found in Object
    Library
    CDG-01077 WARNING: Bound Item HSD0016F.SUB.LAST_UPDATED_BY: Implementation
    source object QMSSO$QUERY_ONLY_ITEM of correct type not found in Object
    Library
    CDG-01077 WARNING: Bound Item HSD0016F.SUB.LAST_UPDATE_DATE: Implementation
    source object QMSSO$QUERY_ONLY_ITEM of correct type not found in Object
    Library
    CDG-01092 WARNING: Module Component HSD0016F.PEM: Content canvas items will
    not be aligned with tab content canvas items
    CDG-03446 WARNING: Module Component Table Usage
    HSD0016F.PEM.HSD_PROJECT_ASSIGNMENTS.PAS: Optional constraint 'HSD_PAS_UK1'
    contains mandatory column
    CDG-01258 WARNING: Module Component Table Usage
    HSD0016F.PEM.HSD_PROJECT_ASSIGNMENTS.PAS: Missing mandatory column RATE in
    usage of table
    CDG-01316 WARNING: Foreign Key
    HSD_EMPLOYEES.HSD_PROJECT_ASSIGNMENTS.HSD_PAS_EMP_FK1: Foreign key constraint
    HSD_PAS_EMP_FK1 in HSD_PROJECT_ASSIGNMENTS has no enterable items or lookups
    CDG-01157 WARNING: Foreign Key
    HSD_EMPLOYEES.HSD_PROJECT_ASSIGNMENTS.HSD_PAS_EMP_FK1: Foreign key item(s) in
    HSD_PROJECT_ASSIGNMENTS not enterable; those in lookup not a unique key
    CDG-01029 WARNING: Unbound Item HSD0016F.PEM.CRI: Visual Attribute
    CG$CURRENT_RECORD not found in template form
    CDG-01077 WARNING: Bound Item HSD0016F.PEM.CREATED_BY: Implementation source
    object QMSSO$QUERY_ONLY_ITEM of correct type not found in Object Library
    CDG-01077 WARNING: Bound Item HSD0016F.PEM.CREATION_DATE: Implementation
    source object QMSSO$QUERY_ONLY_ITEM of correct type not found in Object
    Library
    CDG-01077 WARNING: Bound Item HSD0016F.PEM.LAST_UPDATED_BY: Implementation
    source object QMSSO$QUERY_ONLY_ITEM of correct type not found in Object
    Library
    CDG-01077 WARNING: Bound Item HSD0016F.PEM.LAST_UPDATE_DATE: Implementation
    source object QMSSO$QUERY_ONLY_ITEM of correct type not found in Object
    Library
    CDG-01083 WARNING: Bound Item HSD0016F.CGFK$PEM_PRJ_ID.L_PRJ_ID: Making item
    L_PRJ_ID the first item in List of Values 'CGFK$PEM_PRJ_ID'
    CDG-01083 WARNING: Bound Item HSD0016F.CGFK$SUB_DEP_ID.ID: Making item ID the
    first item in List of Values 'CGFK$SUB_DEP_ID'
    Generation of Module 'HSD0016F' Successful
    *** 08/16/00 09:01 am ***
    CDG-03500 WARNING: The Generator could not save adjustments to
    invalid/unspecified properties
    CDG-03484 ADJUSTMENT FAILED: Module Component HSD0016F.EMP: Set the Overflow
    property to a default value
    CDG-03484 ADJUSTMENT FAILED: Bound Item HSD0016F.EMP.HIRE_DATE: Set the Width
    property to a default value
    CDG-03484 ADJUSTMENT FAILED: Bound Item HSD0016F.EMP.CREATION_DATE: Set the
    Width property to a default value
    CDG-03484 ADJUSTMENT FAILED: Bound Item HSD0016F.EMP.LAST_UPDATE_DATE: Set the
    Width property to a default value
    CDG-03484 ADJUSTMENT FAILED: Module Component HSD0016F.SUB: Set the Overflow
    property to a default value
    CDG-03484 ADJUSTMENT FAILED: Module Component HSD0016F.SUB: Set the Height
    property to a default value
    CDG-03484 ADJUSTMENT FAILED: Module Component HSD0016F.SUB: Set the View Width
    property to a default value
    CDG-03484 ADJUSTMENT FAILED: Module Component HSD0016F.SUB: Set the View
    Height property to a default value
    CDG-03484 ADJUSTMENT FAILED: Module Component Inclusion 30: Set the X Position
    property to a default value
    CDG-03484 ADJUSTMENT FAILED: Module Component Inclusion 30: Set the Y Position
    property to a default value
    CDG-03484 ADJUSTMENT FAILED: Bound Item HSD0016F.SUB.HIRE_DATE: Set the Width
    property to a default value
    CDG-03484 ADJUSTMENT FAILED: Bound Item HSD0016F.SUB.CREATION_DATE: Set the
    Width property to a default value
    CDG-03484 ADJUSTMENT FAILED: Bound Item HSD0016F.SUB.LAST_UPDATE_DATE: Set the
    Width property to a default value
    CDG-03484 ADJUSTMENT FAILED: Module Component HSD0016F.PEM: Set the Height
    property to a default value
    CDG-03484 ADJUSTMENT FAILED: Module Component HSD0016F.PEM: Set the View
    Height property to a default value
    CDG-03484 ADJUSTMENT FAILED: Module Component Inclusion 130: Set the X
    Position property to a default value
    CDG-03484 ADJUSTMENT FAILED: Module Component Inclusion 130: Set the Y
    Position property to a default value
    CDG-03466 ADJUSTMENT FAILED: Bound Item HSD0016F.PEM.ID: Set Insert property
    to No because item based on derived column
    CDG-03484 ADJUSTMENT FAILED: Bound Item HSD0016F.PEM.START_DATE: Set the Width
    property to a default value
    *** 08/16/00 09:02 am ***
    CDG-03484 ADJUSTMENT FAILED: Bound Item HSD0016F.PEM.END_DATE: Set the Width
    property to a default value
    CDG-03484 ADJUSTMENT FAILED: Bound Item HSD0016F.PEM.L_PRJ_START_DATE: Set the
    Width property to a default value
    CDG-03484 ADJUSTMENT FAILED: Bound Item HSD0016F.PEM.L_PRJ_END_DATE: Set the
    Width property to a default value
    CDG-03484 ADJUSTMENT FAILED: Bound Item HSD0016F.PEM.CREATION_DATE: Set the
    Width property to a default value
    CDG-03484 ADJUSTMENT FAILED: Bound Item HSD0016F.PEM.LAST_UPDATE_DATE: Set the
    Width property to a default value
    CDG-03484 ADJUSTMENT FAILED: Bound Item HSD0016F.CGFK$PEM_PRJ_ID.L_PRJ_NAME:
    Set the Update ? property to a default value
    CDG-03484 ADJUSTMENT FAILED: Bound Item HSD0016F.CGFK$PEM_PRJ_ID.L_PRJ_NAME:
    Set the Insert ? property to a default value
    CDG-03484 ADJUSTMENT FAILED: Bound Item HSD0016F.CGFK$PEM_PRJ_ID.L_PRJ_ID: Set
    the Update ? property to a default value
    CDG-03484 ADJUSTMENT FAILED: Bound Item HSD0016F.CGFK$PEM_PRJ_ID.L_PRJ_ID: Set
    the Insert ? property to a default value
    CDG-03484 ADJUSTMENT FAILED: Bound Item
    HSD0016F.CGFK$PEM_PRJ_ID.L_PRJ_PRJ_TYPE: Set the Update ? property to a
    default value
    CDG-03484 ADJUSTMENT FAILED: Bound Item
    HSD0016F.CGFK$PEM_PRJ_ID.L_PRJ_PRJ_TYPE: Set the Insert ? property to a
    default value
    CDG-03484 ADJUSTMENT FAILED: Bound Item
    HSD0016F.CGFK$PEM_PRJ_ID.L_PRJ_START_DATE: Set the Update ? property to a
    default value
    CDG-03484 ADJUSTMENT FAILED: Bound Item
    HSD0016F.CGFK$PEM_PRJ_ID.L_PRJ_START_DATE: Set the Insert ? property to a
    default value
    CDG-03484 ADJUSTMENT FAILED: Bound Item
    HSD0016F.CGFK$PEM_PRJ_ID.L_PRJ_END_DATE: Set the Update ? property to a
    default value
    CDG-03484 ADJUSTMENT FAILED: Bound Item
    HSD0016F.CGFK$PEM_PRJ_ID.L_PRJ_END_DATE: Set the Insert ? property to a
    default value
    CDG-03484 ADJUSTMENT FAILED: Bound Item HSD0016F.CGFK$PEM_PRJ_ID.L_PRJ_BUDGET:
    Set the Update ? property to a default value
    CDG-03484 ADJUSTMENT FAILED: Bound Item HSD0016F.CGFK$PEM_PRJ_ID.L_PRJ_BUDGET:
    Set the Insert ? property to a default value
    CDG-03484 ADJUSTMENT FAILED: Bound Item HSD0016F.CGFK$SUB_DEP_ID.ID: Set the
    Query ? property to a default value
    CDG-03484 ADJUSTMENT FAILED: Bound Item HSD0016F.CGFK$SUB_DEP_ID.L_DEP_NAME:
    Set the Update ? property to a default value
    CDG-03484 ADJUSTMENT FAILED: Bound Item HSD0016F.CGFK$SUB_DEP_ID.L_DEP_NAME:
    Set the Insert ? property to a default value
    Generation Complete
    *** 09/20/00 08:19 pm *** (CHG: Sta->91)
    *** 10/26/00 05:14 am *** (CHG: Sta->11)
    *** 10/26/00 05:14 am ***
    I have re-opened this bug as I am still able to reproduce the problem with
    Designer 6i Release 2.
    Test case is Headstart Demo application form HSD0016F.
    I noticed that when you generated the form above, you did not use the
    Headstart object library, but used the Designer object library instead.
    Could you try generating the form using the Headstart object library and
    template package.
    The version of headstart you have has the workaround in place in this form.
    Therefore, you will need to edit the module before you generate it.
    In the module componenet EMP, change the Placement property from New Tab
    Canvas Page to New Content Canvas.
    (Due to another bug, you should also blank out the height on all displayed
    columns of type date or datetime in all 3 module components.)
    Generate the module.
    I get the following results:
    Form Generator (Windows 95/98/NT) : Version 6.5.40.3.0 - Production on Thu Oct
    26 14:05:07 2000
    Generating Module 'HSD0016F' (1 of 1)
    Loading form template from file system
    (C:\Headstart\hsd65\hst\admin\qmstpl65.fmb)
    Loading object library from file system
    (C:\Headstart\hsd65\hst\admin\qmsolb65.olb)
    CDG-01382 WARNING: Module HSD0016F: Expanding popup 2 to fit 10 row(s)
    ************ this is the problem ********************
    CDG-01281 ERROR: Module HSD0016F: Oracle Forms binary file for BLOCKS ON TABS
    has NOT been created
    ************ end of problem ********************
    CDG-03517 WARNING: Argument HSD0016F.P_REVISION: Module Argument doesn't have
    any usages set against it
    ...various other warnings...
    CDG-01083 WARNING: Bound Item HSD0016F.CGFK$SUB_DEP_ID.ID: Making item ID the
    first item in List of Values 'CGFK$SUB_DEP_ID'
    Generation of Module 'HSD0016F' Successful
    Generation Complete
    *** 10/30/00 12:58 am *** (CHG: FixBy->6.5.60)
    *** 12/21/00 07:34 am *** (CHG: Asg->NEW OWNER)
    *** 01/22/01 04:52 am *** (CHG: DevPri->1)
    *** 01/24/01 11:40 am ***
    I have finally been able to pin down why this is happening with Headstart
    generated applications and not with applications using the default Designer
    object library.
    In our object library, the standard source object CGSO$BLOCK has a number of
    block level triggers, and one item. These are standard and need to be on
    every 'normal' block generated with Headstart.
    However, this makes it impossible to generate a form with block 1 on the
    content canvas followed by 2 or more blocks on tabbed canvases on the same
    page.
    If I remove the block level triggers and item, I can generate this form
    (though of course this is useless to me because I lose all Headstart
    functionality).
    Furthermore, if I try to explicitly direct Designer to use another object from
    the object library, by recoding a Template/Library Object on the module
    components, the form generator ignores this and uses CGSO$BLOCK anyway.
    Suggested workaround:
    - copy qmsolm65.fmb and qmsolb65.olb to another name (e.g. qmswrkrn.fmb and
    qmswrkrnd.olb
    - in qmswrkrn.fmb add a new block, qmsso$save_triggers. Make this block an
    exact copy of cgso$block including triggers and item.
    - change the blocks that used to subclass from cgso$block to now subclass from
    qmsso$save_triggers
    - in cgso$block, remove the triggers and item
    - generate the qmswrkrnd.olb object library
    - for each module in Designer that requires the blocks on tab layout, go to
    the form level preferences and set the standard object library to qmswrkrn.olb
    - generate the form(s)
    - do a post-generation modification to subclass the data blocks from the
    qmsso$save_triggers block
    I'm glad to see you've raised the Development Priority to 1. This is probably
    the single most popular layout for a master with multiple details, and it is
    really crippling not to be able to generate this layout. We are already
    getting complaints from our beta clients.
    Just a reminder, you can duplicate this bug using the Headstart demo
    application form hsd0016f. You must change module component EMP to use layout
    style 'New Content Canvas'. (It is currently set to New Tab Page.) You must
    also be sure to use the Headstart object library and template form when you
    generate.
    *** 01/25/01 07:05 am ***
    Found a much simpler workaround! In object library maintenance form
    qmsolm65.fmb, set Visible property of cgso$block.qms$block_info to Yes. Then
    re-create qmsolb65.olb object libary. Form will now generate.
    Since this is the second problem we have found in Headstart related to having
    a hidden item in cgso$block, for Headstart 6i I am eliminating this item.
    In the meantime, use this workaround for Headstart 6i beta and for Patch 13.
    *** 03/02/01 06:18 am *** (CHG: Asg->NEW OWNER)
    *** 12/07/01 08:58 am *** (CHG: FixBy->9.1 DevPri->3)
    *** 12/10/01 05:28 am *** (CHG: DevPri->5)
    *** 12/10/01 08:51 am *** (CHG: FixBy->0)

  • 2 tab canvasses on a single window (form)

    Hi !
    Does anybody know of a way to put 2 tab canvases on a single window. I would like to place 2 tab canvases, each holding 2 tab pages, on 1 window. However, from the moment you use "new tab canvas page" he directly puts the page behind the other tab pages instead of starting a new one. I already tried working with stacked canvases or "new content canvas". Even if your new tab canvas page is inside a new canvas he keeps on putting the tab pages behind the previous tab pages.
    Would anybody know of a workaround ?
    Many thanks !
    Kris

    Hi Saeed,
    A possible solution to generate two tab canvasses on one window is the following:
    Add a (dummy) module component with (dummy) items between the last module component of the first tab and the first module component of the second tab.
    At runtime, you can make this extra module component invisible.
    So, in Designer you'll have the following Module Components, with property 'Placement':
    MC1. 'New Tab Canvas Page' -- first tab-page of first tab
    MC2. 'New Tab Canvas Page' -- second tab-page of first tab
    MC3. 'New Content canvas' -- dummy block, between two tab canvases
    MC4. 'New Tab Canvas Page' -- first tab-page of second tab
    MC5. 'New Tab Canvas Page' -- second tab-page of second tab
    HTH,
    Lennart de Vos

  • Two content canvas in single window

    Hi friends,
    Possible to put 2 content canvases in a single window, when im executing i should get both canvas display( if i adjust the size of canvas).
    Regards
    Veekay

    Hi Veekay
    Possible to put 2 content canvases in a single window, when im executing i should get both canvas display( if i adjust the size of canvas).i don't think it's possible i haven't tried before... but u can use tab canvas or stacked canvas instead ?!
    What's the problem ? All Forms must have at least 1 "Content" canvas in which all content is displayed. You can arrange the Stacked or Tabbed canvases on your Content canvas in such a way that the information in the Content canvas will be also visible while u can resize the stacked or tabbed canvas in a specific area of the content canvas.
    if it would be possible why they invent stacked & tab canvas that's my point of view.
    but u can give it a try to make sure by using in when button pressed trigger the following...
    show_view('canvas name');Hope it helps...
    Regards,
    Abdetu...

  • Content canvas problem

    Dear All
    In forms 10G i have one Content canvas and one Stacked canvas . While designing the form i am aligning the stacked canvas on content canvas.
    I follow this steps:-
    1) Open Content canvas then in tool ball i click on VIEW then STACK VIEWS .
    2) Then it will open a pop up window STACKED/TAB CANVAS and there i am selecting my Stacked canvas name.
    3) But after that when i want to open only the content canvas then this stacked canvas also opening ..
    And i am not able to hide that ...
    How to do this ?

    1) open content canvas
    2) Click in menu "Stacked Views" (popup window is opened)
    3) unselect your stacked canvas using CTRL+click

  • Stacked canvas view placed on the content canvas

    Hi to all,
    i am developed a one form ,i.e placed the stacked canvas view on the content convas.
    i create a two data block's with same table.
    one data block for content canvas and one for stacked canvas.
    in the content canvas i taken two fileds with scroll bar and remaining fields placed on the stacked canvas.
    these stacked canvas view put on the content canvas.it dispalying and
    executed succesfully.
    here i am getting one problem i am displying the 10 records at a time in both canvases.my requirment is placed on the
    cursor on the content canvas particular record scroll down then automatically show the same record details in stacked canvas and
    content canvas scroll bar is changed automatically stacked canvas scroll bar is changed.
    any one help me.........

    {quotei create a two data block's with same table.
    one data block for content canvas and one for stacked canvas.{quote}
    This is not necessary. Just create one data block and then assign the block items to your Content and Stacked canvases. You can display items in a data block on different canvases. By doing this, there is no need to write code to synchronize the records because they are part of the same data block so they will automatically scroll as you navigate through your records.
    Craig...

Maybe you are looking for

  • Linksys WRT54G Wireless-G Router won't save settings

    Hi everyone. I got a stupid little case that's really pissing me off, I'm just trying to port foward with this router, and after I'm done entering all my settings, I click save settings, it tells me settings are succesful. But the it goes back to the

  • Not able to link the cloned business object in change document

    Hi Experts, I cloned standard business object FIPP.  When I give the cloned busniess object in change document linkage, I am getting the error message Business object type ZFI_CREDIT has status modeled. Linkage not possible. Please let me know the pr

  • BUG - Cannot enable assertions based on packages

    In my runtime configuration (Tools > Project Properties > Run/Debug > Edit...) I tried adding -ea:com.package1... to the Java Options field so I could restrict assertions being run on only that package and subpackages. When I ran my program, the asse

  • How could i import outlook .olm files to apple mail on osx mountain lion

    I have .olm data files from office outlook for mac. Coild you please help how could i import this back up .olm files in my apple mail

  • PermGen errors on Storage Nodes

    The error in itself is.... OutOfMemoryError: PermGen space This occurs simultaneously on all storage nodes after the cluster has been up a number of hours. Cluster is configured as partitioned and actual data size is only being reported as about 12Mb