Syntax
Public Overrides Function AccountInformationReport(ByRef ClientID As Integer) As TransResult
This function is used to get the account information report which shows the information for all accounts under the client. After AccountInformationReport executes the ReportDataReceivedevent fire.
Parameters
Key | Description |
clientID | The report will show the account information all accounts under this client. Value of type is Integer. |
Return value
Returns value of type TransResult. If the request was sent to server successfully it will return Succeeded.
Sample
Private Sub AccountInfo_Click (ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AccountInfo.Click Dim Result As VertexFXBridgeAPI.TransResult Dim Root_ID As Integer = BO.GetBO.RootID () Result= BO.GetBO.AccountInformationReport(Root_ID, 0) End Sub
Result:
The result of this report contains many details; the following table shows each column description
Data row Index | Column name | Description |
1 | AccountID | Shows the account ID for each client under the group that you have chosen to generate the report for. |
2 | Name | The name of each account. |
3 | Tel | Telephone number of each account |
4 | Mobile | Mobile number of each account |
5 | Account Type | The account type of each account 1 means normal account 2 means coverage account |
6 | Client Type | The type of client (Client, Office or Group) 1 : means client 2 : means office 3 : means group |
7 | Rel/Demo | The type of the account if real or demo 0 means real account 1 means demo account |
10 | Username | The username of each account. |
12 | Open Data | The creation date of each account |
13 | Email address of each account | |
14 | Country | Country name of each account |
15 | Client ID | Client number of each account |
16 | Dont liquidate | To view if the option Dont liquidate is enabled or not for each account 0 : means disabled 1 : means enabled |
17 | Locked | To view if the option locked is enabled or not for each account 0 : means disabled 1 : means enabled |
See Also