PRCS_GETPARAMS

Use this service operation to retrieve parameter values for a job or process. The job or process must have generic prompting enabled and runtime parameters defined.

Request Message: PRQ_GETPARAMS_REQ

Element Name Description

JobName

Job name in upper case.

ProcessName

Process name in uppercase.

ProcessType

Process type.

Use service operation PRCS_GETPROMPT with ParameterName ProcessTypes for a list of valid process types.

Example Request:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:⇒
prq="http://xmlns.oracle.com/Enterprise/Tools/schemas/PRQ_GETPARAMS_REQ.VERSION_⇒
1">
   <soapenv:Header/>
   <soapenv:Body>
      <prq:GetRunTimeParametersRequest>
         <!--Optional:-->
         <ProcessName>PORTAL_CSS</ProcessName>
         <!--Optional:-->
         <ProcessType>Application Engine</ProcessType>
      </prq:GetRunTimeParametersRequest>
   </soapenv:Body>
</soapenv:Envelope>

Response Message: PRQ_GETPARAMS_RES

Element Name Description

ProcessName

Process name.

ProcessType

Process type.

RecordName

Prompt record name.

RecordFieldName

Prompt field name.

ParameterName

Parameter label.

ApplicationClassMethod

Application class method.

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>
      <prq:GetRunTimeParametersResponse xsi:schemaLocation="http:⇒
//xmlns.oracle.com/Enterprise/Tools/schemas/PRQ_GETPARAMS_RES.VERSION_1 PRQ_⇒
GETPARAMS_RES.VERSION_1.xsd" xmlns:prq="http://xmlns.oracle.com/Enterprise/Tools⇒
/schemas/PRQ_GETPARAMS_RES.VERSION_1">
         <ProcessParameters>
            <ProcessName>PORTAL_CSS</ProcessName>
            <ProcessType>Application Engine</ProcessType>
            <RecordName>PORTAL_CSS_RUN</RecordName>
            <RecordFieldName>PORTAL_NAME</RecordFieldName>
            <ParameterName>Portal Name</ParameterName>
            <ApplicationClassMethod>.</ApplicationClassMethod>
         </ProcessParameters>
         <ProcessParameters>
            <ProcessName>PORTAL_CSS</ProcessName>
            <ProcessType>Application Engine</ProcessType>
            <RecordName>PORTAL_CSS_RUN</RecordName>
            <RecordFieldName>PORTAL_FLDRP_FLAG</RecordFieldName>
            <ParameterName>Delete invalid security</ParameterName>
            <ApplicationClassMethod>.</ApplicationClassMethod>
         </ProcessParameters>
      </prq:GetRunTimeParametersResponse>
   </soapenv:Body>
</soapenv:Envelope>