ISU_CHECK_PAYER_SD_COLLECT_MOD is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name ISU_CHECK_PAYER_SD_COLLECT_MOD into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
EERWIN
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'ISU_CHECK_PAYER_SD_COLLECT_MOD' "
EXPORTING
i_fkart = " tvfk-fkart
i_fktyp = " tvfk-fktyp
i_vbeln = " vbak-vbeln
i_posnr = " vbap-posnr
i_vbeln_ref = " vbak-vbeln
i_posnr_ref = " vbap-posnr
TABLES
it_vbpak = " vbpavb
it_vbpap = " vbpa
CHANGING
x_subrc = " sy-subrc
. " ISU_CHECK_PAYER_SD_COLLECT_MOD
The ABAP code below is a full code listing to execute function module ISU_CHECK_PAYER_SD_COLLECT_MOD including all data declarations. The code uses 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 original method of declaring data variables up front. 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).
| it_it_vbpak | TYPE STANDARD TABLE OF VBPAVB,"TABLES PARAM |
| wa_it_vbpak | LIKE LINE OF it_it_vbpak , |
| it_it_vbpap | TYPE STANDARD TABLE OF VBPA,"TABLES PARAM |
| wa_it_vbpap | LIKE LINE OF it_it_vbpap . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_x_subrc | TYPE SY-SUBRC , |
| ld_i_fkart | TYPE TVFK-FKART , |
| it_it_vbpak | TYPE STANDARD TABLE OF VBPAVB , |
| wa_it_vbpak | LIKE LINE OF it_it_vbpak, |
| ld_i_fktyp | TYPE TVFK-FKTYP , |
| it_it_vbpap | TYPE STANDARD TABLE OF VBPA , |
| wa_it_vbpap | LIKE LINE OF it_it_vbpap, |
| ld_i_vbeln | TYPE VBAK-VBELN , |
| ld_i_posnr | TYPE VBAP-POSNR , |
| ld_i_vbeln_ref | TYPE VBAK-VBELN , |
| ld_i_posnr_ref | TYPE VBAP-POSNR . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name ISU_CHECK_PAYER_SD_COLLECT_MOD or its description.
ISU_CHECK_PAYER_SD_COLLECT_MOD - ISU_CHECK_ORDER_OPTIONS - Check Selection Parameters for Waste Disposal Order Creation ISU_CHECK_ORDERDOWN_OPTIONS - Checks Selection Parameters for Order Download ISU_CHECK_NEXT_EABL_IS_ESTIMD - Check Whether Next Meter Reading Result Was Estimated? ISU_CHECK_NEXT_CONTRACT - INTERNAL: Billing for a Single Trigger ISU_CHECK_MR_BREAKPOINT -