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
.| Name | Type | Data Type | Description | Default Value |
| IS_SEPA_CONTEXT | Importing | TYPE RJSEPA_CONTEXT | IS-M: SEPA Mandate Selection | |
| IV_OBJTYPE | Importing | TYPE SWO_OBJTYP | Object Type | |
| IV_SEPA_ANWND | Importing | TYPE SEPA_ANWND | SEPA: Application for Which the Mandate Is Relevant | |
| ES_MESSAGE | Exporting | TYPE BAPIRET1 | Return Parameter(s) | |
| CT_MANDATE | Changing | TYPE SEPA_TAB_DATA_MANDATE_DATA | Table for Mandate Data in Application Layer | |
| CV_NO_CREATION | Changing | TYPE ABAP_BOOL | X = No Mandate Generation |
Exceptions of Method MANDATE_AUTO_SELECT
This method does not have any exceptionsExample 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