Navigate between reused components

HI,
I have a component which reuses 2 different components.,
I have a require ment like,
when i press on a button in the child 1 component's view it should navigate to view of child 2 component...
How can I acheive this.
thanks in advance,
Arjun.G

Hi,
When everr you are trying ton use the other componetns in your componenet then we can see the Inrerface views.
We have to use the Compoenent Usage for these component inside our compoenent
Create the Outbound and Inbound plugs and navigate accordingly.
We can see the view to be displayed when ever we cretae the Links between them. When we create the navigattion link then we can give the respective view name.
when i press on a button in the child 1 component's view it should navigate to view of child 2 component...
On the view of the Child1 componenet create a Button and when we create the links or Plugs then we need to give the View name of the child2 component. ie we have to cretae the Outbound plug for the Child1's View and repsective Inboind plug for the Child2's  View. we can create the Navigation link and can be done this way.
Embed these views into the Window of your component in the view contianer element.
Check this link for the example -
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/2e71ce83-0b01-0010-11a4-98c28a33195f
Regards
Lekha

Similar Messages

  • How to open and navigate between human task forms in a same page?

    Hi
    I use Oracle BPM 11.1.1.5
    I have a question about taskflows in BPM Application.
    In ADF web application, I create a sipmle task flow and insert view id and bind these to jspx pages, my pages are opend in same page when
    return an outcome.
    For exapmle I have three pages like A,B,C.
    In task flow, insert three view ids and bind to A,B,C.
    My first pages is A, and when outcome is B navigate to B, when my outcome is C then navigate to C in a same page not separate pages.
    But my problem is here.. in BPM Application when create task forms, every task has a separate task flow that there exist a single view id and a wild card flow in it.
    In BPM workspace when initiate human task form is closed, I should press refresh button to see next human task form in task list table.
    I tried to create a simple task flow and insert human task forms in it and navigate between these.. but show human task form in wrong display and don`t show some component and human task payload.
    Now, my question : How to open and navigate between human task forms in a same page like software installation?

    Having a separate Data Control for each human task is normally the case. There is a way to assign multiple human tasks to a single data control (and one task flow), but I don't think that this is going to help you with what I think you're trying to do.
    If your human task is called "EmployeeDetail", then you'd use the data control associated with this for the UI pages in the task flow diagram that is associated with this human task. For example, you might have a first page that has just the basic employee information - the fields (at least the ID field) would come from the EmployeeDetail data control. When the end user clicks "Next", you might have this UI page flow to a second UI page in the task flow diagram that has the employee's address information. You might place the address fields from the EmployeeDetail data control onto this second UI page.
    You might be asking how the work item instance can automatically flow to the next interactive activity in the process while staying inside the first interactive activity's human task's task flow diagram. This is not how it works - the task flow diagram models the end user interaction while inside a single human task that is tied to a specific interactive activity in the process. If you want a the end user to be able to move the instance through multiple interactive activities in the process in one interaction, look at "Activity Guides". Activity Guides do a nice job of this.
    Dan

  • How can we navigate between two windows of same component in webdynpro ABAP

    Hi
    how can we navigate between two windows( not views ) of same component in webdynpro ABAP. its an urgent requirement
    Thanks in advance.
    Regards
    Laeeq

    Hi Laeeq,
    You cannot navigate between windows of one component. You can only call a dialog box showing the contents of a second window, or you can embed the contents of a window of a different component.
    Just add all the views you need to the one and only main window of the component.
    Ciao, Regina

  • View Link and and navigate between pages problem...

    Hi, everyone! Hope someone can help with my problem. In DB I have one table with informationa about Employees and Jobs. From this one table I made one EO from which I made 2 VO - EmployeeVO and JobsVO. I link these two VO with ViewLink - EmpJobVL (1 to 1 realtionship).
    Then I created 2 .jspx pages. In one page I droped EmployeeVO but in second page I droped JobsVO. In page template I put button with which I can navigate between these two pages.
    The problem is... when I run my employee page and navigate to correct record with "next" button and then try to navigate to jobs page then in jobs page I can't see correct record. I always see there first record. Why it is so and what can I do?
    Hope that someone helps me,
    Best regards, Debuger!

    Hi Debuger,
         No probs, U can keep ur Jspx as such u just need to clean up ur PageDefs..... Dont struggle more urself its such a easy job...
         Delete all ur page def entries and then have a copy of ur jspx coding in a notepad and delete that too....
    make ur jspx and page def a fresh one re-drag ur VOs and paste ur jspx codings again
    Ur VOs will get binded automatically......... :)
    Regards,
    Suganth.G

  • Best method for passing data between nested components

    I have a fairly good sized Flex application (if it was
    stuffed all into one file--which it used to be--it would be about
    3-4k lines of code). I have since started breaking it up into
    components and abstracting logic to make it easier to write,
    manage, and develop.
    The biggest thing that I'm running into is figuring out a way
    to pass data between components. Now, I know how to write and use
    custom events, so that you dispatch events up the chain of
    components, but it seems like that only works one way (bottom-up).
    I also know how to make public variables/functions inside the
    component and then the caller can just assign that variable or call
    that function.
    Let's say that I have the following chain of components:
    Component A
    --Component B
    -- -- Component C
    -- -- -- Component D
    What is the best way to pass data between A and D (in both
    directions)?
    If I use an event to pass from D to A, it seems as though I
    have to write event code in each of the components and do the
    bubbling up manually. What I'm really stuck on though, is how to
    get data from A to D.
    I have a remote object in Component A that goes out and gets
    some data from the server, and most all of the other components all
    rely on whatever was returned -- so what is the best way to be able
    to "share" data between all components? I don't want to have to
    pass a variable through B and C just so that D can get it, but I
    also don't want to make D go and request the information itself. B
    and C might not need the data, so it seems stupid to have to make
    it be aware of it.
    Any ideas? I hope that my explanation is clear enough...
    Thanks.
    -Jake

    Peter (or anyone else)...
    To take this example to the next (albeit parallel) level, how
    would you go about creating a class that will let you just
    capture/dispatch local data changes? Following along my original
    example (Components A-D),let's say that we have this component
    architecture:
    Component A
    --Component B
    -- -- Component C
    -- -- -- Component D
    -- -- Component E
    -- -- Comonnent F
    How would we go about creating a dispatch scheme for getting
    data between Component C and E/F? Maybe in Component C the user
    picks a username from a combo box. That selection will drive some
    changes in Component E (like triggering a new screen to appear
    based on the user). There are no remote methods at play with this
    example, just a simple update of a username that's all contained
    within the Flex app.
    I tried mimicking the technique that we used for the
    RemoteObject methods, but things are a bit different this time
    around because we're not making a trip to the server. I just want
    to be able to register Component E to listen for an event that
    would indicate that some data has changed.
    Now, once again, I know that I can bubble that information up
    to A and then back down to E, but that's sloppy... There has to be
    a similar approach to broadcasting events across the entire
    application, right?
    Here's what I started to come up with so far:
    [Event(name="selectUsername", type="CustomEvent")]
    public class LocalData extends EventDispatcher
    private static var _self:LocalData;
    // Constructor
    public function LocalData() {
    // ?? does anything go here ??
    // Returns the singleton instance of this class.
    public static function getInstance():LocalData {
    if( _self == null ) {
    _self = new LocalData();
    return _self;
    // public method that can be called to dispatch the event.
    public static function selectUsername(userObj:Object):void {
    dispatchEvent(new CustomEvent(userObj, "selectUsername"));
    Then, in the component that wants to dispatch the event, we
    do this:
    LocalData.selectUsername([some object]);
    And in the component that wants to listen for the event:
    LocalData.getInstance().addEventListener("selectUsername",
    selectUsername_Result);
    public function selectUsername_Result(e:CustomEvent):void {
    // handle results here
    The problem with this is that when I go to compile it, it
    doesn't like my use of "dispatchEvent" inside that public static
    method. Tells me, "Call to possibly undefined method
    "dispatchEvent". Huh? Why would it be undefined?
    Does it make sense with where I'm going?
    Any help is greatly appreciated.
    Thanks!
    -Jacob

  • How can i navigate between windows?

    Hi.
      Experts
        I want to navigate between windows.Because i am making a project of Guest House management in webDynpro.So many many screens are there to built and link.I am planning to make a single webdynpro component for it.
    Is this right?If yes Tell me how can i navigate between windows.
       (like room request to allocate room and many other window).
    Regards
    Sunny.

    HI Sunny
    If You want to make a window DEFAULT follow these steps
    1) Suppose if you have 2 windows say Window1 and Window2
    2) Double Click on your Application
    3) In Application <b>Properties</b> --><b>Interface View</b>
    you will get two interface views Window1InterfaceView and Window2InterfaceView
    4) Select which ever window you want to make as default
    and make your view in desired window's <b>DEFAULT </b>property to <b>true</b>
    Best Regards
    Chaitanya.A

  • How to make link between xcelsius components with sap data using Web servic

    Hi all,
    I have a doubt regarding connection between Xcelsius components and SAP data.
    I created one Web service using Function module and made a connection between xcelsius and that web service using binding URL. It shows imput and output parameters perfectly.
    But I cant get any idea as to how to connect Xcelsius components with these parameters.
    Can anybody help me out..
    please its urgent.
    Thanks,
    Simadri

    Have you bound your output parameters to ranges of cells? Select the item, then click the icon to the right of the Insert In: box and select the cells.
    Add a spreadsheet component to your chart and bind it to the cells, then preview the model. Do you see the data coming through?
    If you do, then you can click File > Snapshot > Export Excel Data. Then close Preview mode, and import data from spreadsheet and select the sheet you just exported. This gives you real data to work with when designing the dashboard.
    Hope that helps.

  • Navigate between records, ViewLink problem...

    Hi, all! I will try to explain my problem. If something is not clear the pleas let me know.
    So, I have two VO: UzglabasanasDati and VidesDati. These VO have related with VL (UzglabasanasDati_VidesDati1) with 1 to 1 relationship. When I open UzglabasanasDati VO then I can navigate records, please see: http://my.jetscreenshot.com/2677/20110427-gqjl-85kb
    But when I open VidesDati VO the I can't navigate between records, pleas see: http://my.jetscreenshot.com/2677/20110427-6dvw-89kb
    In my case I need that when I open UzglabasanasDati Form (jspx page) then I can navigate records and then go to the correct VidesDati Form (jspx page) record (this I can do with my created VL UzglabasanasDati_VidesDati1) BUT I also need to navigate on the other hand - open my VidesDati Form, navigate between records and then go to UzglabasanasDati Form correct record. (This I can't do with the same VL UzglabasanasDati_VidesDati1).
    I do not understand where I am wrong? :( And what to do to resolve this problem? If You need more information, let me know.
    Hope for Your help, best regards, Debuger!

    Hi,
    I think that things are bit confused here,
    First of all if you are already filter VidesDati from UzglabsanasDati, you cannot see other rows than the ones pointing to UzglabsanasDati.
    That is why you cannot do the opposite filter. The first is already filtered.
    To my Opinion, you need Another Two different ViewObjects with the opposite Link.
    With Both Links on the same VOs, you will always have a VO filtered as a child.
    Hope this Will Help You
    Regards,
    Dimitris.

  • About navigate between ie pages in web dynpro for abap

    hi, all
      I want navigate between views, but the view in two ie page.
      How can i do it?
      Thanks for your help!

    hai Sapian,
    To navigate between two views you have to create navigation link between two views.First create inbound and outbound plugs for two views.
    Then in the window u embed the two views.u have to right click the outbound plug of first view and create navigation link.In the information box that comes u give the inboung plug of second view.Now the navigation link is created.
    Then suppose u design like, on clicking a button in first view u want to navigate to second view.For that button, create action.In the method that comes automatically after u create action, u just create a code, by code wizard for calling the second view.
    In the action method u click code wizard and check start navigation .select the outbound plug of first view and enter. code is written automaticaaly to call second view.The generated code will look similar to this.
    WD_THIS->FIRE_TORESULT_PLG(
    Reward me if helpful
    S.Ramesh

  • Can Partial Trigger Work between Two Components Which Are in Two Pages?

    Scenario: Some output text components in page one while a SelectOneChoice and a InlineFrame are in page two. At first the resource attribute of inlineFrame was set to point to page one. When changing the value of SelectOneChoice, the values of those output text will be expected to change accordingly. I tried to make SelectOneChoice to be the trigger of those output text components, but found that SelectOneChoice can't be seen when attempt to edit the value of PartialTrigger attribute of those output text components. Then I tried to set the ID of SelectOneChoice as the value of the InlineFrame component, but failed getting the wanted result again.
    Problem: How to get a partial refreshing effect between two components that are in two different pages? Can partial trigger work in this scenario?
    Thanks for your interest!

    Hi,
    Sorry, you can't achieve that the way you're doing it. If you're using 11g, however, you could do that using regions.
    Regards,
    ~ Simon

  • Navigate between StandardTile and IconTabFilter

    Hi,
    is it possible to navigate between a StandardTile and an IconTabFilter? Both items are defined in one view via XML.
    So if you click on  StandardTile "Backgroundjobs" you should be navigate to IconTabFilter Backgroundjobs to see which Job is in status error.
    Best regards.
    Dominik

    Yeah, you can. In the click event of the tile, you can do
    yourIconTabBar.setSelectedKey('key2);
    Say, you can set the key property for the Icon Tab filter of Background jobs as Key2.

  • Muvo txfm can't navigate between audible's audiobo

    Hi,
    I'm having trouble figuring out how to navigate between different sections of an audiobook. For example if a title is split up into separate files i.e. part -3, I can listen to the first part but I can't find scroll to find parts 2-3. When I try scrolling the player freezes, and for some reason audiblemanager stores the audiobooks in the root directory(?)
    If anyone could help, I'd greatly appreciate it.
    Thanks!

    Nevermind. Just figured it out.
    FYI for any other audible user having this issue:
    The player has a problem navigating between audible files if they were batch loaded (i.e. selecting a whole set at a time on Audible Manager and then dropping them into the player.) If the files were added one at a time on Audible Manager the player navigates thru all of them just fine.

  • Context binding between different components using component interface cont

    Please tell me the procedure how to do context mapping between different components ......
    Please post the procedure ASAP.

    Hi Koti,
               Check this
    <a href="/people/bertram.ganz/blog/2007/01/19/new-web-dynpro-java-tutorial--component-interface-definitions-in-practice:///people/bertram.ganz/blog/2007/01/19/new-web-dynpro-java-tutorial--component-interface-definitions-in-practice
    <a href="https://www.sdn.sap.com/irj/sdn/wiki?path=/display/wdjava/usecomponentsinbiggerWebDynproprojects%28componentization%29&">https://www.sdn.sap.com/irj/sdn/wiki?path=/display/wdjava/usecomponentsinbiggerWebDynproprojects%28componentization%29&</a>
    regards
    Sumit

  • My iPad is stuck on a blue screen.  It will not let me search or navigate between bookmarks.  The games all work but Safari is stuck on blue screen

    My iPad is stuck on a blue screen.  It will not let me search.  It is stuck on Google search page.  I cannot get out of there or navigate between bookmarks.  Can you help me, please.

    Hi wolfsong.warrior,
    Reset your device: Press down on the Home and Wake/Sleep buttons at the same time and continue to hold them until the Silver Apple appears (no data will be lost). Once the Home screen comes back up, check to see if everything is working correctly now.
    Cheers,
    GB

  • What is relationships between Different components of SAP NETWEAVER.

    Hi all
    What is relationships between Different components of SAP NETWEAVER like
    SAP EP, SAP XI, SAP BW , SAP WAS ,SAP MI.
    or What is link between  Different components of SAP NETWEAVER.
    Thanks in advance.
    Naresh-

    Refer this link:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/ee/275c42b4e05542e10000000a1550b0/frameset.htm
    Regards,
    ravi

Maybe you are looking for

  • BW - Purchasing Reports..

    Hi, I need your help on getting the below listed custom reports out of Purchasing Infocubes.  Can you please share your information if you would have worked on these. These reports are not available as standard. 1. Miniority Vendor Report. 2. Spend A

  • IMac-27inch model (late 2012) running slow after Mountain Lion 10.8.5 supplemental update

    I have the iMac 27-inch (late 2012 model), 8GB RAM, 1TB Hard Drive.  All of a sudden after the Mountain Lion 10.8.5 Supplemental update it started running like molasses (apps take forever to open, takes forever to wake out of sleep, long boot up time

  • Using Microphone & Earphones on G5 to connect via Skype?

    Appreciate assistance on how to connect my Headphone/microphone such that I can speak with friends via Skype Software. I am able to do this without the using of the headset ( using built in system ) but when I plug it into the G5 I am not heard nor c

  • TS3694 error 3194, how to go about this?

    i am trying to update my iphone 4s to the newest OS, but I keep getting an error that says error 3194, i have updated my itunes already, what should i do to update my iphone?

  • Blur,noisy,too bright pictures after lollipop update

    After lollipop update pictures with superior auto mode or manual mode comes very blurry.I'm not using phone case.With flash or without,pictures comes too grainy.Anyone else have problem with camera? Please give me solution