PortalGetRLTab Method
This method retrieves property values in the RecordList tab of an Order Object item.

Namespace:  PortalService
 

Syntax
C#
public long GetRLTab(
	long OrderID,
	long tabID,
	int getPropinfoOrPropxml,
	out PropertyInfo[] propData,
	out string rlpropXML,
	out string error
)

Parameters

OrderID
Type: SystemInt64
[in]The ID of the Order object instance for which you want to retrieve property values from the RecordList Tab.
tabID
Type: SystemInt64
[in]The ID of the RecordList Tab associated with the Order object.
getPropinfoOrPropxml
Type: SystemInt32
[in]Indicates the format of the output. Specify one of the following values:
  • 0 - Obtain the output in the PropertyInfo[] structure.
  • 1 - Obtain the output in XML format in the propXML output parameter.
  • 2 - Obtain the output in the PropertyInfo[] structure and in XML format in the propXML output parameter.
propData
Type: Talisma.Server.CommonPropertyInfo
[out]Array of the PropertyInfo[] structure that contains property values retrieved from the RecordList tab of the specified order object item. The value of the array will be blank if property values are not available in the RecordList tab.
rlpropXML
Type: SystemString
[out]Contains the output in XML format. The value of the rlpropXML parameter will be NULL if property values are not available in the specified RecordList tab of the order object item.
error
Type: SystemString
[out]The error message returned if the operation fails.

Return Value

Type: Int64
This method returns 0 if the operation is successful and a negative value if the operation fails.
See Also