SAP T410_READ Function Module for NOTRANSL: Arbeitsumfeld aus Tabelle T410 lesen
T410_READ is a standard t410 read 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: Arbeitsumfeld aus Tabelle T410 lesen 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 t410 read FM, simply by entering the name T410_READ into the relevant SAP transaction such as SE37 or SE38.
Function Group: CPTA
Program Name: SAPLCPTA
Main Program: SAPLCPTA
Appliation area: M
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function T410_READ 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 'T410_READ'"NOTRANSL: Arbeitsumfeld aus Tabelle T410 lesen.
EXPORTING
I_CLASS = "Usage area for working area
I_WORK_AREA = "Working area
* I_SPRAS = ' ' "Language Key
* I_PROVIDE_ALL_WORKAREAS = ' ' "Single-Character Indicator
IMPORTING
E_T410 = "Engineering Workbench: Working area
E_T410T_KTEXT = "Text Explanation
TABLES
* E_T410_TAB = "Engineering Workbench: Working area
EXCEPTIONS
NO_ENTRY = 1 NO_TEXT = 2
IMPORTING Parameters details for T410_READ
I_CLASS - Usage area for working area
Data type: T410-CLASSOptional: No
Call by Reference: No ( called with pass by value option)
I_WORK_AREA - Working area
Data type: T410-WORK_AREAOptional: No
Call by Reference: No ( called with pass by value option)
I_SPRAS - Language Key
Data type: T410T-SPRASDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_PROVIDE_ALL_WORKAREAS - Single-Character Indicator
Data type: CHAR1Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for T410_READ
E_T410 - Engineering Workbench: Working area
Data type: T410Optional: No
Call by Reference: No ( called with pass by value option)
E_T410T_KTEXT - Text Explanation
Data type: T410T-KTEXTOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for T410_READ
E_T410_TAB - Engineering Workbench: Working area
Data type: T410Optional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_ENTRY - No entry found in table
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_TEXT - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for T410_READ 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_e_t410 | TYPE T410, " | |||
| lv_i_class | TYPE T410-CLASS, " | |||
| lv_no_entry | TYPE T410, " | |||
| lt_e_t410_tab | TYPE STANDARD TABLE OF T410, " | |||
| lv_no_text | TYPE T410, " | |||
| lv_i_work_area | TYPE T410-WORK_AREA, " | |||
| lv_e_t410t_ktext | TYPE T410T-KTEXT, " | |||
| lv_i_spras | TYPE T410T-SPRAS, " SPACE | |||
| lv_i_provide_all_workareas | TYPE CHAR1. " SPACE |
|   CALL FUNCTION 'T410_READ' "NOTRANSL: Arbeitsumfeld aus Tabelle T410 lesen |
| EXPORTING | ||
| I_CLASS | = lv_i_class | |
| I_WORK_AREA | = lv_i_work_area | |
| I_SPRAS | = lv_i_spras | |
| I_PROVIDE_ALL_WORKAREAS | = lv_i_provide_all_workareas | |
| IMPORTING | ||
| E_T410 | = lv_e_t410 | |
| E_T410T_KTEXT | = lv_e_t410t_ktext | |
| TABLES | ||
| E_T410_TAB | = lt_e_t410_tab | |
| EXCEPTIONS | ||
| NO_ENTRY = 1 | ||
| NO_TEXT = 2 | ||
| . " T410_READ | ||
ABAP code using 7.40 inline data declarations to call FM T410_READ
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 CLASS FROM T410 INTO @DATA(ld_i_class). | ||||
| "SELECT single WORK_AREA FROM T410 INTO @DATA(ld_i_work_area). | ||||
| "SELECT single KTEXT FROM T410T INTO @DATA(ld_e_t410t_ktext). | ||||
| "SELECT single SPRAS FROM T410T INTO @DATA(ld_i_spras). | ||||
| DATA(ld_i_spras) | = ' '. | |||
| DATA(ld_i_provide_all_workareas) | = ' '. | |||
Search for further information about these or an SAP related objects