CREATE_DOCSET_MESSAGE SAP Method Create a New DocumentSet Message









Below is documentation, parameters and attributes of ABAP Method CREATE_DOCSET_MESSAGE within SAP class EDX_SEND_DOCSET. There is also a number of example ABAP code snipts to help you use the functionality of this method.

This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.

This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name EDX_SEND_DOCSET into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.


Method Type - Instance

This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.

The following technical details of method CREATE_DOCSET_MESSAGE can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method CREATE_DOCSET_MESSAGE

.

NameTypeData TypeDescriptionDefault Value
I_BP_SP_DATAImportingTYPE
EDX_BP_SP
I_CONFIG_OUT_DATAImportingTYPE
EDX_CONFIG_OUT
EDX: Configuration for Outgoing Messages
E_DOCUMET_SET_MESSAGEExportingTYPE
EDX_DOCUMENT_SET_MSG1
E_RESULTExportingTYPE
STRING
C_EDX_OUTBOUNDChangingTYPE
EDX_OUTBOUND
EDX



Exceptions of Method CREATE_DOCSET_MESSAGE

CANNOT_CREATE_DOCSET - Cannot Create the Document Set

Example ABAP coding

This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.

DATA: lo_class TYPE REF TO EDX_SEND_DOCSET.
DATA: lv_C_EDX_OUTBOUND TYPE EDX_OUTBOUND,
lv_E_DOCUMET_SET_MESSAGE TYPE EDX_DOCUMENT_SET_MSG1,
lv_E_RESULT TYPE STRING,
lv_I_BP_SP_DATA TYPE EDX_BP_SP,
lv_I_CONFIG_OUT_DATA TYPE EDX_CONFIG_OUT,
lv_other TYPE c.

CALL METHOD lo_class=>CREATE_DOCSET_MESSAGE(
EXPORTING
I_BP_SP_DATA = lv_I_BP_SP_DATA
I_CONFIG_OUT_DATA = lv_I_CONFIG_OUT_DATA
IMPORTING
E_DOCUMET_SET_MESSAGE = lv_E_DOCUMET_SET_MESSAGE
E_RESULT = lv_E_RESULT
CHANGING
C_EDX_OUTBOUND = lv_C_EDX_OUTBOUND ).

Links to Related Class(s)

EDX_SEND...
Full list of available SAP object classes

Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!