SAP T350_READ Function Module for NOTRANSL: Lesen Tabelle T350 und T350_t (Vorschlag ILA zur Auftragsart)
T350_READ is a standard t350 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: Lesen Tabelle T350 und T350_t (Vorschlag ILA zur Auftragsart) 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 t350 read FM, simply by entering the name T350_READ into the relevant SAP transaction such as SE37 or SE38.
Function Group: INST
Program Name: SAPLINST
Main Program:
Appliation area: I
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function T350_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 'T350_READ'"NOTRANSL: Lesen Tabelle T350 und T350_t (Vorschlag ILA zur Auftragsart).
EXPORTING
AUART = "Order type
* LANGUAGE = SY-LANGU "Logon language
* MTYPE = ' ' "
IMPORTING
ILART_TEXT = "Text for ILA
T350_WA = "
EXCEPTIONS
NO_T350_ENTRY = 1
Customer Function user exits
Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.EXIT_SAPLINST_001 111
IMPORTING Parameters details for T350_READ
AUART - Order type
Data type: T350-AUARTOptional: No
Call by Reference: No ( called with pass by value option)
LANGUAGE - Logon language
Data type: SY-LANGUDefault: SY-LANGU
Optional: Yes
Call by Reference: No ( called with pass by value option)
MTYPE -
Data type: SY-MSGTYDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for T350_READ
ILART_TEXT - Text for ILA
Data type: T353I_T-ILATXOptional: No
Call by Reference: No ( called with pass by value option)
T350_WA -
Data type: T350Optional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_T350_ENTRY -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for T350_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_auart | TYPE T350-AUART, " | |||
| lv_ilart_text | TYPE T353I_T-ILATX, " | |||
| lv_no_t350_entry | TYPE T353I_T, " | |||
| lv_t350_wa | TYPE T350, " | |||
| lv_language | TYPE SY-LANGU, " SY-LANGU | |||
| lv_mtype | TYPE SY-MSGTY. " ' ' |
|   CALL FUNCTION 'T350_READ' "NOTRANSL: Lesen Tabelle T350 und T350_t (Vorschlag ILA zur Auftragsart) |
| EXPORTING | ||
| AUART | = lv_auart | |
| LANGUAGE | = lv_language | |
| MTYPE | = lv_mtype | |
| IMPORTING | ||
| ILART_TEXT | = lv_ilart_text | |
| T350_WA | = lv_t350_wa | |
| EXCEPTIONS | ||
| NO_T350_ENTRY = 1 | ||
| . " T350_READ | ||
ABAP code using 7.40 inline data declarations to call FM T350_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 AUART FROM T350 INTO @DATA(ld_auart). | ||||
| "SELECT single ILATX FROM T353I_T INTO @DATA(ld_ilart_text). | ||||
| "SELECT single LANGU FROM SY INTO @DATA(ld_language). | ||||
| DATA(ld_language) | = SY-LANGU. | |||
| "SELECT single MSGTY FROM SY INTO @DATA(ld_mtype). | ||||
| DATA(ld_mtype) | = ' '. | |||
Search for further information about these or an SAP related objects