F4UT_LIST_EXIT 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 F4UT_LIST_EXIT into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
SF4U
Released Date:
30.04.1999
Processing type: Normal fucntion module
CALL FUNCTION 'F4UT_LIST_EXIT' "Standard Search Help Exit for Changing Hit List
EXPORTING
fcode = " sy-ucomm Function Code of Further Function
* name = " iconname Possibly Name of Icon to be Displayed
* icon_text = " gui_ictext Text on the Pushbutton
* quickinfo = " gui_info Quick Info of Pushbutton
* text = " gui_text Text for Right Mouse Menu
* remove = ' ' " ddbool_d Remove Function from Hit List
TABLES
shlp_tab = " shlp_descr_tab_t Table of Elementary Search Helps
record_tab = " seahlpres Hit List
CHANGING
shlp = " shlp_descr_t Single (Current) Search Help
callcontrol = " ddshf4ctrl Control of the F4 Process
EXCEPTIONS
ILLEGAL_INPUT = 1 " Illegal Entry
. " F4UT_LIST_EXIT
The ABAP code below is a full code listing to execute function module F4UT_LIST_EXIT 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_shlp_tab | TYPE STANDARD TABLE OF SHLP_DESCR_TAB_T,"TABLES PARAM |
| wa_shlp_tab | LIKE LINE OF it_shlp_tab , |
| it_record_tab | TYPE STANDARD TABLE OF SEAHLPRES,"TABLES PARAM |
| wa_record_tab | LIKE LINE OF it_record_tab . |
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_shlp | TYPE SHLP_DESCR_T , |
| ld_fcode | TYPE SY-UCOMM , |
| it_shlp_tab | TYPE STANDARD TABLE OF SHLP_DESCR_TAB_T , |
| wa_shlp_tab | LIKE LINE OF it_shlp_tab, |
| ld_callcontrol | TYPE DDSHF4CTRL , |
| ld_name | TYPE ICONNAME , |
| it_record_tab | TYPE STANDARD TABLE OF SEAHLPRES , |
| wa_record_tab | LIKE LINE OF it_record_tab, |
| ld_icon_text | TYPE GUI_ICTEXT , |
| ld_quickinfo | TYPE GUI_INFO , |
| ld_text | TYPE GUI_TEXT , |
| ld_remove | TYPE DDBOOL_D . |
With this module you can create another pushbutton in the hit list of
an input help in addition to the standard pushbuttons. You can freely
...See here for full SAP fm documentation
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 F4UT_LIST_EXIT or its description.
F4UT_LIST_EXIT - Standard Search Help Exit for Changing Hit List F4UT_ICONS_DISPLAY - Standard module for displaying icons and quick info in the hit list F4UT_H_WSTI_T001L_SHLP_EXIT - Search help exit storage loc with given plant F4UT_H_WSRS_ABTNR_SHLP_EXIT - Search help exit storage loc with given plant F4UT_GET_ENVIRONMENT - Request Program Environment for F4 Field F4UT_FIXED_VALUES_TEXT_ADD - Inserts fixed value text in the search help process