QAS_HIERARCHY_RECORDS_OPER

Use this service operation to return the list of hierarchy records, if any, along with their descriptions for the requested record.

Request Message: QAS_HIERARCHY_RECORDS_REQ_MSG

Element Name Description

RECORD_NAME

Required element

Complete record name. Required.

Example Request:

This request will return a list of all hierarchy records for PSMSGCATDEFN.

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:qas="http://xmlns.oracle.com/Enterprise/Tools/schemas/
QAS_HIERARCHY_RECORDS_REQ_MSG.VERSION_1">
   <soapenv:Header/>
   <soapenv:Body>
      <qas:QAS_HIERARCHY_RECORDS_REQ_MSG>
         <RECORD_NAME>PSMSGCATDEFN</RECORD_NAME>
      </qas:QAS_HIERARCHY_RECORDS_REQ_MSG>
   </soapenv:Body>
</soapenv:Envelope>
 

Response Message: QAS_HIERARCHY_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_HIERARCHY_RECORDS_RESP_MSG 
       xmlns:qcs="http://xmlns.oracle.com/Enterprise/Tools/schemas/
       QAS_HIERARCHY_RECORDS_RESP_MSG.VERSION_1">
         <RECORD>
            <RECORD_NAME>PSMSGSETDEFN</RECORD_NAME>
            <RECORD_DESCRIPTION>Message Sets</RECORD_DESCRIPTION>
         </RECORD>
         <RECORD>
            <RECORD_NAME>PSMSGCATDEFN</RECORD_NAME>
            <RECORD_DESCRIPTION>Message Catalog</RECORD_DESCRIPTION>
         </RECORD>
         <RECORD>
            <RECORD_NAME>MSG_CAT_VW</RECORD_NAME>
            <RECORD_DESCRIPTION>Message Catalog Trans. View</RECORD_DESCRIPTION>
         </RECORD>
      </qcs:QAS_HIERARCHY_RECORDS_RESP_MSG>
   </soapenv:Body>
</soapenv:Envelope>