Skip to content

/AWS1/CL_API=>LSTDATAINTEGRATIONASSOCIAT00()

About ListDataIntegrationAssociations

Returns a paginated list of DataIntegration associations in the account.

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_dataintegrationidentifier TYPE /AWS1/APIIDENTIFIER /AWS1/APIIDENTIFIER

A unique identifier for the DataIntegration.

Optional arguments:

iv_nexttoken TYPE /AWS1/APINEXTTOKEN /AWS1/APINEXTTOKEN

The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

iv_maxresults TYPE /AWS1/APIMAXRESULTS /AWS1/APIMAXRESULTS

The maximum number of results to return per page.

RETURNING

oo_output TYPE REF TO /aws1/cl_apilstdataintegrati01 /AWS1/CL_APILSTDATAINTEGRATI01

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~lstdataintegrationassociat00(
  iv_dataintegrationidentifier = |string|
  iv_maxresults = 123
  iv_nexttoken = |string|
).

This is an example of reading all possible response values

LOOP AT lo_result->get_dataintegrationassocia01( ) into lo_row.
  lv_arn = lo_row_1->get_dataintegrationassocia00( ).
  lv_arn = lo_row_1->get_dataintegrationarn( ).
  lv_clientid = lo_row_1->get_clientid( ).
  lv_destinationuri = lo_row_1->get_destinationuri( ).
  lv_executionstatus = lo_lastexecutionstatus->get_executionstatus( ).
  lv_nonblankstring = lo_lastexecutionstatus->get_statusmessage( ).
  lv_executionmode = lo_executionconfiguration->get_executionmode( ).
  lv_nonblankstring = lo_ondemandconfiguration->get_starttime( ).
  lv_nonblankstring = lo_ondemandconfiguration->get_endtime( ).
  lv_nonblankstring = lo_scheduleconfiguration->get_firstexecutionfrom( ).
  lv_object = lo_scheduleconfiguration->get_object( ).
  lv_nonblankstring = lo_scheduleconfiguration->get_scheduleexpression( ).
ENDLOOP.
lv_nexttoken = lo_result->get_nexttoken( ).