PRCS_GETOUTPUTFORMATS

This service operation retrieves output format for a given process.

Request Message: PRQ_GET_OUTPUTFORMATS_REQ

Element Name Description

ProcessType

Specifies the process type. Process type is case sensitive.

ProcessName

Specifies the process name.

OutDestType

Specifies the output type to filter the response.

LangCode

Specifies the language code associated with the task to be enqueued.

Example Request:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:prq="http://xmlns.oracle.com/Enterprise/Tools/schemas/PRQ_GET_OUTPUTFORMATS_REQ.VERSION_1">
   <soapenv:Header/>
   <soapenv:Body>
      <prq:GetOutputFormats>
         <ProcessType>AppEngine</ProcessType>
         <!--Optional:-->
         <ProcessName>PSCONQRS</ProcessName>
         <!--Optional:-->
         <LangCode>FRA</LangCode>
      </prq:GetOutputForma t s>
   </soapenv:Body>
</soapenv:Envelope>

Response Message: PRQ_GET_OUTPUTFORMATS_RES

Element Name Description

OutputTypeValue

Specifies the output type value.

OutputFormatValue

Specifies the output format value.

IsDefaultType

Specifies the default value of the output format.

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:GetOutputFormatsResponse xsi:schemaLocation="http://xmlns.oracle.com/Enterprise/Tools/schemas/PRQ_GET_OUTPUTFORMATS_RES.VERSION_1.xsd" xmlns:prq="http://xmlns.oracle.com/Enterprise/Tools/schemas/PRQ_GET_OUTPUTFORMATS_RES.VERSION_1">
         <OutputFormatInfo>
            <ProcessType>AppEngine</ProcessType>
            <ProcessName>PSCONQRS</ProcessName>
            <OutputTypeValue>FILE</OutputTypeValue>
            <OutputFormatValue>XML Format(*.xml)</OutputFormatValue>
            <IsActive>1</IsActive>
            <IsDefaultType>1</IsDefaultType>
         </OutputFormatInfo>
         <OutputFormatInfo>
            <ProcessType>AppEngine</ProcessType>
            <ProcessName>PSCONQRS</ProcessName>
            <OutputTypeValue>WINDOW</OutputTypeValue>
            <OutputFormatValue>XML Format(*.xml)</OutputFormatValue>
            <IsActive>1</IsActive>
            <IsDefaultType>1</IsDefaultType>
         </OutputFormatInfo>
         <OutputFormatInfo>
            <ProcessType>AppEngine</ProcessType>
            <ProcessName>PSCONQRS</ProcessName>
            <OutputTypeValue>WEB</OutputTypeValue>
            <OutputFormatValue>XML Format(*.xml)</OutputFormatValue>
            <IsActive>1</IsActive>
            <IsDefaultType>1</IsDefaultType>
         </OutputFormatInfo>
      </prq:GetOutputFormatsResponse>
   </soapenv:Body>
</soapenv:Envelope>