AccountGetRLTab Method |
This method enables you to get the Property values available in the RecordList Tab of an Account item in CampusNexus CRM.
Namespace: AccountService
C#
public long GetRLTab( long accountID, long tabID, int getPropinfoOrPropxml, out PropertyInfo[] propData, out string rlpropXML, out string error )
Parameters
- accountID
- Type: SystemInt64
[in] The ID of the Account for which you want to retrieve the values from the RecordList Tab of the Account item. - tabID
- Type: SystemInt64
[in] The ID of the RecordList Tab associated with the Account Object. - getPropinfoOrPropxml
- Type: SystemInt32
[in] Indicates the format of the output. You can specify one of the following values:- 0 - Specify this value to obtain the output in the PropertyInfo[] structure.
- 1 - Specify this value to obtain the output in XML format in the rlpropXML output parameter.
- 2 - Specify this value to obtain the output in the PropertyInfo[] structure and in XML format in the rlpropXML output parameter.
- propData
- Type: Talisma.Server.CommonPropertyInfo
[out] This is an array of the PropertyInfo[] structure that contains the Property values retrieved from the RecordList Tab of the specified Account. The value of the propData array is blank if no Property values are available in the RecordList Tab of an Account. - rlpropXML
- Type: SystemString
[out]This parameter contains the output in XML format. The value of the rlpropXML parameter is NULL if no Property values are available in the specified RecordList Tab of an Account. - error
- Type: SystemString
[out] The error messages returned when the get operation fails.
Return Value
Type: Int64The GetRLTab method returns 0 if the operation is successful and a negative value if the operation fails.
