SAP ISPAM_EXCLUDE_TAB_FILL Function Module for
ISPAM_EXCLUDE_TAB_FILL is a standard ispam exclude tab fill 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 ispam exclude tab fill FM, simply by entering the name ISPAM_EXCLUDE_TAB_FILL into the relevant SAP transaction such as SE37 or SE38.
Function Group: JJY3
Program Name: SAPLJJY3
Main Program: SAPLJJY3
Appliation area: J
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISPAM_EXCLUDE_TAB_FILL 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 'ISPAM_EXCLUDE_TAB_FILL'".
EXPORTING
PROGRAMM = "
DYNPRONUMMER = "
TRANSAKTIONSTYP = "
* OPERATION = ' ' "
* CALL_MODUS = SY-CALLD "
* IN_TCODE = SY-TCODE "
* IN_MIT_TJ181 = 'X' "
IMPORTING
ENTRIES_FOUND = "
TABLES
* EXCL_FUNCTIONS = "
* OUT_TJ183_FCODES = "
* OUT_TJ181_FCODES = "
IMPORTING Parameters details for ISPAM_EXCLUDE_TAB_FILL
PROGRAMM -
Data type: TJ183-AGIDVOptional: No
Call by Reference: No ( called with pass by value option)
DYNPRONUMMER -
Data type: SY-DYNNROptional: No
Call by Reference: No ( called with pass by value option)
TRANSAKTIONSTYP -
Data type: TJ181-TRTYPOptional: No
Call by Reference: No ( called with pass by value option)
OPERATION -
Data type: TJ181-OPERADefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
CALL_MODUS -
Data type: SY-CALLDDefault: SY-CALLD
Optional: Yes
Call by Reference: No ( called with pass by value option)
IN_TCODE -
Data type: TSTC-TCODEDefault: SY-TCODE
Optional: Yes
Call by Reference: No ( called with pass by value option)
IN_MIT_TJ181 -
Data type: JPAM_XFELD_VARDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ISPAM_EXCLUDE_TAB_FILL
ENTRIES_FOUND -
Data type: SY-SUBRCOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ISPAM_EXCLUDE_TAB_FILL
EXCL_FUNCTIONS -
Data type: RJ181Optional: Yes
Call by Reference: No ( called with pass by value option)
OUT_TJ183_FCODES -
Data type: RJ181Optional: Yes
Call by Reference: No ( called with pass by value option)
OUT_TJ181_FCODES -
Data type: RJ181Optional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISPAM_EXCLUDE_TAB_FILL 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_programm | TYPE TJ183-AGIDV, " | |||
| lv_entries_found | TYPE SY-SUBRC, " | |||
| lt_excl_functions | TYPE STANDARD TABLE OF RJ181, " | |||
| lv_dynpronummer | TYPE SY-DYNNR, " | |||
| lt_out_tj183_fcodes | TYPE STANDARD TABLE OF RJ181, " | |||
| lv_transaktionstyp | TYPE TJ181-TRTYP, " | |||
| lt_out_tj181_fcodes | TYPE STANDARD TABLE OF RJ181, " | |||
| lv_operation | TYPE TJ181-OPERA, " SPACE | |||
| lv_call_modus | TYPE SY-CALLD, " SY-CALLD | |||
| lv_in_tcode | TYPE TSTC-TCODE, " SY-TCODE | |||
| lv_in_mit_tj181 | TYPE JPAM_XFELD_VAR. " 'X' |
|   CALL FUNCTION 'ISPAM_EXCLUDE_TAB_FILL' " |
| EXPORTING | ||
| PROGRAMM | = lv_programm | |
| DYNPRONUMMER | = lv_dynpronummer | |
| TRANSAKTIONSTYP | = lv_transaktionstyp | |
| OPERATION | = lv_operation | |
| CALL_MODUS | = lv_call_modus | |
| IN_TCODE | = lv_in_tcode | |
| IN_MIT_TJ181 | = lv_in_mit_tj181 | |
| IMPORTING | ||
| ENTRIES_FOUND | = lv_entries_found | |
| TABLES | ||
| EXCL_FUNCTIONS | = lt_excl_functions | |
| OUT_TJ183_FCODES | = lt_out_tj183_fcodes | |
| OUT_TJ181_FCODES | = lt_out_tj181_fcodes | |
| . " ISPAM_EXCLUDE_TAB_FILL | ||
ABAP code using 7.40 inline data declarations to call FM ISPAM_EXCLUDE_TAB_FILL
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 AGIDV FROM TJ183 INTO @DATA(ld_programm). | ||||
| "SELECT single SUBRC FROM SY INTO @DATA(ld_entries_found). | ||||
| "SELECT single DYNNR FROM SY INTO @DATA(ld_dynpronummer). | ||||
| "SELECT single TRTYP FROM TJ181 INTO @DATA(ld_transaktionstyp). | ||||
| "SELECT single OPERA FROM TJ181 INTO @DATA(ld_operation). | ||||
| DATA(ld_operation) | = ' '. | |||
| "SELECT single CALLD FROM SY INTO @DATA(ld_call_modus). | ||||
| DATA(ld_call_modus) | = SY-CALLD. | |||
| "SELECT single TCODE FROM TSTC INTO @DATA(ld_in_tcode). | ||||
| DATA(ld_in_tcode) | = SY-TCODE. | |||
| DATA(ld_in_mit_tj181) | = 'X'. | |||
Search for further information about these or an SAP related objects