- Define a new parameter in "Input Parameter Definition" of taskflow and assign to it value of request parameter by
#{pageFlowScope.requestParameterName}
Actually ADF fetches request parameters and places in pageFlowScope when you call a Taskflow from URL - Now use this newly defined parameter anywhere you want like in a condition of router by this
#{pageFlowScope.parameterName == 'some conditional value'}
ADFContext.getCurrent().getExpressionEvaluator().evaluate("#{pageFlowScope.yourParameterName}");
No comments:
Post a Comment