/AWS1/IF_MCI=>DESCRIBECONNECTIONPROPOSAL()¶
About DescribeConnectionProposal¶
Describes the details of a connection proposal generated at a partner's portal.
Method Signature¶
METHODS /AWS1/IF_MCI~DESCRIBECONNECTIONPROPOSAL
IMPORTING
!IV_ACTIVATIONKEY TYPE /AWS1/MCIACTIVATIONKEY OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_mcidsccxnproposalrsp
RAISING
/AWS1/CX_MCIACCESSDENIEDEX
/AWS1/CX_MCIINTERCNCTCLIENTEX
/AWS1/CX_MCIINTERCNCTSERVEREX
/AWS1/CX_MCIINTERCNCTVLDTNEX
/AWS1/CX_MCIRESOURCENOTFOUNDEX
/AWS1/CX_MCISERVICEQUOTAEXCDEX
/AWS1/CX_MCITHROTTLINGEX
/AWS1/CX_MCICLIENTEXC
/AWS1/CX_MCISERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_activationkey TYPE /AWS1/MCIACTIVATIONKEY /AWS1/MCIACTIVATIONKEY¶
An Activation Key that was generated on a supported partner's portal. This key captures the desired parameters from the initial creation request.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_mcidsccxnproposalrsp /AWS1/CL_MCIDSCCXNPROPOSALRSP¶
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->describeconnectionproposal( |string| ).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
lv_connectionbandwidth = lo_result->get_bandwidth( ).
lv_environmentid = lo_result->get_environmentid( ).
lo_provider = lo_result->get_provider( ).
IF lo_provider IS NOT INITIAL.
lv_cloudserviceprovider = lo_provider->get_cloudserviceprovider( ).
lv_lastmileprovider = lo_provider->get_lastmileprovider( ).
ENDIF.
lv_location = lo_result->get_location( ).
ENDIF.
Describe Connection Proposal¶
Describe Connection Proposal
DATA(lo_result) = lo_client->describeconnectionproposal( |<Activation Key Data>| ).