StartReprocessing request message
- Last UpdatedDec 08, 2023
- 2 minute read
This is an example of the full structure of a StartReprocessing request.
<StartReprocessingRequestMessage xmlns="http://www.citect.com/Ampla/Inventory/2010/03">
<Request>
<Credentials>
<Password>********</Password>
<Session />
<Username>User</Username>
</Credentials>
<ReprocessFromDateTime>2018-07-01T00:00:00</ReprocessFromDateTime>
</Request>
</StartReprocessingRequestMessage>
Request parameters: Credentials section
The Credentials section contains the security details for authentication. You can provide the Username and Password values to use the Basic security method. If you do not provide explicit security values, Web services will attempt to use Integrated authentication. You must provide either Basic credentials, Integrated credentials, or a Session ID.
<Credentials>
<Username>User</Username>
<Password>********</Password>
<Session />
</Credentials>
|
Parameter |
Description |
|---|---|
|
Username |
The login name of the AVEVA™ Production Management user. This is a string value. Username and Password together are mutually exclusive with Session. |
|
Password |
The password that is associated with the AVEVA Production Management user. This is a string value. Username and Password together are mutually exclusive with Session. |
|
Session |
A GUID string value that identifies the session. This is a string value. Mutually exclusive with Username and Password. |
Request parameters: Request section
<Request>
<ReprocessFromDateTime>2018-07-01T00:00:00</ReprocessFromDateTime>
<PendingChanges>1</PendingChanges>
</Request>
or
<Request>
<ReprocessFromDateTime xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
<PendingChanges>0</PendingChanges>
</Request>
|
Parameter |
Description |
|---|---|
|
ReprocessFromDateTime |
The time and date that AVEVA™ Production Management should begin reprocessing events from. This time must be in UTC ISO 8601 format.
|
|
PendingChanges |
This parameter automatically determines the appropriate data window to reprocess pending changes. When PendingChanges is set to 1, then ReprocessFromDateTime does not need to be set. |