GetLEDGauge
Syntax
GetLEDGauge(RecordName.FieldName)
Description
Use the GetLEDGauge function to get a reference to an LEDGauge object.
A gauge must be associated with a record and field merely so that the gauge object can be instantiated in PeopleCode. Which record and field you use doesn't matter. Commonly, the same ...
GetLevel0
Syntax
GetLevel0()
Description
Use the GetLevel0 function to create a rowset object that corresponds to level 0 of the component buffer. If used from PeopleCode that isnât associated with a page, it returns the base rowset from the current context.
Parameters
GetLevel0 has no parameters. However, it does have ...
GetMessage
Syntax
GetMessage()
Description
Use the GetMessage function to return a message.
Note: This function has been deprecated and remains for backward compatibility only. Use the IntBroker class GetMessage method instead.
It retrieves a message from the message queue for the current message being processed.
Note: The GetMessage function does not ...
GetMessageInstance
Syntax
GetMessageInstance(pub_id, pub_nodename, channelname)
Description
Use the GetMessageInstance function to get a message from the message queue.
Note: This function has been deprecated and is no longer supported.
GetMessageXmlDoc
Syntax
GetMessageXmlDoc()
Description
Use the GetMessageXmlDoc function in any of the messaging PeopleCode events.
Note: This function has been deprecated and remains for backward compatibility only. Use the Message class GetXMLDoc method instead.
It retrieves an XML message, either from the message queue for asynchronous messages, or in memory for ...
GetMethodNames
Syntax
GetMethodNames(Type, Name)
Description
Use the GetMethodNames function to return either the method names for a Component Interface, or the function names of a WEBLIB record.
Parameters
Field or Control |
Definition |
---|---|
Type |
Specify the type of methods or functions you want returned. This parameter takes a string value. The ... |
GetNextNumber
Syntax
GetNextNumber ({record.field | record_name, field_name}, max_number)
Description
Use the GetNextNumber function to increment the value in a record for the field you specify by one and returns that value. You might use this function to increment an employee ID field by one when you are adding a new employee ...
GetNextNumberWithGaps
Syntax
GetNextNumberWithGaps(record.field, max_number, increment [, WHERE_Clause, paramlist])
Where paramlist is an arbitrary-length list of values in the form:
var1 [, var2] ...
Description
Use the GetNextNumberWithGaps function to determine the highest value in a table for the field you specify, and return that value plus increment .
Note: This function has been ...
GetNextNumberWithGapsCommit
Syntax
GetNextNumberWithGapsCommit(record.field, max_number, increment [, WHERE_Clause, paramlist])
Where paramlist is an arbitrary-length list of values in the form:
var1 [, var2] ...
Description
Use the GetNextNumberWithGapsCommit function to return the sequence number value plus increment for the given field residing in the given record . This function also enables you to specify ...
GetNextProcessInstance
Syntax
GetNextProcessInstance([Commit])
Description
Use the GetNextProcessInstance function to retrieve the next available process instance from the Process Scheduler System table. When determining to find the next process instance in the sequence, the function ensures the next available process instance does not exist in both the Process Request and Message ...