Syntax
Public Function AccountInformationReport (ClientID As Integer,TrasnTag As String) As CallingResultsEnum
Description
This function used to get the account information report that shows the information for all the accounts under the given client number. After AccountInformationReport executes the ReportDataReceived event fire.
Parameters
Parameter |
Description |
ClientID |
This report shows the account information for all the accounts under this client |
TransTag |
String value used to mark the requested report when the result came from server. |
Return value Return value of type CallingResultsEnum, if the request sent to server successfully it will return SuccessResult.
Sample
Private Sub AcInfRep_Click (ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AcInfRep.Click
‘BOAPI is a predefined variable as CVertexBOAPI10
Dim Result As CallingResultsEnum
Result = BOAPI.AccountInformationReport (BOAPI.RootID,"")
End Sub
Results
The result of this report contains many details, the following table shows each column description:
Data row Index |
Column Name |
Description |
1 |
Account |
Shows the account ID for each client under the group that you have chosen for the generated report |
2 |
Name |
The account name for each client |
3 |
Tel |
The telephone number for each client |
4 |
Mobile |
The mobile number for each client |
5 |
Account Type |
The account type for each client 1 : Means Normal Account. 2 : Means Coverage Account. |
6 |
Client Type |
The type of client (Client , Office , Group) 1 : Means Client 2 : Means Office 3 : Means Group |
9 |
Real/Demo |
The type of the each client (Real/ Demo) 0 : Means Real Account 1 : Means Demo Account |
10 |
Username |
The username for each client |
11 |
Open Date |
The creation date for each client |
12 |
Email |
The email for each client |
13 |
Country |
The country name for each client |
14 |
Client ID |
The client ID for the account |
15 |
Don’t liquidate |
To view if the option "Don't Liquidate" is enabled or not for each client 0 : Means the option Disabled 1 : Means the option Enabled |
16 |
Locked |
To view if the option "Locked" is enabled or not for each client 0 : Means the option Disabled 1 : Means the option Enabled
|
17 |
TransTag |
The same string which sent by the requested report. |
See Also
VertexFX Backoffice API Index
|