RLSMRLSE CIM LIST
The RLSMRLSE CIM LIST message lists release area component in motion (CIM) information from the ERO Db2 CIM table.
The XML service/scope/message tags and attributes for this message are:
<service name="RLSMRLSE">
<scope name="CIM">
<message name="LIST">
These tags appear in both requests and replies.
RLSMRLSE CIM LIST — Request
The following example shows how you might code a request to list component in motion information for a release. Data structure details for the <request> tag are identical to those for the RLSMAREA CIM LIST message except that the <release> subtag is optional - see RLSMAREA CIM LIST <request> Data Structure.
Example XML — RLSMRLSE CIM LIST Request
<?xml version="1.0"?>
<service name="RLSMRLSE">
<scope name="CIM">
<message name="LIST">
<header>
<subsys>4</subsys>
<test> </test>
<product>CMN</product>
</header>
<request>
<release>S4712COM</release>
</request>
</message>
</scope>
</service>
...
RLSMRLSE CIM LIST — Reply
The XML reply to a RLSMRLSE CIM LIST request returns zero to many <result> data elements. Each result lists a row of component in motion information from the ERO Db2 CIM table.
The standard <response> data element follows any <result> tags in the reply and indicates the success or failure of the request. Successful requests have a return code of 00. Unsuccessful requests have a return code of 04 or higher. Because it is the final data element in the XML reply message, the <response> tag serves as an end-of-list marker.
The following example shows what the reply message might look like. Data structure details for the <result> tag are identical to those for the RLSMAREA CIM LIST message - see "RLSMAREA CIM LIST <result> Data Structure" on page 50.
Example XML — RLSMRLSE CIM LIST Reply
<?xml version="1.0"?>
<service name="RLSMRLSE">
<scope name="CIM">
<message name="LIST">
<result>
<release>S4712COM</release>
<releaseArea>FINANCE</releaseArea>
<package>ACTP000076</package>
<applName>ACTP</applName>
<packageId>000076</packageId>
<componentType>CPY</componentType>
<likeType>C</likeType>
<libraryStorageMeans>PDS</libraryStorageMeans>
<component>ACPCPYCE</component>
<checkinUser>KCAMPBE</checkinUser>
<releaseAreaCheckinDate>20120827</releaseAreaCheckinDate>
<releaseAreaCheckinTime>140138</releaseAreaCheckinTime>
<loadModule>N</loadModule>
<generateRequired>N</generateRequired>
<componentChangeDate>20120827</componentChangeDate>
<componentChangeTime>083512</componentChangeTime>
<setssi>630B28C0</setssi>
<hashToken>B7A76B0C00000079</hashToken>
<releaseAreaGenerateDate>19000101</releaseAreaGenerateDate>
<releaseAreaGenerateTime>000000</releaseAreaGenerateTime>
<componentVersionNo>01</componentVersionNo>
<componentModLevel>02</componentModLevel>
<componentSizeLines>00000000</componentSizeLines>
<componentSizeBytes>00000000</componentSizeBytes>
<componentSizeInit>00000001</componentSizeInit>
<componentCreateDate>20020507</componentCreateDate>
...
<componentLmodRENTattr>N</componentLmodRENTattr>
<componentLmodREUSattr>N</componentLmodREUSattr>
<componentLmodOVLYattr>N</componentLmodOVLYattr>
<componentLmodTESTattr>N</componentLmodTESTattr>
<componentLmodOLODattr>N</componentLmodOLODattr>
<componentLmodEXECattr>N</componentLmodEXECattr>
<componentLmodRFRSattr>N</componentLmodRFRSattr>
<currentHashToken>B7A75D0A00000079</currentHashToken>
<priorHashToken>B7A75D0A00000079</priorHashToken>
<currentAssocPkg>BASELINE</currentAssocPkg>
<priorAssocPkg>BASELINE</priorAssocPkg>
</result>
.
.
.
<response>
<statusMessage>CMR8700I - Release CIM Table service completed </statusMessage>
<statusReturnCode>00</statusReturnCode>
<statusReasonCode>8700</statusReasonCode>
</response>
</message>
</scope>
</service>
...