AddOnLoadScript
Syntax
AddOnLoadScript(onload_script)
Description
Use the AddOnLoadScript function to add the JavaScript code to be executed in the onload event of the HTML document.
Important! Use this function within fluid applications only.
Parameters
Field or Control |
Definition |
---|---|
onload_script |
Specifies the JavaScript code to be executed in the onload event of ... |
AddStyleSheet
Syntax
AddStyleSheet(StyleSheet.STYLESHEET_NAME)
Description
Use the AddStyleSheet function to add a free form style sheet to the HTML document for the page or component.
Important! Use this function within fluid applications only.
Parameters
Field or Control |
Definition |
---|---|
StyleSheet. STYLESHEET_NAME |
Specifies the style sheet as a style sheet object stored ... |
AddSystemPauseTimes
Syntax
AddSystemPauseTimes(StartDay, StartTime, EndDay, EndTime)
Description
Use the AddSystemPauseTimes function to set when pause times occur on your system by adding a row to the system pause-times tables.
This function is used in the PeopleCode for the Message Monitor. Pause times are set up in the Message Monitor.
Parameters ...
AddToDate
Syntax
AddToDate(date, num_years, num_months, num_days)
Description
Use the AddToDate function to add the specified number of years, months, and days to the date provided.
Suppose, for example, that you want to find a date six years from now. You could not just multiply ...
AddToDateTime
Syntax
AddToDateTime(datetime, years, months, days, hours, minutes, seconds)
Description
Use the AddToDateTime function to add the specified number of years, months, days, hours, seconds, and minutes to the datetime provided. You can subtract from datetimes by passing the function negative numbers.
Parameters
Field or Control |
Definition |
---|---|
datetime |
The initial ... |
AddToTime
Syntax
AddToTime(time, hours, minutes, seconds)
Description
Use the AddToTime function to add hours , minutes , and seconds to time . This function returns the result as a Time value. To subtract from time , use negative numbers for hours , minutes , and seconds . The resulting value is always adjusted such that it represents ...
All
Syntax
All(fieldlist)
Where fieldlist is an arbitrary-length list of field names in the form:
[recordname.]fieldname1 [, [recordname.]fieldname2] ...
Description
Use the All function to verify if a field contains a value, or if all the fields in a list of fields contain values. If any of the fields are ...
AllOrNone
Syntax
AllOrNone(fieldlist)
Where fieldlist is an arbitrary-length list of field references in the form:
[recordname.]fieldname1 [, [recordname.]fieldname2] ...
Description
The AllOrNone function takes a list of fields and returns True if either of these conditions is true:
-
All of the fields have values (that is, are not Null).
-
None ...
AllowEmplIdChg
Syntax
AllowEmplIdChg(is_allowed)
Description
By default, the Component Processor does not allow an user to make any changes to a record if a record contains an EMPLID key field, EMPLID is a required field, and its value matches the value of the userâs EMPLID. In some situations, though, such ...