SAP TPDA_TABLE_DISPLAY_VALUES Function Module for
TPDA_TABLE_DISPLAY_VALUES is a standard tpda table display values 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 tpda table display values FM, simply by entering the name TPDA_TABLE_DISPLAY_VALUES into the relevant SAP transaction such as SE37 or SE38.
Function Group: STPDA_TABLE_VALUES
Program Name: SAPLSTPDA_TABLE_VALUES
Main Program: SAPLSTPDA_TABLE_VALUES
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function TPDA_TABLE_DISPLAY_VALUES 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 'TPDA_TABLE_DISPLAY_VALUES'".
EXPORTING
I_TITLE = "
I_TABLE = "
I_RDA_TABLE = "
I_TAB_FCAT = "
* I_TOP_ROW = 1 "
* I_LEFT_COL = 1 "
IMPORTING
E_TOP_ROW = "
E_LEFT_COL = "
E_CURSOR_ROW = "
E_CURSOR_COL = "
E_TAB_FCAT = "
EXCEPTIONS
CANCELLED = 1
IMPORTING Parameters details for TPDA_TABLE_DISPLAY_VALUES
I_TITLE -
Data type: CSEQUENCEOptional: No
Call by Reference: Yes
I_TABLE -
Data type: CSEQUENCEOptional: No
Call by Reference: Yes
I_RDA_TABLE -
Data type: DATAOptional: No
Call by Reference: Yes
I_TAB_FCAT -
Data type: LVC_T_FCATOptional: No
Call by Reference: Yes
I_TOP_ROW -
Data type: IDefault: 1
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_LEFT_COL -
Data type: IDefault: 1
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for TPDA_TABLE_DISPLAY_VALUES
E_TOP_ROW -
Data type: IOptional: No
Call by Reference: No ( called with pass by value option)
E_LEFT_COL -
Data type: IOptional: No
Call by Reference: No ( called with pass by value option)
E_CURSOR_ROW -
Data type: IOptional: No
Call by Reference: No ( called with pass by value option)
E_CURSOR_COL -
Data type: IOptional: No
Call by Reference: No ( called with pass by value option)
E_TAB_FCAT -
Data type: LVC_T_FCATOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
CANCELLED -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for TPDA_TABLE_DISPLAY_VALUES 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_i_title | TYPE CSEQUENCE, " | |||
| lv_cancelled | TYPE CSEQUENCE, " | |||
| lv_e_top_row | TYPE I, " | |||
| lv_i_table | TYPE CSEQUENCE, " | |||
| lv_e_left_col | TYPE I, " | |||
| lv_i_rda_table | TYPE DATA, " | |||
| lv_e_cursor_row | TYPE I, " | |||
| lv_i_tab_fcat | TYPE LVC_T_FCAT, " | |||
| lv_e_cursor_col | TYPE I, " | |||
| lv_i_top_row | TYPE I, " 1 | |||
| lv_e_tab_fcat | TYPE LVC_T_FCAT, " | |||
| lv_i_left_col | TYPE I. " 1 |
|   CALL FUNCTION 'TPDA_TABLE_DISPLAY_VALUES' " |
| EXPORTING | ||
| I_TITLE | = lv_i_title | |
| I_TABLE | = lv_i_table | |
| I_RDA_TABLE | = lv_i_rda_table | |
| I_TAB_FCAT | = lv_i_tab_fcat | |
| I_TOP_ROW | = lv_i_top_row | |
| I_LEFT_COL | = lv_i_left_col | |
| IMPORTING | ||
| E_TOP_ROW | = lv_e_top_row | |
| E_LEFT_COL | = lv_e_left_col | |
| E_CURSOR_ROW | = lv_e_cursor_row | |
| E_CURSOR_COL | = lv_e_cursor_col | |
| E_TAB_FCAT | = lv_e_tab_fcat | |
| EXCEPTIONS | ||
| CANCELLED = 1 | ||
| . " TPDA_TABLE_DISPLAY_VALUES | ||
ABAP code using 7.40 inline data declarations to call FM TPDA_TABLE_DISPLAY_VALUES
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.| DATA(ld_i_top_row) | = 1. | |||
| DATA(ld_i_left_col) | = 1. | |||
Search for further information about these or an SAP related objects