FindCodeSetValues

Mon 01 January 2018

Syntax

FindCodeSetValues(CodesetName, &NameValuePairs, SourceNodeName, TargetNodeName)

Description

Use the FindCodeSetValues function to find a list of code set name-value pairs. Code sets are primarily used with data value translations as part of a transformation.

Parameters

Field or Control

Definition

CodeSetName

Specify the name of the code set you want to ...

read more

FindFiles

Mon 01 January 2018

Syntax

FindFiles(filespec_pattern [, pathtype])

Description

Use the FindFiles function to return a list of the external file names that match the file name pattern you provide, in the location you specify.

Parameters

Field or Control

Definition

filespec_pattern

Specify the path and file name pattern for the files you want to ...

read more

FlushBulkInserts

Mon 01 January 2018

Syntax

FlushBulkInserts()

Description

Use the FlushBulkInserts function to move the bulk inserted rows from the bulk insert buffers of the PeopleSoft process to the physical tables on the database. This flushes all open SQL objects that have pending bulk inserts, but performs no COMMITs. If the flush fails, the PeopleCode ...

read more

For

Mon 01 January 2018

Syntax

For count = expression1 To expression2 [Step i]
   statement_list
End-For

Description

Use the For loop to cause the statements of the statement_list to be repeated until count is equal to expression2 . Step specifies the value by which count will be incremented each iteration of the loop. If you do not ...

read more

FormatDateTime

Mon 01 January 2018

Syntax

FormatDateTime(datetime, {timezone | "Local" | "Base"}, displayTZ)

Description

Use the FormatDateTime function to take a datetime value and convert it to text. If a specific time zone abbreviation, or a field reference, is passed in timezone , FormatDateTime adjusts the DateTime to the user’s local time zone instead of the ...

read more

Forward

Mon 01 January 2018

Syntax

Forward(from physical queue ID, from agent ID, task
number, task type, to logical queue ID[, to agent ID])

Description

Use the Forward function to transfer a task from one agent to another agent or from one agent's logical queue to another logical queue. This enables agents to ...

read more

Function

Mon 01 January 2018

Syntax

Function name[(paramlist)] [Returns data_type]
   [statements]
End-Function

Where paramlist is:

&param1 [As data_type] [, &param2 [As data_type]]... 

Where data_type is any valid data type, including Number, String, Date, Rowset, SQL, Record, and so on.

Where statements is a list of PeopleCode statements.

Description

PeopleCode functions can be defined in any ...

read more

GenABNNodeURL

Mon 01 January 2018

Syntax

GenABNNodeURL(node,initial_node,display_parent)

Description

Note: SmartNavigation has been deprecated. This function remains for backward compatibility only.

Use the GenABNNodeURL function to generate a URL for a specific node within a SmartNavigation chart.

Important! This function must be called during a user action that displays the SmartNavigation chart—for ...

read more

GenDynABNElement

Mon 01 January 2018

Syntax

GenDynABNElement(&str_param1[,&str_param2], ...)

Description

Note: SmartNavigation has been deprecated. This function remains for backward compatibility only.

Use the GenDynABNElement function to generate <li> elements for the specified data source to be used as a dynamically generated SmartNavigation subfolder. This built-in function is required when the root SmartNavigation folder is ...

read more

GenerateActGuideContentUrl

Mon 01 January 2018

Syntax

GenerateActGuideContentlUrl(PORTAL.portalname, NODE.nodename, MENUNAME.menuname, Marketname, COMPONENT.componentname, ActivityGuide) 

Description

Use the GenerateActGuideContentUrl function to create a URL string that represents an absolute reference to the specified Workflow activity guide for the content servlet. The ContentURI of the node that hosts the specified portal is used ...

read more