/AWS1/IF_IOW=>STARTMULTICASTGROUPSESSION()¶
About StartMulticastGroupSession¶
Starts a multicast group session.
Method Signature¶
METHODS /AWS1/IF_IOW~STARTMULTICASTGROUPSESSION
IMPORTING
!IV_ID TYPE /AWS1/IOWMULTICASTGROUPID OPTIONAL
!IO_LORAWAN TYPE REF TO /AWS1/CL_IOWLORAWANMULTICAST01 OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_iowstrtmulticastgrs01
RAISING
/AWS1/CX_IOWACCESSDENIEDEX
/AWS1/CX_IOWCONFLICTEXCEPTION
/AWS1/CX_IOWINTERNALSERVEREX
/AWS1/CX_IOWRESOURCENOTFOUNDEX
/AWS1/CX_IOWTHROTTLINGEX
/AWS1/CX_IOWVALIDATIONEX
/AWS1/CX_IOWCLIENTEXC
/AWS1/CX_IOWSERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_id TYPE /AWS1/IOWMULTICASTGROUPID /AWS1/IOWMULTICASTGROUPID¶
Id
io_lorawan TYPE REF TO /AWS1/CL_IOWLORAWANMULTICAST01 /AWS1/CL_IOWLORAWANMULTICAST01¶
LoRaWAN
RETURNING¶
oo_output TYPE REF TO /aws1/cl_iowstrtmulticastgrs01 /AWS1/CL_IOWSTRTMULTICASTGRS01¶
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->startmulticastgroupsession(
io_lorawan = new /aws1/cl_iowlorawanmulticast01(
iv_dldr = 123
iv_dlfreq = 123
iv_pingslotperiod = 123
iv_sessionstarttime = '20150101000000.0000000'
iv_sessiontimeout = 123
)
iv_id = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
ENDIF.