‎2008 Jul 15 9:35 AM
Hi Frnds,
I having a report for material master data. On double clicking the material in the report the material number will be fetched from the row and mm02 transaction should be called with the classification view. I have used the pid value to display the material number in mm02 but how can i select the classification view to display the data, by using the syntax
call transaction 'MM02' and skip first screen.
Thanks in Advance.
‎2008 Jul 15 9:54 AM
Hello
SET PARAMETER ID 'MXX' FIELD 'C'.
SET PARAMETER ID 'MAT' FIELD YOUR_MATNR.
SET PARAMETER ID 'CHE' FIELD '023'.
CALL TRANSACTION 'MM02' AND SKIP FIRST SCREEN.
‎2008 Jul 15 9:54 AM
Hello
SET PARAMETER ID 'MXX' FIELD 'C'.
SET PARAMETER ID 'MAT' FIELD YOUR_MATNR.
SET PARAMETER ID 'CHE' FIELD '023'.
CALL TRANSACTION 'MM02' AND SKIP FIRST SCREEN.
‎2008 Jul 15 10:09 AM
Thanks,
It works . One small clarification. I know how to get the pid value for matnr field. By pressing f1 key in MM02 and in technical help option we can see. But how did you get the pid value's 'MXX' and 'CHE'.
‎2008 Jul 15 10:14 AM
Hello
Look at table TPARA and choose necessary parameter by description in field PARTEXT.
‎2008 Jul 15 10:26 AM
You can do it setting value 'C' to parameter id MXX.
Regards,
Josep