RLSMAREA LOAD SYSLIB
The RLSMAREA LOAD SYSLIB message lists the LOADLIB concatenation for a release application.
The XML service/scope/message tags and attributes for this message are:
<service name="RLSMAREA">
<scope name="LOAD">
<message name="SYSLIB">
These tags appear in both requests and replies.
RLSMAREA LOAD SYSLIB — Request
The following example shows how you might code a request to list the LOADLIB concatenation for a release application. Data structure details for the <request> tag are identical to those for the RLSMAREA ALL_CHK SYSLIB message - see RLSMAREA ALL_CHK SYSLIB <request> Data Structure.
Example XML — RLSMAREA LOAD SYSLIB Request
<?xml version="1.0"?>
<service name="RLSMAREA">
<scope name="LOAD">
<message name="SYSLIB">
<header>
<subsys>4</subsys>
<test> </test>
<product>CMN</product>
</header>
<request>
<release>S4711010</release>
<releaseArea>ACCTPAY </releaseArea>
<releaseApplName>ACTP</releaseApplName>
<language>COBOL2 </language>
<buildProc>CMNCOB2 </buildProc>
<libType>LOD</libType>
<package> </package>
</request>
</message>
</scope>
</service>
RLSMAREA LOAD SYSLIB — Reply
The XML reply to a RLSMAREA LOAD SYSLIB request returns zero to many <result> data elements. Each result contains LOADLIB information data for a release application.
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 ALL_CHK SYSLIB message - see RLSMAREA ALL_CHK SYSLIB <result> Data Structure.
Example XML — RLSMAREA LOAD SYSLIB Reply
<?xml version="1.0"?>
<service name="RLSMAREA">
<scope name="LOAD">
<message name="SYSLIB">
<result>
<release>S4711010</release>
<releaseArea>ACCTPAY</releaseArea>
<releaseApplName>ACTP</releaseApplName>
<libType>LOS</libType>
<likeType>N</likeType>
<concatType>L</concatType>
<libraryFromType>B</libraryFromType>
<library>CMNTP.S4.V711.BASE.ACTP.LOS</library>
<libraryOrg>PDS</libraryOrg>
</result>
<result>
<release>S4711010</release>
<releaseArea>ACCTPAY</releaseArea>
<releaseApplName>COMM</releaseApplName>
<libType>LOS</libType>
<likeType>N</likeType>
<concatType>L</concatType>
<libraryFromType>B</libraryFromType>
<library>CMNTP.S4.V711.BASE.COMM.LOS</library>
<libraryOrg>PDS</libraryOrg>
</result>
<response>
<statusMessage>SER8209I Logon accepted for user MTULLY; Local CCSID=00037 </statusMessage>
<statusReturnCode>00</statusReturnCode>
<statusReasonCode>8700</statusReasonCode>
</response>
</message>
</scope>
</service>