Navigating between different pages

Hi ,
I do have two pages test1.jspx and test2.jspx. How can I link these page . From test1.jspx I need to call test2.jspx and vice versa.I need to have multiple entry points to the pages means I can access test1.jspx or test2.jspx and navigate to other page. I guess in this case an unbounded task flow is ideal. Is there any example to create the unbounded task flow ? What will be the url to access the pages if i am defining an unbounded task flow?
Thanks
Suneesh

Thanks Frank. It worked. I have one more issue. I do have two pages http://localhost:7101/faces/test1 and http://localhost:7101/faces/test2 . test2 is a create form page. On submission of this form the page is frowarding to page1 using the action property. When I am accessing the page2 the url is : test2?_afrLoop=188792691646005&_afrWindowMode=0&_adf.ctrl-state=19nrptpqfx_189. On submission of this page the resulting page1 url is :test2?_adf.ctrl-state=19nrptpqfx_189.Is it possible to redirect to the url http://localhost:7101/faces/test1 after submission ?With out the ?_afr.ctr-state parameters .. Like jsp's send.redirect method rather that jsp: forward kind of action?
Thanks
Sunees

Similar Messages

  • Navigation between different pages is not getting recorded in opescript

    Hi,
    when i tried to record few different pages of an application at a time it wa snot happening in Openscript.Is there any settings that needs to be done to enable this in Openscript.I am using Tester perspective,it is OATS 9.3 version.
    Please help me on this.
    Thanks,
    sai.

    Hi,
    I just enabled a Navigation option for one object in another master and selected the same in the cube. I reactivated the master , cube and checked to see if this navigation values are pulled. But my cube is not pulling the navigation values for this object too.
    Do i need to delete the cube data and load it again in order to get the values of Navigation attribue object? or i just re activate the cube.
    Or there is some problem with my cube. I have copied the standard  cube and i am workin on it.
    Rgds,
    Anup

  • Navigation between different componets in IC Web Client for CRM 7.0

    Once the user click save button in component ICCMP_BT_BUTTON I need to navigate to component ICCMP_BT_SVO that displays the Service Order Data and display the new Service Request that was created.
    How can I do navigation between different componets in IC Web Client for CRM 7.0?
    Thanks.
    Rodolfo Miã

    Hello,
    You can find detailed presentations in the learning maps available on the SAP Service Marketplace http://service.sap.com/rkt-crm for release CRM 2006s, CRM 2007, or CRM 7.0. In case I didn't mention it before, Intent-Driven Interaction (IDI) was first introduced and is only available starting with CRM 2006s and above. In the Interaction Center area, there is a presentation called "Rule Based Automation and Guidance" which covers IDI. I'm not sure if you can access the URL directly, but just in case here it is: [https://websmp104.sap-ag.de/~sapidb/011000358700001162852007E].
    Warm regards,
    John

  • Horizontal menu bar moves between different pages

    Hello,
    I have all of the page properties to the same values; however I am noticing the horizontal menu bar at different levels when I load my pages.  The website is AbileneDentist.com.
    Any idea on what could be causing this to occur?
    Thanks,
    Mark

    Hi,
    I believe, the vertical scroll bar is causing the objects to move.
    To resolve this, you may add a scroll bar to all the pages. To achieve the same:
    From the File menu in Muse, select Site Properties. Set the visibility for the Vertical Browser Scroll bars, to Always.
    Hope it helps,
    Sonam

  • Navigating between different FocusTraversalPolicy

    Ok, I've struggled with this for a bit. I can't quite figure out where I've gone wrong.
    I have a window with some fields in the top of the window, and a JTabbedPane in the bottom. The tabbed pane includes several tabs implemented as separate panels. Each of these panels has a custom focus policy, which allows us to specify the exact order and components for tabbing. The custom policy starts like this:
    public class MyTraversalPolicy extends FocusTraversalPolicy {
        private List componentList;
        public MyTraversalPolicy(Component[] components) {
            componentList = Arrays.asList(components);       
        }When the panel is created, we pass in an array of components in the proper tabbing order, and setFocusCycleRoot(true).
    The window which contains this panel has a different tabbing policy (currently default). Where I'm hitting a problem is at the beginning and the end of my custom tabbing policy. I want to navigate to the appropriate location in the containing window, but can't seem to accomplish this.
    My most recent attempt was to cycle through parent components until I found one with a focus policy, and try to use that to find the next component. It didn't work.
               Container c = focusCycleRoot.getParent();
                while (f == null) {
                    f = c.getFocusTraversalPolicy();
                    if (c.getParent() == null) break;
                    c = c.getParent();
                if (f != null) { --do something here;}Is there an easy way to link focus policies together which I am missing?
    Thanks,
    -Dave

    Thanks Frank. It worked. I have one more issue. I do have two pages http://localhost:7101/faces/test1 and http://localhost:7101/faces/test2 . test2 is a create form page. On submission of this form the page is frowarding to page1 using the action property. When I am accessing the page2 the url is : test2?_afrLoop=188792691646005&_afrWindowMode=0&_adf.ctrl-state=19nrptpqfx_189. On submission of this page the resulting page1 url is :test2?_adf.ctrl-state=19nrptpqfx_189.Is it possible to redirect to the url http://localhost:7101/faces/test1 after submission ?With out the ?_afr.ctr-state parameters .. Like jsp's send.redirect method rather that jsp: forward kind of action?
    Thanks
    Sunees

  • Create separate column pencil icon for navigation to different page from results region

    Hi Gurus,
    I need help on creating column for results region with pencil icon..so that when someone clicks on pencil it should navigate to different seeded page.
    This change i'm looking to apply to seeded page.
    Can I do with personalization this change??
    Please suggest steps.
    thanks,
    mallik

    Malik,
    1.Create an image icon using : Personalizatoin.
    2.You need to extend the controller for catching the event(have fireaction on the above bean)
    3.Based on the event navigate to the destination page.
    Regards
    Sridhar

  • Navigating between several pages

    I have 3 pages - let's say a.jsp to display categories, b.jsp to display products, and c.jsp to display a product
    a.jsp will have a list of categories which will be links. Each link will go to b.jsp, which will display the products associated with the category the user selected in a.jsp.
    Similarly, b.jsp will contain a list of products which will be links. Each link will go to c.jsp, which will display information about the product selected by the user in b.jsp
    I'm using h:commandLink for the links and f:param to pass a number (a means of identification). So for category 1, the param will be 1 and a query is sent to select the products in category 1, if the user selects category 1, (a.jsp to b.jsp) etc. Similarly for the list of products to a specific product (b.jsp to c.jsp)
    I have an 'action' attribute in commandLink, which is a method that returns a String. That String, I have placed in a <navigation-case> element in faces-config.xml, which determines which page the user goes to.
    So far, the navigation from a.jsp to b.jsp is fine. Also, if the user already knows the category, he is allowed to bypass a.jsp and go directly to b.jsp. The navigation from b.jsp to c.jsp in this case is fine.
    My problem is when the user starts at a.jsp and then navigates to b.jsp (this works), but then selects a product from b.jsp, they are not sent to c.jsp. They stay on b.jsp and all the information on b.jsp disappears.
    Does anyone have any insight on how to rectify this problem? Am I going about it wrong? Is there information I am missing?
    Unfortunately, due to privacy issues, I can't post my actual code. I can try to obscure some of my code and post it, but I'm not sure which part is useful.
    Any help would be appreciated.
    Humbly,
    C

    how do the user bypass a.jsp and land on the specific b.jspSome users are, let's say "managers" for a specific category, therefore the category is known when they login and thus, they are taken directly to b.jsp and the products for their specific category are displayed on b.jsp. Sorry I didn't make this clear.
    Meanwhile, some other users are higher level managers for multiple categories and thus, at the time that they login, the category can not be predetermined.
    Sounds like you forgot to pass the category id along to c.jsp.Can you please explain this further? How does c.jsp need the category id? All I need to get the product information is the product id from b.jsp, which I pass in through f:param in the commandLink that is in b.jsp.
    Perhaps I didn't make this clear:
    a.jsp has commandLinks with param category ids. A user selects a category and that category id is passed to b.jsp.
    All products in the selected category and corresponding product ids are retrieved from the database and displayed as commandLinks in b.jsp, with param as product id. Each commandLink on b.jsp goes to a c.jsp and the selected product id is used to retrieve the specific product information from the database.
    Also, when I hover the mouse over the link in b.jsp it says "a.faces#" at the bottom of the browser.
    Thanks in advance for your help.

  • Communication between multiple page flow portlets

    Hi, I am working on weblogic portal 8.1.
    I've been struggling to communicate between different page flow portlets,
    I have a login page flow portlet and i need to submit login details to indeex page after login action is done.
    I am able to do this by using PageUrl class and RequestDispatcher's forward method using definition label of the index page flow portlet.
    but it is not happening again when i logged out.
    If anybody have worked on it, please let me know the soltution.
    Thanks,
    Vidya sagar

    Not sure whether you tried this option(I tried it works for me).
    configuration has to be done is portlet-2:
    =========================
    Create an custom event namely(messageCustomEvent) and also add an action for it for invoking a portlet method getMessage in Portlet-2.
    //Place this method in Portlet-2
    public void getMessage(ActionRequest request, ActionResponse response,
    Event event) {
    CustomEvent customEvent = (CustomEvent) event;
    String message = (String) customEvent.getPayload();
    response.setRenderParameter("message0", message);
    configuration has to be done is portlet-1:
    =========================
    when click on Login in portlet1, in the pageflow code you fire an custom event as shown below
    PortletBackingContext context =
    PortletBackingContext.getPortletBackingContext(getRequest());
    context.fireCustomEvent("messageCustomEvent", form.getMessage());
    return new Forward("success");
    Thanks & Regards,
    Murali.
    ============

  • Page navigation and send parameters between different projects (ADF Faces)

    Hi,
    I am using ADF Faces 11g and have an application which has multiple web projects, I want to navigate between different projects' pages and send form values as parameters. How can i do that?
    Thanks
    Edited by: user12227999 on 16.Şub.2010 01:43

    You'll need to use JavaScript to alter the action url on the form element to achieve that, but it's going to be complex and I'm not too positive on the resulting stability in a 11g environment that often need to send XHR to the server. What's your exact use case? It looks like a bad design to me. Normal external call would be using URL parameters, which is consistent to RESTful strategies. What you want to do is a POST to an external application from another which is quite horrible imho, how will you handle session management? Piping the response from the server could be another option.
    Regards,
    ~ Simon

  • How to navigating between layers?( as if they were pages of a book?)

    I need a good advice on design and navigating between some different layers.
    I am a Adobe Director user, and I am used to think of “navigating between frames”. also frames as pages of a book, while in flash time-frames.
    In Director one can navigate between different frames with each containing many components.
    And this does not make any conflict since the frames are some kind of pages of a book, you go to any page you want and back again.
    I am designing math training application in falsh-CS6, in which the user should be able to navigate from start-menu by choosing an
    exercise number and then go to the wanted exercise and then create an exercise by a create_excercise button, there back again to menu to choose another and so on. How I can do it clean in flash?
    As I see I have to place everything in the same “frame” in flash, and it becomes little practical and confusing since there
    are many things all gathered in the same frame, where they should instead appear in their respective “pages”.
    I have done some works in flash:  made 4 layers in flash with the following contents:
    layer 1: for my menu( contains 3 buttons, q1bt, q2bt, q3bt)
    layer 2: for question 1( contains 3 buttons  makeQ1bt, chekAns1bt, and  gotoMenuBtn)
    the same is for layer 3 and 4.
    I see no options rather than making different components visible or invisible whole way! but is there a better way?
    I appreciate any help.

    Flash does allow more than one frame - that is one of the foundations of working with it.  You can restrict yourself to using just one frame if you like, but it is not required and very often people use the timeline instead of keeping things in one place.
    I have no familiarity with Director, but what you just described sounds like designing using the timeline of Flash.  With Flash you can use the timeline in the fashion you just described where different pages occupy different frames of the timeline and you can navigate from one to another.  You are not stuck with one frame in Flash... you can create a new keyframe at any point along the timeline and add new/different content to it, while retaining a menu that exists across all pages (or not - it's your choice)..

  • How can I share values between different jsp pages?

    Hi,
    I'm doing a jsp, bc4j application (JDeveloper 9.0.3), and I need to share some values between different jsp pages. To do this,
    I have used the tag <jsp:usebean.....></jsp:usebean> in this way:
    on pageone.jsp
    <jsp:useBean id="param" scope="session" class="MyPackage.Parameters" ></jsp:useBean>
    on pagetwo.jsp     
    <jsp:useBean id="param" scope="session" class="MyPackage.Parameters" ></jsp:useBean>
    and so on, in order to refer to the same instance of the class "Parameters".
    After deploying, the application works well only if the client is the same pc where the AS resides, otherwise the variables of "Parameters" are null.
    Please, could you help me?
    Thanks
    Nunzio.

    I am seeing an indication on 9.0.3 that static includes are not static, but instead always dynamic. The compiler generates a call to the included page, and doesn't include the content in the calling page as it should.

  • Navigation between pages

    Dear All,
    A few days ago i started to work with webcenter portal and i have a problem:
    My use case:
    I have 2 pages(both based on default template), each of them contains single task flow with single page fragment:
    page1 - contains task flow tf1.xml with page fragment view1.jsff
    page2 - contains task flow tf2.xml with page fragment view2.jsff
    I need to navigate between this 2 pages with custom buttons(or links) which have to be created inside page fragments.
    I added both pages to default-navigation-model.xml and after running the application i am able to navigate between them using links, which template creates dynamiclly(taking all the default-navigation-model's content into iterator and creating navigation links on page load).
    The code from template file(skipping the iterator):
    <af:commandLink id="pt_cl1" text="#{node.title}"
    inlineStyle="font-size:small;#{node.selected ? 'font-weight:bold;' : ''}"
    action="pprnav"
    disabled="#{not node.navigable}"
    actionListener="#{navigationContext.processAction}"
    clientComponent="#{node.attributes['Target'] == '_popup' ? true : false}">
    <!-- pass node to processAction for setting current selection and navigation -->
    <f:attribute name="node" value="#{node}"/>
    all this works just fine.
    Now i need to create a button in my view1.jsff(page fragment from first task flow on page1) , which would navigate me to my second page.
    I am able to do this with goLink setting
    navigate="#{naviagtionContext.defaultNavigationModel.node[page2].goLinkPrettyUrl}", but this reloads the whole template what i don't need, and also i would like to add some actionListener to this link or button later so i need to navigate using commandLink or commandButton.
    The example from page template doesn't work for my pages:
    My commandLink looks like this:
    <af:commandLink id="pt_cl1" text="Go page 2"
    action="pprnav"
    actionListener="#{navigationContext.processAction}"
    clientComponent="false">
    <f:attribute name="node" value="#{navigationContext.defaultNavigationModel.node['page2']}"/>
    </af:commandLink>
    but second line - action="pprnav" throws some empty screen and nothing else happens(guess it's because there is no partial page refresh in this case).
    Without this line it works, i was able to insert some output text fields in my page and see, that the value of
    #{navigationContext.defaultNavigationModel.currentSelection.title} is changing properly(when i removed the action="pprnav" line, of couse without it navigation itself does not happen).
    If i drop taskflows into my default-navigation-model.xml, skipping the pages action="pprnav" work fine(no empty screens appear and navigation happens), but i need to use the pages.
    Is there any replacement to action="pprnav", to be able to navigate between these two pages?
    Or may be there is another method to do this, which i couldn't find in Google?
    BR,
    Artur

    It's an old thread, but I keep running into this issue every now and then.
    The clue is:
    Any task flow that uses the navigation model to trigger navigation within an application must include a parent-action activity named "wcnav_parentAction" in the task flow definition that propagates the "wcnav_outcome" to the root level, as follows:
    <parent-action id="wcnav_parentAction">
    <root-outcome>wcnav_outcome</root-outcome>
    </parent-action>
    See the following Support note:
    Invoking A WebCenter Page From ADF Taskflow Failing In WebCenter 11.1.1.6 and Opens an Empty Popup Window [ID 1450568.1]
    Jaap

  • How can I link text boxes between different Master Pages in InDesign?

    I want to link text boxes back and forth between different Master Pages in InDesign. How can I do this?

    I'm interested to know what it is you're trying to achieve - can you explain what you want your text to do?
    Regards,
    Malcolm

  • How to remove white fade while navigating between pages?

    I created small web page with 4 buttons which each of them leads to other page eg., Home,Gallery, Contacts,Reviews, but when i'm navigating between them there is annoying white flash! Is it possible to remove it?
    P.S. I uploaded my site to businesscatalyst Home
    Thank you!

    That is so strange, I just tried on my OS X Safari and WIN 7 Chrome and everything just fine, but when I'm trying on same OS X Chrome it has white flash while transitioning through navigation. Thanks anyway mac_heibu!

  • Can i share live documents in pages between different apple devices with different owners

    Can i share live documents in pages between different apple devices with different owners

    iTunes: How to share music between different ... - Apple - Support

Maybe you are looking for

  • How to modify changes of table control data in PAI

    I have a table control where the columns are brought by dict fields.I am able to bring data into table control through an itab. Now what i want is whenever user edits data in table control and clicks on save button the corresponding changes should be

  • Can PMAC be run Daily and Can we see the Batch Update Cost Daily?

    Dear Gurus, My Client wants to see Daily Updated Cost each end of day Through PMAC. Is it possible to run daily and Can we also see the COGS too. Now we have a Requirement here : My Clinet During the Production Process uses : Boiler Fuel, Chlorine, E

  • Can't seen Faces on iPhoto, but can on ATV and iPod Touch!

    So, this is very odd. I recently upgraded my Apple TV to the v3.0 software, and synced Faces across. It looks very similar to iPhoto (same cork board, for example), though I don't think the ATV has the actual Faces tech (no focussing on the face duri

  • Running OAS plsql toolkit in HTML DB

    Hi, we currently have a lot of code written using the OAS plsql toolkit, running on an Oracle 8.1.6 database. These are primarily pages that are hosted on the internet. I was wondering could be migrate this plsql code to Oracle 10G, dispense with the

  • Integrating Outlook (Meeting Request) with JSP/ASP

    Hi there I am new to this forum. I was wondering if anyone knew a way where I could have a form in ASP or JSP for setting up meetings, and this form sends in meeting requests(instead of mail) to the recipients' outlook mailbox? Thank ya all.