MANDATE_AUTO_SELECT SAP Method SEPA: Select Mandate









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

This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name IF_BADI_ISM_SD_SEPA 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 MANDATE_AUTO_SELECT can also be found below:

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


Parameters of Method MANDATE_AUTO_SELECT

.

NameTypeData TypeDescriptionDefault Value
IS_SEPA_CONTEXTImportingTYPE
RJSEPA_CONTEXT
IS-M: SEPA Mandate Selection
IV_OBJTYPEImportingTYPE
SWO_OBJTYP
Object Type
IV_SEPA_ANWNDImportingTYPE
SEPA_ANWND
SEPA: Application for Which the Mandate Is Relevant
ES_MESSAGEExportingTYPE
BAPIRET1
Return Parameter(s)
CT_MANDATEChangingTYPE
SEPA_TAB_DATA_MANDATE_DATA
Table for Mandate Data in Application Layer
CV_NO_CREATIONChangingTYPE
ABAP_BOOL
X = No Mandate Generation



Exceptions of Method MANDATE_AUTO_SELECT

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_BADI_ISM_SD_SEPA.
DATA: lv_CT_MANDATE TYPE SEPA_TAB_DATA_MANDATE_DATA,
lv_CV_NO_CREATION TYPE ABAP_BOOL,
lv_ES_MESSAGE TYPE BAPIRET1,
lv_IS_SEPA_CONTEXT TYPE RJSEPA_CONTEXT,
lv_IV_OBJTYPE TYPE SWO_OBJTYP,
lv_IV_SEPA_ANWND TYPE SEPA_ANWND,
lv_other TYPE c.

CALL METHOD lo_class=>MANDATE_AUTO_SELECT(
EXPORTING
IS_SEPA_CONTEXT = lv_IS_SEPA_CONTEXT
IV_OBJTYPE = lv_IV_OBJTYPE
IV_SEPA_ANWND = lv_IV_SEPA_ANWND
IMPORTING
ES_MESSAGE = lv_ES_MESSAGE
CHANGING
CT_MANDATE = lv_CT_MANDATE
CV_NO_CREATION = lv_CV_NO_CREATION ).

Links to Related Class(s)

IF_BADI_...
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!