webActionItemStr Function

Validates that the specified web action item exists in the AOT; if not, a compiler error occurs.


str webActionItemStr(class webactionitem)

Parameter

Description

webactionitem

The name of the web action item to validate.

The name of the specified web action item if valid.

This function is an intrinsic function, which is a metadata assertion function. Intrinsic functions take arguments that represent entities in the Application Object Tree (AOT) and validate these arguments at compile time. They have no effect at run time.

{
    str s;
    ;
    s = webActionItemStr(EPFlushData);
    print "webactionitem str is " + s;
    pause;
}

Community Additions

ADD
Show: