‎2006 Dec 11 4:20 PM
Hello all,
I need to use matchcode =K (Classification) to find material number in transaction MM03. But I want to bypass all screens selection such as Find Objects in Classes (where we enter Class and Class Type) and next screen where we enter/select characteristic value in order to find the material number. As a result I just can enter the matchode K with additional paramaters in material field and the program will return the material number.
So guess I need to find the user exit and implement the logic to bypass all those screen. Is there anybody can help me on this?
Appreciate for any help or suggestion. Thanks.
Zamri
‎2006 Dec 11 5:23 PM
You need to modify dynpro 0060 of program SAPLMGMM, field RMMG1-MATNR, put there search help = MAT1K.
Regards.
‎2006 Dec 11 5:23 PM
You need to modify dynpro 0060 of program SAPLMGMM, field RMMG1-MATNR, put there search help = MAT1K.
Regards.
‎2006 Dec 11 5:39 PM
Thanks Luciano for your response but is there any other way to do this without modification?
‎2006 Dec 11 5:53 PM
Modification of search help MAT1 (impact in all transaction with field matnr and search help mat1) or modification of that dynpro.
Regards.
‎2006 Dec 11 6:07 PM
What is the best way to implement the modification logic, is't in FM CLSL_START_SELECTION_F4_40 or you have other suggestion?
‎2006 Dec 11 6:51 PM
Yes, you need to modify FM CLSL_START_SELECTION_F4_40, or copy as ZLSL_START_SELECTION_F4_40 and replace it in search help.
I think second alternative is the best, becose FM CLSL_START_SELECTION_F4_40 is alredy used in other search helps.
Regards.
‎2006 Dec 11 7:03 PM
I agree with with option # 2, but do you know any FM I can use to bypass all classification screen instead of FM CLSL_START_SELECTION?