cancel
Showing results for 
Search instead for 
Did you mean: 

Evaluation Comparision - Material wise Price,Quality and Delivery Scores

Former Member
0 Kudos

Hi All

I am new to QM and i am developing a custom report for vendor evaluation. For that report i need material wise scores of price,quality and delivery and based on this we need to perform some calculation.

In ME64 transaction i can able to see the General evaluation and Material wise evaluation for a pur.org,vendor and material combination.

From which table can i select this material wise scores.From table ELBP i can able to see only genral score and table ELBM has no entries.

Currently i can able to get the correct data by submitting ZRM06LBEW (Copy of ME64) in my report for pur.org,vendor and material combination.But i assume it may lead to performance issue.

So kindly suggest me any table,function module or BAPI to get the reuired data.

Thanks & Regards

P.Thangaraj

Accepted Solutions (0)

Answers (3)

Answers (3)

former_member207800
Active Contributor
0 Kudos

Refer to table S013 - Statistics for Vendor Evaluation.

Regards, Do Wook KIM

Former Member
0 Kudos

Deleting the post since it is not relevant

Edited by: smruti.ranjan on Jan 17, 2012 10:37 AM

former_member221025
Active Contributor
0 Kudos

hii..

Explore Exit MM06L001.

Description for the same is for your reference which is copied as it is on the source:.

User Exits - Vendor Evaluation

Enhancement MM06L001 comprises four function exits, which are invoked during the calculation of the scores for the subcriteria. The enhancement makes it possible to replace the standard scoring method by customers' own methods.

Implementation Guide (IMG)

To allow a customer's own scoring methods to be used, an indicator must be set for the relevant subcriteria in the IMG in the step Define criteria.

Function modules

The function modules for enhancement MM06L001 are as follows:

EXIT_SAPLMEL0_001

for the general criteria

EXIT_RM06LBAT_001

for the quality criteria if the vendor evaluation is carried out in the background

EXIT_SAPMM06L_001

for the quality criteria if the vendor evaluation is carried out online

EXIT_RM06LBEW_001

for the quality criteria when the scores for the semi-automatic and automatic subcriteria are determined

The following data is passed on to the function modules:

XLIFNR (Vendor number)

XEKORG (Purchasing organization)

XHKRIT (Main criterion)

XTKRIT (Subcriterion)

XKRTYP (Scoring method)

The function modules then supply the scores in the parameter XBEURT.

Coding example

The following example shows how a customer's own scoring method can be stored for the subcriterion "On-time delivery performance". The following coding can be added to program ZXM6LU01 for this purpose:

CASE XKRTYP.

WHEN '3'. "Ermittlungsmethode f・ die Termintreue"

(Scoring method for on-time delivery performance)

XBEURT = 50. "kundeneigene Logik"

(Customer's own logic)

ENDCASE.

In this case, 50 points are always awarded for a vendor's on-time delivery performance.

Function/Program:

EXIT_RM06LBAT_001: User Exits for Vendor Evaluation

EXIT_RM06LBEW_001: User Exits for Vendor Evaluation

EXIT_SAPLMEL0_001: User Exits for Vendor Evaluation

EXIT_SAPMM06L_001: User Exits for Vendor Evaluation

Regards,

Amol

Former Member
0 Kudos

Hi Amol,

Thanks for your inputs.

I have already gone through these exits.Only thing i need is which table we can get this material wise scores for Cost,Quality and Delivery.

Thanks & Regards

P.Thangaraj