End-Function

Mon 01 January 2018

Description

Use End-Function to terminate a function definition. See for more information.

read more

End-If

Mon 01 January 2018

Description

Use End-If to terminate an if block. See for more information.

read more

End-While

Mon 01 January 2018

Description

Use End-While to terminate a while loop. See for more information.

read more

EndMessage

Mon 01 January 2018

Syntax

EndMessage(message, messagebox_title)

Description

Note: The EndMessage function is obsolete and is supported only for backward compatibility. The MessageBox function, which can now be used to display informational messages in any PeopleCode event, should be used instead.

Use the EndMessage function to display a message at the ...

read more

EndModal

Mon 01 January 2018

Syntax

EndModal(returnvalue)

Description

Use the EndModal function to close a currently open secondary page. It is required only for secondary pages that do not have OK and Cancel buttons. If the secondary page has OK and Cancel buttons, then the function for exiting the page is built in and ...

read more

EndModalComponent

Mon 01 January 2018

Syntax

EndModalComponent(ReturnValue)

Description

Use the EndModalComponent function to close a currently open secondary component. You could use this for creating your own links to exit a secondary component.

Important! Do not use multiple EndModalComponent or EndModal invocations to close multiple, open modal secondary windows simultaneously. Each modal window must ...

read more

EnQueue

Mon 01 January 2018

Syntax

EnQueue(logical_queue, task_type, Relative_URL, Language_Code [, subject][, agent_ID][, overflow_timeout][, escalation_timeout][, cost][, priority][, skill_level])

Description

Use the EnQueue function to assign a task to one of the active, physical queues belonging to the specified logical queue. The physical queue to which the system assigns the task is chosen randomly to balance ...

read more

Error

Mon 01 January 2018

Syntax

Error str

Description

Use the Error function in FieldEdit or SaveEdit PeopleCode to stop processing and display an error message. It is distinct from Warning, which displays a warning message, but does not stop processing. Error is also used in RowDelete and RowSelect PeopleCode events.

Warning! The behavior of ...

read more

EscapeHTML

Mon 01 January 2018

Syntax

EscapeHTML(TextString)

Description

Use the EscapeHTML function to replace all characters in TextString that would otherwise be interpreted as markup sequences.

The characters that are replaced are ones that would cause the browser to interpret them as HTML tags or other markup if they aren't encoded, and therefore ...

read more

EscapeJavascriptString

Mon 01 January 2018

Syntax

EscapeJavascriptString(String)

Description

Use the EscapeJavascriptString function to replace the characters in String that have special meaning in a JavaScript string as escape sequences.

For example, a single quotation mark` ( ' ) is replaced by \', a new line character is replaced by \n, and so on.

This function is for use ...

read more