HI All,
How can I set the parm value when sending some data from the EP web control (AxActionPaneControl) to runbase based class in AX. What I am trying to achieve is to set this parm value to be available with my args in my AX class. I have the basic method on my class:
static void main(Args _args)
{
Common multiSelectionRecord;
MultiSelectionContext multiSelectionContext;
multiSelectionContext = _args.multiSelectionContext();
if(multiSelectionContext)
{
multiSelectionRecord = multiSelectionContext.getFirst();
while(multiSelectionRecord)
{
info(int642str(multiSelectionRecord.RecId));
multiSelectionRecord = multiSelectionContext.getNext();
}
}
else{
info(_args.toString());
}
info(_args.parm());
}
and I am getting my args ok but not sure how can i set the parm on my web control.
Many thanks
*This post is locked for comments
I have the same question (0)

Report
All responses (
Answers (