QAS_RECORDS_OPER

Use this service operation to select a list of records, along with the descriptions that you can access.

Request Message: QAS_RECORDS_REQ_MSG

Element Name Description

SEARCH_STRING

Required element

Search string used for specifying the name or the first few characters of the search criterion definition name.

If no value is entered, a list of all accessible records will be returned.

Note: For field names, QAS does not interpret the underscore as a wildcard. For example, if you enter NODE_ and FieldName for the SEARCH_CRITERION, QAS will retrieve records that contain fields such as NODE_TYPE and not NODECOUNT.

SEARCH_CRITERION

Required element

Valid search criteria are:

  • RecordName

  • FieldName

  • Description

In the SEARCH_STRING element, enter the record name, field name, or description. Record name is the default criterion.

Example Request:

This request will return a list of records that start with PSMSGC.

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:qas="http://xmlns.oracle.com/Enterprise/Tools/schemas/
QAS_RECORDS_REQ_MSG.VERSION_1">
   <soapenv:Header/>
   <soapenv:Body>
      <qas:QAS_RECORDS_REQ_MSG>
         <SEARCH_STRING>PSMSGC</SEARCH_STRING>
         <SEARCH_CRITERION>RecordName</SEARCH_CRITERION>
      </qas:QAS_RECORDS_REQ_MSG>
   </soapenv:Body>
</soapenv:Envelope>

Response Message: QAS_RECORDS_RESP_MSG

Element Name Description

RECORD_NAME

Record name.

RECORD_DESCRIPTION

Record description.

INFORMATION_MESSAGE

Returns information about the request. For example if the criterion in the request is incorrect or if no records 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_RECORDS_RESP_MSG xmlns:qcs="http://xmlns.oracle.com/
       Enterprise/Tools/schemas/QAS_RECORDS_RESP_MSG.VERSION_1">
         <RECORD>
            <RECORD_NAME>PSMSGCATDEFN</RECORD_NAME>
            <RECORD_DESCRIPTION>Message Catalog</RECORD_DESCRIPTION>
         </RECORD>
      </qcs:QAS_RECORDS_RESP_MSG>
   </soapenv:Body>
</soapenv:Envelope>