Taskflow Issue.

Use Case
I have a search page for searching Employees. This is a taskflow(employee-search.xml). I have edit/create link on the search page which calls another task flow (employee-edit.xml) for the edit/create of employee record. The employee edit taskflow has data-control-scope set as "*isolated*" and transaction set as "*new transaction*" . I want this setting because i should be able to be able to start a new transaction to commit the record. On save i commit the record and navigate back to the search page using task flow return activity. The problem is i am not able to see the changes made when i navigate back to the search page.I am able to see the changes on the search page with a new session though .I understand that because of my edit employee task flow settings, ADF creates new transaction where datacontrol frames for both the task flows are different.So my search page(search task flow)( which already opened a transaction ) is not able to see the changes made by the edit task flow. I could have made data-control-scope ="shared" and transaction="requires transaction" on edit employee task flow to make the changes visible(since they share the same datacontrol in the same transaction) but then i require a commit on the search page which will be quite odd to the users.
How do i achieve the the desired results with out sharing the the data control scope and begining the new transaction on the edit employee taskflow ?

Hi Frank,
I added the execute method as u suggested. But it still doesn't work.
Search task flow is embeded as a region into a jsf page. Search task flow has the data-control-scope set to "Shared" , transaction option to "new transaction" . Edit task flow has the data control scope set to "Isolated" and transaction option set to "new transaction. My understanding from steve's blog is that in this scenario , two new transactions will be started each having its own data control frames.
More Information:
Search task flow uses a read only view object. Edit task flow uses another updatable view object.

Similar Messages

  • Issue with embedding and usage of worklist TF in ADF app

    In our application, we have embedded the worklist TF from "adflibTasklistTaskflow.jar" in our jspx page. Below is the page def binding for the TF
    <taskFlow id="taskListtaskflowdefinition1"
    taskFlowId="/WEB-INF/taskList-task-flow-definition.xml#taskList-task-flow-definition"
    activation="deferred"
    xmlns="http://xmlns.oracle.com/adf/controller/binding">
    <parameters>
    <parameter id="federatedMode" value="false"/>
    <parameter id="showActionDropdown" value="true"/>
    <parameter id="showViewFilter" value="true"/>
    <parameter id="showAssignmentFilter" value="true"/>
    <parameter id="showStatusFilter" value="true"/>
    <parameter id="showSearchControl" value="true"/>
    <parameter id="showTaskTabs" value="false"/>
    <parameter id="displayColumnsList"
    value="title, state, creator, assignedDate"/>
    </parameters>
    </taskFlow>
    Issue
    When we try to re-assign the claimed task in the worklist, it opens up a re-assign popup - "Identity browser".
    Within Reassign Screen:
    - Select "All" value on the dropdown
    - Enter a last name on the text field. I.e. "Kristoffersson"
    Or enter an email address.
    - SOA error will appear as mentioned below
    "Search failed with an error. Service error.. Refer to the log file that is configured for oracle.soa.services.identity for more details on this error and contact Oracle Support Services"
    This issue is not seen for any other option in the drop down other than "All" (e.g. "users", "group", etc. it is displaying all corresponding search results of users from LDAP)
    Below are the library which we have added in our UI project:
    I. BPM worklist components
    1) adflibTasklistTaskflow.jar
    2) adflibWorklistComponents.jar
    II. BPM Workflow
    1) bpm-services.jar
    2) bpm-infra.jar
    III. BPM taskflow
    1) bpm-workflow-datacontrol.jar
    IV. BPM services
    1) bpm-services.jar
    Is there anything missing from the uptake? Please suggest.
    Also, is there any uptake document for the same (embedding human worklist into a page)?

    Hi,
    I remember a similar issue with inner frames that should be fixed in JDeveloper 10.1.3.3. The problem was that the ADF Faces JavaScript did not get the correct document root.
    Frank

  • HFM Taskflow Buttons Grayed Out

    Good morning all -
    All of my taskflow buttons in my production environment are grayed out. I am not having this issue in any other environment. I have logged in as both myself and the admin user, but neither can access the buttons on the Manage Taskflows screen.
    Oracle Support suggested reregistering the application. I did that last night, but it made no difference.
    I've had my share of assorted taskflow issues, but this is the first time I can't even access the buttons.
    Any thoughts or suggestions would be appreciated.
    Thank you,
    Sarah

    They will be greyed out if the node is locked for any reason: like any other user has the node open in the STS or a previous session is left open and not timed out (simply closingthe browser without using 'log out' button may do this).
    Also they will be greyed if the status change is not appropriate; like if it has already been sent for approval, the user for next level up has to set it back.
    Stephen

  • Issue with nested inline popup taskflow while try to return back to parent.

    Hi Adf Experts,
    I have been facing one issue. Would you please give me how can I solve this issue which address my scenario. I greatly appreciate your help.
    My Scenario:
    I have ViewA which opens inline popup page ViewB. On ViewB also have another inline PopUp page ViewC (i.e. nested inline popup). On ViewB, there is back button which taskFlow return call and navigate back to ViewA. I need to implement same Back trigger event from ViewC (Back Button)to ViewA. For this, I am using ReturnListener on ViewB button which opens ViewC inline page. On returnListener, I have used ViewB back button ActionEvent queue. like:
         RichCommandButton buttonBack;
         public void onReturn( ReturnEvent returnEvent )
              ActionEvent ae = new ActionEvent(buttonBack);
              buttonBack.queueEvent( ae );
    Output Scenario:
    While running from ViewB, it fires same Back Button action from ViewC back button. No issue at all.
    But when I run from ViewA upto ViewC page and on fire back button, I have been facing issue like below.
    <LifecycleImpl> <_handleException> ADF_FACES-60098:Faces lifecycle receives unhandled exceptions in phase INVOKE_APPLICATION 5
    java.lang.NullPointerException
         at oracle.adfinternal.controller.application.AdfcDirtyPageHandler.getUncommittedDataWarning(AdfcDirtyPageHandler.java:38)
         at oracle.adfinternal.view.faces.context.DirtyPageContextImpl$1.invokeContextCallback(DirtyPageContextImpl.java:74)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1410)
         at oracle.adf.view.rich.component.rich.RichDocument.invokeOnComponent(RichDocument.java:168)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:720)
         at javax.faces.component.UIComponentBase.invokeOnComponent(UIComponentBase.java:678)
    <RegistrationConfigurator> <handleError> ADF_FACES-60096:Server Exception during PPR, #3
    java.lang.NullPointerException
         at oracle.adfinternal.controller.application.AdfcDirtyPageHandler.getUncommittedDataWarning(AdfcDirtyPageHandler.java:38)
         at oracle.adfinternal.view.faces.context.DirtyPageContextImpl$1.invokeContextCallback(DirtyPageContextImpl.java:74)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1410)
         at oracle.adf.view.rich.component.rich.RichDocument.invokeOnComponent(RichDocument.java:168)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:720)
         at javax.faces.component.UIComponentBase.invokeOnComponent(UIComponentBase.java:678)
         at oracle.adfinternal.view.faces.context.DirtyPageContextImpl.initDirtyPageContext(DirtyPageContextImpl.java:58)
         at oracle.adfinternal.view.faces.context.RichPhaseListener.beforePhase(RichPhaseListener.java:252)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:278)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:185)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    ...........

    Hi,
    I have a similar issue.
    I have a page (search page) from where i open another dynamic tab(UI dynamic tab shell pattern).
    In this second tab, I open a new jspx using "dialog:open" in my taskflow (of the second tab).
    Now when I navigate to my first tab with advanced search and try executing my search, a managed bean method is called where I have a line of code as follows:
    DCIteratorBinding statusIter = (DCIteratorBinding)getBindings().get("myIterator");
    At this line the statusIter comes as "null" and hence my search fails with the following exception:
    <LifecycleImpl> <_handleException> ADF_FACES-60098:Faces lifecycle receives unhandled exceptions in phase INVOKE_APPLICATION 5
    javax.faces.el.EvaluationException: java.lang.NullPointerException
         at org.apache.myfaces.trinidadinternal.taglib.util.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:58)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcastToMethodBinding(UIXComponentBase.java:1256)
         at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:183)
         at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:148)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:102)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:96)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:879)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:312)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:185)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:175)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    Caused by: java.lang.NullPointerException
         at com.guycarp.soa.mf.ui.bean.MessageTrackingListBean.createAndExecuteMessageTrackingSearchCriteria(MessageTrackingListBean.java:228)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.sun.el.parser.AstValue.invoke(Unknown Source)
         at com.sun.el.MethodExpressionImpl.invoke(Unknown Source)
         at org.apache.myfaces.trinidadinternal.taglib.util.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:53)
         ... 50 more
    <RegistrationConfigurator> <handleError> ADF_FACES-60096:Server Exception during PPR, #3
    javax.servlet.ServletException
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:277)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
    Is there any specific setting which should be done in a taskflow or a page which opens another page using dialog:openwindow?? And why does this effect any other taskflow?
    Any pointers to resolve this are appreciated.
    Thanks in Advance!
    -Swapna

  • Af:query issues within a taskflow

    JDev: 11.1.2.1
    I've created a simple fusion app, using the HR countries and department tables. The ViewController contains a home page and a taskflow.
    The taskflow accepts a 'SearchBy' parameter, and I have a router (default) which then redirects the user to one of two pages, based on that parameter.
    <case id="__1">
    <expression>#{pageFlowScope.SearchBy eq 'countries'}</expression>
    <outcome>countries</outcome>
    </case>
    <case id="__2">
    <expression>#{pageFlowScope.SearchBy eq 'depts'}</expression>
    <outcome>depts</outcome>
    </case>
    The two pages "CountriesQueryPage" and "DeptsQueryPage" contain nothing more than a standard af:query (with table) based on the named criteria "All Queriable Attributes" for respective views.
    The Home page contains the taskflow above as a region, and a couple of links, which set a #{requestScope.SearchBy} parameter. The taskflow binding was changed to Refresh 'ifNeeded'.
    <af:panelHeader text="panelHeader 1" id="ph1">
    <f:facet name="context"/>
    <f:facet name="menuBar"/>
    <f:facet name="toolbar">
    <af:group id="g1">
    <af:commandLink text="Countries" id="cl1" partialSubmit="true">
    <af:setPropertyListener from="#{'countries'}" to="#{requestScope.SearchBy}"
    type="action"/>
    </af:commandLink>
    <af:spacer width="10" height="10" id="s1"/>
    <af:commandLink text="Depts" id="cl2" partialSubmit="true">
    <af:setPropertyListener from="#{'depts'}" to="#{requestScope.SearchBy}"
    type="action"/>
    </af:commandLink>
    </af:group>
    </f:facet>
    <f:facet name="legend"/>
    <f:facet name="info"/>
    <af:region value="#{bindings.tf11.regionModel}" id="r1" partialTriggers="::cl1 ::cl2"/>
    </af:panelHeader>
    When I run this, the default "countries" page is displayed in the region. The af:query functions perfectly. When I click the link to the Depts page, the region refreshes as expected, but when the query table is rendered an error is thrown "Content failed to load.... data transmission was interrupted. Checking the log, I'm getting....
    <LifecycleImpl> <_handleException> ADF_FACES-60098:Faces lifecycle receives unhandled exceptions in phase RENDER_RESPONSE 6
    java.lang.IllegalStateException: Could not find component to stream
    <FaceletViewHandlingStrategy> <handleRenderException> Error Rendering View[Home]
    java.lang.IllegalStateException: Could not find component to stream
    Couldn't find much online about this error message.
    The only way I've been able to stop the issue is to remove the af:table on the depts query page.
    I also tried using a dynamic region to get the above functionality (dividing each query page into it's own taskflow and removing the router) and got exactly the same issue.
    Any ideas?
    Thanks
    Edited by: drb on Nov 24, 2011 6:31 PM

    Just in case anyone else has this issue -:
    It turns out that the fault was using RequestScope parameters within the af:setPropertyListener. Once I changed this to a longer scope, pageFlowScope for example, the issue was resolved.

  • Issues in displaying upload document link in publisher taskflow

    Hi,
    We are trying to do a feasibility analysis on the upload document feature of publisher taskflow, but are facing issues.
    The Attach : File link is not getting displayed along with the publisher taskflow. The Attach: Link option alone is displayed.
    Below are the steps i did to try out.
    1. Created a new webcenter Portal application using JDEV 11.1.1.6
    2. Created a new JSF file under /pages.
    3. Dragged and dropped a publisher taskflow from Resource Pallete.
    4. Set the username parameter to #{securityContext.userName}
    5. Created an UCM connection in Application resources.
    6. Deployed the ear to server.
    7. Made sure the UCM connection is active in the EAR. (verified through Enterprise Manager)
    8. To make sure the connection is proper, used a document presenter taskflow to display images from UCM in the same page
    On running the application the publisher taskflow and the document presenter with images are getting displayed on the page. But the Attach: File is missing. Only Attach: Link option is available.
    Am i missing any other configuration here?
    Requesting help is solving this issue

    Had to update adf-config.xml to have an try for <doclibC:spaces-repository> as below
    <doclibC:spaces-repository
    spacesRoot=<Name of the Root folder configured in the UCM connection for Spaces in the server>
    adminUserName=<Administrator username mention in the UCM connection for Spaces in the server>
    applicationName=<Name of the application EAR>
    />   
    This fix enabled the Attach : File link in the publisher taskflow

  • Dynamic Tabs Shell : issue with taskflows using pages

    Hi,
    We use the Dynamic tabs shell page template in our application.
    It works fine when used with taskflows with page fragments.
    However it errors when trying to render a taskflow with pages instead of fragments as:
    <FormRenderer><encodeAll> Multiple forms detected on viewId: /starter. Rich client currently has some limitations in dealing with multiple forms.
    <Jul 27, 2010 9:42:23 PM IST> <Error> <HTTP> <BEA-101020> <[ServletContext@32152418[app:calcmgr module:calcmgr path:/calcmgr spec-version:2.5]] Servlet failed with Exception
    java.lang.NullPointerException
         at oracle.adfinternal.view.faces.renderkit.rich.FormRenderer.encodeAll(FormRenderer.java:233)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1369)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:335)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:765)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:415)
         at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:2567)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:432)
         at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer.encodeAll(DocumentRenderer.java:1071)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1369)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:335)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:765)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.__encodeRecursive(UIXComponentBase.java:1515)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeAll(UIXComponentBase.java:785)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:942)
         at com.sun.faces.application.ViewHandlerImpl.doRenderView(ViewHandlerImpl.java:271)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:202)
         at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:189)
         at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:193)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:710)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:273)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:205)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:266)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:191)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:97)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:247)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:157)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:159)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:330)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.doIt(WebAppServletContext.java:3684)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2268)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Is this a known issue or constaint with Dynamic Tabs Shell page template?

    Actually I don't think the answer is as clear cut as the dynamic tab shell template (aka. UI Shell) doesn't support task flow with pages, as, we have an application that uses it that calls out to a BTF using pages and it works fine. The catch is that BTF itself doesn't use the UI Shell. So it really depends what you mean.
    Can you be more specific what you're attempting to achieve? Are you trying in one page that uses the UI Shell, to embed a BTF in a region where the BTF uses pages rather than page fragments? Or, do you simple want lots of pages in your overall applications unbounded task flow to include the UI Shell template? As Alex has asked, we don't really have information of what you're trying to put in what at this stage.
    For the record, the better forum to ask such questions about the dynamic tab shell template is the ADF UI Patterns & Best Practices OTN forum:
    ADF UI Patterns & Best Practices
    ...however given you've started this thread here, you might as well continue.
    CM.

  • Performance Issue : Why does ADF Taskflow Portlet (JSF bridge portlet) loading ADF Specific images, css, js everytime from portlet producer with dynamic URL with portlet_id and context parameters?

    Hi All,
    We have used WSRP Portlet in Webcenter Portal Page. The Portlet is created using JSF Bridge out of ADF Bounded Taskflow.
    It is causing Performance issue. Every time static content like js, css and images URLs are downloaded  and the URL contain portlet_id and few other dynamic parameters like resource_id, client_id etc.
    We are not able to cache these static content as these contains dynamic URL. This ADF Specific  images, js and css files  are taking longer time to load.
    Sample URL:
    /<PORTAL_CONTEXT>/resourceproxy/~.clientId~3D-1~26resourceId~3Dresource-url~25253Dhttp~2525253A~2525252F~2525252F<10.*.*.*>~2525253A7020~2525252FportletProdApp~2525252Fafr~2525252Fring_60.gif~26locale~3Den~26checksum~3D3e839bc581d5ce6858c88e7cb3f17d073c0091c7/ring_60.gif
    /<PORTAL_CONTEXT>/resourceproxy/~.clientId~3D-1~26resourceId~3Dresource-url~25253Dhttp~2525253A~2525252F~2525252F<10.*.*.*>~2525253A7020~2525252FportletProdApp~2525252Fafr~2525252Fpartition~2525252Fie~2525252Fn~2525252Fdefault~2525252Fopt~2525252Fimagelink-11.1.1.7.0-4251.js~26locale~3Den~26checksum~3Dd00da30a6bfc40b22f7be6d92d5400d107c41d12/imagelink-11.1.1.7.0-4251.js
    Technologies Used:
    Webcenter Portal PS6
    Jdeveloper 11.1.1.7
    Please suggest , how this performance issue can be resolved?
    Thanks.
    Regards,
    Digesh

    Strange...
    I can't reproduce this because i have issues with creating portlets... If i can solve this issue i will do some testing and see if i can reproduce the issue...
    Can you create a new producer with a single portlet that uses a simple taskflow and see if that works?
    Are you also using business components in the taskflows or something? You can try removing some parts of the taskflow and test if it works so you can identify the component(s) that causes the issues.

  • Issue with a method call in a TaskFlow (works 2 times instead of 1)

    Hi guys,
    i'm using jdev11.1.1.1.2.0 and the integrated weblo or remote weblo 10.3.2.0.
    I'm encountering a problem with a method call which is invoked inside a Task Flow.
    Let me tell us the details of :
    I'm invoking a method call which is part of a Task Flow from the backingbean of the view which is placed before the method call in the taskFlow diagram.
    AN outcome String from the method of the backing bean allows to navigate to the method of the Task flow.
    The method call is called and works normally BUT MY PROBLEM IS THAT THE METHOD IS CALLED TWO TIMES SO THE RESULT IS FALSE.
    For information, the second time the method is called it takes care of the result when it is invoked the first time. So its parameters are updated and are a little different from the first time to the second time.
    NB : This method consists of inserting a row in the database. My result is 2 rows inserted instead of one.
    Thanks for help for this strange behaviour

    Hi
    create a temp calculated column
    =IF(ISBLANK([Duration]),"",[Item Start Date]+([Duration])
    and check if it's working OK
    Romeo Donca, Orange Romania (MCSE, MCITP, CCNA) Please Mark As Answer if my post solves your problem or Vote As Helpful if the post has been helpful for you.

  • Taskflow as inline popup causes issues while returning..

    Hi,
    I am using 11gr1p1. I have an ADF application where I have a bounded taskflow I call as inline popup. And in the popup I return from the taskflow ..
    Everything works fine when I launch my app within JDeveloper or when I launch it directly.
    It fails when I call the ADF application from a different web page by opening it in a new window. In this case when I click the button in the inline popup to return from the taskflow I got an error in the IE's log as below..
    Line :1
    Char:86
    Error : Access is denied.
    Any help will be great, we spent quite a time to make this work ...
    Test page to launch the ADF app
    <html>
    <head>
    </head>
    <body>
    <div >
    <p ><a href="http://msoyerxp:7101/PopupTest-ViewController-context-root/faces/adf.task-flow?adf.tfId=tf-main&amp;adf.tfDoc=/WEB-INF/tf-main.xml" target="_blank" > Test </a></p>
    </div>
    </body>
    </html>Main taskflow
    <?xml version="1.0" encoding="UTF-8" ?>
    <adfc-config xmlns="http://xmlns.oracle.com/adf/controller" version="1.2">
      <task-flow-definition id="tf-main">
        <default-activity id="__1">MainPage</default-activity>
        <view id="MainPage">
          <page>/MainPage.jspx</page>
          <redirect/>
        </view>
        <task-flow-call id="tf-popup">
          <task-flow-reference>
            <document>/WEB-INF/tf-popup.xml</document>
            <id>tf-popup</id>
          </task-flow-reference>
          <run-as-dialog>
            <display-type id="__7">
              <inline-popup/>
            </display-type>
          </run-as-dialog>
        </task-flow-call>
        <control-flow-rule id="__2">
          <from-activity-id id="__3">MainPage</from-activity-id>
          <control-flow-case id="__5">
            <from-outcome id="__6">Popup</from-outcome>
            <to-activity-id id="__4">tf-popup</to-activity-id>
          </control-flow-case>
        </control-flow-rule>
        <visibility id="__8"/>
      </task-flow-definition>
    </adfc-config>Task flow that I call as inline popup
    <?xml version="1.0" encoding="UTF-8" ?>
    <adfc-config xmlns="http://xmlns.oracle.com/adf/controller" version="1.2">
      <task-flow-definition id="tf-popup">
        <default-activity id="__1">PopUpPage</default-activity>
        <view id="PopUpPage">
          <page>/PopUpPage.jspx</page>
          <redirect/>
        </view>
        <task-flow-return id="taskFlowReturn1">
          <outcome id="__17">
            <name>taskFlowReturn1</name>
          </outcome>
        </task-flow-return>
        <control-flow-rule id="__20">
          <from-activity-id id="__21">PopUpPage</from-activity-id>
          <control-flow-case id="__22">
            <from-outcome id="__24">Return</from-outcome>
            <to-activity-id id="__23">taskFlowReturn1</to-activity-id>
          </control-flow-case>
        </control-flow-rule>
        <visibility id="__8"/>
      </task-flow-definition>
    </adfc-config>Main Page
    <f:view>
        <af:document id="d1">
          <af:form id="f1" targetFrame="_self">
            <af:panelSplitter orientation="vertical" splitterPosition="50" id="ps1">
              <f:facet name="first">
                <af:panelFormLayout id="pfl1">
                  <f:facet name="footer"/>
                  <af:commandButton text="Open Popup" id="cb1" action="Popup" useWindow="true"
                                    windowEmbedStyle="inlineDocument" windowHeight="300"
                                    windowWidth="400"/>
                </af:panelFormLayout>
              </f:facet>
              <f:facet name="second">
                <!-- id="af_one_column_header_stretched_with_splitter"   -->
              </f:facet>
            </af:panelSplitter>
          </af:form>
        </af:document>
      </f:view>Popup Page
    <f:view>
        <af:document id="d1">
          <af:form id="f1">
              <af:panelSplitter orientation="vertical" splitterPosition="50" id="ps1">
                <f:facet name="first">
                  <af:commandButton text="Return1" id="cb1" action="Return" partialSubmit="true"/>
                </f:facet>
                <f:facet name="second"/>
              </af:panelSplitter>
          </af:form>
        </af:document>
      </f:view>

    That is the problem actually. When I run the link directly it works fine. But I need to launch the ADF application from a non-ADF app which is not hosted on WLS.
    The scenario above was just to simplify the problem...
    Is there any security settings etc that may cause this ?
    Thanks

  • TaskFlow Authorization Issue

    Hi,
    We have a taskflow launched from a command toolbar inside a popup as shown below
    <af:commandToolbarButton text="#{inventoryUIBundle.ASSOCIATE}"
    id="ctbCreate" binding="#{backingBeanScope.associateButton}"
    icon="#{InventoryHelperBean.associateIcon}">
    <af:showPopupBehavior popupId="associateInvGroupPopup"
    triggerType="click"/>
    <af:setActionListener from="true" to="#{pageFlowScope.associateInventoryGroup}"/>
    </af:commandToolbarButton>
    The task flow is embedded as a region inside a popup
    <af:popup id="associateInvGroupPopup"
    binding="#{backingBeanScope.associateInvGroup}"
    contentDelivery="lazyUncached">
    <af:dialog type="none" id="igd">
    <af:panelStretchLayout styleClass="invCommonPanelStretchLayout" id="igps">
    <f:facet name="center">
    <af:region value="#{bindings.InventoryGroupSearchResultsFlow1.regionModel}" id="igr"/>
    </f:facet>
    </af:panelStretchLayout>
    </af:dialog>
    <af:clientListener method="goRefreshEntity" type="popupClosed"/>
    <af:serverListener type="refreshEntity"
    method="#{pageFlowScope.InventoryGroupListBean.refresh}"/>
    </af:popup>
    Now we have given authorization permissions to the task flow using jazn-data.xml. When a user who does not have permissions to the taskflow clicks the button a blank popup comes instead of authorization error to be shown.
    How can we make the authorization error to show up instead of blank popup here? Similar problem exists for any command link that opens a popup
    Thanks,
    Rama
    Edited by: user9954330 on Jul 20, 2011 4:38 AM

    you can use EL expression to determine if the logged-in user has the permission to view the taskflow.
    Check this link in this ADF Developer's guide:
    http://download.oracle.com/docs/cd/E16162_01/web.1112/e16182/adding_security.htm#BGBIFHDF
    #{securityContext.taskflowViewable['/WEB-INF/audit-expense-report.xml#audit-expense-report']}or
    #{securityContext.regionViewable['/WEB-INF/audit-expense-report.xml#audit-expense-report']}With this,
    1) You could disable the button which launches the popup based on the EL expression for disabled property for the command button.
    or
    2) In the popup, you could have a separate component which shows the message that the taskflow is not accessible - with the component's visible property controlled by EL expression.
    Thanks,
    Navaneeth

  • Issue in customizing worklist taskflow

    Hi,
    I am trying to customize the worklist taskflow and i want that after clicking on the detail link the new page should open at that region only but it is opening in a new browser window.
    I tried to remove the command link (detail link) and used go link at its place but it also didn't work.
    can somebody tell me what to do to open the new page in the same region where the taskflow is.

    On Problem 1: This sounds like the file you're changing isn't the one that is served up to the browser. DId you replace the image in each of the theme folders?
    When editing a web page element like this, i always perform a [CTRL][F5] on the browser to force a refresh. You do not need to clear your browser cache each time as per those instructions. Clearing the cache is an inelegant, brute force way of getting the browser to display new page content and should be used as a last resort.
    On problems 2 & 3: After you extract, modify, and jar the jar, and zip up the war\ear files, are you redeploying the application?
    Regards,
    Robb Salzmann

  • Multiple TaskFlow run as Dialog issue

    Hi,
    I am openning multiple taskflow as a dialog box or popup .On Click of button, I am getting one taskflow with pages as a dialog successfully but in that taskflow , one more button is there. On click of that button ,I am openning second taskflow with pages as a Dialog box is successfully. but problem is that on this time, second taskflow is openning inside First taskflow (like parent-child ). I want to open second taskflow seperately . Please help ASAP......

    Hi,
    giving that task flow calls a sequential you don't get two task flows open in parallel dialogs
    Frank

  • Contextual Event refresh/redraw issue between 2 regions (taskflow w/ jsffs)

    Working on JDev 11.1.1.2.0
    I have one jspx
    which contains 2 regions - bounded taskflow with jsffs
    Now, I want to communicate between region1 and region2
    so, producer is : region2pageDef and consumer is: region1pageDef, and Handler is pointing to a Java Bean Data Control , listening for ActionEvent
    Contextual events works fine as expected , but when region1 listenes the contextual event , at that time entire jsff gets refreshed / redrawn, why?
    How contextual event works from the ADF side ,and what causes it to redraw the page fragment
    Thanks

    When I have 3 dynamic regions on a jspx page, where every region loads taskFlow with jsff page.
    One of the pages produces the contextual event, the other receives the contextual event and the 3rd one does nothing.
    Then 3rd region is not refreshed. It works correctly.
    But when I place eventMap in the pageDef of the jspx page, then all regions are refreshed no matter if they receive the contextual event.
    This is not the right way. Why is that? Do you have an idea?
    I am using JDev 11.1.1.3.0
    Edited by: Nikolay Minchev on Dec 22, 2010 2:44 AM

  • HFM Taskflow Access Issue

    Hi All,
    I have created several taskflows and want to limit users to manage/run it. The requirement is to assign access to groups of users to individual taskflows.
    I am on version 11.1.2.1.x.
    The 'Assign Access Control' tab on the respective taskflow doesn't seem to be serving any purpose.
    I did some reading and found about a 'Manage Permission' role that needs to be there to assign taskflow-access.
    How do I enable this role.
    Please help.
    Regards,
    S

    Task Flow roles are under Shared Services. There are 3 now. Administer, Manage, Run.

Maybe you are looking for

  • How do you measure frequency using the onboard counter on PCMCIA 6024-E

    I am using LABView 6.1 and NI-DAQ 7.2 with a SCXI-1000 chassis and a PCMCIA 6024-E on a laptop. I need to measure a frequency of about 3KHz and would like to do that using an 1180 direct through connector. Firstly, should I see this 1180 in MAX like

  • Where did my music go.

    My computer crashed. I replaced the hadrdrive. I logged back into iTunes and behold all my music listings were there, however, there is an exclamation point prior to each song. And when I go to play the song a dialog box says it cannot play the song

  • Characteristic "Master Data" setting in Query definition not working?

    Hi, I am having a problem with a query definition. (BI 7.0) The query comprises the following definition which relate to displaying Milestone dates for respective projects in a time series so the dates are populated in the correct column in a time se

  • Join, and filter...

    When doing a join, and filtering, I want the filter to be applied first. For example if the callDisp file for the given date has 18 rows, and the treeProject has 47 records SELECT COUNT(*) from treeProject, callDisp Where treeProject.projectcode = ca

  • How do i scroll through calendars appointments using ios 7.1.1

    I just upgraded my iphone 4s to ios 7.1.1 and lost the ability to scroll through appointments in my calendars, with the upgrade you have to view day by day and cannot scroll through the week, the month or the year to see what you have coming up for a