|
Declare Function - PeopleCode Commands Directory
Declare Function
Usage:
DECLARE FUNCTION functionName LIBRARY libName [ALIAS ModuleName ] [parameter1, [REF | VALUE] ]... [RETURNS ReturnType [AS PeopleCodeType]]
Description:
Declares PeopleCode or external function for use in the PeopleCode program
If this has not answered your question - either search on Google or ask a question below:
Create a simple Launch Page for your PeopleSoft Databases
Comment: DC
The above is for an external declaration. More common is a PeopleCode declaration:
Declare Function function_name PeopleCode record_name.field_name event_type;
e.g. event_type - FieldFormula
|