Hello Everyone,
I am working on ADF. I created a Task flow in that I created a method Call Activity which is default one when I run the page the method is not getting called. Then I made change that on my EL expression I changed it from "requestscope.classname.methodname" to "classname.methodname" now the method is accessing in the bean.
I want to know that why its not calling my method when it is scope???
My bean is in request scope and my method is calling only the the expression builder is linked to normal Managed Beans like "#{classname.methodname}"
its not calling when it is like "#{requestscope.classname.methodname}"
why is it so????????