/AWS1/IF_PPE=>PUTDELIVERABILITYDASHBOARD00()¶
About PutDeliverabilityDashboardOption¶
Enable or disable the Deliverability dashboard for your Amazon Pinpoint account. When you enable the Deliverability dashboard, you gain access to reputation, deliverability, and other metrics for the domains that you use to send email using Amazon Pinpoint. You also gain the ability to perform predictive inbox placement tests.
When you use the Deliverability dashboard, you pay a monthly subscription charge, in addition to any other fees that you accrue by using Amazon Pinpoint. For more information about the features and cost of a Deliverability dashboard subscription, see Amazon Pinpoint Pricing.
Method Signature¶
METHODS /AWS1/IF_PPE~PUTDELIVERABILITYDASHBOARD00
IMPORTING
!IV_DASHBOARDENABLED TYPE /AWS1/PPEENABLED OPTIONAL
!IT_SUBSCRIBEDDOMAINS TYPE /AWS1/CL_PPEDOMDELIVERABILIT00=>TT_DOMAINDELIVERABILITYTRKOPTS OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_ppeputdeliverabilit01
RAISING
/AWS1/CX_PPEALREADYEXISTSEX
/AWS1/CX_PPEBADREQUESTEX
/AWS1/CX_PPELIMITEXCEEDEDEX
/AWS1/CX_PPENOTFOUNDEXCEPTION
/AWS1/CX_PPETOOMANYREQUESTSEX
/AWS1/CX_PPECLIENTEXC
/AWS1/CX_PPESERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_dashboardenabled TYPE /AWS1/PPEENABLED /AWS1/PPEENABLED¶
Specifies whether to enable the Deliverability dashboard for your Amazon Pinpoint account. To enable the dashboard, set this value to
true.
Optional arguments:¶
it_subscribeddomains TYPE /AWS1/CL_PPEDOMDELIVERABILIT00=>TT_DOMAINDELIVERABILITYTRKOPTS TT_DOMAINDELIVERABILITYTRKOPTS¶
An array of objects, one for each verified domain that you use to send email and enabled the Deliverability dashboard for.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_ppeputdeliverabilit01 /AWS1/CL_PPEPUTDELIVERABILIT01¶
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->putdeliverabilitydashboard00(
it_subscribeddomains = VALUE /aws1/cl_ppedomdeliverabilit00=>tt_domaindeliverabilitytrkopts(
(
new /aws1/cl_ppedomdeliverabilit00(
io_inboxplcmttrackingoption = new /aws1/cl_ppeinboxplctrkoption(
it_trackedisps = VALUE /aws1/cl_ppeispnamelist_w=>tt_ispnamelist(
( new /aws1/cl_ppeispnamelist_w( |string| ) )
)
iv_global = ABAP_TRUE
)
iv_domain = |string|
iv_subscriptionstartdate = '20150101000000.0000000'
)
)
)
iv_dashboardenabled = ABAP_TRUE
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
ENDIF.