QAS_LISTROLEUSERS_OPER

Use this service operation to get a list of users for a given role, along with descriptions.

Request Message: QAS_LISTROLEUSERS_REQ_MSG

Element Name Description

RoleName

Required element

Complete role name. Required and case-sensitive.

SearchString

Optional search string used for specifying the user name or the first few characters of the user name. If no value is entered, all users for the role will be returned. This value is case-sensitive.

Example Request:

This is an example of a request to select all users that begin with PS and have the role PeopleSoft Administration.

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:qas="http://xmlns.oracle.com/Enterprise/Tools/schemas/
QAS_LISTROLEUSERS_REQ_MSG.VERSION_1"
xmlns:qas1="http://xmlns.oracle.com/Enterprise/Tools/schemas/
QAS_LISTROLEUSERS_REQ.VERSION_1">
   <soapenv:Header/>
   <soapenv:Body>
      <qas:QAS_LISTROLEUSERS_REQ_MSG>
         <!--Zero or more repetitions:-->
         <qas:QAS_LISTROLEUSERS_REQ>
            <qas1:PTQASWRK class="R">
               <qas1:RoleName>PeopleSoft Administrator</qas1:RoleName>
               <!--Optional:-->
               <qas1:SearchString>PS</qas1:SearchString>
            </qas1:PTQASWRK>
         </qas:QAS_LISTROLEUSERS_REQ>
      </qas:QAS_LISTROLEUSERS_REQ_MSG>
   </soapenv:Body>
</soapenv:Envelope>

Response Message: QAS_LISTROLEUSERS_RESP_MSG

Element Name Description

UserName

User name.

Description

User description.

Example Response:

<?xml version="1.0"?>
<QAS_LISTROLE_RESP_MSG
xmlns="http://xmlns.oracle.com/Enterprise/Tools/schemas/
QAS_LISTROLE_RESP_MSG.VERSION_1">
    <QAS_LISTROLE_RESP>
        <PTQASWRK class="R" xmlns="http://xmlns.oracle.com/
        Enterprise/Toolsschemas/QAS_LISTROLE_RESP.VERSION_1">
            <RoleName>QAS Admin</RoleName>
            <Description>QAS Administrators</Description>
        </PTQASWRK>
    </QAS_LISTROLE_RESP>
</QAS_LISTROLE_RESP_MSG>