How to Refresh the caller form from the called form in Ax 2012
How to Refresh the caller form from the called form in Ax 2012
public boolean canClose()
{
boolean ret;
#Task
FormRun formRun;
ret = super();
// Get an instance of the calling form.
formRun = element.args().caller();
// If the caller is a form, refresh that form.
if(formRun)
{
formRun.task(#taskF5);
}
return ret;
}
Comments
Post a Comment