Taskflow navigation case to same page.

In my application, I have a taskflow with a control flow case which navigates to the same fragment. I can't get it to work. If I change the navigation case to navigate to another fragment, it works. Is there a known problem with navigation to the same fragment within taskflows or am I missing setting some parameter. The only thing different about the page is it has a train by itself and I am not using the train behavior of the taskflow. Any help would be appreciated.
Thanks,
Suneetha.

Hi Frank,
Your understanding of my usecase is very accurate. Currently, I click the button and nothing happens, the dynamic region does not refresh to display the updated page fragment. There are no error messages in the logs either, the action listener in the managed bean is being called and I have verified that the outcome is the same as the control flow case.
Could you give me some pointers for debugging where the control flow case is evaluated and redirected to the appropriate page fragments?
Thanks,
Suneetha

Similar Messages

  • Parent (Global) and Current (Navigation) on the Same Page

    Hello,
    I am using the managed metadata feature in a SharePoint 2013 publishing site.  I am trying to layout my navigation as shown in the diagram below.  I can not find a publishing master page that implements this parent child relationship.  My
    top navigation is use the markup:
    <PublishingNavigation:PortalSiteMapDataSource ID="topSiteMap" runat="server" EnableViewState="false" SiteMapProvider="GlobalNavigationSwitchableProvider" StartFromCurrentNode="false" StartingNodeOffset="0"
    ShowStartingNode="false" TrimNonCurrentTypes="Heading"/>
    <SharePoint:AspMenu ID="TopNavigationMenu" runat="server" EnableViewState="false" DataSourceID="topSiteMap" AccessKey="&lt;%$Resources:wss,navigation_accesskey%&gt;"
    UseSimpleRendering="true" UseSeparateCss="false" Orientation="Horizontal" StaticDisplayLevels="1" AdjustForShowStartingNode="true" MaximumDynamicDisplayLevels="1" SkipLinkText=""/>
    I have tried using the same markup, using a different StartingNodeOffset and SiteMapProviders, for the side menu with no success.
    Thanks,
    Bob

    Hi,
    According to your post, my understanding is that you wanted to create Parent (Global) and Current (Navigation) on the Same Page.
    You can make quicklaunch work contextually like structural nav quicklaunch using Managed Metadata navigation. Please refer to:
    Managed Metadata Navigation - How do you make quicklaunch work contextually like structural nav quicklaunch?
    In addition, you can used JQuery and CSS to achieve staticlevel left navigation in SharePoint 2013.
    Here is a similar thread for your reference:
    http://social.technet.microsoft.com/forums/sharepoint/en-US/54edc501-0594-49e3-86b2-40ecf72bc68e/show-2-level-hierarchy-in-managed-navigation-menucurrent-navigation-in-sharepoint-2013
    More information:
    Overview of managed navigation in SharePoint Server 2013
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Report and navigation tree on same page, report based on navigational path.

    Dear fellow htmldb developers,
    in my application I have one page where my client need to see a report based on the selection they made in the navigational tree on the same page. The tree has this this structure:
    Products
    ---Monitor
    ----- 19"
    ------21"
    When the client clicks Monitor, 19" a report should be generated which shows all the 19" Monitors, so the sql statement for the report should be something like:
    select * from table where pgroup = link1 (monitor) and sgroup = link(2)
    How do I achieve this? Probably by using bindvariables. Can't figure out how to set it up though. Please help.
    Sincerely,
    Peter

    Create another (chart) region.

  • How to use same taskFlow with inputparam twice on page

    Hi,
    I have 2 taskFlows (Task1, Task2) with imputParams and CallMethod default activity.
    Tsak1 is form, task2 is table.
    I need to use Taskflow 1 twice on same page.
    TaskFlow1(without param)-taskFlow2(get param from taskflow1)-TaskFlow1(get param from taskFlow2).
    Based on this example [http://andrejusb.blogspot.com/2010/04/communicating-between-adf-regions.html]
    If shared data control is checked - taskFlow1's refresh both like copy.
    If unchecked - region's doesn't refresh and taskFlow2 can't use inputParam like #{data.taskFlowTest_view_view3PageDef.Oid.inputValue} (because i have 2 same taskFlow with this param).
    Can I use one taskFlow for this and how?

    For the Taskflow, set the data control scope for the task flow to "isolated" change the behavior.
    Thanks,
    Navaneeth

  • 2 datatables in the same page...

    Hi guys,
    i've a strange question about datatables.
    I've 2 datatables in a page.
    At the end of first datatable there is a ok button that takes values of the rows and put them into a table of db,performing navigation in the same page.
    My question is:
    in the second datatable i've a field that is a selectOneMenu populated from values of first datatable.
    When i click on the ok button of first datatable my application calls a bean that collect desired values into a list.
    I have to load this list in the selectonemenu of the second datatable.
    How can i do it?
    This is the list that i populate with first datatable and i have to show it in selectonemenu of the second datatable
    public List getNames(){
                      if(names==null){
                  names=new ArrayList();
                      return names;
        public void setNames(List names){
             this.names=names;
        }This is the expetion i receive
    [ServletException in:/templates/topLayout.jsp] javax.servlet.jsp.JspException: Collection referenced by UISelectItems with binding '#{biosamplesTable.names}' and Component-Path : {Component-Path : [Class: javax.faces.component.UIViewRoot,ViewId: /pages/protected/uploadBiosample.jsp][Class: javax.faces.component.html.HtmlPanelGrid,Id: mainLayout][Class: javax.faces.component.html.HtmlPanelGroup,Id: pageContext][Class: javax.faces.component.html.HtmlForm,Id: _id11][Class: javax.faces.component.html.HtmlDataTable,Id: _id58][Class: javax.faces.component.UIColumn,Id: _id59][Class: javax.faces.component.html.HtmlSelectOneMenu,Id: _id61][Class: javax.faces.component.UISelectItems,Id: _id62]} does not contain Objects of type SelectItem' Can someone help me?

    http://forums.adobe.com/thread/416892

  • Conditional rendering of JSF page depending on Navigation case

    Hi
    Can we conditionally render the JSF page depending the navigation case, which brought us in that page..
    Lets say that a page A does both Edit and create operations , we have two navigation cases "edit" and "create" directing to this page from main page. can we modify the components in the page depending on the navigation case.
    Thanks in advance
    Pradeep

    Hi Grant,
    your reply was helpful. i got into another scenario :-) where i need to know the navigation case which brought us into the page.
    I have a page flow in adf which can be called by client applications both as a popup or a regular window. the ADF's dialog framework more or less solves my requirement. But to return values from dialog, i have to use "returnFromDialog" method on click of button in the popup window. as i am reusing the page i would write a conditional statement to show diff behaviour when launched as a popup.
    my problem is that i do not want client application to set any parameter in the managed bean (this would get client apps into the implementation issues, causing unnecessary complexity). This again brings me back to the same question ability to KNOW (get handle of) the "navigation case".
    Pradeep

  • Can I use the same taskflow in the same page ?

    I have an ADF library which I want to input into a single page (jspx).
    In the single page, i drag a taskflow-A twice into showdetailitem1 and showdetailitem2. I used required parameter so I able to define each taskflow.
    Everything looks good for the first time, and no error so far, but some component like carousel and af:foreach only works for the one of these regions.
    My question is,
    - can I use the same taskflow in the same page (2 regions) ?
    - if yes, did I have to configure something to achieve this ?
    Thanks
    Riendy

    Hi
    Iterating over af:region will not work.  Instead, try if using dynamic task flow id works—
    <af:carousel ...>
      <af:carouselItem ...>
        <af:region value="#{binding.item1.regionModel}" ... />
      </af:carouselItem>
    <af:carouselItem ...>
        <af:region value="#{binding.item2.regionModel}" ... />
      </af:carouselItem>
      <!-- and so on -->
    </af:carousel>
    In the page definition file, you should have the following—
    <taskFlow id="item1" taskFlowId="#{backingBean.item[0].taskFlowId}" active="#{backingBean.item[0].active" .../>
    <taskFlow id="item2" taskFlowId="#{backingBean.item[1].taskFlowId}" active="#{backingBean.item[1].active" .../>
    So, you have a bunch of task flows ready to be displayed based on the what the backing bean returns.
    ~Sripathy

  • Unable to find matching navigation case from view ID.  Error 404

    Hi All,
    I basically wanted to jumpstart my ADF exploration so I am following the tutorial at this link. [http://www.oracle.com/technetwork/developer-tools/jdev/ccset22-all-099343.html]
    Everything looks good but when I click the Edit Button, I am encountering an error. What I did was I change the logging mechanism into a FINER in my WLS and from the logs,
    it prints below messages.
    <NavigationHandlerImpl> <getViewId> "JSF1013: Unable to find matching navigation case from view ID '/orders-flow/editOrders' for outcome 'save' and action 'save'
    <ViewHandlerImpl> <executePageToBuildView> About to execute view /orders-flow/editOrders
    <ViewHandlerImpl> <executePageToBuildView> Before dispacthMessage to viewId /orders-flow/editOrders
    <ViewHandlerImpl> <executePageToBuildView> After dispacthMessage to viewId /orders-flow/editOrdersI checked out the taskflow and it is basically calling a task-flow-return component.
    I followed everything but I cant make this example work... Any idea why? I checked out the DB and I notice that it has commited my Edit Transaction but I am getting a 404 on my page. Please help. Thanks.

    Hi Frank,
    I think I got the save control flow case.
    Can you help me check please if I miss something? I uploaded my project at this link. [http://www.4shared.com/file/QFcofTfj/BrowseEditApp.html]
    I am quite not sure if I miss something but I have done this project twice already but got the same result.
    Thanks
    Edited by: Marky on 13.4.2011 5:59

  • 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

  • Same page for insert/update

    Hi there,
    Do someone knows about JSF patterns for using the same page/form for inserting and updating the same entities information ?
    2 use cases:
    1 --> the user browses a list of objects (DataTable), let's say Employees, clicks on one line and gets redirected to the employee details page so he can update the information;
    2 --> the user wants to create a new employee and goes to the same page which is empty.
    The way I am actually doing it: I have an employeeForm page and an EmployeeForm managed bean (session scope) which contains an instance of Employee. This Employee is initialized when an empty form is needed or sent by DataTable controller when employee details' are requested.
    This is not really nice to my point of view since the EmployeeForm controller has to re-initialize it's Employee instance after each usage.
    Does someone has a link or can provide a comment for a "best practise" on that topic?
    Thanks in advance,
    Fabrice.

    I think you should consider using the request scope of the employee bean, when navigating from dataTable to employeeForm overwrite the bean with the value from datatable
    otherwise the bean is created on every request.

  • Can Update and creation be done in the same page

    Hi
    ADF BC application.
    Situation :
    I have a search screen , in which the details are shown as Master-inline table.
    For the first column in the table ,I have a link,clicking on which takes to the other page for updating that record.
    And below the table , I have a Button create which takes to other page for creating a new record.
    Questions:
    1. Can the update page and Creation page be same? If yes how?
    2. How to make the first column into a link?
    Note : In update and Creation , I have 2 tables linked i.e., master details.
    Please Help.
    Thanks.

    Hi,
    if you simply navigate from one page to the other then the selected row currency is shown in the edit form.
    If you execute a operation binding that executes the CreateInsert operation then this will create an empty new row.
    The way you do this is:
    - create a pageDef entry under the bindings node (StructureWindow)
    - Select InsertInto Bindings and choose action binding
    - In the editor, give a name to this new binding e.g. CreateInsert and select the CreateInsert operation from the underlying ViewObject
    - In ADF Faces -
    - add a command link to the UI
    - Instead of adding a static navigation case, point teh Action property to a managed bean method
    - in teh managed bean method, access the CreatInsert binding, execute it and ten navigate to the next page
    FacesContext fctx = FacesContext.getCurrentInstance();
    Application app = fctx.getApplication();
    ValueBinding vb = app.createValueBinding("#{bindings}");
    DCBindingContainer dc = (DCBindingContainer) vb.getValue(fctx);
    OperationBinding oper = (OperationBinding) dciter.get("CreateInsert");
    oper.execute();
    return "<static navigation case to navigate to edit form>"
    Frank

  • CommandButton linked to same page causes infinite loop

    I'm working on an jsf application with a quite complex interface. I used to deploy it with the MyFaces implementation of jsf. Because of some irratic behavior I want to test Sun's reference implementation. Everything works just fine except when my commandButtons are linked back to the same jsp, configured as a navigation-rule in my faces-config.xml. When I click the button the configured handler-method gets called infinitely(the method works fine, no exception thrown). Any ideas why this is happening?
    /Dan
    From "bolagsstammoAktiebok.jspx"
    <h:commandButton action="#{bolagsstammoAktiebokHandler.berakna}" styleClass="styleinput" immediate="true"
                                                     value="Ber&#228;kna"/>From faces-config.xml
    <navigation-case>           <from-action>#{bolagsstammoAktiebokHandler.berakna}</from-action>
                <from-outcome>success</from-outcome>
                <to-view-id>bolagsstammoAktiebok.jspx</to-view-id>
            </navigation-case>

    Why make a navigation rule that navigates to the same
    page ?
    Just return "" from the
    bolagsstammoAktiebokHandler.berakna method.That helps in that particular case. The problem persists when I try to navigate to another jsp, though. In that case I must use a navigation-rule.

  • Urgent ! open the same page in query and create record mode...

    We have to page in our project
    First page include a list show employees(page1) and second page(page2) showsdetail information on employees.
    We have two button on page1 ("CREATE NEW EMPLOYEES" and "EDIT EMPLOYEES")
    When we press create button we need to create a record on second page.
    Second page is needed to open create insert mode.
    When we press edit button we need to edit emloyees details.
    Second page shows queried record.
    can we implement this using faces config xml without writing code . Or do we need to write code.
    How can we implement create insert and query event on the same page call (page2)...
    Thanks a lot...

    Hi,
    using ADF, drag the edit button from the component palette and point its navigation case to the next page that contains the edit form.
    Drag and drop the create button from the data control palette by dragging the "create" operation of the VO to the page. Also set the navigation case to the edit form and change the pagedef file (the binding) for this "Create" operation to use CreateInsert as an operation
    Frank

  • Creation of new button on same page after insert command

    Hello All,
    I have an application running on apex.oracle.com where my workspace name is shruti_work,username is [email protected] and password is buwigi. The application name inside this is "app2"
    I am trying to achieve one functionality there but unable to get it so felt like seeking an help from experts here. I have two forms there one page1 form which is simplly made on an html region with go button which is navigating the page 1 items value to page 2 but simply passing their address witout updting the database table.
    In Page 2 i created page on a table or view, which made some extra buttons which i dont want like applychanges ,delete button, cancel button. I created a create button even which is updating my database with insert sql command. What i am seeing is after my create button is pressed i got navigated to same page 2 which i want to but the applychange button, cancel and delete button got appeared. I dont get the idea why it is so. i have checked the buttons even i didnt found anything there.
    All i want is when i press create button in page 2, my database get update and at the same page (2) a new button get appears which i have to use for other things. Approaching to this solution i created a button with giving databse action update and condition to this button "value of item in expression 1 is not null" and in expression 1 i passed p2_id...... but my new button is not getting created.
    Any help on this?

    Hi Jeff,
    I dont want applychanges button and delete button in my page 2. But when i created form on a table or view this but got created and i cannot delete it even. When i am navigating my page from page 1 to page 2 and filling the fields in page 2 and clicking create button, at that time i want after updating my table and running my plsql process which i have created which you can see in page processing, my button at same page get generate which i will use to navigate to other form. This button which i want to generate after clicking my create button will be meaningful only if my record get inserted in table. so that is why i want it at that time.
    I dont want any report so i am not creating form on a table or view

  • How to develp a subreport in the same page of the main report and processed when is called

    SSRS 2012
    Hi guys,
    I am developing a report that includes a subreport.
    therefore The report is made up by 2 sections:
    1) Show a grid (several rows - may be 100 or more - and some columns). It represent high level info  (Each row represent a specific item)
    2) The user click on a Row/column (eg: Item1, to see details that must be shown as graph.
    Here the problem: Searching info about SSRS reporting for subreports, drilldown, nested report and so on, no ones accomplish the requirements for the following reasons:
    1) Subreports: NOT open in the same page. The user must <go back> to see detail for other items, such as Item 2....
    2) Nested and DrillDown: Process data as the Main report (they are hidden and displayed after user action). In my case this leads to performance problem, because: if the main report has 200 objects (it means 200 graphs processed and hidden at the same time
    for the main reports).
    3) DrillThrough and Subreport: The detail data are processed only when the user select the interested item in the main report. Here the problem: the report is shown externally.
    Please, it there any possibility to have a subreport (or anything else) to be executed in the same report as the main report and processed only when the user make action?
    Thanks for your help.

    Hi Fasttrack2,
    According to your description, there is a main report with more than 100 rows of summary information, when users click the item of the row, the report need to jump to detail information shows as graph. The problem you are facing is that you are not sure
    subreport, drilldown or drillthrough report should be used? You hope to set display detail information in the main report and keep high performance of report.
    In Reporting Services, each subreport instance is a separate query execution and a separate report processing task. Subreports are recommended when there are just a few subreport instances. We should not use subreports inside a group when there are many
    group instances, instead, consider using drillthrough reports. Drilldown reports process all data even when the data is first hidden. In order to improve the performance of the report, we can split drilldown reports into parameterized drillthrough reports,
    because Drillthrough reports do not run until a user clicks the drillthrough link in the main report.
    In this case, we can consider using drilldown or drillthrough report. In drilldown report, when we click a plus or minus button to expand or collapse a section of a report, the detail data will be displayed in place. By using drillthrough report, when we
    click the link in the main report, the detail data will be displayed, we can come back to the main report by click return button in the drillthrough report.
    Reference:
    Troubleshooting Reports: Report Performance
    Drillthrough, Drilldown, Subreports, and Nested Data Regions
    If you have any more questions, please feel free to ask.
    Best Regards,
    Wendy Fu
    If you have any feedback on our support, please click
    here.

Maybe you are looking for

  • What is the best way convert lps to digital on Mac

    I've been getting completely awful audio using an Ion USB turntable (via Audacity and Lame) to record on a Mac OS 10.2.8. Can you recommend another way that will convert an lp into digitial via a Mac? iMic? Below is an e-mail I sent before that got n

  • Lightroom 4 Tethering Preset Publish -- Automation

    Hello, I have a specific need to shoot tethered in Lightroom, apply some presets, then publish (FTP to two location, publish on FaceBook), and save a copy of the file - that is save the modified file with a new name in a different directory and close

  • Games from older Version

    Hey, I have just purchased a 4th gen nano for a mate, and we were trying to get an older game from an older gen nano (not sure which one) which came with the older iPod. The game is basically music trivia, where the iPod plays the song and you have s

  • Mail Service is strangely interrupted

    Hello everybody, since the Upgrade from 10.7 to 10.8 the mailservice isn't working like it used to. After the Upgrade Mail-Application on the Apple-Laptops show a green dot when verifying connectivity but the users can't send mails any more Some inte

  • Clubbing two statements into one in Stored Procedure

    I am writing a stored procedure and one of the statement goes like this IF LOWER(@in_data_detail_info) LIKE('%low_price%') BEGIN set @out_price_col_desc = 'Low Price' end IF LOWER(@in_data_detail_info) LIKE('%low_price%') BEGIN set @price_type = 'low