EscapeWML
Syntax
EscapeWML(String)
Description
Use the EscapeWML function to escape special characters that are significant to WML. This includes <, >, $ (escaped as $$), &, ' and ".
This function is for use with strings that display on an WML browser.
Parameters
Field or Control |
Definition |
---|---|
String |
Specify a string that contains characters that need to ... |
Evaluate
Syntax
Evaluate left_term When [relop_1] right_term_1 [statement_list] . . . [When [relop_n] right_term_n [statement_list]] [When-Other [statement_list]] End-Evaluate
Description
Use the Evaluate statement to check multiple conditions. It takes an expression, left_term , and compares it to compatible expressions ( right_term ) using the relational operators ( relop ) in a sequence of When clauses. If relop is omitted ...
Exact
Syntax
Exact(string1, string2)
Description
Use the Exact function to compare two text strings and returns True if they are the same, False otherwise. Exact is case-sensitive because it uses the internal character codes.
Returns
Returns a Boolean value: True if the two strings match in a case-sensitive comparison.
Exec
Syntax
Exec(command_str [, parameter])
where parameter has one of the following formats:
Boolean constant
Exec_Constant + Path_Constant
Description
Exec is a cross-platform function that executes an external program on either UNIX or Windows.
This function has two parameter conventions in order to maintain upward compatibility with existing programs.
Note: All PeopleCode ...
ExecuteRolePeopleCode
Syntax
ExecuteRolePeopleCode(RoleName)
Description
Use the ExecuteRolePeopleCode function to execute the PeopleCode Rule for the Role RoleName . This function returns an array of string containing dynamic members (UserIds).
Typically, this function is used by an Application Engine process that runs periodically and executes the role rules for different roles. It ...
ExecuteRoleQuery
Syntax
ExecuteRoleQuery(RoleName, BindVars)
where BindVars is an arbitrary-length list of bind variables that are stings in the form:
bindvar1 [, bindvar2]. . .
Description
Use the ExecuteRoleQuery function to execute the Query rule for the role rolename , passing in BindVars as the bind variables. This function returns an array object containing the ...
ExecuteRoleWorkflowQuery
Syntax
ExecuteRoleWorkflowQuery(RoleName, BindVars)
where BindVars is an arbitrary-length list of bind variables in the form:
bindvar1 [, bindvar2]. . .
Description
Use the ExecuteRoleWorkflowQuery function to execute the Workflow Query rule for the role rolename , passing in BindVars as the bind variables. This function returns an array object containing the appropriate user ...
ExecuteSearchSavePC
Syntax
ExecuteSearchSavePC()
Description
Use the ExecuteSearchSavePC function to execute any SearchSave PeopleCode on the search page.
Important! Use this function within fluid applications only.
Parameters
None.
Returns
None.
Exit
Syntax
Exit[(1)]
Description
Use the Exit statement to immediately terminate a PeopleCode program. If the Exit statement is executed within a PeopleCode function, the main program terminates.
Note:
Exit(1)
does
not
rollback
iScript transactions. To rollback in an iScript, you can use the SqlExec
built-in function with the ...