/AWS1/IF_SUP=>ADDATTACHMENTSTOSET()¶
About AddAttachmentsToSet¶
Adds one or more attachments to an attachment set.
An attachment set is a temporary container for attachments that you add to a case or
case communication. The set is available for 1 hour after it's created. The
expiryTime returned in the response is when the set expires. 
- 
You must have a Business, Enterprise On-Ramp, or Enterprise Support plan to use the Amazon Web Services Support API. 
- 
If you call the Amazon Web Services Support API from an account that doesn't have a Business, Enterprise On-Ramp, or Enterprise Support plan, the SubscriptionRequiredExceptionerror message appears. For information about changing your support plan, see Amazon Web Services Support.
Method Signature¶
METHODS /AWS1/IF_SUP~ADDATTACHMENTSTOSET
  IMPORTING
    !IV_ATTACHMENTSETID TYPE /AWS1/SUPATTACHMENTSETID OPTIONAL
    !IT_ATTACHMENTS TYPE /AWS1/CL_SUPATTACHMENT=>TT_ATTACHMENTS OPTIONAL
  RETURNING
    VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_supaddattachmentsto01
  RAISING
    /AWS1/CX_SUPATTACHMENTLMTEXCD
    /AWS1/CX_SUPATTACHMENTSETEXP00
    /AWS1/CX_SUPATTACHMENTSETIDN00
    /AWS1/CX_SUPATTACHMENTSETSIZ00
    /AWS1/CX_SUPINTERNALSERVERERR
    /AWS1/CX_SUPCLIENTEXC
    /AWS1/CX_SUPSERVEREXC
    /AWS1/CX_RT_TECHNICAL_GENERIC
    /AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
it_attachments TYPE /AWS1/CL_SUPATTACHMENT=>TT_ATTACHMENTS TT_ATTACHMENTS¶
One or more attachments to add to the set. You can add up to three attachments per set. The size limit is 5 MB per attachment.
In the
Attachmentobject, use thedataparameter to specify the contents of the attachment file. In the previous request syntax, the value fordataappear asblob, which is represented as a base64-encoded string. The value forfileNameis the name of the attachment, such astroubleshoot-screenshot.png.
Optional arguments:¶
iv_attachmentsetid TYPE /AWS1/SUPATTACHMENTSETID /AWS1/SUPATTACHMENTSETID¶
The ID of the attachment set. If an
attachmentSetIdis not specified, a new attachment set is created, and the ID of the set is returned in the response. If anattachmentSetIdis specified, the attachments are added to the specified set, if it exists.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_supaddattachmentsto01 /AWS1/CL_SUPADDATTACHMENTSTO01¶
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->addattachmentstoset(
  it_attachments = VALUE /aws1/cl_supattachment=>tt_attachments(
    (
      new /aws1/cl_supattachment(
        iv_data = '5347567362473873563239796247513D'
        iv_filename = |string|
      )
    )
  )
  iv_attachmentsetid = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
  lv_attachmentsetid = lo_result->get_attachmentsetid( ).
  lv_expirytime = lo_result->get_expirytime( ).
ENDIF.