Update Condition Record (SAP IS Adapter)

This operation allows users to update attribute fields, and status field of condition records.

Configuration

In the Adapter configuration, select operation and target type. Target Name is the name of the condition record table to be updated. To avoid unexpected concurrent updates of the same record, optionally provide last updated timestamp so that error would occur if the records to be updated were updated after this timestamp.

Screenshot 2025-08-18 at 5.06.53 pm.png

Request

Specify ID of the condition records and the fields to be updated. Multiple records can be updated at the same call. All the records should have the same set of fields.

Sample update request:

[
    {
        "id": 5,
        "attribute1":"YYY"
    },
    {
        "id":6,
        "attribute1": "AUD"
    }
]

Response

The IDs of the records which are failed to update are returned.