/AWS1/IF_MDX=>PURCHASEOFFERING()¶
About PurchaseOffering¶
Submits a request to purchase an offering. If you already have an active reservation, you can't purchase another offering.
Method Signature¶
METHODS /AWS1/IF_MDX~PURCHASEOFFERING
IMPORTING
!IV_OFFERINGARN TYPE /AWS1/MDXSTRING OPTIONAL
!IV_RESERVATIONNAME TYPE /AWS1/MDXSTRING OPTIONAL
!IV_START TYPE /AWS1/MDXSTRING OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_mdxpurchaseoffering01
RAISING
/AWS1/CX_MDXBADREQUESTEX
/AWS1/CX_MDXFORBIDDENEXCEPTION
/AWS1/CX_MDXINTERNALSERVERER00
/AWS1/CX_MDXNOTFOUNDEXCEPTION
/AWS1/CX_MDXSERVICEUNAVAILEX
/AWS1/CX_MDXTOOMANYREQUESTSEX
/AWS1/CX_MDXCLIENTEXC
/AWS1/CX_MDXSERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_offeringarn TYPE /AWS1/MDXSTRING /AWS1/MDXSTRING¶
The Amazon Resource Name (ARN) of the offering.
iv_reservationname TYPE /AWS1/MDXSTRING /AWS1/MDXSTRING¶
The name that you want to use for the reservation.
iv_start TYPE /AWS1/MDXSTRING /AWS1/MDXSTRING¶
The date and time that you want the reservation to begin, in Coordinated Universal Time (UTC).
You can specify any date and time between 12:00am on the first day of the current month to the current time on today's date, inclusive. Specify the start in a 24-hour notation. Use the following format:
YYYY-MM-DDTHH:mm:SSZ, whereTandZare literal characters. For example, to specify 11:30pm on March 5, 2020, enter2020-03-05T23:30:00Z.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_mdxpurchaseoffering01 /AWS1/CL_MDXPURCHASEOFFERING01¶
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->purchaseoffering(
iv_offeringarn = |string|
iv_reservationname = |string|
iv_start = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
lo_reservation = lo_result->get_reservation( ).
IF lo_reservation IS NOT INITIAL.
lv_string = lo_reservation->get_currencycode( ).
lv_integer = lo_reservation->get_duration( ).
lv_durationunits = lo_reservation->get_durationunits( ).
lv_string = lo_reservation->get_end( ).
lv_string = lo_reservation->get_offeringarn( ).
lv_string = lo_reservation->get_offeringdescription( ).
lv_string = lo_reservation->get_priceperunit( ).
lv_priceunits = lo_reservation->get_priceunits( ).
lv_string = lo_reservation->get_reservationarn( ).
lv_string = lo_reservation->get_reservationname( ).
lv_reservationstate = lo_reservation->get_reservationstate( ).
lo_resourcespecification = lo_reservation->get_resourcespecification( ).
IF lo_resourcespecification IS NOT INITIAL.
lv_integer = lo_resourcespecification->get_reservedbitrate( ).
lv_resourcetype = lo_resourcespecification->get_resourcetype( ).
ENDIF.
lv_string = lo_reservation->get_start( ).
ENDIF.
ENDIF.