Detail blocks in tab pages not queried automatically

Hi
I have some generated forms with the following layout:
- in the content canvas top, the master block
- below the master block (in the same content canvas), a tab canvas with 2 (or more) pages with detail blocks
When I query the master block, the detail blocks are not automatically queried, the user must navigate to them to make the automatic query work.
I found out that it is something related to the blocks not being in the same canvas. But visually, they are in the same canvas, I would like that the detail blocks were queried automatically.
Is this possible? I think this layout is very common and useful, I am sure Designer has some way to do this.
Thanks
Luis Cabral

Hi
I found it - I just set BSCSCP preference correctly, and now it works fine!

Similar Messages

  • How can i print all the tab pages not just the first page (tab)

    how can i print all the tab pages not just the first page (tab)

    You would need to do this programmatically. Here's one way:
    Attachments:
    Example_VI_BD6.png ‏3 KB

  • Detail blocks with TAB canvas

    I have master detail block but i want detail block on tab canvas how can i achieve it?
    Khurram

    create on the main window (with a content canvas) a
    tab canvas.Thanx gerd i did the same and diffrent detail blocks on diffrent tab canvases,but problem is that the moment i enlarge the tab canvas at design time and execute the form the tab canvase is invisible why?
    Khurram

  • Displaying detail blocks on tabs within tabs

    Can anyone help with a layout problem? I don't think it can be done with Designer alone, but I was hoping that Headstart could help.
    I have a master block on a new tab page. I want to display 6 records, showing 2 fields as context with the remainder as overflow right in a stacked item group. So far, so good.
    The master block has two detail blocks. I would like to display these as tabs behind the stacked item group from the master table,
    and this is where I run into problems.

    Lynne,
    Unfortunately, this is not supported by Designer and Headstart does not have a simple workaround for this.
    You could try generating the items to stacked canvases and then when the popup page is clicked programatically display the stacked canvas on top of the tabbed canvas. But this is very tricky coding and probably not worth the effort.
    Regards,
    Lauri

  • App Tabs do not open automatically

    I set GMail and RTM as "App Tabs" but when I open Firefox again they do not open automatically - it simply opens to my normal home page.

    App tabs and Tab Groups (Panorama) are stored as part of the session data in the file [http://kb.mozillazine.org/sessionstore.js sessionstore.js] in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder]
    * http://kb.mozillazine.org/Session_Restore
    Make sure that you do not use [[Clear Recent History]] to clear the "Browsing History" if Firefox is closed.

  • Navigation block with tab page canvas

    Hi,
    With content canvas, we can navigate to the next block with CRTL/PgDown, With tab canvas if i press CRTL/PgDown, i go directly to the next tab page!! Any solution to avoid this?
    Thanks.
    null

    Key-Up & Key-down triggers did not fire??

  • Req Assignment Tab page not coming for Service order

    Hi All,
             I am working on simple service order SM01 type scenario. where in i am entering the operation & time for the same.
    Now when i am going in to operation detail screen . I am not able to find out the requirement assignment tab page.
    Strangely when i am using same reference object & creating the Maintenance order PM01 & doing the same as above it is showing the req assignment tab page.
    Regards,
    Amar

    Hi , I have found out the solution for the same.
    I have found that the external scheduling flag is   
    set for order type SM01 in customizing. Since this is set, requirement    
    assignment tab will not be populated as this will be taken care           
    externally.                                                               
    Remove the flag in below customising path.
    Plant Maintenance and Customer Service--Maintenance and Service ProcessingMaintenance and Service Orders-Scheduling--External Scheduling--Define for Each Order Type                                                                               
    Once this flag is removed for order type SM01, this tab will appear       
    for service orders.                                                       
    Regards,
    Amar

  • Tab pages not changed when selecting from TAB LIST

    Hi All,
    I have a form which has 15 tabs, 1st 10 Tabs are dynamic (enabled at new form instance, depending on configuration) and 11 to 15 are Static tabs visible for all.
    My problem is when i am clicking on tabs iam able to switch tabs, but when I select tab from Tab List I am not going to the selected TAB.
    Ex: when I am in TAB 1 and Select TAB15 from Tab list My form Still Stays in TAB1 and not moving to TAB 15
    Please provide me a Solution.
    My code in WHEN TAB PAGE CHANGED is
    DECLARE
    l_curr_rec NUMBER;
         BEGIN
              l_curr_rec := :SYSTEM.CURSOR_RECORD;
              --Get the Top Default Tab Page for the Form
              SHOW_VIEW('HDR_CANVAS_FIXED');
              :global.headers:=GET_CANVAS_PROPERTY('TAB_CANVAS', topmost_tab_page);
         IF(:GLOBAL.HEADERS='AS_REC_IMAGE')THEN      
    SHOW_VIEW('AS_REC_IMAGE');
    SET_VIEW_PROPERTY('AS_REC_IMAGE',VISIBLE,PROPERTY_TRUE);
    SET_TAB_PAGE_PROPERTY('AS_REC_IMAGE',ENABLED,PROPERTY_TRUE);
              GO_BLOCK('AS_REC');
                   --Hide the other canvases except the Pricing Canvas                     
         ELSIF(:GLOBAL.HEADERS='TRIM_REC_IMAGE')THEN      
    SHOW_VIEW('TRIM_REC_IMAGE');
    SET_VIEW_PROPERTY('TRIM_REC_IMAGE',VISIBLE,PROPERTY_TRUE);
    SET_TAB_PAGE_PROPERTY('TRIM_REC_IMAGE',ENABLED,PROPERTY_TRUE);
              GO_BLOCK('TRIM_REC');
                   --Hide the other canvases except the Pricing Canvas                     
         ELSIF(:GLOBAL.HEADERS='AS_SHIP_IMAGE')THEN      
    SHOW_VIEW('AS_SHIP_IMAGE');
    SET_VIEW_PROPERTY('AS_SHIP_IMAGE',VISIBLE,PROPERTY_TRUE);
    SET_TAB_PAGE_PROPERTY('AS_SHIP_IMAGE',ENABLED,PROPERTY_TRUE);
              GO_BLOCK('AS_SHIP');
                   --Hide the other canvases except the Pricing Canvas                     
         ELSIF(:GLOBAL.HEADERS='TRIM_SHIP_IMAGE')THEN      
    SHOW_VIEW('TRIM_SHIP_IMAGE');
    SET_VIEW_PROPERTY('TRIM_SHIP_IMAGE',VISIBLE,PROPERTY_TRUE);
    SET_TAB_PAGE_PROPERTY('TRIM_SHIP_IMAGE',ENABLED,PROPERTY_TRUE);
              GO_BLOCK('TRIM_SHIP');
                   --Hide the other canvases except the Pricing Canvas                     
         ELSIF(:GLOBAL.HEADERS='EXTRA')THEN      
                   ---Show the Export Canvas---------     
    SHOW_VIEW('EXTRA');
    SET_VIEW_PROPERTY('EXTRA',VISIBLE,PROPERTY_TRUE);
    SET_TAB_PAGE_PROPERTY('EXTRA',ENABLED,PROPERTY_TRUE);
              GO_BLOCK('EXTRA');
                   --Hide the other canvases except the Pricing Canvas                     
         ELSE -- DYNAMIC TABS
    --Hide all the other  static canvases
    IF (:GLOBAL.HEADERS='CT01')THEN
         GO_BLOCK('CT01');
    ELSIF (:GLOBAL.HEADERS='CT02')THEN
         GO_BLOCK('CT02');
    ELSIF (:GLOBAL.HEADERS='CT03')THEN
         GO_BLOCK('CT03');
    ELSIF (:GLOBAL.HEADERS='CT04')THEN
         GO_BLOCK('CT04');
    ELSIF (:GLOBAL.HEADERS='CT05')THEN
         GO_BLOCK('CT05');
    ELSIF (:GLOBAL.HEADERS='CT06')THEN
         GO_BLOCK('CT06');
    ELSIF (:GLOBAL.HEADERS='CT07')THEN
         GO_BLOCK('CT07');
    ELSIF (:GLOBAL.HEADERS='CT08')THEN
         GO_BLOCK('CT08');
    ELSIF (:GLOBAL.HEADERS='CT09')THEN
         GO_BLOCK('CT09');
    ELSE --ELSIF (:GLOBAL.HEADERS='CT10')THEN
         GO_BLOCK('CT10');
    END IF;
              END IF;
         END;
    Thanks,
    Durga Srinivas.
    Edited by: DurgaSrinivas_886836 on Dec 3, 2012 8:12 PM

    In your trigger, you are doing a SHOW_VIEW ('HDR_CANVAS_FIXED'); before you select the :GLOBAL.HEADERS information. I'm not sure what HDR_CANVAS_FIXED is, but I am wondering if that is what is messing you up. What happens if you either comment that out:
    DECLARE
      l_curr_rec     NUMBER;
    BEGIN
      l_curr_rec := :SYSTEM.CURSOR_RECORD;
      --Get the Top Default Tab Page for the Form
      --SHOW_VIEW ('HDR_CANVAS_FIXED'); /* <-------------------------------------------------------Comment it out */
      :global.headers := GET_CANVAS_PROPERTY ('TAB_CANVAS', topmost_tab_page);
      IF (:GLOBAL.HEADERS = 'AS_REC_IMAGE') THEN
        SHOW_VIEW ('AS_REC_IMAGE');
        .or if it is necessary move it to after the :GLOBAL.HEADERS:
    DECLARE
      l_curr_rec     NUMBER;
    BEGIN
      l_curr_rec := :SYSTEM.CURSOR_RECORD;
      --Get the Top Default Tab Page for the Form
      :global.headers := GET_CANVAS_PROPERTY ('TAB_CANVAS', topmost_tab_page);
      SHOW_VIEW ('HDR_CANVAS_FIXED'); /* <------------------------------------ Swap it with :global.headers */
      IF (:GLOBAL.HEADERS = 'AS_REC_IMAGE') THEN
        SHOW_VIEW ('AS_REC_IMAGE');
        SET_VIEW_PROPERTY ('AS_REC_IMAGE', VISIBLE, PROPERTY_TRUE);
        SET_TAB_PAGE_PROPERTY ('AS_REC_IMAGE', ENABLED, PROPERTY_TRUE);
        GO_BLOCK ('AS_REC');
      --Hide the other canvases except the Pricing Canvas
      ELSIF (:GLOBAL.HEADERS = 'TRIM_REC_IMAGE') THEN
        SHOW_VIEW ('TRIM_REC_IMAGE');
        .

  • About tab page:not all tab page can view when have many tab page

    It has 12 tab page in a tab canvas,when it is running ,
    not all tab page can view.
    the tab canvas's Tab Attachment Edge is Top.
    How can it view all tab page?
    Pleae help me!
    Thanks.
    Daniel Liang
    2007.3.20
    Message was edited by:
    DanielLiang

    The number of tabs that you can show at once is limited by the size of the canvas. If you have too many tabs, then you can set up one tab to be a 'MORE'. When the user clicks on it, it hides the current set of tabs and displays the set of tabs that were not shown. By having a MORE for each set of tabs, you can toggle between the sets of tabs. The Help documentation describes how to show and hide tabs, and how to set focus to a particular tab.

  • Tab page not display in page

    Hi all
    I have created a tab page that link to a page. However, when I go to that page, the tab is not shown. I notice that the shared component->tabs for the page doesnt have anything.
    Any idea? Thanks!
    Regards
    Aaron

    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

  • Excise tab page not displayed during goods receipt for material.

    Dear All,
      The issue is we are doing GR for a PO in MIGO.Now the excise tab page is displayed in case of all other matl except for one.The matl type is manufacturing matl for this particular matl.I have checked all the settings in J1ID, also checked the tax code they are ok.can anyone guide me with any other possible solutions to this.
    Thanks in advance,
    Akshay

    Same problem we have faced after implementation of budgetory changes.
    SAP recommanded changes in program.
    Check with sap support.
    Regards
    Vijay

  • Why is the new tabs page not loading?

    My firefox is supposedly up to date but the new tabs page isn't loading nor is the icon in the corner coming up so I can turn it on.

    then please try running firefox in safemode once and see if this is working as intended - maybe one of your extensions is interfering...
    [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]

  • New Tab Page not showing thumbnails; browser.newtab.url reset is greyed out. What is my next step?

    I have read this thread: https://support.mozilla.org/en-US/questions/934935 but the solution this user found apparently isn't available to me.
    I cleared my cache and cookies the other day, and now my New Tab Page isn't populating with new thumbnails. I do have one thumbnail, a page I pinned, but all of the others haven't come back. I went into about:config and found browser.newtab.url, but the 'reset' option was greyed out. I haven't been able to find out what the next step is to restore my thumbnails; am hoping someone here can help. Thanks!

    I do still see empty tiles on the about:newtab page - I have the one pinned page, from before I cleared my cache, and then 8 empty tabs. The disk cache contains information up until just a few minutes ago so yep, appears to be working fine.

  • My tabs are not opening automatically whenever I open up firefox on my macbook pro. Tried all the trouble shooting suggestions on Firefox Help site, but to no avail. Help.

    I have been pinning websites as App Tabs on my mac book pro. However, whenever I exit firefox and reopen it next time, my tabs will be gone (even though I had pinned it and did not close it out). I tried all the trouble shooting suggestions on configuring the preferences but to no avail. Any suggestions on what my problem is?

    well mine is remembering history but this happens even when im in the middle of something and a tab will open that's blank!! really really drives me nuts!! and the remember isn't the problem it does this after awhile, could it be faster fox browser add-on? or another add-on that's making it do it?
    HELP!

  • Tabs will not open automatically (link appears but I have to manually hit "enter" or reload the tab).

    When I recently updated Firefox, my tabs stopped working. When I right-click on a link and select "open new tab," the tab opens with the link in the address bar, but the page is blank. Only when I switch to the new tab, put my cursor on the address bar, highlight the entire address and hit "enter" does the page finally load. I've tried to look for answers in the forums and have played around with the tabbing options, but I cannot resolve the problem. Any suggestions would be appreciated!

    This issue can be caused by an extension that isn't working properly.
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")
    In Firefox 4 you can use one of these to start in <u>[[Safe mode]]</u>:
    * Help > Restart with Add-ons Disabled
    * Hold down the Shift key while double clicking the Firefox desktop shortcut (Windows)
    * https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

Maybe you are looking for