HELP_VALUES_GET_WITH_DD_NAME 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 HELP_VALUES_GET_WITH_DD_NAME into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
SHL3
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'HELP_VALUES_GET_WITH_DD_NAME' "Use F4IF_INT_TABLE_VALUE_REQUEST
EXPORTING
* cucol = 0 " sy-cucol Cursor position: Column
* curow = 0 " sy-curow Cursor position: Line
* display = SPACE " Display flag: 'X' display only, ' ' with choice
selectfield = " help_info-fieldname Chosen table field
tablename = " help_info-tabname Name of the Dict.tab.,struct.of the int. table
* titel = SPACE " Title of the F4 popup
* no_pers_help_select = SPACE " Personal help hidden
* title_in_values_list = SPACE " Information line in display popup
* use_user_selections = SPACE " Use specified selection conditions
* show_all_values_at_first_time = SPACE " Ignore 100 values limit for first call
* no_scroll = SPACE " No scrolling of the displayed value list
* no_marking_of_checkvalue = SPACE " Last value cannot be marked
IMPORTING
ind = " sy-tabix Index of the selected field
select_value = " help_info-fldvalue Selected value
TABLES
full_table = " Internal Table
* user_sel_fields = " dynpread Specified selection conditions
* heading_table = " f4typ_heading_tab Field headers
EXCEPTIONS
NO_TABLEFIELDS_IN_DICTIONARY = 1 " No fields available in ABAP Dictionary
NO_TABLESTRUCTURE_GIVEN = 2 " No Dictionary table name specified
MORE_THEN_ONE_SELECTFIELD = 3 " More than one field selected
NO_SELECTFIELD = 4 " No field selected
. " HELP_VALUES_GET_WITH_DD_NAME
The ABAP code below is a full code listing to execute function module HELP_VALUES_GET_WITH_DD_NAME 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).
| ld_ind | TYPE SY-TABIX , |
| ld_select_value | TYPE HELP_INFO-FLDVALUE , |
| it_full_table | TYPE STANDARD TABLE OF STRING,"TABLES PARAM |
| wa_full_table | LIKE LINE OF it_full_table , |
| it_user_sel_fields | TYPE STANDARD TABLE OF DYNPREAD,"TABLES PARAM |
| wa_user_sel_fields | LIKE LINE OF it_user_sel_fields , |
| it_heading_table | TYPE STANDARD TABLE OF F4TYP_HEADING_TAB,"TABLES PARAM |
| wa_heading_table | LIKE LINE OF it_heading_table . |
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_ind | TYPE SY-TABIX , |
| ld_cucol | TYPE SY-CUCOL , |
| it_full_table | TYPE STANDARD TABLE OF STRING , |
| wa_full_table | LIKE LINE OF it_full_table, |
| ld_select_value | TYPE HELP_INFO-FLDVALUE , |
| ld_curow | TYPE SY-CUROW , |
| it_user_sel_fields | TYPE STANDARD TABLE OF DYNPREAD , |
| wa_user_sel_fields | LIKE LINE OF it_user_sel_fields, |
| ld_display | TYPE STRING , |
| it_heading_table | TYPE STANDARD TABLE OF F4TYP_HEADING_TAB , |
| wa_heading_table | LIKE LINE OF it_heading_table, |
| ld_selectfield | TYPE HELP_INFO-FIELDNAME , |
| ld_tablename | TYPE HELP_INFO-TABNAME , |
| ld_titel | TYPE STRING , |
| ld_no_pers_help_select | TYPE STRING , |
| ld_title_in_values_list | TYPE STRING , |
| ld_use_user_selections | TYPE STRING , |
| ld_show_all_values_at_first_time | TYPE STRING , |
| ld_no_scroll | TYPE STRING , |
| ld_no_marking_of_checkvalue | TYPE STRING . |
Functionality
...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 HELP_VALUES_GET_WITH_DD_NAME or its description.
HELP_VALUES_GET_WITH_DD_NAME - Use F4IF_INT_TABLE_VALUE_REQUEST HELP_VALUES_GET_WITH_CHECKTAB - HELP_VALUES_GET_VIA_SEL_SCREEN - HELP_VALUES_GET_RETURN_VALUES - Use F4IF_INT_TABLE_VALUE_REQUEST HELP_VALUES_GET_NO_DD_NAME - Use F4IF_INT_TABLE_VALUE_REQUEST HELP_VALUES_GET_GIVEN_VALUE - Table value help: Specification of table and DD name, return index