CreateObjectArray
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 ...
CreateProcessRequest
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 ...
CreateRecord
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 ...
CreateRowset
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 ...
CreateRowsetCache
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 ... |
CreateSearchRowset
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.
CreateSOAPDoc
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.
CreateSQL
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 ...
CreateWSDLMessage
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.
CreateXmlDoc
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 ... |