SAP QLMSM_GET_ICON Function Module for NOTRANSL: Prüft, ob die Ikone für die Multiplen Spezifikationen zu aktuali
QLMSM_GET_ICON is a standard qlmsm get icon 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: Prüft, ob die Ikone für die Multiplen Spezifikationen zu aktuali 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 qlmsm get icon FM, simply by entering the name QLMSM_GET_ICON into the relevant SAP transaction such as SE37 or SE38.
Function Group: QLMSM
Program Name: SAPLQLMSM
Main Program: SAPLQLMSM
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function QLMSM_GET_ICON 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 'QLMSM_GET_ICON'"NOTRANSL: Prüft, ob die Ikone für die Multiplen Spezifikationen zu aktuali.
EXPORTING
I_PRUEFLOS = "Inspection Lot Number
I_USAGE = "
I_VORGLFNR = 0 "Operation Number
* I_PROBENR = "Sample Number
* I_QALS = "Inspection Lot Record
* IT_QAMKTAB_DIF = "Table: Specifications and Results for Inspection Charac.
IMPORTING
E_ICON_MS = "Icon Name
IMPORTING Parameters details for QLMSM_GET_ICON
I_PRUEFLOS - Inspection Lot Number
Data type: QPLOSOptional: No
Call by Reference: Yes
I_USAGE -
Data type: COptional: No
Call by Reference: Yes
I_VORGLFNR - Operation Number
Data type: QLFNKNOptional: No
Call by Reference: Yes
I_PROBENR - Sample Number
Data type: QPROBENROptional: Yes
Call by Reference: Yes
I_QALS - Inspection Lot Record
Data type: QALSOptional: Yes
Call by Reference: Yes
IT_QAMKTAB_DIF - Table: Specifications and Results for Inspection Charac.
Data type: QAMKRTABOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for QLMSM_GET_ICON
E_ICON_MS - Icon Name
Data type: ICON-NAMEOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for QLMSM_GET_ICON 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_icon_ms | TYPE ICON-NAME, " | |||
| lv_i_prueflos | TYPE QPLOS, " | |||
| lv_i_usage | TYPE C, " | |||
| lv_i_vorglfnr | TYPE QLFNKN, " 0 | |||
| lv_i_probenr | TYPE QPROBENR, " | |||
| lv_i_qals | TYPE QALS, " | |||
| lv_it_qamktab_dif | TYPE QAMKRTAB. " |
|   CALL FUNCTION 'QLMSM_GET_ICON' "NOTRANSL: Prüft, ob die Ikone für die Multiplen Spezifikationen zu aktuali |
| EXPORTING | ||
| I_PRUEFLOS | = lv_i_prueflos | |
| I_USAGE | = lv_i_usage | |
| I_VORGLFNR | = lv_i_vorglfnr | |
| I_PROBENR | = lv_i_probenr | |
| I_QALS | = lv_i_qals | |
| IT_QAMKTAB_DIF | = lv_it_qamktab_dif | |
| IMPORTING | ||
| E_ICON_MS | = lv_e_icon_ms | |
| . " QLMSM_GET_ICON | ||
ABAP code using 7.40 inline data declarations to call FM QLMSM_GET_ICON
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 NAME FROM ICON INTO @DATA(ld_e_icon_ms). | ||||
Search for further information about these or an SAP related objects