OnlyOneOrNone

Mon 01 January 2018

Syntax

OnlyOneOrNone(fieldlist)

where fieldlist is an arbitrary-length list of fields in the form:

[recordname.]fieldname1 [, [recordname.]fieldname2] ...

Description

Use the OnlyOneOrNone function to check a list of fields and return True if either of these conditions is true:

  • Only one of the fields has a value.

  • None of the ...

read more

Or

Mon 01 January 2018

Description

Use Or to combine Boolean expressions. See for more information.

read more

OverrideCNAVDisplayMode

Mon 01 January 2018

Syntax

OverrideCNAVDisplayMode([disable])

Description

Important! OverrideCNAVDisplayMode has been deprecated and remains for backward compatibility. Use the OverrideConditionalNav function instead.

Use the OverrideCNAVDisplayMode function to specify whether to disable conditional navigation.

Conditional navigation can be disabled for the life of a component by invoking this function as the first executable statement ...

read more

OverrideConditionalNav

Mon 01 January 2018

Syntax

OverrideConditionalNav([mode])

Description

Use the OverrideConditionalNav function to specify how to disable conditional navigation.

Conditional navigation can be disabled for the life of a component by invoking this function as the first executable statement in a PeopleCode PreBuild event. Alternatively, conditional navigation can be temporarily disabled for just a ...

read more

PanelGroupChanged

Mon 01 January 2018

Syntax

PanelGroupChanged()

Description

Use the PanelGroupChanged function to determine whether a component has changed since the last save, whether by the user or by PeopleCode.

Note: The PanelGroupChanged function is supported for compatibility with previous releases of PeopleTools. New applications should use the ComponentChanged function instead.

read more

PingNode

Mon 01 January 2018

Syntax

PingNode(MsgNodeName)

Description

Use the PingNode function to ping the specified node. It returns an XmlDoc object that you must go through to find the status of the node.

Parameters

Field or Control

Definition

MsgNodeName

Specify the name of the message node you want to ping, as a string ...

read more

PriorEffDt

Mon 01 January 2018

Syntax

PriorEffDt(field)

Description

Use the PriorEffDt function to return the value of the specified field from the record with the prior effective date. This function is valid only for effective-dated records.

If the record contains an effective sequence number field, the value of this field is compared along with ...

read more

PriorRelEffDt

Mon 01 January 2018

Syntax

PriorRelEffDt(search_field, fetch_field)

Description

Use the PriorRelEffDt function to locate the prior occurrence of the search_field with the prior effective date (and effective-sequence number if specified), then return the value of the specified fetch_field corresponding to the search_field . The return value is an Any data type. Typically, this function ...

read more

PriorValue

Mon 01 January 2018

Syntax

PriorValue(fieldname)

Description

Use the PriorValue function in FieldEdit and FieldChange PeopleCode to obtain the prior value of a buffer field that the user just changed. It returns the value that was in the buffer field before the user changed it, not the value of the field the last ...

read more

Product

Mon 01 January 2018

Syntax

Product(numlist)

where numlist is an arbitrary-length list of numbers in the form

n1 [, n2]. . .

Description

Use the Product function to multiply all the numbers in numlist and returns the product as a Number data type. The numbers in the list can be any number expressed as a number ...

read more