QAS Security Service Operations

Query access security is defined on permission lists. Roles contain one or more permission lists and the user is assigned roles. Several service operations are available that a third party can use to list roles and role users.

This service operation is used to retrieve the user ID for a PSToken. The PSToken is sent in the HTTP header over HTTPS.

Request Message: QAS_AUTHTOKEN_REQ_MSG

Element Name

Description

PSTOKEN

PeopleSoft authorization token.

Example Request:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:qas="http://xmlns.oracle.com/Enterprise/Tools/schemas/
QAS_AUTHTOKEN_REQ_MSG.VERSION_1">
   <soapenv:Header/>
   <soapenv:Body>
      <qas:QAS_AUTHTOKEN_REQ_MSG>
         <PSTOKEN>
           owAAAAQDAgEBAAAAvAIAAAAAAAAsAAAABABTaGRyAk4AbQg4AC4AMQ
           AwABRKm1RLE0zCq6JFYAoVWo7oKO6qVGMAAAAFAFNkYXRhV3icy2Vg
           YGBhZmJkBNJ7mBjAgCuQwZXBhcGXwZ+BzZXBj8GdQQAkEs/gAxRxZn
           AE0iZGDAZAaMmgCySNgKQRgxmYbcqgByUNwaQlUMYQrNaAgQEAbO8L
           PQ==; http%3a%2f%2fple-infodev-08.example.com%3a801
           0%2fpsp%2fqedmo%2femployee%2fqe_local%2frefresh=list:;
           HPTabName=DEFAULT
         </PSTOKEN>
      </qas:QAS_AUTHTOKEN_REQ_MSG>
   </soapenv:Body>
</soapenv:Envelope>

Response Message: QAS_AUTHTOKEN_RESP_MSG

Element

Description

LoginUser

Returns the user ID for the PSToken.

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>
      <qss:QAS_AUTHTOKEN_RESP_MSG
       xmlns:qss="http://xmlns.oracle.com/Enterprise/Tools/
       schemas/QAS_AUTHTOKEN_RESP_MSG.VERSION_1">
         <LoginUser>QEDMO</LoginUser>
      </qss:QAS_AUTHTOKEN_RESP_MSG>
   </soapenv:Body>
</soapenv:Envelope>

Use this service operation to get a list of roles, along with descriptions.

Request Message: QAS_LISTROLE_REQ_MSG

Element name

Description

SearchString

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

Example Request:

This is an example of a request to select all roles that begin with QAS.

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

Response Message: QAS_LISTROLE_RESP_MSG

Element Name

Description

RoleName

Role name.

Description

Role 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/
        Tools/schemas/QAS_LISTROLE_RESP.VERSION_1">
            <RoleName>QAS Admin</RoleName>
            <Description>QAS Administrators</Description>
        </PTQASWRK>
    </QAS_LISTROLE_RESP>
</QAS_LISTROLE_RESP_MSG>

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

Request Message: QAS_LISTUSERROLES_REQ_MSG

Element Name

Description

UserName

Required element

Complete user name. Required and case-sensitive.

SearchString

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

Example Request:

This is an example of a request to select all roles for the userPSADMIN.

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:qas="http://xmlns.oracle.com/Enterprise/Tools/schemas/
QAS_LISTUSERROLES_REQ_MSG.VERSION_1"
xmlns:qas1="http://xmlns.oracle.com/Enterprise/Tools/schemas/
QAS_LISTUSERROLES_REQ.VERSION_1">
   <soapenv:Header/>
   <soapenv:Body>
      <qas:QAS_LISTUSERROLES_REQ_MSG>
         <!--Zero or more repetitions:-->
         <qas:QAS_LISTUSERROLES_REQ>
            <qas1:PTQASWRK class="R">
               <qas1:UserName>PSADMIN</qas1:UserName>
               <!--Optional:-->
               <qas1:SearchString></qas1:SearchString>
            </qas1:PTQASWRK>
         </qas:QAS_LISTUSERROLES_REQ>
      </qas:QAS_LISTUSERROLES_REQ_MSG>
   </soapenv:Body>
</soapenv:Envelope>

Response Message: QAS_LISTUSERROLES_RESP_MSG

Element Name

Description

RoleName

Role name.

Description

Role description.

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>
      <QAS_LISTUSERROLES_RESP_MSG
       xmlns="http://xmlns.oracle.com/Enterprise/Tools/
       schemas/QAS_LISTUSERROLES_RESP_MSG.VERSION_1">
         <QAS_LISTUSERROLES_RESP>
            <PTQASWRK class="R"
             xmlns="http://xmlns.oracle.com/Enterprise/Tools/
             schemas/QAS_LISTUSERROLES_RESP.VERSION_1">
               <RoleName>PeopleSoft Administrator</RoleName>
               <Description>PeopleSoft Admin Privileges</Description>
            </PTQASWRK>
         </QAS_LISTUSERROLES_RESP>
         <QAS_LISTUSERROLES_RESP>
            <PTQASWRK class="R" xmlns="http://xmlns.oracle.com/
            Enterprise/Tools/schemas/QAS_LISTUSERROLES_RESP.VERSION_1">
               <RoleName>PeopleSoft User</RoleName>
               <Description>PeopleSoft User</Description>
            </PTQASWRK>
         </QAS_LISTUSERROLES_RESP>
      </QAS_LISTUSERROLES_RESP_MSG>
   </soapenv:Body>
</soapenv:Envelope>

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

Request Message: QAS_LISTUSER_REQ_MSG

Element Name

Description

SearchString

Search string used for specifying the user name or the first few characters of the user name. If no value is entered, all users 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.

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:qas="http://xmlns.oracle.com/Enterprise/Tools/schemas/
QAS_LISTUSER_REQ_MSG.VERSION_1"
xmlns:qas1="http://xmlns.oracle.com/Enterprise/Tools/schemas/
QAS_LISTUSER_REQ.VERSION_1">
   <soapenv:Header/>
   <soapenv:Body>
      <qas:QAS_LISTUSER_REQ_MSG>
         <qas:QAS_LISTUSER_REQ>
            <qas1:PTQASWRK class="R">
               <!--Optional:-->
               <qas1:SearchString>PS</qas1:SearchString>
            </qas1:PTQASWRK>
         </qas:QAS_LISTUSER_REQ>
      </qas:QAS_LISTUSER_REQ_MSG>
   </soapenv:Body>
</soapenv:Envelope>

Response Message: QAS_LISTUSER_RESP_MSG

Element Name

Description

UserName

User name.

Description

User description.

Example Response:

<?xml version="1.0"?>
<QAS_LISTUSER_RESP_MSG xmlns="http://xmlns.oracle.com/Enterprise/
Tools/schemas/QAS_LISTUSER_RESP_MSG.VERSION_1">
    <QAS_LISTUSER_RESP>
        <PTQASWRK class="R"
         xmlns="http://xmlns.oracle.com/Enterprise/Tools/
         schemas/QAS_LISTUSER_RESP.VERSION_1">
            <UserName>PSADMIN</UserName>
            <Description>PeopleSoft Administrator</Description>
        </PTQASWRK>
    </QAS_LISTUSER_RESP>
</QAS_LISTUSER_RESP_MSG>

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>

This service operation is available for a client application to sign on to the PeopleSoft database and use QAS service operations to create and execute queries.

To use this service operation, the user must install and configure certificates.

See Understanding SSL/TLS and Digital Certificates.

Request Message: QAS_LOGIN_REQ_MSG

Element Name

Description

UserVerificationAttempt

Do not enter a value.

Example Request:

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

Response Message:

Element Name

Description

IsValidUser

Returns Y if the user is validated.

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>
      <qss:QAS_LOGIN_RESP_MSG
       xmlns:qss="http://xmlns.oracle.com/Enterprise/Tools/
       schemas/QAS_LOGIN_RESP_MSG.VERSION_1">
         <isValidUser>Y</isValidUser>
      </qss:QAS_LOGIN_RESP_MSG>
   </soapenv:Body>
</soapenv:Envelope>

Use this service operation to get a list of roles, along with descriptions.

Request Message: QAS_LISTROLE_TEMPL

Element name

Description

SearchString

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

Example Request:

This is an example of a request to select all roles that begin with QAS.

https://<servername>:<port> /PSIGW/RESTListeningConnector/<defaultlocal node>/ListRoles.v1/listroles?search=XML

Response Message: QAS_LISTROLE_RESP_MSG

Element Name

Description

RoleName

Role name.

Description

Role description.

Example Response:

<?xml version="1.0"?>
<QAS_LISTROLE_RESP_MSG xmlns="http://xmlns.oracle.com/Enterprise/
Tools/schemas/QAS_LISTROLE_RESP_MSG.VERSION_2">
    <QAS_LISTROLE_RESP>
        <PTQASWRK class="R" xmlns="http://xmlns.oracle.com/Enterprise/
         Tools/schemas/QAS_LISTROLE_RESP.VERSION_1">
            <RoleName>XMLP Power User</RoleName>
            <Description>BIP Power User</Description>
        </PTQASWRK>
    </QAS_LISTROLE_RESP>
    <QAS_LISTROLE_RESP>
        <PTQASWRK class="R" xmlns="http://xmlns.oracle.com/Enterprise/
         Tools/schemas/QAS_LISTROLE_RESP.VERSION_1">
            <RoleName>XMLP Report Developer</RoleName>
            <Description>BIP Report Developer</Description>
        </PTQASWRK>
    </QAS_LISTROLE_RESP>
    <QAS_LISTROLE_RESP>
        <PTQASWRK class="R" xmlns="http://xmlns.oracle.com/Enterprise/
        Tools/schemas/QAS_LISTROLE_RESP.VERSION_1">
            <RoleName>XMLP Service User</RoleName>
            <Description>BIP Service User</Description>
        </PTQASWRK>
    </QAS_LISTROLE_RESP>
    <QAS_LISTROLE_RESP>
        <PTQASWRK class="R" xmlns="http://xmlns.oracle.com/Enterprise/
        Tools/schemas/QAS_LISTROLE_RESP.VERSION_1">
            <RoleName>XMLP_ADMIN</RoleName>
            <Description>BIP Administrator Role</Description>
        </PTQASWRK>
    </QAS_LISTROLE_RESP>
    <QAS_LISTROLE_RESP>
        <PTQASWRK class="R" xmlns="http://xmlns.oracle.com/Enterprise/
         Tools/schemas/QAS_LISTROLE_RESP.VERSION_1">
            <RoleName>XMLP_ANALYZER_EXCEL</RoleName>
            <Description>BIP Excel Analyzer Role</Description>
        </PTQASWRK>
    </QAS_LISTROLE_RESP>
    <QAS_LISTROLE_RESP>
        <PTQASWRK class="R" xmlns="http://xmlns.oracle.com/Enterprise/
         Tools/schemas/QAS_LISTROLE_RESP.VERSION_1">
            <RoleName>XMLP_ANALYZER_ONLINE</RoleName>
            <Description>BIP Online Analyzer Role</Description>
        </PTQASWRK>
    </QAS_LISTROLE_RESP>
    <QAS_LISTROLE_RESP>
        <PTQASWRK class="R" xmlns="http://xmlns.oracle.com/Enterprise/
        Tools/schemas/QAS_LISTROLE_RESP.VERSION_1">
            <RoleName>XMLP_DEVELOPER</RoleName>
            <Description>BIP Developer Role</Description>
        </PTQASWRK>
    </QAS_LISTROLE_RESP>
    <QAS_LISTROLE_RESP>
        <PTQASWRK class="R" xmlns="http://xmlns.oracle.com/Enterprise/
         Tools/schemas/QAS_LISTROLE_RESP.VERSION_1">
            <RoleName>XMLP_SCHEDULER</RoleName>
            <Description>BIP Scheduler Role</Description>
        </PTQASWRK>
    </QAS_LISTROLE_RESP>
    <QAS_LISTROLE_RESP>
        <PTQASWRK class="R" xmlns="http://xmlns.oracle.com/Enterprise/
         Tools/schemas/QAS_LISTROLE_RESP.VERSION_1">
            <RoleName>XMLP_TEMPLATE_DESIGNER</RoleName>
            <Description>BIP Template Designer Role</Description>
        </PTQASWRK>
    </QAS_LISTROLE_RESP>
</QAS_LISTROLE_RESP_MSG>

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

Request Message: QAS_LISTUSERROLES_TEMPL

Element Name

Description

UserName

Required element

Complete user name. Required and case-sensitive.

SearchString

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

Example Request:

https://<servername>:<port>/PSIGW/RESTListeningConnector/<defaultlocal node>/ListUserRoles.v1/QEDMO?search=XML

Response Message: QAS_LISTUSERROLES_RESP_MSG

Element Name

Description

RoleName

Role name.

Description

Role description.

Example Response:

<?xml version="1.0"?>
<QAS_LISTUSERROLES_RESP_MSG xmlns="http://xmlns.oracle.com/Enterprise/
Tools/schemas/QAS_LISTUSERROLES_RESP_MSG.VERSION_2">
    <QAS_LISTUSERROLES_RESP>
        <PTQASWRK class="R" xmlns="http://xmlns.oracle.com/Enterprise/
         Tools/schemas/QAS_LISTUSERROLES_RESP.VERSION_1">
            <RoleName>XMLP_ADMIN</RoleName>
            <Description>BIP Administrator Role</Description>
        </PTQASWRK>
    </QAS_LISTUSERROLES_RESP>
    <QAS_LISTUSERROLES_RESP>
        <PTQASWRK class="R" xmlns="http://xmlns.oracle.com/Enterprise/
         Tools/schemas/QAS_LISTUSERROLES_RESP.VERSION_1">
            <RoleName>XMLP_ANALYZER_EXCEL</RoleName>
            <Description>BIP Excel Analyzer Role</Description>
        </PTQASWRK>
    </QAS_LISTUSERROLES_RESP>
    <QAS_LISTUSERROLES_RESP>
        <PTQASWRK class="R" xmlns="http://xmlns.oracle.com/Enterprise/
         Tools/schemas/QAS_LISTUSERROLES_RESP.VERSION_1">
            <RoleName>XMLP_ANALYZER_ONLINE</RoleName>
            <Description>BIP Online Analyzer Role</Description>
        </PTQASWRK>
    </QAS_LISTUSERROLES_RESP>
    <QAS_LISTUSERROLES_RESP>
        <PTQASWRK class="R" xmlns="http://xmlns.oracle.com/Enterprise/
        Tools/schemas/QAS_LISTUSERROLES_RESP.VERSION_1">
            <RoleName>XMLP_DEVELOPER</RoleName>
            <Description>BIP Developer Role</Description>
        </PTQASWRK>
    </QAS_LISTUSERROLES_RESP>
    <QAS_LISTUSERROLES_RESP>
        <PTQASWRK class="R" xmlns="http://xmlns.oracle.com/Enterprise/
        Tools/schemas/QAS_LISTUSERROLES_RESP.VERSION_1">
            <RoleName>XMLP_SCHEDULER</RoleName>
            <Description>BIP Scheduler Role</Description>
        </PTQASWRK>
    </QAS_LISTUSERROLES_RESP>
    <QAS_LISTUSERROLES_RESP>
        <PTQASWRK class="R" xmlns="http://xmlns.oracle.com/Enterprise/
         Tools/schemas/QAS_LISTUSERROLES_RESP.VERSION_1">
            <RoleName>XMLP_TEMPLATE_DESIGNER</RoleName>
            <Description>BIP Template Designer Role</Description>
        </PTQASWRK>
    </QAS_LISTUSERROLES_RESP>
</QAS_LISTUSERROLES_RESP_MSG>

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

Request Message: QAS_LISTUSER_TEMPL

Element Name

Description

SearchString

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

Example Request:

https://<servername>:<port>/PSIGW/RESTListeningConnector/<defaultlocal node>/ListUser.v1/listusers?search=QE

Response Message: QAS_LISTUSER_RESP_MSG

Element Name

Description

UserName

User name.

Description

User description.

Example Response:


<?xml version="1.0"?>
<QAS_LISTUSER_RESP_MSG xmlns="http://xmlns.oracle.com/Enterprise/
Tools/schemas/QAS_LISTUSER_RESP_MSG.VERSION_2">
    <QAS_LISTUSER_RESP>
        <PTQASWRK class="R" xmlns="http://xmlns.oracle.com/Enterprise/
         Tools/schemas/QAS_LISTUSER_RESP.VERSION_1">
            <UserName>QEA</UserName>
            <Description/>
        </PTQASWRK>
    </QAS_LISTUSER_RESP>
    <QAS_LISTUSER_RESP>
        <PTQASWRK class="R" xmlns="http://xmlns.oracle.com/Enterprise/
        Tools/schemas/QAS_LISTUSER_RESP.VERSION_1">
            <UserName>QEADMIN</UserName>
            <Description>QE Administrator</Description>
        </PTQASWRK>
    </QAS_LISTUSER_RESP>
</QAS_LISTUSER_RESP_MSG>

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

Request Message: QAS_LISTROLEUSERS_TEMPL

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:

https://<servername>:<port>/PSIGW/RESTListeningConnector/<defaultlocal node>/ListRoleUsers.v1/PeopleSoft%20User?search=P

Response Message: QAS_LISTROLEUSERS_RESP_MSG

Element Name

Description

UserName

User name.

Description

User description.

Example Response:

<?xml version="1.0"?>
<QAS_LISTROLEUSERS_RESP_MSG xmlns="http://xmlns.oracle.com/Enterprise/
Tools/schemas/QAS_LISTROLEUSERS_RESP_MSG.VERSION_2">
    <QAS_LISTROLEUSERS_RESP>
        <PTQASWRK class="R" xmlns="http://xmlns.oracle.com/Enterprise/
         Tools/schemas/QAS_LISTROLEUSERS_RESP.VERSION_1">
            <UserName>PSADMIN</UserName>
            <Description>PeopleSoft Administrator</Description>
        </PTQASWRK>
    </QAS_LISTROLEUSERS_RESP>
    <QAS_LISTROLEUSERS_RESP>
        <PTQASWRK class="R" xmlns="http://xmlns.oracle.com/Enterprise/
        Tools/schemas/QAS_LISTROLEUSERS_RESP.VERSION_1">
            <UserName>PTCDBADMIN</UserName>
            <Description>Dashboard Administrator</Description>
        </PTQASWRK>
    </QAS_LISTROLEUSERS_RESP>
    <QAS_LISTROLEUSERS_RESP>
        <PTQASWRK class="R" xmlns="http://xmlns.oracle.com/Enterprise/
         Tools/schemas/QAS_LISTROLEUSERS_RESP.VERSION_1">
            <UserName>PTCDBIMPL</UserName>
            <Description>Dashboard Implementer</Description>
        </PTQASWRK>
    </QAS_LISTROLEUSERS_RESP>
    <QAS_LISTROLEUSERS_RESP>
        <PTQASWRK class="R" xmlns="http://xmlns.oracle.com/Enterprise/
         Tools/schemas/QAS_LISTROLEUSERS_RESP.VERSION_1">
            <UserName>PTCDBVIEW</UserName>
            <Description>Dashboard Report Viewer</Description>
        </PTQASWRK>
    </QAS_LISTROLEUSERS_RESP>
    <QAS_LISTROLEUSERS_RESP>
        <PTQASWRK class="R" xmlns="http://xmlns.oracle.com/Enterprise/
        Tools/schemas/QAS_LISTROLEUSERS_RESP.VERSION_1">
            <UserName>PTEMPL</UserName>
            <Description>Employee</Description>
        </PTQASWRK>
    </QAS_LISTROLEUSERS_RESP>
    <QAS_LISTROLEUSERS_RESP>
        <PTQASWRK class="R" xmlns="http://xmlns.oracle.com/Enterprise/
        Tools/schemas/QAS_LISTROLEUSERS_RESP.VERSION_1">
            <UserName>PTPORTAL</UserName>
            <Description>Portal Administrator</Description>
        </PTQASWRK>
    </QAS_LISTROLEUSERS_RESP>
    <QAS_LISTROLEUSERS_RESP>
        <PTQASWRK class="R" xmlns="http://xmlns.oracle.com/Enterprise/
         Tools/schemas/QAS_LISTROLEUSERS_RESP.VERSION_1">
            <UserName>PTSECADM</UserName>
            <Description>Security Administrator</Description>
        </PTQASWRK>
    </QAS_LISTROLEUSERS_RESP>
    <QAS_LISTROLEUSERS_RESP>
        <PTQASWRK class="R" xmlns="http://xmlns.oracle.com/Enterprise/
        Tools/schemas/QAS_LISTROLEUSERS_RESP.VERSION_1">
            <UserName>PTTOOLS</UserName>
            <Description>PeopleTools</Description>
        </PTQASWRK>
    </QAS_LISTROLEUSERS_RESP>
    <QAS_LISTROLEUSERS_RESP>
        <PTQASWRK class="R" xmlns="http://xmlns.oracle.com/Enterprise/
        Tools/schemas/QAS_LISTROLEUSERS_RESP.VERSION_1">
            <UserName>PTACMADMIN</UserName>
            <Description>ACM Administrator</Description>
        </PTQASWRK>
    </QAS_LISTROLEUSERS_RESP>
    <QAS_LISTROLEUSERS_RESP>
        <PTQASWRK class="R" xmlns="http://xmlns.oracle.com/Enterprise/
        Tools/schemas/QAS_LISTROLEUSERS_RESP.VERSION_1">
            <UserName>PSAPPS</UserName>
            <Description>PSAPPS</Description>
        </PTQASWRK>
    </QAS_LISTROLEUSERS_RESP>
</QAS_LISTROLEUSERS_RESP_MSG>