EscapeWML

Mon 01 January 2018

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 ...

read more

Evaluate

Mon 01 January 2018

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 ...

read more

Exact

Mon 01 January 2018

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.

read more

Exec

Mon 01 January 2018

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 ...

read more

ExecuteRolePeopleCode

Mon 01 January 2018

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 ...

read more

ExecuteRoleQuery

Mon 01 January 2018

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 ...

read more

ExecuteRoleWorkflowQuery

Mon 01 January 2018

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 ...

read more

ExecuteSearchSavePC

Mon 01 January 2018

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.

read more

Exit

Mon 01 January 2018

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 ...

read more

Exp

Mon 01 January 2018

Syntax

Exp(n)

Description

Exp returns the constant e raised to the power of n where n is a number. The constant e equals 2.71828182845904, the base of natural logarithms. The number n is the exponent applied to the base e .

Exp is the inverse of the Ln function ...

read more