SAP ISH_DOWN_PAYMENT_MONIT_PREPARE Function Module for
ISH_DOWN_PAYMENT_MONIT_PREPARE is a standard ish down payment monit prepare 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 ish down payment monit prepare FM, simply by entering the name ISH_DOWN_PAYMENT_MONIT_PREPARE into the relevant SAP transaction such as SE37 or SE38.
Function Group: N085
Program Name: SAPLN085
Main Program: SAPLN085
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISH_DOWN_PAYMENT_MONIT_PREPARE 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 'ISH_DOWN_PAYMENT_MONIT_PREPARE'".
EXPORTING
I_EINRI = "IS-H: Institution
IT_CASE_PAYMENTS = "
IT_CASE_REQUESTS = "
I_WAERS = "Currency Key
* I_SEL_IP = ' ' "
* I_DATZW = SY-DATUM "
IMPORTING
ET_XVBRK_ALL = "
ET_XVBRP_ALL = "
ET_XNKOMV_ALL = "
CHANGING
XT_SEL_NFAL = "
IMPORTING Parameters details for ISH_DOWN_PAYMENT_MONIT_PREPARE
I_EINRI - IS-H: Institution
Data type: TN01-EINRIOptional: No
Call by Reference: No ( called with pass by value option)
IT_CASE_PAYMENTS -
Data type: NANZ_PAYMENTS_TABOptional: No
Call by Reference: No ( called with pass by value option)
IT_CASE_REQUESTS -
Data type: NANZ_PAYMENTS_TABOptional: No
Call by Reference: No ( called with pass by value option)
I_WAERS - Currency Key
Data type: T001-WAERSOptional: No
Call by Reference: No ( called with pass by value option)
I_SEL_IP -
Data type: CHAR1Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_DATZW -
Data type: RNAB0-DATZWDefault: SY-DATUM
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ISH_DOWN_PAYMENT_MONIT_PREPARE
ET_XVBRK_ALL -
Data type: NANZ_VBRK_ALL_TABOptional: No
Call by Reference: No ( called with pass by value option)
ET_XVBRP_ALL -
Data type: NANZ_VBRP_ALL_TABOptional: No
Call by Reference: No ( called with pass by value option)
ET_XNKOMV_ALL -
Data type: NANZ_KOMV_ALL_TABOptional: No
Call by Reference: No ( called with pass by value option)
CHANGING Parameters details for ISH_DOWN_PAYMENT_MONIT_PREPARE
XT_SEL_NFAL -
Data type: NANZ_SEL_NFAL_TABOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for ISH_DOWN_PAYMENT_MONIT_PREPARE 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_i_einri | TYPE TN01-EINRI, " | |||
| lv_xt_sel_nfal | TYPE NANZ_SEL_NFAL_TAB, " | |||
| lv_et_xvbrk_all | TYPE NANZ_VBRK_ALL_TAB, " | |||
| lv_et_xvbrp_all | TYPE NANZ_VBRP_ALL_TAB, " | |||
| lv_it_case_payments | TYPE NANZ_PAYMENTS_TAB, " | |||
| lv_et_xnkomv_all | TYPE NANZ_KOMV_ALL_TAB, " | |||
| lv_it_case_requests | TYPE NANZ_PAYMENTS_TAB, " | |||
| lv_i_waers | TYPE T001-WAERS, " | |||
| lv_i_sel_ip | TYPE CHAR1, " SPACE | |||
| lv_i_datzw | TYPE RNAB0-DATZW. " SY-DATUM |
|   CALL FUNCTION 'ISH_DOWN_PAYMENT_MONIT_PREPARE' " |
| EXPORTING | ||
| I_EINRI | = lv_i_einri | |
| IT_CASE_PAYMENTS | = lv_it_case_payments | |
| IT_CASE_REQUESTS | = lv_it_case_requests | |
| I_WAERS | = lv_i_waers | |
| I_SEL_IP | = lv_i_sel_ip | |
| I_DATZW | = lv_i_datzw | |
| IMPORTING | ||
| ET_XVBRK_ALL | = lv_et_xvbrk_all | |
| ET_XVBRP_ALL | = lv_et_xvbrp_all | |
| ET_XNKOMV_ALL | = lv_et_xnkomv_all | |
| CHANGING | ||
| XT_SEL_NFAL | = lv_xt_sel_nfal | |
| . " ISH_DOWN_PAYMENT_MONIT_PREPARE | ||
ABAP code using 7.40 inline data declarations to call FM ISH_DOWN_PAYMENT_MONIT_PREPARE
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.| "SELECT single EINRI FROM TN01 INTO @DATA(ld_i_einri). | ||||
| "SELECT single WAERS FROM T001 INTO @DATA(ld_i_waers). | ||||
| DATA(ld_i_sel_ip) | = ' '. | |||
| "SELECT single DATZW FROM RNAB0 INTO @DATA(ld_i_datzw). | ||||
| DATA(ld_i_datzw) | = SY-DATUM. | |||
Search for further information about these or an SAP related objects