I have a class that extends a runBaseBatch in AX 2012. I added a new field to the Class it just displays the first fields and not the 3rd one.
I have tried the following steps.
Cleared the Caches under AOT Tools Menu. Does not change. Incremental CIL does not show the change. What else should we do in order to see the code change on the dialog window. The third field does not show no matter what I try.
Thank you for your help.
protected Object dialog()
{
DialogRunbase dialogRunbase = super();
;
dialogRunbase.addGroup("DBS Options");
dialogEmail = dialogRunbase.addFieldValue(extendedTypeStr(ProjOptionHours),queryEmail, "Email", "");
dialogTriprinted = dialogRunbase.addFieldValue(extendedTypeStr(ProjOptionCost), queryTriprinted,"Triprintedtest", "");
dialogTriprinted = dialogRunbase.addFieldValue(extendedTypeStr(ProjOptionCost), queryTriprinted2,"Eamil2", "");
return dialogRunbase;
}