Share via


EventBuildValidAlertFields.run Method [AX 2012]

Contains the actual updating processing of the class. The only exception from the standard implementation is that this method will not throw an error if validate returns false.

Syntax

public void run()

Run On

Client

Examples

static EventBuildValidAlertFields newFormDataSource( 
    FormRun         _formRun, 
    FormDataSource  _formDataSource, 
    boolean         _findFirstOnly = false 
    ) 
{ 
    Args                        args = new Args(); 
    EventBuildValidAlertFields  eventBuildValidAlertFields = EventBuildValidAlertFields::construct(); 
 
    eventBuildValidAlertFields.parmFormDataSource(_formDataSource); 
    eventBuildValidAlertFields.parmFormRun(_formRun); 
    eventBuildValidAlertFields.parmFindFirstOnly(_findFirstOnly); 
    eventBuildValidAlertFields.run(); 
    return eventBuildValidAlertFields; 
}

See Also

EventBuildValidAlertFields Class

RunBase Class