SAP QARE_CHECK_QALS_WE Function Module for
QARE_CHECK_QALS_WE is a standard qare check qals we 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 qare check qals we FM, simply by entering the name QARE_CHECK_QALS_WE into the relevant SAP transaction such as SE37 or SE38.
Function Group: QARE
Program Name: SAPLQARE
Main Program:
Appliation area: Q
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function QARE_CHECK_QALS_WE 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 'QARE_CHECK_QALS_WE'".
EXPORTING
I_EBELN = "Purchase order header
I_EBELP = "Purchase order item
* I_MJAHR = "
* I_MBLNR = "GR material document
* I_ZEILE = "
I_SSQSS = "Control key for QM in procurement
* I_WESBS = "
IMPORTING
E_SUBRC = "Return code
IMPORTING Parameters details for QARE_CHECK_QALS_WE
I_EBELN - Purchase order header
Data type: QALS-EBELNOptional: No
Call by Reference: No ( called with pass by value option)
I_EBELP - Purchase order item
Data type: QALS-EBELPOptional: No
Call by Reference: No ( called with pass by value option)
I_MJAHR -
Data type: QALS-MJAHROptional: Yes
Call by Reference: No ( called with pass by value option)
I_MBLNR - GR material document
Data type: QALS-MBLNROptional: Yes
Call by Reference: No ( called with pass by value option)
I_ZEILE -
Data type: QALS-ZEILEOptional: Yes
Call by Reference: No ( called with pass by value option)
I_SSQSS - Control key for QM in procurement
Data type: EKPO-SSQSSOptional: No
Call by Reference: No ( called with pass by value option)
I_WESBS -
Data type: EKBE-WESBSOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for QARE_CHECK_QALS_WE
E_SUBRC - Return code
Data type: SY-SUBRCOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for QARE_CHECK_QALS_WE 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_subrc | TYPE SY-SUBRC, " | |||
| lv_i_ebeln | TYPE QALS-EBELN, " | |||
| lv_i_ebelp | TYPE QALS-EBELP, " | |||
| lv_i_mjahr | TYPE QALS-MJAHR, " | |||
| lv_i_mblnr | TYPE QALS-MBLNR, " | |||
| lv_i_zeile | TYPE QALS-ZEILE, " | |||
| lv_i_ssqss | TYPE EKPO-SSQSS, " | |||
| lv_i_wesbs | TYPE EKBE-WESBS. " |
|   CALL FUNCTION 'QARE_CHECK_QALS_WE' " |
| EXPORTING | ||
| I_EBELN | = lv_i_ebeln | |
| I_EBELP | = lv_i_ebelp | |
| I_MJAHR | = lv_i_mjahr | |
| I_MBLNR | = lv_i_mblnr | |
| I_ZEILE | = lv_i_zeile | |
| I_SSQSS | = lv_i_ssqss | |
| I_WESBS | = lv_i_wesbs | |
| IMPORTING | ||
| E_SUBRC | = lv_e_subrc | |
| . " QARE_CHECK_QALS_WE | ||
ABAP code using 7.40 inline data declarations to call FM QARE_CHECK_QALS_WE
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 SUBRC FROM SY INTO @DATA(ld_e_subrc). | ||||
| "SELECT single EBELN FROM QALS INTO @DATA(ld_i_ebeln). | ||||
| "SELECT single EBELP FROM QALS INTO @DATA(ld_i_ebelp). | ||||
| "SELECT single MJAHR FROM QALS INTO @DATA(ld_i_mjahr). | ||||
| "SELECT single MBLNR FROM QALS INTO @DATA(ld_i_mblnr). | ||||
| "SELECT single ZEILE FROM QALS INTO @DATA(ld_i_zeile). | ||||
| "SELECT single SSQSS FROM EKPO INTO @DATA(ld_i_ssqss). | ||||
| "SELECT single WESBS FROM EKBE INTO @DATA(ld_i_wesbs). | ||||
Search for further information about these or an SAP related objects