Im building a small ADF application using data visualizations and ran into a problem.
Right now I have a session scoped managed bean, named map_action, which is used to pass data from a <dvt:map> to a sql query inside a DataControl by its property country.
This query uses a bind variable named location in its where clause. And the bind variable takes its value from a groovy expression:
adf.context.sessionScope.map_action.country
This has one problem. Even though the value of map_action.country changes, the bind variable always uses the first value.
Is there any way to make location take the value of map_action.country? It looks as it is reading a cached value.
Perhaps the groovy expression is not correct. Is there any way to message the current map_action instance?
Thanks in advance.