None

Mon 01 January 2018

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 ...

read more

Not

Mon 01 January 2018

Description

Use Not to negate Boolean expressions. See for more information.

read more

NotifyQ

Mon 01 January 2018

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 ...

read more

NumberToDisplayString

Mon 01 January 2018

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 ...

read more

NumberToString

Mon 01 January 2018

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 ...

read more

ObjectDoMethod

Mon 01 January 2018

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 ...

read more

ObjectDoMethodArray

Mon 01 January 2018

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 ...

read more

ObjectGetProperty

Mon 01 January 2018

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 ...

read more

ObjectSetProperty

Mon 01 January 2018

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 ...

read more

OnlyOne

Mon 01 January 2018

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 ...

read more