JournalCheckPostLedger.dialog Method [AX 2012]
Returns a class that contains the methods that are described by the RunBaseDialogable interface.
The following methods demonstrate the use of the dialog method. These examples do not compile in a job as they must be run in the context of a class, form, or other object.
//Using the standard dialog system:
Object dialog()
{
DialogRunbase dialog = super();
dlgTransDate = dialog.addField(extendedTypeStr(transDate));
return dialog;
}
//Or using a form in the AOT:
public Object dialog()
{
dialogRunbase dialog = dialog::newFormnameRunbase
(formstr(tutorial_RunbaseForm),this);
dialog = super(dialog);
return dialog;
}
Community Additions
ADD
Show: