CreateObjectArray

Mon 01 January 2018

Syntax

CreateObjectArray(Class_Name, Array_of_Args)

Description

Use the CreateObjectArray function to return an instance of a class.

Use this function when you must pass in parameters to create the object and you don’t know when you write the code how many parameters are required. If you can create the object ...

read more

CreateProcessRequest

Mon 01 January 2018

Syntax

CreateProcessRequest([ProcessType, ProcessName])

Description

Use the CreateProcessRequest function to create a ProcessRequest object. After you’ve created this object, you can assign values to its properties then use the Schedule method to submit the process request for scheduling.

If you specify PSJob for the process type, the ProcessRequest object ...

read more

CreateRecord

Mon 01 January 2018

Syntax

CreateRecord(RECORD.recname)

Description

Use the CreateRecord function to create a standalone record definition and its component set of field objects. The specified record must have been defined previously, that is, it must have a record definition. However, if you are calling this function from PeopleCode associated with a ...

read more

CreateRowset

Mon 01 January 2018

Syntax

CreateRowset({RECORD.recname | &Rowset} [, {FIELD.fieldname, RECORD.recname | &Rowset}] .  .  .)

Description

Use the CreateRowset function to create an unpopulated , standalone rowset.

A standalone rowset is a rowset that has the specified structure, but is not tied to any data (that is, to the component buffer or to a message.) In ...

read more

CreateRowsetCache

Mon 01 January 2018

Syntax

CreateRowsetCache(&Rowset, [Rowset.]Name, Description)

Description

Use the CreateRowsetCache function to create a new RowsetCache object with the given name if it doesn't already exist.

Parameters

Field or Control

Definition

&Rowset

Specify an already instantiated and populated rowset that you want to use for creating a RowsetCache object ...

read more

CreateSearchRowset

Mon 01 January 2018

Syntax

CreateSearchRowset([counts])

Description

Use the CreateSearchRowset function to create the rowset based off of the search record and key list values.

Important! Use this function within fluid applications only.

Parameters

Field or Control

Definition

counts

The optional counts parameter is currently not supported.

Returns

A Rowset object.

read more

CreateSOAPDoc

Mon 01 January 2018

Syntax

CreateSOAPDoc()

Description

Use the CreateSOAPDoc function to create an empty SOAPDoc object. Then use the SOAPDoc class methods and properties, as well as the XmlDoc class methods and properties to populate the SOAPDoc object.

Parameters

None.

Returns

A reference to a SOAPDoc object.

read more

CreateSQL

Mon 01 January 2018

Syntax

CreateSQL([{sqlstring | SQL.SqlName}[, paramlist]])

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

inval1 [, inval2] ...

Description

Use the CreateSQL function to instantiate a SQL object from the SQL class and opens it on the given sqlstring and input values. sqlstring is a PeopleCode string value giving ...

read more

CreateWSDLMessage

Mon 01 January 2018

Syntax

CreateWSDLMessage(MessageName, ChannelName)

Description

Use the CreateWSDLMessage function to create an unstructured message. This function creates both the message as well as the channel.

This function has been deprecated. It is no longer supported.

read more

CreateXmlDoc

Mon 01 January 2018

Syntax

CreateXmlDoc(XmlString, DTDValidation)

Description

Use the CreateXmlDoc function to create an XmlDoc object. If you specify a Null string for XmlString (""), you create an empty XmlDoc object.

Parameters

Field or Control

Definition

XmlString

Specify an XML string that you want to convert into an XmlDoc object that you can ...

read more