SAP QEBRMS_VALUATION_MS Function Module for NOTRANSL: Bewertung nach Multipler Spezifikation
QEBRMS_VALUATION_MS is a standard qebrms valuation ms 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: Bewertung nach Multipler Spezifikation 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 qebrms valuation ms FM, simply by entering the name QEBRMS_VALUATION_MS into the relevant SAP transaction such as SE37 or SE38.
Function Group: QEBRMS
Program Name: SAPLQEBRMS
Main Program: SAPLQEBRMS
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function QEBRMS_VALUATION_MS 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 'QEBRMS_VALUATION_MS'"NOTRANSL: Bewertung nach Multipler Spezifikation.
EXPORTING
* DYNPROCALL = 'X' "Selection Field
QABWR = "Interface table with data for valuation procedures
I_QALS = "Inspection Lot Record
I_MERKMAL = "Specifications and Results for the Characteristic
* I_ERRORPROT_FLAG = 'X' "DE-EN-LANG-SWITCH-NO-TRANSLATION
TABLES
QASPTAB = "Result and Specification Record for Sample
EXCEPTIONS
OTHER_ERROR = 1 SYSTEM_ERROR = 2 USER_ERROR = 3 VALUATION_NOT_POSSIBLE = 4 NO_SINGLE_VALUES = 5
IMPORTING Parameters details for QEBRMS_VALUATION_MS
DYNPROCALL - Selection Field
Data type: QAMKR-MARKDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
QABWR - Interface table with data for valuation procedures
Data type: QABWROptional: No
Call by Reference: No ( called with pass by value option)
I_QALS - Inspection Lot Record
Data type: QALSOptional: No
Call by Reference: No ( called with pass by value option)
I_MERKMAL - Specifications and Results for the Characteristic
Data type: QAMKROptional: No
Call by Reference: No ( called with pass by value option)
I_ERRORPROT_FLAG - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: CDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for QEBRMS_VALUATION_MS
QASPTAB - Result and Specification Record for Sample
Data type: QASPROptional: No
Call by Reference: Yes
EXCEPTIONS details
OTHER_ERROR -
Data type:Optional: No
Call by Reference: Yes
SYSTEM_ERROR -
Data type:Optional: No
Call by Reference: Yes
USER_ERROR -
Data type:Optional: No
Call by Reference: Yes
VALUATION_NOT_POSSIBLE -
Data type:Optional: No
Call by Reference: Yes
NO_SINGLE_VALUES -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for QEBRMS_VALUATION_MS 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: | ||||
| lt_qasptab | TYPE STANDARD TABLE OF QASPR, " | |||
| lv_dynprocall | TYPE QAMKR-MARK, " 'X' | |||
| lv_other_error | TYPE QAMKR, " | |||
| lv_qabwr | TYPE QABWR, " | |||
| lv_system_error | TYPE QABWR, " | |||
| lv_i_qals | TYPE QALS, " | |||
| lv_user_error | TYPE QALS, " | |||
| lv_i_merkmal | TYPE QAMKR, " | |||
| lv_valuation_not_possible | TYPE QAMKR, " | |||
| lv_i_errorprot_flag | TYPE C, " 'X' | |||
| lv_no_single_values | TYPE C. " |
|   CALL FUNCTION 'QEBRMS_VALUATION_MS' "NOTRANSL: Bewertung nach Multipler Spezifikation |
| EXPORTING | ||
| DYNPROCALL | = lv_dynprocall | |
| QABWR | = lv_qabwr | |
| I_QALS | = lv_i_qals | |
| I_MERKMAL | = lv_i_merkmal | |
| I_ERRORPROT_FLAG | = lv_i_errorprot_flag | |
| TABLES | ||
| QASPTAB | = lt_qasptab | |
| EXCEPTIONS | ||
| OTHER_ERROR = 1 | ||
| SYSTEM_ERROR = 2 | ||
| USER_ERROR = 3 | ||
| VALUATION_NOT_POSSIBLE = 4 | ||
| NO_SINGLE_VALUES = 5 | ||
| . " QEBRMS_VALUATION_MS | ||
ABAP code using 7.40 inline data declarations to call FM QEBRMS_VALUATION_MS
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 MARK FROM QAMKR INTO @DATA(ld_dynprocall). | ||||
| DATA(ld_dynprocall) | = 'X'. | |||
| DATA(ld_i_errorprot_flag) | = 'X'. | |||
Search for further information about these or an SAP related objects