None
Syntax
None(fieldlist)
where fieldlist is an arbitrary-length list of fields in the form:
[recordname.]fieldname1 [, [recordname.]fieldname2] ...
Description
The None function takes an arbitrary number of field names as parameters and tests for values. None returns True if none of the specified fields contain a value. It returns False ...
Not
Description
Use Not to negate Boolean expressions. See for more information.
NotifyQ
Syntax
NotifyQ(logical queue ID, task type)
Description
Use the NotifyQ function to notify the queue server of an incoming task. NotifyQ should always follow the use of the EnQueue function. EnQueue inserts the task into the PeopleSoft database, and NotifyQ notifies the queue server about a task's existence ...
NumberToDisplayString
Syntax
NumberToDisplayString(Format, Number [, Width] [, Precision])
Description
Use the NumberToDisplayString function to format Number according to the pattern specified in Format . The decimal and thousand's separator are formatted with what is with the current user's personalizations.
Specify the Width and Precision parameters when you want to dynamically specify ...
NumberToString
Syntax
NumberToString(Format, Number [, Width] [, Precision])
Description
Use the NumberToString function to format Number according to the pattern specified in Format .
Specify the Width and Precision parameters when you want to dynamically specify the width or precision. Both width and precision can be set based on Format . For example, the ...
ObjectDoMethod
Syntax
ObjectDoMethod(obj_this, str_method_name [, paramlist])
Where paramlist is a list of parameters of arbitrary length:
param1 [, param2]. . .
Description
Use the ObjectDoMethod function to invoke the method specified by str_method_name for the object object_this , passing in any required parameters using paramlist .
You can use ObjectDoMethod with Component Interfaces, Application Classes, OLE ...
ObjectDoMethodArray
Syntax
ObjectDoMethodArray(Object_Name, Method_Name, Array_of_Args)
Description
Use the ObjectDoMethodArray function to invoke the method specified by method_name for the object object_name , passing in any required parameters using the array.
Use this function when you're not certain, at the time you're writing your PeopleCode program, how many parameters a ...
ObjectGetProperty
Syntax
ObjectGetProperty(obj_this, str_property_name [, index_param_list])
Description
Use the ObjectGetProperty function to return the value of a property str_property_name of the object obj_this .
Note: The object must have already been instantiated, either using CreateObject or another function or method that returns an object. Default" OLE Automation object properties are not supported ...
ObjectSetProperty
Syntax
ObjectSetProperty(obj_this, str_property_name, val [, index_param_list])
Description
Use the ObjectSetProperty function to set the value of a property str_property_name of the object obj_this to val .
The object must have already been instantiated, either using CreateObject or another function or method that returns an object.
Note: Default OLE Automation object properties ...
OnlyOne
Syntax
OnlyOne(fieldlist)
where fieldlist is an arbitrary-length list of fields in the form:
[recordname.]fieldname1 [, [recordname.]fieldname2] ...
Description
Use the OnlyOne function to check a list of fields and return True if one and only one of the fields has a value. If all of the fields are empty ...