How to check caller form in ax 2009 using X++?
Views (10879)
To check the caller form name you can use this code.
if( element.args().parm()==formstr(FormName))
{
//<Code>
}
Note: Form Name Must be Correct Name
To check the caller form name you can use this code.
if( element.args().parm()==formstr(FormName))
{
//<Code>
}
Note: Form Name Must be Correct Name
*This post is locked for comments