QAS_FIELDS_OPER
Use this service operation to return the fields from all records that the user can access.
Request Message: QAS_FIELDS_REQ_MSG
| Element Name | Description |
|---|---|
|
SEARCH_STRING Required element |
Search string used for specifying the field name or the first few characters of the field name. If a string is not entered, fields from all records that are the user can access will be returned. |
Example Request:
This request will return all the fields that start with MESSAGE_N.
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:qas="http://xmlns.oracle.com/Enterprise/Tools/schemas/
QAS_FIELDS_REQ_MSG.VERSION_1">
<soapenv:Header/>
<soapenv:Body>
<qas:QAS_FIELDS_REQ_MSG>
<SEARCH_STRING>MESSAGE_N</SEARCH_STRING>
</qas:QAS_FIELDS_REQ_MSG>
</soapenv:Body>
</soapenv:Envelope>
Response Message: QAS_FIELDS_RESP_MSG
| Element Name | Description |
|---|---|
|
FIELD_NAME |
Field name. |
|
INFO_MESSAGE |
Returns information about the request. For example if the criterion in the request is incorrect or if no fields meet the criteria, a message indicating the error is returned. |
Example Response:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Body>
<qcs:QAS_FIELDS_RESP_MSG xmlns:qcs="http://xmlns.oracle.com/
Enterprise/Tools/schemas/QAS_FIELDS_RESP_MSG.VERSION_1">
<FIELD_NAME>MESSAGE_NBR</FIELD_NAME>
<FIELD_NAME>MESSAGE_NBR01</FIELD_NAME>
<FIELD_NAME>MESSAGE_NBR02</FIELD_NAME>
<FIELD_NAME>MESSAGE_NBR03</FIELD_NAME>
<FIELD_NAME>MESSAGE_NBR04</FIELD_NAME>
<FIELD_NAME>MESSAGE_NBR05</FIELD_NAME>
<FIELD_NAME>MESSAGE_NBR06</FIELD_NAME>
<FIELD_NAME>MESSAGE_NBR07</FIELD_NAME>
<FIELD_NAME>MESSAGE_NBR08</FIELD_NAME>
<FIELD_NAME>MESSAGE_NBR09</FIELD_NAME>
<FIELD_NAME>MESSAGE_NBR10</FIELD_NAME>
</qcs:QAS_FIELDS_RESP_MSG>
</soapenv:Body>
</soapenv:Envelope>