Tab Page Navigation Problem???

Hi All:
I am facing problem with tab page. when I save some record at the last tab then it moves towards its previous tab page. May be navigation becomes wrong.Record is saved. What would be the solution? Can anyody tell me. Thanks
Ali

Just two wonders...:
1) Are the blocks ordered in the Object Navigator ... as they appear in the tabs of your tab canvas...????
2) Is there in the 'save trigger' or in other place (which take place in the save process) a "go_item(<itemname_of_the_previous_tab>)" or "go_block(<block_resides_in_the_previous_tab>)"...????
Greetings....
Sim

Similar Messages

  • Tab pages - Navigation Problem

    Hi,
    What key I should use, if I want to navigate to other blocks in the same tab page.
    Thanks
    KC
    null

    I had this same problem. I created a TAR on Metalink about it and Oracle's response to me was to see Note#1016812.4 "KEY-NXTBLK AND KEY-PRVBLK DO NOT FIRE ON TAB PAGE".
    Basically, those triggers perform differently for tab pages.
    Solution Description:
    =====================
    The KEY-NXTBLK and KEY-PRVBLK triggers are re-defined to mean "Next Tab Page" and "Previous Tab Page" when on a tab page.
    However, you can put calls GO_ITEM or GO_BLOCK into a WHEN-TAB-PAGE-CHANGED
    trigger instead of the KEY-NXTBLK and KEY-PRVBLK triggers. This way, when
    Forms thinks you want to change tab pages, you can change blocks.
    Solution Explanation:
    =====================
    The KEY-NXTBLK and KEY-PRVBLK triggers were redefined to be consistent
    with the Microsoft standard for tab sheets.
    null

  • 11g Forms Tab-Page Navigation

    I am using Forms 11g on Solaris.
    A main navigator form opens another form which has a content canvas, tab-page canvas and (3) stacked canvases.
    The problem I am having is with tab-page navigation.     CTRL+TAB ( next ) and CTRL+SHIFT+TAB ( previous )
    As long as I do not initiate navigation from an item on a stacked canvas, navigation is as expected ( between tab pages only ).
    However, navigating from an item within a stacked canvas causes navigation to the parent form.
    Repeating the tab navigation keys from the parent form returns to the called form.
    Note that both key-combinations simply toggle back and forth.
    I have found no documentation on tab-page navigation so any help / insight is greatly appreciated !
    Mike

    Hi Soofi !
    Changing block order in the called form does not affect the navigation between tab pages.
    Note in my question that the resulting undesired navigation is to and from the calling form ( which only has one block ).
    Navigation between items and blocks works as expected.
    To reiterate -
         The only navigation that fails is when I attempt to CTRL+TAB or CTRL+SHIFT+TAB to another tab page from within an item on a stacked canvas.
         Attempting this navigation results in moving the cursor focus to the calling form.
         Repeating the attempt from the calling form moves back to the called form.
         None of your methods mention navigation between forms .
    Thanks for your interest.

  • Page navigation problems

    Hi all,
    I am new to JSF, and I am trying to implement a simple page navigation which displays some values that the user entered. The values are stored in a managed bean. It's a simple login form. I am using NetBeans as my IDE. My page navigation is set up as follows:
    <?xml version="1.0" encoding="UTF-8"?>
    <faces-config version="1.2" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_1_2.xsd">
    <navigation-rule>
    <from-view-id>/index.jsp</from-view-id>
    <navigation-case>
    <from-outcome>login</from-outcome>
    <to-view-id>/login.jsp</to-view-id>
    </navigation-case>
    </navigation-rule>
    </faces-config>
    And my JSF page is setup as follows:
    <?xml version="1.0" encoding="UTF-8"?>
    <jsp:root version="1.2" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:webuijsf="http://www.sun.com/webui/webuijsf">
    <jsp:directive.page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"/>
    <f:view>
    <webuijsf:page binding="#{index.page1}" id="page1">
    <webuijsf:html binding="#{index.html1}" id="html1">
    <webuijsf:head binding="#{index.head1}" id="head1">
    <webuijsf:link binding="#{index.link1}" id="link1" url="/resources/stylesheet.css"/>
    </webuijsf:head>
    <webuijsf:body binding="#{index.body1}" id="body1" style="-rave-layout: grid">
    <webuijsf:form binding="#{index.form1}" id="form1">
    <webuijsf:staticText binding="#{index.staticText1}" id="staticText1" style="position: absolute; left: 144px; top: 72px" text="Enter user name:"/>
    <webuijsf:staticText binding="#{index.staticText2}" id="staticText2" text="Enter password:" />
    <h:inputText binding="#{user.name}" id="txtUsername" />
    <h:inputText binding="#{user.password}" id="txtPass" />
    <h:commandButton action="login" binding="#{index.btnLogin}" id="btnLogin" value="Log in"/>
    <h:inputText binding="#{index.txtUsername}" id="txtUsername"/>
    <h:inputText binding="#{index.txtPass}" id="txtPass"/>
    </webuijsf:form>
    </webuijsf:body>
    </webuijsf:html>
    </webuijsf:page>
    </f:view>
    </jsp:root>
    The web application compiles and deploys with no problem. However, when I click the btnSubmit button, it does not redirect me to the page specified in the faces-config.xml file. Can anyone tell me what I'm doing wrong? Thanks for any help you can provide.

    I'm not sure what you are trying to do here.
    Are you trying to map the commandButton's action="login" to your rule <from-outcome>login</from-outcome>?
    I think you want the commandButton to map to a method in your backing bean. E.g. action="#{bean.goToLogin}" .
    The method goToLogin() should then return the string, "login" . This will be caught by your navigation rule <from-outcome>.
    <from-outcome> maps to a specific string returned from a method called in that page.
    But in this case if you just want redirection, it should be easier just an outputLink pointing to login.jsp.
    Hope this helps!

  • Tab page navigating

    Hi!
    I have a canvas wich consist of four tab pages. Each tab page has a datablock. When the user clicks a tab, the cursor should be set in the datablock of the tab page. Any suggestions how to implement this?
    My problem is that I have not found a function that returns the active(the one that is visible to the user) tab page.
    Regards,
    Morten

    I think that you can use When-Tab-Page-Changed trigger on form level. In this trigger you can test :SYSTEM.TAB_NEW_PAGE variable.
    IF :SYSTEM.TAB_NEW_PAGE = ... THEN
    GO_BLOCK(...);
    END IF;

  • Tab page canvas problem

    hi
    i have a tab page canvaz in my form
    width of my canvaz is very big
    i set horizontal scroll bar for my window and for my datablock
    but in runtime the horizontal scroll bar does not work.
    but if my canvaz be a content it works well.
    please help me.
    thanks.

    Hi Soofi !
    Changing block order in the called form does not affect the navigation between tab pages.
    Note in my question that the resulting undesired navigation is to and from the calling form ( which only has one block ).
    Navigation between items and blocks works as expected.
    To reiterate -
         The only navigation that fails is when I attempt to CTRL+TAB or CTRL+SHIFT+TAB to another tab page from within an item on a stacked canvas.
         Attempting this navigation results in moving the cursor focus to the calling form.
         Repeating the attempt from the calling form moves back to the called form.
         None of your methods mention navigation between forms .
    Thanks for your interest.

  • Tab page navigation

    Hello,
    I am using Jdeveloper Studio Edition Version 11.1.1.1.0
    I want to navigate between tab pages. In my form there are three tab pages. From the first tab page i want to go to other tab pages conditionally.
    If user enters 2 into a text field and click on a button then cursor will go the 2nd tab page. If user enters 3 into a text field and click on a button then cursor will go the third tab page. Please help me.
    Thanks

    Hi,
    tab pages have a a disclosed attribute in their showDetailItem component
    http://adfui.us.oracle.com/projects/adf.faces/multiproject/adf-richclient-api/tagdoc/af_showDetailItem.html
    If you use EL to reference a managed bean and then return true/false dependent on what the user typed into the field, then after partially refreshing the panelTab component, you should see the switch in the component tab
    Frank

  • Tab Page Navigation Issue

    I've two tab page tab1 and tab2.
    tab2 contains three tab page tabA,tabB and tabC.
    In tab1 i've a commadButton.
    Now, if i click on this commandButton then i want to go into tabB which is inside of tab2.
    Please give any idea how can i navigate in tab2

    Hi puthanampatti,
    Thanks for your reply.
    Here sdi3 means showDetailItem3. I've tried but one error is raised.
    Error is : identifier sdi3 not found.
    My java code is:
    public String showTab() {
    sdi3.setDisclosed(Boolean.TRUE);
    AdfFacesContext.getCurrentInstance().addPartialTarget(sdi3);
    return null;
    i've a showDetailItem(Tab Page) which id is sdi3.
    But error raised.
    How to write it and solve it?

  • IDE bug? Page navigation problem.

    Is there any way to see all of the buttons on a page in the Page Navigation screen?
    When you left click on the page in the Page Navigation screen, it expands, but not enough to see all of the buttons.
    I have a page with a lot of buttons on it, and I can only see the first 10 of them and cannot find a way to scroll down.
    Thanks.

    A bug report has laready been filed for this issue.

  • Tab page refresh problem

    Hi,
    Forms Builder: 6.0.8.22
    Runtime version: 10gAS Rel 2 (Form developed in 6i and compiled and run on 10g)
    We have a form with multiple tabs based on single blocks.
    When i click on any tab other than first tab (i will call it as base tab), after sometime, control retuns to the base tab if there is no activity on that tab.
    There is no trigger or timer or delay used in this form.
    I am wondering how and why this is happening.
    Has anyone encountered this problem before ?
    Thanks
    AT

    And where is the focus after you have clicked on the new tab? In the page represented by the tab or the base tab?
    Additionally, are the pages real tabbed canvases or, as is common these days, stacked canvasses made to look like tabbed canvasses?
    (The reason for this is that a set of tabbed canvasses are loaded at startup as a set, potentially making loading take a long time while stacked canvasses are loaded as needed making the initial load time less while making navigating to the new stacked canvas take longer.)

  • Page navigation problem in adf application.

    Hi All,
    I developed one application in ADF that is working fine in integrated WLS. But While deployed in standalone WLS the page is not navigating.
    in my application i created two pages like in First page search with table.second page details of particular row from table for that oi used
    Execute with perms with key value method from Data-control in table for row i changed to command link when i click on link the page should be navigated to details page
    in integrated WLS but its not working in standalone WLS. please give some solution.
    Regards,
    Shankar

    Shankar,
    Did you try searching for the problem first?
    Check the URL that you are using to run your application in the standalone WLS (and compare it with the URL that you use with the integrated WLS).
    I'd guess your standalone URL has ".jspx" or ".jsf" at the end of it, which means you're running a page directly and not a taskflow view activity. Try removing the ".jspx" or ".jsf" from your URL and see what happens.
    For more explanation, you can search the forum or read the Fusion Developers Guide for ADF - this question is asked about once or twice a week.
    John

  • URGENT! TAB + Folder navigation Problem

    Hi!
    I've got a portal page with two tabs (let's say tab1 and tab2). Inside each of them I have added a portlet(wich is in fact a folder pubilshed as portlet - let's say folder1 and folder2)
    1 - I click on tab1.
    2 - I click on folder1 - it's subfolders are shown. Ok
    3 - I click on tab2
    4 - I click again on tab1
    5 - Instead of folder1, it's subfolders are shown. !!!
    I wan't the page to go to the parent folder each time a tab is selected.
    Thanks in advance

    I have similar problem with tabs and parameter persistence.
    I have portlet with submit form on one page tab.
    Problem is, if user submits data on form, and then moves on other tab, all submited data are send via url parameters again....
    How can I avoid this kind of behaviour..
    I find many peoples with simillar problem, but no one has find solution or workaround for this problem..
    Please help........

  • ESS page Navigation problem EP7.0 for ERP2004

    Hi
    How are you?
    We made ESS configuration in our new NW04s SP10 portal.
    We use ECC 5.0 as back end. As we can’t install the XSS component for ERP2004 in NW04s, we add java stack in ECC 5.0 machine and installed the XSS and JCO and all there. And imported the BP for ESS 60.2 in portal EP7.0.
    Now everything is working fine that one problem.
    The problem is related to link in portal. When I click the ESS overview menu, I get the the overview with ESS menu inside the page.
    But if I click again in ESS overview menu, it changes to the overview with ESS menu inside the page. If I click again it change to first style. What I mean is, it change the every alternative time. I made all the PCD setting in IMG. And when I get the second view, and if I click in any link, the top level navigation will not work after that.
    Do you have any idea why it is so and how to fix it?
    I appreciate your support.
    Thanks
    Raibin

    It might seem like not a big problem at first, but this can be a major problem. If you are implementing filters and routing their in web.xml, you will not get the intended effect. For example, I use a filter to make sure that the user has logged in before accessing a page in the /app directory. The filter is not applied AT ALL the first time the user tries to go into the /app directory. Any way to make JSF shows the correct URL?

  • Page navigation problem

    Guys,
    I have two pages, each one with table with a hyperlink column. I use the same code in the hyperlink_action method for both (... return "nav-string"...).
    For one table this works, for the other not...
    I can't see a difference - navigation rules are:
    <navigation-rule>
    <from-view-id>/mplist.jsp</from-view-id>
    <navigation-case>
    <from-outcome>toMPDetails</from-outcome>
    <to-view-id>mpdetails</to-view-id>
    </navigation-case>
    <navigation-rule>
    <navigation-rule>
    <from-view-id>/pdsamlist.jsp</from-view-id>
    <navigation-case>
    <from-outcome>toPdsamDetails</from-outcome>
    <to-view-id>pdsamdetails</to-view-id>
    </navigation-case>
    <navigation-rule>Ideas? I'm stuck and/or blind...
    regards
    jbh

    a) Add h:messages on all your pages. Are there any validation or conversion errors?
    b) Are you using an action method on your submit buttons? If so, are the action methods being executed?
    CowKing

  • DataScroller, table page navigation problem

    In my case I have created page with table and datascroller. I navigate from this page to another page and then back. But here is a problem. If I begin, for example, from 3rd page of data scroller and return back, the datascroller alwas positions on first page! I wold like to return on the same page (as indicated on data scroller). What is the solution?
    Regards Simy

    I am experimenting with method setFirst(int) on HtmlDataTable component. Somewhere I have noticed that page on HtmlDataScroller is defined by setFirst(int). So in the moment when I navigate to page where HtmlDataTable is, I set method parameter to appropriate value. This is done in afterPhase method of phase listener, but it obviosly does not work, because only RENDER_RESPONSE is triggered when I return to page. Questions:
    1.) Is using setFirst(int) right way?
    2.) In which phase of lifecycle should be used?
    3.) How to trigger other lifecycle phases, not only RENDER_RESPONSE?
    Regards Simy

Maybe you are looking for

  • The iTunes Store doesn't open on iPad after iOS 7 download

    After I downloaded iOS 7 and opened up the iTunes store, nothing came up. I just see a blank white/black screen depending on which tab (music, movies etc) is selected. I tried restarting the iPad and also switching off and turning the Wifi back on. A

  • Structural authorization - creation of employee number in webdynpro or abap

    Hello Experts, We are facing some problems with the combination of structural authorizations and the creation of a new employee. When we use PA40 to create a new employee this does not give any problem. In the webdynpro we first execute a call transa

  • Problem In Creating Serial Nos

    Hi All,           I am an abaper.I have one issue in CO01 transaction.There is a requirement in my project that Serial No generation has to take month of start date in consideration.I searched for any user exit pasiing start date but none of the had

  • Can't turn off airdrop

    Hello Everyone! I'm in need of some help. My iphone's battery is draining amazingly fast and i'm trying to disable all the useless features, one of them being Airdrop. When I tap on it from the control center and then on "off" it does nothing, aidrop

  • Windows 7 unable to access ReadyNAS

    Hi, I'm having a lot of trouble getting access to my NAS from my Windows desktop computer. I use the NAS to backup my DVD-collection to use it with my media center, and it used to work perfectly without any problems. I have no idea when the problem s