SAP JITOUT09_READ_T100_LONG_TEXT Function Module for NOTRANSL: Lesen des Langtexts einer Meldung und Füllen der Variablen
JITOUT09_READ_T100_LONG_TEXT is a standard jitout09 read t100 long text 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 des Langtexts einer Meldung und Füllen der Variablen 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 jitout09 read t100 long text FM, simply by entering the name JITOUT09_READ_T100_LONG_TEXT into the relevant SAP transaction such as SE37 or SE38.
Function Group: JITOUT09
Program Name: SAPLJITOUT09
Main Program: SAPLJITOUT09
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function JITOUT09_READ_T100_LONG_TEXT 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 'JITOUT09_READ_T100_LONG_TEXT'"NOTRANSL: Lesen des Langtexts einer Meldung und Füllen der Variablen.
EXPORTING
MSGID_IV = "Message Class
MSGNO_IV = "Message Number
* MSGV1 = "Message Variable
* MSGV2 = "Message Variable
* MSGV3 = "Message Variable
* MSGV4 = "Message Variable
CHANGING
* TEXT_CV = "Message Text for Global Performance Analysis
IMPORTING Parameters details for JITOUT09_READ_T100_LONG_TEXT
MSGID_IV - Message Class
Data type: SYMSGIDOptional: No
Call by Reference: Yes
MSGNO_IV - Message Number
Data type: SYMSGNOOptional: No
Call by Reference: Yes
MSGV1 - Message Variable
Data type: SYMSGVOptional: Yes
Call by Reference: Yes
MSGV2 - Message Variable
Data type: SYMSGVOptional: Yes
Call by Reference: Yes
MSGV3 - Message Variable
Data type: SYMSGVOptional: Yes
Call by Reference: Yes
MSGV4 - Message Variable
Data type: SYMSGVOptional: Yes
Call by Reference: Yes
CHANGING Parameters details for JITOUT09_READ_T100_LONG_TEXT
TEXT_CV - Message Text for Global Performance Analysis
Data type: PKMSGLONGOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for JITOUT09_READ_T100_LONG_TEXT 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_text_cv | TYPE PKMSGLONG, " | |||
| lv_msgid_iv | TYPE SYMSGID, " | |||
| lv_msgno_iv | TYPE SYMSGNO, " | |||
| lv_msgv1 | TYPE SYMSGV, " | |||
| lv_msgv2 | TYPE SYMSGV, " | |||
| lv_msgv3 | TYPE SYMSGV, " | |||
| lv_msgv4 | TYPE SYMSGV. " |
|   CALL FUNCTION 'JITOUT09_READ_T100_LONG_TEXT' "NOTRANSL: Lesen des Langtexts einer Meldung und Füllen der Variablen |
| EXPORTING | ||
| MSGID_IV | = lv_msgid_iv | |
| MSGNO_IV | = lv_msgno_iv | |
| MSGV1 | = lv_msgv1 | |
| MSGV2 | = lv_msgv2 | |
| MSGV3 | = lv_msgv3 | |
| MSGV4 | = lv_msgv4 | |
| CHANGING | ||
| TEXT_CV | = lv_text_cv | |
| . " JITOUT09_READ_T100_LONG_TEXT | ||
ABAP code using 7.40 inline data declarations to call FM JITOUT09_READ_T100_LONG_TEXT
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.Search for further information about these or an SAP related objects