PRCS_UPDATEREQUEST

This service operation is used to update a request.

Request Message: PRQ_UPDATEREQUEST_REQ

Element Name Description

ProcessInstance

The process instance to update.

RunStatus

Indicate the new status. Valid values are:

  • Deleted

  • Cancelled

  • Hold

  • Restart

Example Request:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:⇒
prq="http://xmlns.oracle.com/Enterprise/Tools/schemas/PRQ_UPDATEREQUEST_⇒
REQ.VERSION_1">
   <soapenv:Header/>
   <soapenv:Body>
      <prq:UpdateProcessRequest>
         <ProcessInstance>9999940</ProcessInstance>
         <RunStatus>Deleted</RunStatus>
      </prq:UpdateProcessRequest>
   </soapenv:Body>
</soapenv:Envelope>

Response Message: PRQ_UPDATEREQUEST_RES

Element Name Description

RequestStatus

Returns the status of either Success or Failure.

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:UpdateProcessRequestResponse xsi:schemaLocation="http:⇒
//xmlns.oracle.com/Enterprise/Tools/schemas/PRQ_UPDATEREQUEST_RES.VERSION_1 PRQ_⇒
UPDATEREQUEST_RES.VERSION_1.xsd" xmlns:prq="http://xmlns.oracle.com/Enterprise⇒
/Tools/schemas/PRQ_UPDATEREQUEST_RES.VERSION_1">
         <RequestStatus>Success</RequestStatus>
      </prq:UpdateProcessRequestResponse>
   </soapenv:Body>
</soapenv:Envelope>