how to call a taskflow based on the outcome of dropdown in ADF.?

1.3k Views Asked by At

I want to call a taskflow based on the outcome of Dropdown, I have a dropdown with LOV, if i choose a value in that, it should call the taskflow assigned to it. How to do that.?. How to assign a taskflow for all the values and how to call that. Somebody please help...

2

There are 2 best solutions below

6
On

I would put this problem in a different perspective: what you are trying to do is to invoke an navigation action of the current task flow. This action can be firing a task flow call.

Presuming the current task flow has an action named "gotoTF1", action pointing towards a Task Flow Call activity, you should have an af:button with visible=false and action="gotoTF1".

Please find below few blogs, explaining this in more detail:

http://www.techartifact.com/blogs/2012/09/queue-an-action-event-or-invoking-the-button-action-in-programmatic-way-techartifact.html#sthash.MIyX2mvt.dpbs http://www.awasthiashish.com/2013/04/invoking-button-action.html https://mjabr.wordpress.com/2011/05/20/invoke-buttons-action-programatically-in-java/

0
On

If you know the basics then you will not how to call a action from from button ?

Now you have to just use the code from blog to call that Action using ValueChangeEvent

Ashish