I realize that this is in the manual, but I always forget… Binding notation in different layouts:
JHeadstart Tip #1
Leave a reply
In Oracle Fusion Framework ViewObjectImpl class override executeQueryForCollection and add the following to view the parameters that have been sent to the method:
if (params != null) { for (Object param : params) { Object[] value = (Object[])param; LOGGER.info("Name=" + value[0] + "; Value=" + value[1]); } }
Source: Coding With Passion