This action provides a list of all the available fields to the user who calls the function.
Class |
Name |
Type |
Required |
Details |
GetFieldListRequest |
userId |
String |
Yes |
The callers user name |
GetFieldListRequest |
password |
String |
Yes |
The callers password |
Class |
Name |
Type |
Required |
Details |
GetFieldListResponse |
success |
boolean |
Yes |
True is succeeded False if failed |
GetFieldListResponse |
returnCode |
String |
No |
See Appendix for details |
GetFieldListResponse |
returnMessage |
String |
No |
Human readable message |
GetFieldListResponse |
fields |
Array |
No |
A list of Field objects |
Field |
id |
String |
Yes |
|
Field |
name |
String |
Yes |
|
Field |
value |
String |
No |
|
Field |
childOfFieldId |
String |
No |
|
Field |
repeatingRowField |
boolean |
No |
|
Field |
textAreaField |
boolean |
No |
|
Field |
typeOfUserField |
boolean |
No |
|
public static void testGetFieldList(EVReportServiceStub stub) {
try { GetFieldListRequest request = request.setUserId(ServiceClientHelper.ADMIN_USER_ID); GetFieldListResponseDocument resEnvelope = GetFieldListResponse response = if (response.getSuccess()) { } catch (Exception e) { |