Canvas of canvas type "tab" doesn't get displayed

I have one canvas which displays fields from two database blocks.
Next I have a second canvas of canvas type "tab".
I have already added the fields in the tab pages but the problem is that when I compile and run the form, only the first canvas is displayed.
I don't see the canvas with the two tab pages.
What code to I need to display the second canvas please?
Thanks.

The tab canvas should appear without using any code.
make sure both of your canvases are assigned to the same window; they have the same value for the "Window" property. Also make sure you don't have any items on your content canvas (main canvas or first canvas) overlaying the tabbed canvas.
If there are any overlaying items this will cause the tab canvas to hide to show the item, a tab canvas acts the same as a stacked canvas, the only difference is that it has tab pages.
Tony

Similar Messages

  • Condition type freight is not getting displayed in print preview

    Hi,
    I created PO, and while seeing its print preview:
    Condition type freight is not getting displayed.
    Where i missed?
    Uts

    hi,
    Inddition to M/08...(As given above)...
    Also do check the smart form or SAP script...used for the output...check it with the ABAPer...whether the field is liable for o/p or not??
    Smart form is attached at message type of message determination..
    Regards
    Priyanka.P

  • Images for tabs are not getting displayed in the page if Iam using a template

    I have page with a unstructured template. I have arranged tabs on page with images attached. But images are not getting displayed. why

    Hi,
    Please check if the images are in the server and in the /images alias path.
    thanks,
    Sharmila

  • Ess Tab is not getting displayed?

    Hai Guru's,
             Configuring ESS.
              Through SDM , i have deployed all the packages, including BUSINESS PACKAGES, SAP ESS, SAP MSS, SAP PCUI. After deploying everything , i am not getting Employment Self Services Tab in the portal as i logged in as administrator.
                  Only Content Administration,User administration,System Administration,Delegated user administration getting displayed.
               Is it some patch to be deployed or any authorization problem.
               Kindly give me your valued solutions to solve this problem.
    Regards
    Arun Rajan.

    hi,
    can you look at this
    [http://help.sap.com/saphelp_erp2005/helpdata/en/38/e8584c2a664547b60442646bee23b6/content.htm]
    [https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/21eb036a-0a01-0010-25a3-b2224432640a]
    Regards,
    Muralidhar

  • Images for tabs are not getting displayed in the page

    Hi,
    I have given images for tabs on a page. when iam applying images from the local disk, it is showing the images in edit mode. But when I view the page, it is not showing any images.
    Where should i copy the images I use in my pages. I ahev copied all the images in the images directory of portal30 in server.
    Please help.
    Murthy

    Hi,
    Please check the httpd.conf file in your server for /images alias. The /images alias will point to a directory. Copy your
    image files in that directory.
    Thanks,
    Sharmila

  • Oracle BAM : Tabs are not getting displayed

    Hi
    Just started working in Oracle BAM. I opened exisiting reports that came with the installation. Now when I click on Edit View -> "Data" button in the "View" Editor of an existing report ; the following tabs shld be displayed as per the BAM user guide : DataObjects, Fields, Filter, Drilling ...etc .
    But none of the tabs are comming in the browser. In fact 7 empty tabs are dispalyed and are disabled.
    When I click on "Properties" in the "View" editor ; all the tabs are comming and I can click on the tabs and edit the properties. But the tabs under "Data" option is not working.
    I have deployed SOA suite 11.1.1.3 on wls 10.1.3. I am using IE 7. Any pointers will be helpful!!
    Thanks

    This link solved the problem for me.
    REQD for Fresh BAM Install 11.1.1.3.0 -Data labels missing issue

  • Adobe Form not getting displayed on the portal

    Hi,
    From the MSS portal when I run the process, the associated adobe form(using HCM) doesn't get displayed on the portal. Initially the problem was with higher version of acrobat reader but now it is solved. Now I am not getting any error or warning but adobe form still not getting displayed.
    Please help.

    Later

  • Messages get displayed twice

    I've got this global messages entry in my main JSP page that has a bunch of JSTL import in it. That main JSP page has one tag :
    <h:panelGroup id="panelMsg">
           <h:graphicImage width="1" height="10" url="/images/spacer.gif"/>
            <h:messages id="msgRpf" globalOnly="true" styleClass="message"       layout="table"/>
    </h:panelGroup>Whenever there is a message that has to be displayed we do it via a global method in our backingBean and the code is very simple :
    protected void addMessage(String message){
            FacesContext context = FacesContext.getCurrentInstance();
            FacesMessage msg = new FacesMessage(message);
            context.addMessage(null, msg);
      }The problem is if we have to display two messages, instead of beaing added to the first one, another message block gets displayed, hence we have two messages panel displayed with one message each, instead of one panel with two messages in it.
    I tried adding the ID in the context.addMessage method, but it doesn't get displayed...
    Any help or clues would be appreciated
    Thanks
    -Ben

    Maybe more code is needed to help...
    This is part of the main JSP page
      <h:panelGrid id="contenu" columns="2" footerClass="subtitle" headerClass="subtitlebig" styleClass="contenu" columnClasses="subtitle, medium">
        <h:panelGroup id="panelNavigateur">
          <!-- ===== Navigateur -->
          <f:subview id="navigateur">
            <c:import url="navigateur.jsp"/>
          </f:subview>
        </h:panelGroup>
        <h:panelGroup id="panelContenu">
          <h:panelGroup id="panelMenu">
            <!-- ===== menu principal -->
            <f:subview id="menu123">
              <c:import url="gabaritMenu.jsp"/>
            </f:subview>
          </h:panelGroup>
          <!-- ===== sous titre page -->
          <f:facet name="header">
            <h:outputText styleClass="subtitle" value="Sous-Titre de la page"/>
          </f:facet>
          <!-- ===== messages page -->
          <h:panelGroup id="panelMsg">
            <h:graphicImage width="1" height="10" url="/images/spacer.gif"/>
            <h:messages id="msgRpf" globalOnly="true" styleClass="message" layout="table"/>
          </h:panelGroup>
          <!--  ===== formulaire de saisie -->
          <h:panelGroup id="menuH">
            <f:subview id="formSaisie">
              <c:if test="${XmlMenu.page != null}">
                <c:import url="${XmlMenu.page}"/>
              </c:if>
            </f:subview>
          </h:panelGroup>
        </h:panelGroup>
      </h:panelGrid>
    ...If we add 3 messages from our backing bean, instead of adding 3 lines with the corresponding text, 3 different "blocks" of text appear on the page. If I use the .getMessages() and Iterate through the messages, I only see one message instead of the 3 that should be there.
    Any one have a clue ?
    Thanks in advance.
    -Ben

  • Problem with RGB Values for Canvas Type ‚Horizontal Toolbar' in Webforms 10

    Hello,
    I have a problem with the canvas type ‘Horizontal Toolbar’ in Webforms 10g.
    When I try to set or change the RGB value of a ‘Horizontal Toolbar’ with the forms function
    Set_Canvas_Property(‘my_horizontal_toolbar’, BACKGROUND_COLOR, rgb-value)
    (at runtime) it has no effect in Webforms 10g for the canvas type ‘Horizontal Toolbar’ (the background color of the horizontal toolbar doesn’t change).
    But it works fine for other canvas types like ‘Stacked’ or ‘Content’.
    In Oracle 6i (Client / Server) this function works quiet well (even for the ‘Horizontal Toolbar’ canvas type).
    The reason why we are using rgb values instead of visual attributes in this case is, that the color of the ‘Horizontal Toolbar’ should be customizeable (via a RGB Field) for our customers (at runtime).
    Further more we are using the same technique for Text-Field-Items, Content- and Stacked-Canvases (and all works fine).
    Maybe it has something to do with the pre-configured IAS color-schema (blaf).
    But changing the color schema (e.g.: from 'blaf' to 'red') has no effect also.
    Thanks for your help.

    This is probably bug 777312. Call Support for the latest info on this bug and for help getting it fixed.

  • How: Stacked Canvas on Tab Canvas ?

    Hi All,
    I have content canvas in which I have placed tab canvas with 5 tabs, and on one of the tab I want to place stacked canvas because I have to display multiple blocks on this stacked canvas with vertical scroll bar (This I can specify by saying Vertical scroll bar as Yes for Stacked canvas).
    There is a restriction that, it is not possible to place stacked canvas on tab canvas (Possible only on content canvas), so is there any other workaround.
    Please let me know if anyone has worked on similar type of screen development. Appreciate if anyone can provide some sample code.
    Advance thanks for your time and help.
    Regards
    CJ

    Hi All,
    I found the solution and successfully implemented the desired functionality
    DECLARE
         v_Tab VARCHAR2(1000);
    BEGIN
         v_Tab := GET_CANVAS_PROPERTY('CAN_TABS', TOPMOST_TAB_PAGE);
         IF v_Tab = 'a1' THEN
         GO_BLOCK('BLK1');
              EXECUTE_QUERY;
         ELSIF v_Tab = 'a2' THEN
              GO_BLOCK('BLK2');
              EXECUTE_QUERY;
         ELSIF v_Tab = 'a3' THEN
    *          Set_View_Property('CAN_STK_FIS_NET',HEIGHT,280);*
    *          Set_View_Property('CAN_STK_FIS_NET',WIDTH,630);*
    *          Set_View_Property('CAN_STK_FIS_NET',DISPLAY_POSITION,6,135);*
    *          SHOW_VIEW('CAN_STK_FIS_NET');     *     
              GO_BLOCK('BLK_FIS1_GRID');
              EXECUTE_QUERY;
    END IF;
    END ;
    I have seperately created stacked canvas 'CAN_STK_FIS_NET' and placed multiple blocks as per requirement and able to achieve the functionality.
    Please let me know if any one need any detail explanation.
    regards
    cj

  • Determining canvas type using PLSQL

    Is it possible to determine the canvas type at runtime ?
    I have a canvas name or canvas id.
    I want to find out if the canvas is a content, stacked or tab canvas
    Somre more info ....
    Tab canvas is my biggest problem right now.
    I tried detecting it by using GET_CANVAS_PROPERTY (..., TOPMOST_TAB_PAGE) thinking that if it returned NULL or raised an error I could use that to determine that it was not a tab canvas. However, this raises an error that I can only suppress using an ON-ERROR trigger which is not a good solution (I am hoping to imlement a solution within a single function)
    Any ideas ?
    thanks

    thanks everyone - I managed to resolve this by simplifying my requirements
    Francois tip lead my to the resolution.
    I only needed to detect if a canvas is one of the following
    1) a tab canvas
    2) a non-tab canvas
    I wrote a function to detect if a canvas is a tab canvas. The function loops through all items in the form and return TRUE if it finds an item on the canvas that also has GET_ITEM_PROPERTY (... ITEM_TAB_PAGE ) IS NOT NULL
    P.S I cant rely on the canvas naming standard as this is an existing app with inconsistent canvas names.
    thanks for ideas.

  • Urgent: Stack Canvas in Tab canvas

    Hi,
    I have a very urgent requirement. Please help me solving this.
    I want to have One tab canvas which has three tab pages.
    On the First Tab i want to fetch the data from some table say XX_CUSTOM_TABLE.
    Now, This should be displayed in Tabular format with Horizontal and vertical scrolling as the table has many columns.
    Please give me step by step instructions so that it could be implemented quickly.
    P.S : I am using Oracle forms 6i.
    Thanks in advance,
    Yadnesh

    Hi,
    1. When i open the form only the fields added in the tab canvas are visible.
    Where u have drawn the stack canvas,you need to create in the main canvas where ur tab canvas is there and u need to drag it to tab canvas.Have u created the trigger when tab_page_changed?
    2. when i change the tab page from tab 1 to tab 2 and then again get back to tab 1, then the stack canvas fields are visible and the fields in tab gets invisible.
    Just place the stack canvas correctly after the fields in tab page 1.
    3. The stack canvas is not horizontally scrolling.
    Just go to the property palette of stack canvas and make yes to both horizontal and vertical to yes.
    Do i have to create a stack canvas separately? and then how do i drag it into tab canvas. i am still not getting this. because.
    when i open the tab canvas page i do not find the stack layout so that i can drag it like a normal text item.
    Yes u need to create a stack canvas separately. Just open the Mani canvas the tab pages are there, then in that click the stack canvas icon and create a stack canvas and create all the fields, and move the stack canvas to the tab page. And u need to create a when tab page changed trigger at form level.
    Regards
    Sri

  • Stacked canvas on tab canvas

    Hi,
    I want to show a stacked canvas on a tabbed canvas. on stacked canvas, there are many fields that cannot be put on tabbed canvas and i must have to put these on stacked canvas with scrollbar.
    How can i put that stacked canvas on tabbed canvas?
    Regards,
    Qasim

    Hello,
    When the Layout is open, just add the stacked canvas by selecting it in the tool bar and drawing its bounds onto the tab canvas.
    Francois

  • How to build stacked canvas on tab canvas page

    I'm a beginner for oracle d6i. Please tell me
    how to build stacked canvas on tab canvas page for
    details. I need horizonal scrollbar on tab canvas.
    Thanks in advance.

    Thank you for your reply. In general, i really put stacked canvas onto the tab canvas, However i saw one solution of john.williamson in this forums (re:Silent Client Installation He didn't provide it
    for details to put stacked canvas onto the tab canvas' page.

  • How to use stack canvas in tab canvas in oracle forms

    hi all,
    how to use stack canvas in tab canvas in oracle forms. please if any one help out in this.

    Hi
    u can simply create a button in ur tab canvas in this button pls write the following as an example...
    SHOW_VIEW('STACKED_CANVAS');
    GO_ITEM ('SAL'); -- Pls note this item should be navigable and visible in ur stacked canvas form
    HIDE_VIEW('TAB_CANVAS');In order to return back to ur tab_canvas pls create a button in this button pls write the following...
    HIDE_VIEW('STACKED_CANVAS');
    SHOW_VIEW('TAB_CANVAS');
    GO_BLOCK('EMP');
    GO_ITEM ('EMPNO'); -- Pls note this item should be navigable and visible in ur stacked canvas form
    Hope this helps...
    Regards,
    Abdetu...

Maybe you are looking for

  • Bootcamp partition is no longer visible and bootable

    I decided to change size of my bootcamp (windows partition) by following steps in this thread: how to resize my bootcamp partition without deleting  itit I ended up with having bigger windows partition (which is what I was trying to achieve), that I

  • Tiles in JSF

    Hi i am using tiles framework in my JSF application but having a small issue. When i add <h:outputText value="Compnay Name" /> in one of my tiles:insert attribute, instead of showing the "Compnay Name" at the required place it shows it at the top of

  • I cant get my iphone to sync any new music or playlists.

    both  my itunes and iphone 5s are up to date. how can i fix it or is it just another bug that apple didn't bother to test before updating? I wont be updating software in a hurry again! sort it out Apple!!!

  • Moment type in delivery based on PO

    Hi Gurus, Please guide me that in the replenishment delivery based on PO, how the moment type is coming in to delivery document. Thanks & Regards, Savi

  • Report Generator has failed, please send the following information to your

    Hi I am trying to generate a report from Designer. I am getting the following error Report Generator has failed, please send the following information to your support person Assertion failure at crrma_bld_orapp at crrm.cpp:459 What should I do to get