Hi,
Lets suppose we have a STANDARD Form 'ABC' having multiple datasources say dsA,dsB,dsC.
Now in dsB there is below code written,
public void init()
{
String hello = ordertype ::sales;
QueryBuildDataSource qbds;
super();
lots of logic executed based on hello.(lets say line 10-lin 20)
qbds = hello etc...
}
My requirement is to set the value of hello to purchase in case it is being called from a Purchase menu item.
The form datasouce COC wont help because the line 10-line 20 will have already executed.
Also the event handler of initialized might not work in this case...
So is there a way to handle this logic .
I dont think so there is initializing for init of datasouce.
Thanks,
VM