JmgIpcLedgerEnter.getFromDialog Method [AX 2012]

Assigns the dialog box values to internal variables.

public boolean getFromDialog()

Run On

Called

Return Value

Type: boolean
A Boolean value.

When writing a method that inherits from this method remember to call the super method.

This method is called after the dialog box is closed. The internal variables to use are the groupTransInDimensions, transDate, fromDate, toDate, and repost variables.

The following example demonstrates the use of this method.

public boolean getFromDialog()  
{  
    transDate   = dlgTransDate.value();  
    custAccount = dlgCustAccount.value();  
    return super();  
}

Community Additions

ADD
Show: