ViewContentURLModeless
Syntax
ViewContentURLModeless({URL_str | URL.URL_ID}, [modal_options])
Description
Use the ViewContentURLModeless function to open a modeless modal window displaying the PeopleSoft component content (either classic or fluid) specified by the URL parameter. The user must dismiss the modeless window before continuing work in the page from which the modeless window was ...
ViewURL
Syntax
ViewURL(URL_str | URL.URL_ID [, NewWindow])
Description
Use the ViewURL function to launch the default browser and navigate to the location specified by URL_str or URL . URL_ID . This is a deferred execution command: the browser is launched after any executing PeopleCode has run to completion. You can also specify whether ...
ViewURLModeless
Syntax
ViewURLModeless({URL_str | URL.URL_ID}, [modal_options])
Description
Use the ViewURLModeless function to open a modeless modal window displaying the non-component content (for example, an iScript or external content) specified by the URL parameter. The user must dismiss the modeless window before continuing work in the page from which the modeless ...
Warning
Syntax
Warning str
Description
You typically use the Warning function in FieldEdit or SaveEdit PeopleCode to display a message alerting the end user about a potentially incorrect data entry or change. It differs from the Error function in that it does not prevent the end user from taking an action ...
Weekday
Syntax
Weekday(dt)
Description
Use the Weekday function to calculate the day of the week based on a date value.
Parameters
Field or Control |
Definition |
---|---|
dt |
A Date value. Weekday determines the day of the week that dt falls on. |
Returns
Returns a Number value representing the day of the ...
When
Description
Use When clauses in an Evaluate construct. See for more information.
When-Other
Description
Use a WhenâOther clause in an Evaluate construct. See for more information.
While
Syntax
While logical_expression statement_list End-While
Description
The While loop causes the statements of the statement_list to be repeated until logical_expression is false. Statements of any kind are allowed in the loop, including other loops. A Break statement inside the loop causes execution to continue with whatever follows the end of ...
WinEscape
Syntax
WinEscape()
Description
Note: This function has been deprecated and is no longer supported.