SAP IREQ_CHECK_LTXT_VORHD Function Module for
IREQ_CHECK_LTXT_VORHD is a standard ireq check ltxt vorhd 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 ireq check ltxt vorhd FM, simply by entering the name IREQ_CHECK_LTXT_VORHD into the relevant SAP transaction such as SE37 or SE38.
Function Group: AIA7
Program Name: SAPLAIA7
Main Program:
Appliation area: A
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function IREQ_CHECK_LTXT_VORHD 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 'IREQ_CHECK_LTXT_VORHD'".
EXPORTING
I_POSNR = "
* I_VARNT = "
* I_SPRAS = SY-LANGU "
* I_TO_COPY = "
IMPORTING
E_ANZAHL_ENTRIES = "
TABLES
* SELECTIONS = "
IMPORTING Parameters details for IREQ_CHECK_LTXT_VORHD
I_POSNR -
Data type: IMAK-POSNROptional: No
Call by Reference: No ( called with pass by value option)
I_VARNT -
Data type: IMAV-VARNTOptional: Yes
Call by Reference: No ( called with pass by value option)
I_SPRAS -
Data type: TAIF3-SPRASDefault: SY-LANGU
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_TO_COPY -
Data type: T020-AKTYPOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for IREQ_CHECK_LTXT_VORHD
E_ANZAHL_ENTRIES -
Data type: SY-TFILLOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for IREQ_CHECK_LTXT_VORHD
SELECTIONS -
Data type: THEADOptional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for IREQ_CHECK_LTXT_VORHD 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_posnr | TYPE IMAK-POSNR, " | |||
| lt_selections | TYPE STANDARD TABLE OF THEAD, " | |||
| lv_e_anzahl_entries | TYPE SY-TFILL, " | |||
| lv_i_varnt | TYPE IMAV-VARNT, " | |||
| lv_i_spras | TYPE TAIF3-SPRAS, " SY-LANGU | |||
| lv_i_to_copy | TYPE T020-AKTYP. " |
|   CALL FUNCTION 'IREQ_CHECK_LTXT_VORHD' " |
| EXPORTING | ||
| I_POSNR | = lv_i_posnr | |
| I_VARNT | = lv_i_varnt | |
| I_SPRAS | = lv_i_spras | |
| I_TO_COPY | = lv_i_to_copy | |
| IMPORTING | ||
| E_ANZAHL_ENTRIES | = lv_e_anzahl_entries | |
| TABLES | ||
| SELECTIONS | = lt_selections | |
| . " IREQ_CHECK_LTXT_VORHD | ||
ABAP code using 7.40 inline data declarations to call FM IREQ_CHECK_LTXT_VORHD
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 POSNR FROM IMAK INTO @DATA(ld_i_posnr). | ||||
| "SELECT single TFILL FROM SY INTO @DATA(ld_e_anzahl_entries). | ||||
| "SELECT single VARNT FROM IMAV INTO @DATA(ld_i_varnt). | ||||
| "SELECT single SPRAS FROM TAIF3 INTO @DATA(ld_i_spras). | ||||
| DATA(ld_i_spras) | = SY-LANGU. | |||
| "SELECT single AKTYP FROM T020 INTO @DATA(ld_i_to_copy). | ||||
Search for further information about these or an SAP related objects