GetRowset

Mon 01 January 2018

Syntax

GetRowset([SCROLL.scrollname])

Description

Use the GetRowset function to get a rowset object based on the current context. That is, the rowset is determined from the row containing the program that is running.

Parameters

If a parameter is specified, it must be the name of the primary record for ...

read more

GetRowsetCache

Mon 01 January 2018

Syntax

GetRowsetCache([Rowset.]name, [language])

Description

Use GetRowsetCache to return the existing rowset cache with the given name.

Note: This function returns a RowsetCache object, not a rowset object. You must use the Get RowsetCache method in order to convert a RowsetCache object into a rowset object.

Every time you ...

read more

GetSearchRecName

Mon 01 January 2018

Syntax

GetSearchRecName()

Description

Use the GetSearchRecName function to return the search record name for the component.

Important! Use this function within fluid applications only.

Parameters

None.

Returns

A string value.

read more

GetSelectedTreeNode

Mon 01 January 2018

Syntax

GetSelectedTreeNode(RECORD.recordname)

Description

Use the GetSelectedTreeNode function to determine what node the user has selected in a dynamic tree control.

Note: Dynamic tree controls have been deprecated. Use the GenerateTree function or Tree Viewer.

read more

GetSeries

Mon 01 January 2018

Syntax

GetSeries()

Description

Use the GetSeries function to get a reference to a Series object. Series instances can then be associated with a Chart object.

Parameters

None.

Returns

A reference to a Series object.

read more

GetSession

Mon 01 January 2018

Syntax

GetSession()

Description

Use the GetSession function to retrieve a PeopleSoft session object.

After you use GetSession, you can instantiate many other types of objects, like Component Interfaces, data trees, and so on.

After you use GetSession you must connect to the system using the Connect property.

If you are ...

read more

GetSetId

Mon 01 January 2018

Syntax

GetSetId({FIELD.fieldname | text_fieldname}, set_ctrl_fieldvalue, {RECORD.recname | text_recname}, treename)

Description

Use the GetSetId function to return a string containing a setID based on a set control field (usually BUSINESS_UNIT), a set control value, and one of the following:

  • The name of a control table (or view) belonging to a ...

read more

GetSparkChart

Mon 01 January 2018

Syntax

GetSparkChart(RecordName.FieldName)

Description

Use the GetSparkChart function to return a reference to a SparkChart object.

A spark chart must be associated with a record and field merely so that the spark chart object can be instantiated in PeopleCode. Which record and field you use doesn't matter. Commonly ...

read more

GetSparkChartItem

Mon 01 January 2018

Syntax

GetSparkChartItem()

Description

Use the GetSparkChartItem function to return a reference to a SparkChartItem object.

Parameters

None.

Returns

A reference to a SparkChartItem object.

read more

GetSQL

Mon 01 January 2018

Syntax

GetSQL(SQL.sqlname [, paramlist])

Where paramlist is an arbitrary-length list of values in the form:

inval1 [, inval2] ...

Description

Use the GetSQL function to instantiate a SQL object and associates it with the SQL definition specified by sqlname . The SQL definition must already exist, either created using Application Designer or ...

read more