QAS_TREE_DETAILS_OPER

This service operation returns the tree details for a specific tree.

Request Message: QAS_TREE_DETAILS_REQ_MSG

Element Name Description

TREE_NAME

Required element

Complete tree name. Required.

TREE_SET_ID

Required element

setID. Required.

TREE_SET_CONTROL

Required element

Set control value. Required.

TREE_EFFECTIVE_DATE

Required element

Effective date in YYYY-MM-DD format. Required.

INFO_MESSAGE

Returns information about the request. For example if the criterion in the request is incorrect or if no trees meet the criteria, a message indicating the error is returned.

Example Request:

This is an example of a request to retrieve tree details for the tree QE_JOBCODES.

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:qas="http://xmlns.oracle.com/Enterprise/Tools/schemas/
QAS_TREE_DETAILS_REQ_MSG.VERSION_1">
   <soapenv:Header/>
   <soapenv:Body>
      <qas:QAS_TREE_DETAILS_REQ_MSG>
         <TREE_NAME>QE_JOBCODES</TREE_NAME>
         <TREE_SET_ID/>
         <TREE_SET_CONTROL/>
        <TREE_EFFECTIVE_DATE>1999-01-01</TREE_EFFECTIVE_DATE>
</qas:QAS_TREE_DETAILS_REQ_MSG>
   </soapenv:Body>
</soapenv:Envelope>

Response Message: QAS_TREE_DETAILS_RESP_MSG

Element Name Description

TREE_NAME

Tree name.

NODE_NAME

Tree node name.

NODE_DESCRIPTION

Tree node description.

NODE_LEVEL

Tree node level.

PARENT_NODE

Parent node.

Example response:

This response is very long, so only a portion is shown.

<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_TREE_DETAILS_RESP_MSG xmlns:qcs="http://xmlns.oracle.com/
      Enterprise/Tools/schemas/QAS_TREE_DETAILS_RESP_MSG.VERSION_1">
         <TREE_NAME>QE_JOBCODES</TREE_NAME>
         <NODE>
            <NODE_LEVEL>1</NODE_LEVEL>
            <NODE_NAME>ALL_JOBS</NODE_NAME>
            <NODE_DESCRIPTION>All Job Codes</NODE_DESCRIPTION>
         </NODE>
         <NODE>
            <NODE_LEVEL>2</NODE_LEVEL>
            <NODE_NAME>EXECUTIVE</NODE_NAME>
            <NODE_DESCRIPTION>Executive</NODE_DESCRIPTION>
            <PARENT_NODE>ALL_JOBS</PARENT_NODE>
         </NODE>
         <NODE>
            <NODE_LEVEL>3</NODE_LEVEL>
            <NODE_NAME>VP</NODE_NAME>
            <NODE_DESCRIPTION>Vice President</NODE_DESCRIPTION>
            <PARENT_NODE>EXECUTIVE</PARENT_NODE>
         </NODE>
         ...  
      </qcs:QAS_TREE_DETAILS_RESP_MSG>
   </soapenv:Body>
</soapenv:Envelope>