SAP QELB_MKERRTAB_SHOW Function Module for NOTRANSL: Merkmalsausgabe für Merkmale, deren Abschluß nicht erfolgreich w









QELB_MKERRTAB_SHOW is a standard qelb mkerrtab show 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: Merkmalsausgabe für Merkmale, deren Abschluß nicht erfolgreich w 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 qelb mkerrtab show FM, simply by entering the name QELB_MKERRTAB_SHOW into the relevant SAP transaction such as SE37 or SE38.

Function Group: QELB
Program Name: SAPLQELB
Main Program: SAPLQELB
Appliation area: Q
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function QELB_MKERRTAB_SHOW 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 'QELB_MKERRTAB_SHOW'"NOTRANSL: Merkmalsausgabe für Merkmale, deren Abschluß nicht erfolgreich w
EXPORTING
* I_WINX1_24 = 10 "ABAP System Field: Obsolete
* I_WINX2_24 = 100 "ABAP System Field: Obsolete
* I_WINY1_24 = 2 "ABAP System Field: Obsolete
* I_WINY2_24 = 20 "ABAP System Field: Obsolete
I_PRUEFLOS_24 = "Inspection Lot Number
* I_ABSCHLUSS_ERZWINGEN = 'X' "X and Blank
* I_INFO_TEXT_1 = "Generic Type
* I_INFO_TEXT_2 = "Generic Type

IMPORTING
E_MKERRTAB_TABIX = "ABAP System Field: Row Index of Internal Tables
E_ABSCHLUSS_ERZWINGEN = "X and Blank

TABLES
T_MKERRTAB = "Interface table for error message list for characteristic

EXCEPTIONS
NO_DATA_FOUND = 1
.



IMPORTING Parameters details for QELB_MKERRTAB_SHOW

I_WINX1_24 - ABAP System Field: Obsolete

Data type: SY-WINX1
Default: 10
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_WINX2_24 - ABAP System Field: Obsolete

Data type: SY-WINX2
Default: 100
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_WINY1_24 - ABAP System Field: Obsolete

Data type: SY-WINY1
Default: 2
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_WINY2_24 - ABAP System Field: Obsolete

Data type: SY-WINY2
Default: 20
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_PRUEFLOS_24 - Inspection Lot Number

Data type: QALS-PRUEFLOS
Optional: No
Call by Reference: No ( called with pass by value option)

I_ABSCHLUSS_ERZWINGEN - X and Blank

Data type: QM00-QKZ
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_INFO_TEXT_1 - Generic Type

Data type: C
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_INFO_TEXT_2 - Generic Type

Data type: C
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for QELB_MKERRTAB_SHOW

E_MKERRTAB_TABIX - ABAP System Field: Row Index of Internal Tables

Data type: SY-TABIX
Optional: No
Call by Reference: No ( called with pass by value option)

E_ABSCHLUSS_ERZWINGEN - X and Blank

Data type: QM00-QKZ
Optional: No
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for QELB_MKERRTAB_SHOW

T_MKERRTAB - Interface table for error message list for characteristic

Data type: QAERR
Optional: No
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

NO_DATA_FOUND - 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 QELB_MKERRTAB_SHOW 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_winx1_24  TYPE SY-WINX1, "   10
lt_t_mkerrtab  TYPE STANDARD TABLE OF QAERR, "   
lv_no_data_found  TYPE QAERR, "   
lv_e_mkerrtab_tabix  TYPE SY-TABIX, "   
lv_i_winx2_24  TYPE SY-WINX2, "   100
lv_e_abschluss_erzwingen  TYPE QM00-QKZ, "   
lv_i_winy1_24  TYPE SY-WINY1, "   2
lv_i_winy2_24  TYPE SY-WINY2, "   20
lv_i_prueflos_24  TYPE QALS-PRUEFLOS, "   
lv_i_abschluss_erzwingen  TYPE QM00-QKZ, "   'X'
lv_i_info_text_1  TYPE C, "   
lv_i_info_text_2  TYPE C. "   

  CALL FUNCTION 'QELB_MKERRTAB_SHOW'  "NOTRANSL: Merkmalsausgabe für Merkmale, deren Abschluß nicht erfolgreich w
    EXPORTING
         I_WINX1_24 = lv_i_winx1_24
         I_WINX2_24 = lv_i_winx2_24
         I_WINY1_24 = lv_i_winy1_24
         I_WINY2_24 = lv_i_winy2_24
         I_PRUEFLOS_24 = lv_i_prueflos_24
         I_ABSCHLUSS_ERZWINGEN = lv_i_abschluss_erzwingen
         I_INFO_TEXT_1 = lv_i_info_text_1
         I_INFO_TEXT_2 = lv_i_info_text_2
    IMPORTING
         E_MKERRTAB_TABIX = lv_e_mkerrtab_tabix
         E_ABSCHLUSS_ERZWINGEN = lv_e_abschluss_erzwingen
    TABLES
         T_MKERRTAB = lt_t_mkerrtab
    EXCEPTIONS
        NO_DATA_FOUND = 1
. " QELB_MKERRTAB_SHOW




ABAP code using 7.40 inline data declarations to call FM QELB_MKERRTAB_SHOW

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 WINX1 FROM SY INTO @DATA(ld_i_winx1_24).
DATA(ld_i_winx1_24) = 10.
 
 
 
"SELECT single TABIX FROM SY INTO @DATA(ld_e_mkerrtab_tabix).
 
"SELECT single WINX2 FROM SY INTO @DATA(ld_i_winx2_24).
DATA(ld_i_winx2_24) = 100.
 
"SELECT single QKZ FROM QM00 INTO @DATA(ld_e_abschluss_erzwingen).
 
"SELECT single WINY1 FROM SY INTO @DATA(ld_i_winy1_24).
DATA(ld_i_winy1_24) = 2.
 
"SELECT single WINY2 FROM SY INTO @DATA(ld_i_winy2_24).
DATA(ld_i_winy2_24) = 20.
 
"SELECT single PRUEFLOS FROM QALS INTO @DATA(ld_i_prueflos_24).
 
"SELECT single QKZ FROM QM00 INTO @DATA(ld_i_abschluss_erzwingen).
DATA(ld_i_abschluss_erzwingen) = 'X'.
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!