SysAutoRun.execCheckList Method [AX 2012]

Checks whether the installation checklist or the upgrade checklist has been completed, and then starts them if they are incomplete.

Syntax

protected boolean execCheckList(XmlNode _command)

Run On

Client

Parameters

  • _command
    Type: XmlNode Class
    The XML node to get the value from.

Return Value

Type: boolean
true if execution is successful; otherwise, false.

Remarks

The execCheckList method is called when the <CheckList> tag is used in the configuration file when Microsoft Dynamics AX is started. For more information, see the SysAutoRun class.

Execution of this method is controlled by the SysAutoRun.execCommand method.

The <CheckList> tag has the type attribute, which is the type of checklist to start. The possible values are "installation" and "upgrade".

Examples

The following example shows a possible use of the <CheckList> tag in the configuration file.

<CheckList type="installation" />

See Also

SysAutoRun Class

SysAutoRun.execPreventCheckList Method