Skip to content

/AWS1/CL_API=>UPDATEDATAINTEGRATION()

About UpdateDataIntegration

Updates the description of a DataIntegration.

You cannot create a DataIntegration association for a DataIntegration that has been previously associated. Use a different DataIntegration, or recreate the DataIntegration using the CreateDataIntegration API.

Method Signature

IMPORTING

Required arguments:

iv_identifier TYPE /AWS1/APIIDENTIFIER /AWS1/APIIDENTIFIER

A unique identifier for the DataIntegration.

Optional arguments:

iv_name TYPE /AWS1/APINAME /AWS1/APINAME

The name of the DataIntegration.

iv_description TYPE /AWS1/APIDESCRIPTION /AWS1/APIDESCRIPTION

A description of the DataIntegration.

RETURNING

oo_output TYPE REF TO /aws1/cl_apiupdataintegratio01 /AWS1/CL_APIUPDATAINTEGRATIO01

Domain /AWS1/RT_ACCOUNT_ID
Primitive Type NUMC

Examples

Syntax Example

This is an example of the syntax for calling the method. It includes every possible argument and initializes every possible value. The data provided is not necessarily semantically accurate (for example the value "string" may be provided for something that is intended to be an instance ID, or in some cases two arguments may be mutually exclusive). The syntax shows the ABAP syntax for creating the various data structures.

DATA(lo_result) = lo_client->/aws1/if_api~updatedataintegration(
  iv_description = |string|
  iv_identifier = |string|
  iv_name = |string|
).

This is an example of reading all possible response values