SAP FILATOOL_TABLE_ENTRIES_TO_MARK Function Module for NOTRANSL: FB ruft Krümplemannschen TC generisch zum Markieren von Tabellen









FILATOOL_TABLE_ENTRIES_TO_MARK is a standard filatool table entries to mark SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: FB ruft Krümplemannschen TC generisch zum Markieren von Tabellen processing and below is the pattern details for this FM, 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 filatool table entries to mark FM, simply by entering the name FILATOOL_TABLE_ENTRIES_TO_MARK into the relevant SAP transaction such as SE37 or SE38.

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



Function FILATOOL_TABLE_ENTRIES_TO_MARK 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 'FILATOOL_TABLE_ENTRIES_TO_MARK'"NOTRANSL: FB ruft Krümplemannschen TC generisch zum Markieren von Tabellen
EXPORTING
ID_HEADER = "DE-EN-LANG-SWITCH-NO-TRANSLATION
ID_TABNAME = "Table Name
* ID_REPID_STATUS = "Predefined Type
* ID_STATUS = "Screens, Current GUI Status
* ID_TITLE = "Screens, Title Text
* ID_DYNNR_HEADER = "ABAP Program, Current Screen Number
* ID_REPID_HEADER = "Predefined Type

IMPORTING
ED_FCODE = "ABAP System Field: PAI-Triggering Function Code

TABLES
* IT_BUTTONLIST = "
* IT_FIELDDIF = "Manual Fieldtab Changes
* IT_DFIES = "DD Interface: Table Fields for DDIF_FIELDINFO_GET
* IT_EXCLTAB = "Excludes reference for Edit_Text
* IT_FCODES = "Excludes reference for Edit_Text
IT_TABLE = "
* IT_MARKEDLINES = "DE-EN-LANG-SWITCH-NO-TRANSLATION
ET_TABLE = "
* ET_MARKEDLINES = "DE-EN-LANG-SWITCH-NO-TRANSLATION

EXCEPTIONS
ERROR_OCCURRED = 1
.



IMPORTING Parameters details for FILATOOL_TABLE_ENTRIES_TO_MARK

ID_HEADER - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

ID_TABNAME - Table Name

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

ID_REPID_STATUS - Predefined Type

Data type: SY-REPID
Optional: Yes
Call by Reference: Yes

ID_STATUS - Screens, Current GUI Status

Data type: SY-PFKEY
Optional: Yes
Call by Reference: Yes

ID_TITLE - Screens, Title Text

Data type: SY-TITLE
Optional: Yes
Call by Reference: Yes

ID_DYNNR_HEADER - ABAP Program, Current Screen Number

Data type: SY-DYNNR
Optional: Yes
Call by Reference: Yes

ID_REPID_HEADER - Predefined Type

Data type: SY-REPID
Optional: Yes
Call by Reference: Yes

EXPORTING Parameters details for FILATOOL_TABLE_ENTRIES_TO_MARK

ED_FCODE - ABAP System Field: PAI-Triggering Function Code

Data type: SY-UCOMM
Optional: No
Call by Reference: Yes

TABLES Parameters details for FILATOOL_TABLE_ENTRIES_TO_MARK

IT_BUTTONLIST -

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

IT_FIELDDIF - Manual Fieldtab Changes

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

IT_DFIES - DD Interface: Table Fields for DDIF_FIELDINFO_GET

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

IT_EXCLTAB - Excludes reference for Edit_Text

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

IT_FCODES - Excludes reference for Edit_Text

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

IT_TABLE -

Data type:
Optional: No
Call by Reference: Yes

IT_MARKEDLINES - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type:
Optional: Yes
Call by Reference: Yes

ET_TABLE -

Data type:
Optional: No
Call by Reference: Yes

ET_MARKEDLINES - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type:
Optional: Yes
Call by Reference: Yes

EXCEPTIONS details

ERROR_OCCURRED - Error Occurred During Processing

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for FILATOOL_TABLE_ENTRIES_TO_MARK 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_ed_fcode  TYPE SY-UCOMM, "   
lv_id_header  TYPE SY, "   
lt_it_buttonlist  TYPE STANDARD TABLE OF TCDAT_ACTIVE_BUTTON_LIST, "   
lv_error_occurred  TYPE TCDAT_ACTIVE_BUTTON_LIST, "   
lv_id_tabname  TYPE DD02L-TABNAME, "   
lt_it_fielddif  TYPE STANDARD TABLE OF FIELD_DIF, "   
lt_it_dfies  TYPE STANDARD TABLE OF DFIES, "   
lv_id_repid_status  TYPE SY-REPID, "   
lv_id_status  TYPE SY-PFKEY, "   
lt_it_excltab  TYPE STANDARD TABLE OF EDITEXCL, "   
lv_id_title  TYPE SY-TITLE, "   
lt_it_fcodes  TYPE STANDARD TABLE OF EDITEXCL, "   
lt_it_table  TYPE STANDARD TABLE OF EDITEXCL, "   
lv_id_dynnr_header  TYPE SY-DYNNR, "   
lt_it_markedlines  TYPE STANDARD TABLE OF SY, "   
lv_id_repid_header  TYPE SY-REPID, "   
lt_et_table  TYPE STANDARD TABLE OF SY, "   
lt_et_markedlines  TYPE STANDARD TABLE OF SY. "   

  CALL FUNCTION 'FILATOOL_TABLE_ENTRIES_TO_MARK'  "NOTRANSL: FB ruft Krümplemannschen TC generisch zum Markieren von Tabellen
    EXPORTING
         ID_HEADER = lv_id_header
         ID_TABNAME = lv_id_tabname
         ID_REPID_STATUS = lv_id_repid_status
         ID_STATUS = lv_id_status
         ID_TITLE = lv_id_title
         ID_DYNNR_HEADER = lv_id_dynnr_header
         ID_REPID_HEADER = lv_id_repid_header
    IMPORTING
         ED_FCODE = lv_ed_fcode
    TABLES
         IT_BUTTONLIST = lt_it_buttonlist
         IT_FIELDDIF = lt_it_fielddif
         IT_DFIES = lt_it_dfies
         IT_EXCLTAB = lt_it_excltab
         IT_FCODES = lt_it_fcodes
         IT_TABLE = lt_it_table
         IT_MARKEDLINES = lt_it_markedlines
         ET_TABLE = lt_et_table
         ET_MARKEDLINES = lt_et_markedlines
    EXCEPTIONS
        ERROR_OCCURRED = 1
. " FILATOOL_TABLE_ENTRIES_TO_MARK




ABAP code using 7.40 inline data declarations to call FM FILATOOL_TABLE_ENTRIES_TO_MARK

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 UCOMM FROM SY INTO @DATA(ld_ed_fcode).
 
 
 
 
"SELECT single TABNAME FROM DD02L INTO @DATA(ld_id_tabname).
 
 
 
"SELECT single REPID FROM SY INTO @DATA(ld_id_repid_status).
 
"SELECT single PFKEY FROM SY INTO @DATA(ld_id_status).
 
 
"SELECT single TITLE FROM SY INTO @DATA(ld_id_title).
 
 
 
"SELECT single DYNNR FROM SY INTO @DATA(ld_id_dynnr_header).
 
 
"SELECT single REPID FROM SY INTO @DATA(ld_id_repid_header).
 
 
 


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!