SysAutoRun.execPreventCheckList Method [AX 2012]

Prevents the display of all checklists that run when Microsoft Dynamics AX starts.

Syntax

protected boolean execPreventCheckList(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 execPreventCheckList method is called when the <PreventCheckList> 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 execPreventCheckList method does not prevent checklists from being run only from being displayed. For example, this method could be used to disable the display of a checklist where most of the items have been run, and there is no intent to run the remaining items. Directly open the checklist from the Application Object Tree (AOT) or by using the SysAutoRun.execCheckList method.

Examples

The following example shows how to use the <PreventCheckList> tag in a configuration file.

<PreventCheckList />

See Also

Reference

SysAutoRun Class