Skip to content

/AWS1/CL_IVR=>STOPPARTICIPANTREPLICATION()

About StopParticipantReplication

Stops a replicated participant session.

Method Signature

IMPORTING

Required arguments:

iv_sourcestagearn TYPE /AWS1/IVRSTAGEARN /AWS1/IVRSTAGEARN

ARN of the stage where the participant is publishing.

iv_destinationstagearn TYPE /AWS1/IVRSTAGEARN /AWS1/IVRSTAGEARN

ARN of the stage where the participant has been replicated.

iv_participantid TYPE /AWS1/IVRPARTICIPANTID /AWS1/IVRPARTICIPANTID

Participant ID of the publisher that has been replicated. This is assigned by IVS and returned by CreateParticipantToken or the jti (JWT ID) used to create a self signed token.

RETURNING

oo_output TYPE REF TO /aws1/cl_ivrstopparticipantr01 /AWS1/CL_IVRSTOPPARTICIPANTR01

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_ivr~stopparticipantreplication(
  iv_destinationstagearn = |string|
  iv_participantid = |string|
  iv_sourcestagearn = |string|
).

This is an example of reading all possible response values

lo_result = lo_result.
IF lo_result IS NOT INITIAL.
  lv_string = lo_result->get_accesscontrolalloworigin( ).
  lv_string = lo_result->get_accessctlexposeheaders( ).
  lv_string = lo_result->get_cachecontrol( ).
  lv_string = lo_result->get_contentsecuritypolicy( ).
  lv_string = lo_result->get_stricttransportsecurity( ).
  lv_string = lo_result->get_xcontenttypeoptions( ).
  lv_string = lo_result->get_xframeoptions( ).
ENDIF.