Discussions
Categories
- 17.9K All Categories
- 3.4K Industry Applications
- 3.3K Intelligent Advisor
- 62 Insurance
- 536.1K On-Premises Infrastructure
- 138.2K Analytics Software
- 38.6K Application Development Software
- 5.7K Cloud Platform
- 109.4K Database Software
- 17.5K Enterprise Manager
- 8.8K Hardware
- 71.1K Infrastructure Software
- 105.2K Integration
- 41.6K Security Software
how to pass paramter between 2 seprate taskflows in webcenter portal 12 ?

i have developed 2 custom task flows TaskFlowA , TaskFlowB
and deployed them as shared library and added them to resource catalog
the the taskFlowB has input Paramter , called url which is the value for inlineFrame component
and taskFlowA has 3 af:links with actionListner link1 , link2 , link3
those 2 task flows are added on webcenter portal page as a components
the problem is i can't pass paramter from taskFlowA whick is the url to TaskFlowB and refresh it
(i tried to use session scope variables , and it worked but the behavior became incostistant when open multiple tabs )
any help please ?
Answers
-
Hi,
For communicating Task Flows within a Oracle WebCener Portal Page you can make use of the Contextual Events framework provided by Oracle ADF.
- Your Task Flow A can throw a Contextual Event that you can define declaratively or fire it programmatically with a Payload included.
- Your Task Flow B consumes the Contextual Event of Task Flow A by registering himself as a consumer in the same WebCenter Portal Page (in the Page Definition).
Kind regards.