Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

MM03 Transaction

Former Member
0 Likes
1,301

Hi All,

Please tell me how to call MM03 Tcode skipping 'Select view' screen from the program.

I also tried using ,

call transaction 'MM03' and skip initial screen

but still it shows the select view screen.

Please tell me a solution ASAP.

Thanks in Advance.

Hi All,

Please tell me how to call MM03 Tcode skipping 'Select view' screen from the program.

I also tried using ,

call transaction 'MM03' and skip initial screen

but still it shows the select view screen.

Please tell me a solution ASAP.

Thanks in Advance.

6 REPLIES 6
Read only

Former Member
0 Likes
1,197

Hi

How can you call the Views without selecting them in Second screen?

This MM03 different from other application transactions like SO and PO where you call second skipping first screen.

But for Material mastwer View, this view selection you can't skip and see

Reward points for useful Answers

Regards

Anji

Read only

Former Member
0 Likes
1,197

Hi Naga,

I thing its impossible. for MM03 Transaction you must select at least one view.

So you can't do that.

Thanks.

Read only

Azeemquadri
Contributor
0 Likes
1,197

CONSTANTS:lc_view(15) TYPE c VALUE 'BDEKLPQSVXZA'.

SET PARAMETER ID 'MAT' FIELD pr_matnr. " Matnr

SET PARAMETER ID 'MXX' FIELD lc_view. " to skip the select views popup

CALL TRANSACTION 'MM03' AND SKIP FIRST SCREEN.

Read only

Former Member
0 Likes
1,197

mm03 this view can't skip.

Read only

Former Member
0 Likes
1,197

yes you can do it try this code

SET PARAMETER ID 'MAT' FIELD wa_out-matnr.

SET PARAMETER ID 'WRK' FIELD wa_marc-werks.

SET PARAMETER ID 'MXX' FIELD 'E'.

CALL TRANSACTION 'MM03' AND SKIP FIRST SCREEN.

Read only

0 Likes
1,197

EXCELLENT solution by abhi and Abdul .

This solved my issue .

Edited by: Rocky on Feb 7, 2012 3:13 PM