SAP SEPA_MANDATE_UI_LIST_POPUP Function Module for









SEPA_MANDATE_UI_LIST_POPUP is a standard sepa mandate ui list popup SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.


See here to view full function module documentation and code listing for sepa mandate ui list popup FM, simply by entering the name SEPA_MANDATE_UI_LIST_POPUP into the relevant SAP transaction such as SE37 or SE38.

Function Group: SEPA_MANDATE_UI_LIST
Program Name: SAPLSEPA_MANDATE_UI_LIST
Main Program: SAPLSEPA_MANDATE_UI_LIST
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function SEPA_MANDATE_UI_LIST_POPUP pattern details

In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.
CALL FUNCTION 'SEPA_MANDATE_UI_LIST_POPUP'"
EXPORTING
IT_MANDATES = "
* IX_DETAILS_IN_POPUP = 'X' "
* IV_ACTYPE = '03' "
* IV_ANWND = "
* IX_UPDATE_TASK = ' ' "
* IS_FIX_DATA = "
* IX_CHOOSE_ONLY_ONE = ' ' "
* IT_BUTTON_CHANGE = "
* IT_BUTTON_SUPPRESS = "

IMPORTING
E_REQ_COMMIT = "
ET_MANDATES = "

EXCEPTIONS
INVALID_PARAMETERS = 1
.



IMPORTING Parameters details for SEPA_MANDATE_UI_LIST_POPUP

IT_MANDATES -

Data type: SEPA_MANDATE_LIST
Optional: No
Call by Reference: Yes

IX_DETAILS_IN_POPUP -

Data type: XFELD
Default: 'X'
Optional: Yes
Call by Reference: Yes

IV_ACTYPE -

Data type: ACTIV_AUTH
Default: '03'
Optional: Yes
Call by Reference: Yes

IV_ANWND -

Data type: SEPA_ANWND
Optional: Yes
Call by Reference: Yes

IX_UPDATE_TASK -

Data type: XFELD
Default: SPACE
Optional: Yes
Call by Reference: Yes

IS_FIX_DATA -

Data type: SEPA_MANDATE
Optional: Yes
Call by Reference: Yes

IX_CHOOSE_ONLY_ONE -

Data type: XFELD
Default: SPACE
Optional: Yes
Call by Reference: Yes

IT_BUTTON_CHANGE -

Data type: TTB_BUTTON
Optional: Yes
Call by Reference: Yes

IT_BUTTON_SUPPRESS -

Data type: TTB_BUTTON
Optional: Yes
Call by Reference: Yes

EXPORTING Parameters details for SEPA_MANDATE_UI_LIST_POPUP

E_REQ_COMMIT -

Data type: BOOLEAN
Optional: No
Call by Reference: No ( called with pass by value option)

ET_MANDATES -

Data type: SEPA_MANDATE_LIST
Optional: No
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

INVALID_PARAMETERS -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for SEPA_MANDATE_UI_LIST_POPUP Function Module

The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.

DATA:
lv_it_mandates  TYPE SEPA_MANDATE_LIST, "   
lv_e_req_commit  TYPE BOOLEAN, "   
lv_invalid_parameters  TYPE BOOLEAN, "   
lv_et_mandates  TYPE SEPA_MANDATE_LIST, "   
lv_ix_details_in_popup  TYPE XFELD, "   'X'
lv_iv_actype  TYPE ACTIV_AUTH, "   '03'
lv_iv_anwnd  TYPE SEPA_ANWND, "   
lv_ix_update_task  TYPE XFELD, "   SPACE
lv_is_fix_data  TYPE SEPA_MANDATE, "   
lv_ix_choose_only_one  TYPE XFELD, "   SPACE
lv_it_button_change  TYPE TTB_BUTTON, "   
lv_it_button_suppress  TYPE TTB_BUTTON. "   

  CALL FUNCTION 'SEPA_MANDATE_UI_LIST_POPUP'  "
    EXPORTING
         IT_MANDATES = lv_it_mandates
         IX_DETAILS_IN_POPUP = lv_ix_details_in_popup
         IV_ACTYPE = lv_iv_actype
         IV_ANWND = lv_iv_anwnd
         IX_UPDATE_TASK = lv_ix_update_task
         IS_FIX_DATA = lv_is_fix_data
         IX_CHOOSE_ONLY_ONE = lv_ix_choose_only_one
         IT_BUTTON_CHANGE = lv_it_button_change
         IT_BUTTON_SUPPRESS = lv_it_button_suppress
    IMPORTING
         E_REQ_COMMIT = lv_e_req_commit
         ET_MANDATES = lv_et_mandates
    EXCEPTIONS
        INVALID_PARAMETERS = 1
. " SEPA_MANDATE_UI_LIST_POPUP




ABAP code using 7.40 inline data declarations to call FM SEPA_MANDATE_UI_LIST_POPUP

The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.

 
 
 
 
DATA(ld_ix_details_in_popup) = 'X'.
 
DATA(ld_iv_actype) = '03'.
 
 
DATA(ld_ix_update_task) = ' '.
 
 
DATA(ld_ix_choose_only_one) = ' '.
 
 
 


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!