How to handle sub tab region action

Hi All,
How do we handle sub tab region actions? I have a requirement where the page is supposed to get refreshed when "Products" subtab is clicked. This tab is in the subTabLayout with id QotHdrSubTabRN.
Regards,
Shreyas

Hi,
Could you please elaborate a bit more on this. This subTab is on the standard page and not on a page I have created. So I'm not sure how exactly to set the Action Type to fireAction.
Regards,
Shreyas

Similar Messages

  • How to handle sub subcontracting in SAP B1 ?

    Dear all,
    How to handle sub subcontracting in SAP B1 ?
    Let me explain in detail,
    My client doing sub contracting work for parent company,raw material is actually received from parent company
    thru 57F4 challan,raw material sent for further processes in my client company and later converted material
    is sent to a sub contractor for finishing thru 57F4 challan,after finishing material is recieved by client company,
    send it once again to parent company.In this process raw material is received as X and send it to parent company as Y.
    My question is, How to handle sub sub contracting items stock ?
    Expecting u all valuable ideas / suggestions.
    Jeyakanthan

    hai!
    Will u raise any bill for ths. i mean ur child cmpny to parent cmpny.?
    1. Receive the items to your child cmpny through GRPO or GR
    2. Use Production Order cycle to do FG.
    3. Define BOM or use Special Production
    4. Transfer to the Sub- contarct warehouse through Inv.Transfer.
    5. once after processing over, book inv.Transfer to you good down.
    6. Use Goods Return or GR to issue the item out to parent company.
    hope it gvs u a starting..

  • Sub Tab Region Personalization

    Hi,
    Is it possible personalize sub tab regions? The OA Framework Personlization guide says "Limited properties of SubTabs, such as Rendered, may be personalized at the Admin level but not at the end-user level." But when i login as sysadmin and try to personalize the page i dont see any option to personalize the sub tabs.
    My requirement is to disable couple of sub tabs(6 sub tabs exists in all and 2 should be disabled) in a OA Fwk page shipped by Oracle for a specific responsibility say "A". For responsibilities other than "A" all the 6 sub tabs should be enabled. Can this issue be fixed through personalization?
    Thanks, Suresh.

    I think, this can be achieved by the following:
    1) Create custom menus (that is a copy of the seeded menus releated to the responsibilty)
    2) Then check the tabs in the menu (weather it is a prompt or submenu)
    3) Remove the prompt or submenu from the menu
    Just removing the prompt will work in your case.
    Also remember to keep all the submenus and functions like as it in the seeded menus to avoid future error while accessing some functions (This is Oracle recommendation)
    All the best...and let me know if any..
    Thanks
    JTM

  • Can't figure out how to make "sub-tabs" / Too many "top-tabs" / Other ?

    First of all, the website that I am webmaster for is: www.cindydennis.org .
    I am having some problems:
    1) There are TOO MANY tabs at the top. I can't figure out how to make sub-headings on one page...
    For example, I'd like on the "About CDM" page, tabs that can be clicked on to go to other information tabs, but that don't end up appearing on the top (e.g.: having "Remarks" and "What We Believe" tabs go there, but not appear at the top).
    Another example, if you look at the home screen, I'd like to have the link to the "Privacy Policy" and Terms of Service" pages on the bottom, but not have them appear as tabs in the top, too.
    How do I do this, please? I've searched, and can't figure out/___sbsstatic___/migration-images/migration-img-not-avail.png
    2) How do I add "Copyright 2011" automatically? I saw in the Rapidweaver trial version, it automatically adds it when you publish... is there a way to tell this program to do this? Or do I need to type that in on each page? (I don't want to purchase RW... I'm not ready for that yet.)
    Thank you in advance
    Cindee

    Cindee ~ One way to do the copyright notice is to use a Text Clipping — Select (highlight) the copyright text you want to use and drag it to the Desktop. If necessary, change the name of the Clipping icon so that it's more easily identifiable on the Desktop. Then, when you need it in iWeb, simply drag the Clipping icon from the Desktop to iWeb's main canvas.
    By the way, rather than posting your URL here like this:
    www.cindydennis.org
    ...include the prefix to make it conveniently clickable:
    http://www.cindydennis.org

  • Error while showing data in sub tab region

    Hi,
    I have created a custom OAF page with three Tabs
    Device Details
    User Privileges
    Chart Templates
    Under "User Privileges" There is a summary page which shows all User details records. When user click on "Update" icon control is delegated to "Update Page". Under update page I have two tabs
    Devices
    Organizations
    Initially the data of selected user is loading successfully but when I click on "Organization" tab I am getting all user record instead of the selected user record only.
    I debug the code and found that When I click on "Organization" tab the User_ID become null.
    How to handle this ?
    Thanks & Regards,
    Ajay Sharma

    Hi Keerthi,
    I debug the code and found that when I clicked on "Organization tab" the same page i.e. "User Privileges" gets called again.
    When "User Privileges" page is getting load first time the values User_id is passed from summary page.
    but in case on "Organization Tab" I am not passing any value when I click on "Organization tab".
    Do I need to pass value again ?
    Another thing is in processRequest I am firing query on VO based on USER_ID. Every time this will be called.
    Can you please suggest me Best Practices for this ?
    Thanks,
    Ajay

  • How to add Sub Tabs to Admin Interface under Account Tab.

    Guys,
    Is there way to add sub tabs to Accounts Tab in admin interface.
    Regards,
    Vinod

    It can be done -
    The necessary java code to achieve this needs to be put in the file: includes/bodyStart.jsp above the line that creates the navigation bar:
    <% String navBar = p.getMainNavigation();
    For example, let's say we want to add a new tab that gives us a shortcut to the debug/session pages, and a sub-tab below it that lists all configuration objects in the repository. Here's the code for it:
    // Add a tab..
    com.waveset.ui.PageNavigation DEBUG_PAGE = new com.waveset.ui.PageNavigation("Debug", "debug/session.jsp", 0);
    DEBUG_PAGE.setRequiredPerms(new com.waveset.object.Permission[] { new com.waveset.object.Permission(com.waveset.object.Type.SYSTEM, com.waveset.object.Right.VIEW, true) });
    p.addPage(DEBUG_PAGE);
    // Add a sub-tab..
    String urlDebugListConfiguration = "debug/List_Objects.jsp?List_Objects_Type=Configuration";
    if (! DEBUG_PAGE.containsSubPage(urlDebugListConfiguration) ) {
    com.waveset.ui.PageNavigation DEBUG_LIST_CONF_PAGE = new com.waveset.ui.PageNavigation("List Configuration", urlDebugListConfiguration, 0);
    DEBUG_LIST_CONF_PAGE.setRequiredPerms(new com.waveset.object.Permission[] { new com.waveset.object.Permission(com.waveset.object.Type.CONFIGURATION, com.waveset.object.Right.VIEW, true)});
    DEBUG_PAGE.addSubPage(DEBUG_LIST_CONF_PAGE);
    As seen above, appropriate rights can be coded to limit the visibility of these tabs to administrators with certain capabilities. For a complete list of rights, refer to the IDM documentation and the java-docs for com.waveset.object.Type and com.waveset.object.Right.

  • How to create sub tabs under a tab dynamically ?

    Hi,
    I am using Jdeveloper 11.1.2.4.
    I am using Dynamic UI shell to open tabs in my application.
    My use case is that i need to open a Tab on click of a link. The tab will have a few sub tabs in it that are to be dynamically created when the main tab is being opened.
    As mentioned the sub tabs are to be created dynamically i.e. at run time. The number of sub tabs to be created are also not fixed, it will be generatred at runtime.
    What should be my approach to get this done.
    Thanks

    A tab has activities, not sub-tabs.
    UI Shell - ADF UI Patterns - Dynamic Tabs UI Shell Template Functional UI Pattern
    http://sundarakrishna.blogspot.ca/2014/03/dynamic-tabs-ui-shell-template-example.html

  • How to handle Shift+Tab key event

    HI,
    This is Ramesh.I have added KeyListener to JTable. I am handling key events through key codes. But I am
    unable to handling multiple key strokes like Shift+Tab
    Can any one please give me suggestion how can I do it
    Thanks & Regards
    Ramesh K

    i dont know about Key BindingsWhich is why you where given a link to the tutorial in the first response.
    can you please give me suggestion.You've been given the suggestion 3 times. You can decide to learn to write code the way other Swing components are written. Or, you can do it the old way. The choice is up to you.

  • How to Handled Shift +Tab(Focus) click in radion button?

    Hi,
    I am using Jdeveloper 11.1.2.0.
    My scenario is one radio button having three items(Left,Right,Center). Now my radio button focus is first radio(Left). Now I click the the tab sequence. It will go to the next field, whether it is input field.
    Suppose Now I am come to back ward like shift+Tab it is come to the radio button. Here what is happening mean the focus is going to the Last radio button item(Center), what I want is which radio Item I select Initially ,the Same Place cursor want to go. How to proceed to this. Please give some suggestion to proceed.
    Regards,
    Ragu

    Hi,
    so what you are saying is that the tab focus navigation bypasses the other radio buttons whereas tab back focus navigation doesn't. If this is the case, and due to missing information in your question, try this
    set autosubmit="true" on the radio group so the radio button selection is saved.
    If this doesn't help, please provide information about the implementation of how you created the radio group and which data they are bound to. Chances are that this indeed needs to be filed as a bug but also that it is a problem in your model
    Frank

  • How to handle sub-email accounts?

    Hi,
    I asked this question years ago!
    Is it possible by now with the new ipads to respond with an email account's sub-accounts?

    Do you mean actual discrete accounts, or email aliases?  My hosting service allows me to host up to 2000 emails as either aliases of any given account, or discrete accounts.  I can create new accounts for any domain I own, as well as create aliases for any email account for any domain.  When I create a new account, those are not sub-accounts of anything (it is an email account in its own right), and no email client I know of would treat it like one (ie. like an alias of another account).
    In the iPad email app, each account has to be set up as a separate account, and no, you cannot use reply from anything but the account that message arrived in.  Even if you move the incoming message to a folder in another account, when you select "reply" it will fill in "from" based on the account that message was originally sent to.
    Email aliases will never show up in the iPad email app as separate, since all the aliases literally deliver to a single account's inbox.  When you use your email hosts web interface, then you are seeing your mail through their specific web tool which includes code specifically taylored to separate your aliases.  If you had and retained an older @mac.com or @me.com email, those are now aliases to your iCloud.com email account.  But anything coming in to any of those all goes into your iCloud inbox, as iCloud makes no distinction of them - they all point to a single, common inbox.  Even in a web mail interface, if your aliases appear separate, that is a feature of your service providers web interface, so will not be reflected in any standalone email client.

  • How to find number of subtabs in the in the sub tab layout

    Hi,
    I have a sub tab layout region.In that, i am hiding some some sub tabs based on some condition.I want to know how many visible sub tabs that a sub tab layout presently have in all of my sub tab controllers.Please Help me in this.
    Thanks
    Satya

    Satya,
    OASubTabLayoutBean subTabLayout = (OASubTabLayoutBean)webBean.findChildRecursive("SubTabLayoutRN");
    if(subTabLayout!=null)
          System.out.println("Child :"+subTabLayout.getIndexedChildCount());
    }Regards,
    Gyan

  • How to handle OAMessageLovInputBean Action?

    Hi,
    Can anyone help me on how to handle the activity or action of OAMessageLOVInputBean?
    Thank you.
    Jon

    Jon,
    if (pageContext.isLovEvent())
    // Form was submitted because the user selected a value from the LOV modal window, or because the user tabbed out of the LOV input.
    // Find out which LOV input triggered the event.
    String lovInputSourceId = pageContext.getLovInputSourceId();
    // At this point, all the data is available in the base VO, just as in regular PPR events. Invoke an AM method to update the application properties VO.
    if ("myLovInput".equals(lovInputSourceId))
    am.invokeMethod("handleMyLovInputEvent"); //Invoking AM Method here
    Thanks
    --Anil                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • TAB and SUB-TAB

    Hi Experts, i need some help plz:
    Iu2019m working in transaction RECN. In a TAB (which named Objects) there is another tab (which named Assignment).
    I have added 2 fields in the section <Objects> (I do it using the way which in Note OSS 690900). In fact, the 2 fields must be displayed in the session "Object" of the sub-tab: Assignment.
    In transaction recacust, I cannot find the location of standard fields of tab Assignment.
    Is there any OSS Note that describes how to find sub-tabs?
    Thanks,
    Mehdi,

    Hi Mehdi,
    please check transaction FOI2,
    there you will find filed group 100 which should be exactly what you are looking for.
    You can find all necessary transactions concering BDT and RE-Fx by using transaction BUS0.
    Looks like this subscreen might still be configured via re classic, at least on a 4.7 II system, which is what I am using right now.
    Hth
    Ute

  • Disable a Sub-Tab in a SubTab Layout Reagion

    Hi OAF Gurus,
    I have a page having sub-tab layout RN. Based on certain condition we need to disable (render but not clickable) some sub tabs.
    (____subtab1______ (__subtab2 (made read Only)_____ (___subtab3_______
    So the user can now navigate to subtab1 and subtab3 but he/she cannot click on subtab2
    The Sub tab regions do not have "Read Only" property defined in JRAD(where I thought to put a SPEL) nor I could find any API to do it via code. May be I missed something.
    Please help me achieve this.
    Thanks
    Chaitanya

    Chaitanya,
    Set the render property of the container region inside the required subtab to false. The subtab header name is a link by default, hence you can't stop it from being clickable or have a look at javadoc to see if some api exists.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How to handle multiple actions in the webservice ?

    Hi Guys,
    I have multiple operations in the webservcie and under soap action in the receiver soap adapter, i dont know how to handle multiple soap operations.
    can anybody guide me, how to acheive this ?
    Thanks,
    srini

    Hi Srini !
    This weblog shows the general design of a scenario with BPM
    /people/krishna.moorthyp/blog/2005/06/09/walkthrough-with-bpm
    This link:
    http://help.sap.com/saphelp_nw04/helpdata/en/de/766840bf0cbf49e10000000a1550b0/content.htm
    show how to insert a predefined BPM pattern. You could use one of the BpmPatternSerialize.... patterns to see how you BPM should look like...
    Basically it should be:
    1) Receive Step (async/sync, as you need) to trigger the BPM
    2) Send step (sync) for first webservice
    3) Send step (sync) for second webservice
    N) Send step (sync) for N webservice
    N+1) if the whole communication is sync, here you need to use a send step to return back the answer to sender.
    Regards,
    Matias.

Maybe you are looking for

  • HT1296 itunes trouble

    I am having problems connecting my iphone to itunes nothing happens when I plug the usb except it starts charging tried reading the manuals but it says nothing about when the iphone button isnt on itunes any suggestions

  • SELECT EXPERT formula howto?

    <p>Hi All! I write a program under VS 2005 C# and Crystal Report. So I have a problem with the formula (and with the sql expression formula). My problem is this:</p><p> How can I do create a group with the selection expert? My task is the next: </p><

  • How to download an app available in other country ?

    Hello i recently purchased a fitbit device from AMAZON. I tried to download fitbit app from app store, but is not available in Greek app store. How i can download it from another store ?

  • Assign warranty to installed base component

    Hello guys : When a Ibase is created with a product having warranty , warranty should  automatically assigned i.e it should  show up in warranty fields under the Relationships tab. How can I achieve that? Hope I'm clear with my question ...else let m

  • Dynamic Chart Generation

    Hi all, I am trying to generate line chart dynamically. I just want to know that is it possible? If yes then how to create chart and passing the chart series dynamically. Regards, Vinaya.