End-Function
Description
Use End-Function to terminate a function definition. See for more information.
End-If
Description
Use End-If to terminate an if block. See for more information.
End-While
Description
Use End-While to terminate a while loop. See for more information.
EndMessage
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 ...
EndModal
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 ...
EndModalComponent
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 ...
EnQueue
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 ...
Error
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 ...
EscapeHTML
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 ...
EscapeJavascriptString
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 ...