Forms Personlization - How to Navigate to a particular Tab?

I am trying to do a forms personalization in Oracle Financials.
The business requirements is have a menu option in AR Account Details form which takes the user to the Customers - Standard (ARXCUDCI) form and then queries back the customer and displays a particular tab.
I have everything working except the tab navigation. I do not know how to navigate to a particular tab using forms personalizations.
I'm not even sure that the 'Tabs' I'm thinking of are the same as Forms 'Tabs' as, when I try to look at the 'Tabs' in Forms Personalization it doesn't appear there are any. It looks like each tab the user sees is a different Canvas.
The canvas my 'tab' is on is called CUST_MKT.
As you can prob tell, I'm a functional consultant with limited forms dev experience. I expect the answer is simple - so hoping someone can help me out???
Thanks,
- Matt

Hello,
You should use an action type = "Builtin", Builtin type = "GO_BLOCK" and the argument in the name of your tab,
Hope it help, I already test such a behavious on a particular event and it works
Have a good day,
Xavier

Similar Messages

  • Forms Personalizations - How to navigate to a specific tab

    I am trying to do a forms personalization in Oracle Financials.
    The business requirements is have a menu option in AR Account Details form which takes the user to the Customers - Standard (ARXCUDCI) form and then queries back the customer and displays a particular tab.
    I have everything working except the tab navigation. I do not know how to navigate to a particular tab using forms personalizations.
    I'm not even sure that the 'Tabs' I'm thinking of are the same as Forms 'Tabs' as, when I try to look at the 'Tabs' in Forms Personalization it doesn't appear there are any. It looks like each tab the user sees is a different Canvas.
    The canvas my 'tab' is on is called CUST_MKT.
    As you can prob tell, I'm a functional consultant with limited forms dev experience. I expect the answer is simple - so hoping someone can help me out???
    Thanks,
    - Matt

    Hi Matt,
    You can use the action 'GO_ITEM' (type BuiltIn). In the argumen, you should write MYBLOCK.MYITEM where MYITEM should be an navigable item in the tab to which you want to navigate. To check the actual name of MYBLOCK and MYITEM, go to that item in the screen and check the menu Help > Diagnostics > Examine...
    I hope it helps.
    Regards.

  • Navigate between FPM  OIF Tabs

    Hi All
    I want to navigate to a particular tab on clicking a link on first tab.Iam using the FPM OIF configuration.
    thanks in advance
    chythanya

    Hi chythanya,
    here is the solution
    in the override event we have to raise a view switch event.
    DATA: lo_fpm_parameter TYPE REF TO if_fpm_parameter,
            lt_parameter TYPE apb_lpd_t_params,
            ls_parameter LIKE LINE OF lt_parameter.
    DATA lo_fpm_event TYPE REF TO cl_fpm_event.
      data mo_event_id type ref to cl_fpm_event.
      data lt_mainview TYPE if_fpm_oif=>ty_t_mainview.
    data ls_mainview like line of lt_mainview.
    first get the list of variants
    CALL METHOD io_oif->get_mainviews
            EXPORTING
              iv_variant_id = 'VARIANT_1'
            IMPORTING
              et_mainview   = lt_mainview.
    thn read the view id and main view id to which u want to navigate
    READ TABLE lt_mainview index tabno into ls_mainview.
         ls_parameter-key = if_fpm_constants=>gc_event_param-view_id.
    loop at lt_mainview into ls_mainview.
           ls_parameter-key = ls_mainview-name.
        ls_parameter-value = ls_mainview-id.
        APPEND ls_parameter TO lt_parameter.
    thn using the ids get the fpm parameters and passing those parametrs raise a view switch.
    lo_fpm_parameter = cl_fpm_parameter=>create_by_lpparam( lt_parameter ).
        CREATE OBJECT lo_fpm_event
          EXPORTING
            iv_event_id      = if_fpm_constants=>gc_event-view_switch
            iv_is_validating = abap_false
            io_event_data    = lo_fpm_parameter.
    thn catch the event in process event
    DATA: lo_param      TYPE REF TO if_fpm_parameter,
            lv_process_id TYPE rcf_sel_proc_item_pl.
      lo_param = io_event->mo_event_data.
    IF io_event->mv_event_id = 'FPM_VIEW_SWITCH'.
        CALL METHOD lo_param->get_value
          EXPORTING
            iv_key   = 'OIF_VIEW_ID'
          IMPORTING
            ev_value = lv_process_id.
    regards,
    Venkat

  • How to find out the  particular   form available language?

    hi ,
    how to find out the  particular   form available language?
    pls could u clirify the dought.
    regards
    eswar

    I guess you wrongly closed the thread without any answer.
    utilities --> version, it will give all the list of languages of SAPScript.
    Or goto SE71,
    Press F4, in place of form name and goto unclassified forms, you will see all form names with available languages.
    Regards,
    Sairam

  • How to dispaly items of Particular Sorder of IT into single row in alv dis?

    Hi,
    Experts,
    I have an Sales order internal table along with its corresponding items
    i want to display those items in side by side in alv display.
    Ex:
    Vbeln   posnr   netwr    waerk
    56800   10       21.00    Col
    56800   20      
    56800   30      
    56800   40      
    I want to display:
    Vbeln   posnr  posnr2 posnr3 posnr4  netwr    waerk
    56800   10       20        30       40       21.00    Col
    I have added columns how can pull data into particular columns .How can i achieve this if any idea or input or suggestions please far word to me.
    Thank You,
    Shabeer ahmed.

    Hi,
    Using basic report you can do like this:
    DATA: BEGIN OF itab occurs 0,
    sku(10) TYPE c,
    month(2) TYPE n,
    qty(2) TYPE n,
    END OF itab.
    itab-sku = 'AA'.
    itab-month = '01'.
    itab-qty = 10.
    APPEND ITAB.
    itab-sku = 'AA'. itab-month = 02. itab-qty = 20. APPEND ITAB.
    itab-sku = 'AA'. itab-month = 03. itab-qty = 20. APPEND ITAB.
    itab-sku = 'BB'. itab-month = 01. itab-qty = 20. APPEND ITAB.
    itab-sku = 'BB'. itab-month = 02. itab-qty = 40. APPEND ITAB.
    itab-sku = 'CC'. itab-month = 02. itab-qty = 50. APPEND ITAB.
    itab-sku = 'CC'. itab-month = 03. itab-qty = 10. APPEND ITAB.
    itab-sku = 'CC'. itab-month = 04. itab-qty = 20. APPEND ITAB.
    PERFORM LIST.
    FORM LIST.
    data: cl like itab-sku.
    SKIP TO LINE 3.
    LOOP AT ITAB.
    if cl <> itab-sku.
    write : / itab-sku.
    else.
    write : ''.
    endif.
    write : itab-qty.
    cl = itab-sku.
    ENDLOOP.
    ENDFORM.
    Regards,
    Bhaskar

  • How to navigate directly to a view in a task flow

    I have several feature requests that will require me to persist a page and navigate back to it at a later time. These features are things like Recent Items, Favorites, and Breadcrumbs.
    In our app we are using bounded task flows and page fragments.
    I have figured out how to get the view ID and task flow ID of the current page. I am doing this by using a task flow initializer and a region navigation listener. What I can't figure out is how to make use of these when the user wants to navigate to a particular view in a task flow. I can navigate to a task flow by replacing the taskFlowId on a dynamic region. However, I haven't figured out how to navigate to a view (other than the default) in a task flow.
    Am I on the right track here? If so, what should I try next? If not, can you suggest a better method for implementing these features?
    Thanks!!
    Mike

    Thanks for the reply. I tried your suggestion of redirecting to the view activity URL using the code below.
    ControllerContext controllerContext = ControllerContext.getInstance();
    String viewId = "RootFlow1/PageOne";
    String url = controllerContext.getGlobalViewActivityURL(viewId);
    System.out.println(url);
    FacesContext.getCurrentInstance().getExternalContext().redirect(url);
    the sysout prints the URL below
    /TestUIShell-ViewController-context-root/faces/RootFlow1/PageOne?_adf.ctrl-state=qlewpla4_41
    However, I get a 404, saying that it can't find the page. I tried modifying some of the flow settings to get it to work. I set the redirect property on the view to true and the URL Invoke visiblity on the flow to url-invoke-allowed, but I still get a 404. What am I missing?
    To give you more info about our app, we are using an outer page template to define the layout of the app (like the Fusion UIShell) and an inner page template to define the main area where pages will be rendered. Navigation is achieved by putting the main area flow in a dynamic region. When the user clicks a lnk, we swap out the task flow id on the region. Once they are in the region, navigation is normal ADF navigation within just that region.
    I read both of the threads that you referenced, but I don't see anything in there that I can use (maybe I'm missing it). Are there other ways to navigate to a view in a flow that I am missing?
    Thanks!!
    Mike

  • How  can i find how many smartforms  using a particular smart style

    hi experts  ,
    how  can i find how many smartforms  using a particular smart style
    thnks in advance

    Hi,
    Go to your smartform
    Click on Form Attributes->Output options> There you can find the Style.
    Reward points if useful.
    Thanks!

  • Form Personlization for an Org

    Hi All,
    I have done a Form Personlization in Oracle Apps 12.1.1.
    Can I make this Form Personlization only for a particular org and restrict for other org's.+
    Please advice.
    Thanks in Advacne,
    Jegan

    Hi Jegan,
    Assuming that by 'org', you mean Operating Unit rather than Inv Org, you have a couple of options. The first is to add all of the responsibilities tied to that OU in the conditions context or, secondly and a much better approach (you don't want to have to revisit your personalizations when you create a new responsibility), add something like the following as a condition statement:
    +${ps.org_id} in (select organization_id from hr_operating_units where name in ('YOUR_OU_NAME'))+
    Regards,
    Jon

  • How to navigate to specific radio button of a single radio group.

    Hi
    i have a radio group named rdo_grp, in that radio group i had 3 radio buttons named rdo_a, rdo_b and rdo_c.
    Now, when forms executes and user navigates from any text item to above mentioned radio grp, the cursor implicitly goes to first radio button ( i.e.rdo_a).
    But i want to navigate the cursor to second radio button (i.e. rdo_b) when cursor navigates from any text to radio grp.
    please help.
    Onkar

    The focus is given to the radio button that represents the value of the radio group - i.e. the cursor goes to the selected radio button, not necessarily the first button in the group. To force navigation to a particular button, I think you will have to change the value of the radio group. I don't know if that's desirable, but it could be done with a WHEN-NEW-ITEM-INSTANCE trigger on the radio group:
    :rdo_grp := <value of rdo_b>;

  • When we try to buy a new app or update our existing apps, my account settings wont allow me to enter ANY of my credit cards.  It says to contact apple/itunes/support, but when I do, I don't understand how to navigate it to find an answer.  Help!

    when we try to buy a new app or update our existing apps, my account settings wont allow me to enter ANY of my credit cards.  It says to contact apple/itunes/support, but when I do, I don't understand how to navigate it to find an answer.  Help!

    Click here and ask the iTunes Store staff for assistance.
    (108048)

  • How to Navigate to a New window

    Hello am new to obiee can anyone please tell me how to navigate to a new window if i click on a report column. There is no Dill in place option set to it.

    Need some more information about how you are navigating from the main report.
    If you are using GoURL to bring up a report by specifying a hyperlink on a columm in the main report, then you should be able to use target="_blank" to open a report in a new window.
    search the forum or check this out:
    Re: How to add return link to report??
    Re: how can we pass the master report value in to detail  report
    Hope this helps!

  • How do I set a particular view in STUDIO record browser for a particular user?

    How do I set a particular view in the Studio record browser for a particular user?

    Thank you for your reply. However, I could not get Templates to work correctly for me.  Following your instructions, I opened my document, opened Page Setup, set the printer, paper size, orientation, and printed a copy to make sure it was right. Then I re-opened Page Setup to verify that the settings were still correct. Then I saved the document as a Template. Then I found my template in Pages, opened the template, and tried to print. The first thing I noticed was that the template did not remember my printer. Then I set the printer, and printed, but I found that the template also did not remember the page size or the document orientation. So, did I miss a step here? Lion 10.7.5 and Mac Mini.

  • How to navigate from a view to an IView in portal

    Hi all,
             Onclick of an application in my portal my appliaction gets opened.But the problem here is onclick of cancel in my applcation i want to navigate to my IView in portal.
    For navigation between view2 to view1  i used wdThis.wdFirePlugtoView1();
    by creating a navigation link.
    How to navigate from view1 to Portal IView
    Regards
    Padma N

    Hi padma,
                 Go to Iview Property in portal Content managment and take the PCD location.
    It may look something like this
    ROLES:portal_content/ZABC/ZPROJECTS/com.abc.ZPortfolio/com.abc.ZPortfolio/com.abc.ZRoles/com.abc.ZPortfolioReconle/com.chep.ZReconciliation/com.chep.ZReconEnquiry_IView
    Create a string variable with the PCD location
    String pcdLocation = <pcd location>
    And call using the iview using the following code
    WDPortalNavigation.navigateAbsolute(pcdLocation, WDPortalNavigationMode.SHOW_INPLACE, WDPortalNavigationHistoryMode.NO_DUPLICATIONS,"&reference="+reference);
    Here &reference is the application parameter, if the application with which the iView is created has parameter and is not mandatory.
    Hope this helps.

  • How to find out that particular structure is used in which tables

    Hello Friends,
    Most of the times through techinal information we come to know the table name for a particular field.And in se16 when i give that table name than system says its structure and not the table.So in se11 when i give that structure name in database table field, its shows all the field in that structure, but not the data stored in that field.
    So my question is how to find out that particular structure is used in which tables,so that i can view data stored in that structure?
    Thanking you guys in advance.
    Regards,
    Jitendra

    Dear,
    When you click on the technical information it will give the structure name and field, double click on the structure and it will take you the display structure screen, there you will have the where-used List icon (Ctrl + Shift + F3) at the top , click on that and it will show the options, select Database tables and execute, it will give the tables related to the structure, you can explore the list of tables and find where your required field is stored in them.
    Thanks & Regards,
    Vijaya Bhaskar A

  • How can we block, a particular payment term for a particular vendor.

    Dear Experts,
    How can we block, a particular payment term for a particular vendor.
    BR.
    Chandra

    Hi Chandra,
    If you want to block payment term for "particular vendor" then you need to define a validation rule.
    As per my understanding, the link provided by Owen will block term for all vendors.
    Regards,
    Ankit K. Agarwal

Maybe you are looking for

  • Unable to resolve setting of dependent jar file in ear

    Hi, I have an .ear file which as an ejb.jar and dependent.jar file. Now i set the classpath in MANIFEST.MF of ejb.jar and tried to deploy in weblogic server7.0 but my ejb is not able to identity my dependent.jar its throwing class not found error. I

  • How can I monitor folders in itunes?

    Hi, I want to specify a folder (can use the itunes music folder location) and I want itunes to monitor that folder and add any new audio files added and remove any files that are dead (not there anymore). Is there a way for it to do this? I know Wina

  • HT4995 I lost my ipod touch--how do i find it using location services?

    I lost my ipod touch-how do I find it using Location services?

  • FM to Add Leading Zeros

    Hi, I used a FM before that adds leading zeros but I cant remember it. Any ideas guys? Thanks in advance. Kenny

  • Detecting Domain in a PDF?

    I know you can't directly get an application path in Adobe, but how can I use Java to detect the domain as the root value for a link. My problem is I have three Web sites with an Identical PDF on them. The only difference is I need them to stay on wh