cancel
Showing results for 
Search instead for 
Did you mean: 

Personas 2.0 for MM03 Tcode

Former Member
0 Kudos

Hi All,

Anybody knows how to merge the screen of different views in MM03.

Currently facing difficulties if that particular view is not maintained for a material.

Thank you,

Arunkumaran

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

You're trying to use the "Next" button to navigate through the various material views but depending on the material sometimes views a skipped. And you're collecting fields from these various views to merge into a single screen. Is that right?

The way to deal with this is to use an IF with a "control exists" test to see which screen is displayed when you press "Next", and do the right thing. The views will always be displayed in the same order, but some will be omitted. A script something like this should work:

IF control exists <something on Basic data 1>

     copy data from Basic data 1 screen

     press "Next"

IF control exists <something on Basic data 2>

     copy data from Basic data 2 screen

     press "Next"

IF control exists <something from Purchasing>

     copy data from Purchasing screen

     press "Next"

and so on.

As Tamas suggested, to record this use a material that has all necessary views available, and then add the IF conditions afterwards.

Please be aware that the MM03 transaction changes to use a tabbed view in more recent versions, which is why Tamas mentioned tab merging. At some point you'll apply a support pack that will require you to rebuild your flavours for this transaction.

Steve.

tamas_hoznek
Product and Topic Expert
Product and Topic Expert
0 Kudos

Select a material that has all the views maintained which you want to use for tab merging.

You can only change the objects that you see on the screen... or what kind of difficulties do you mean?

Former Member
0 Kudos

Hi Tamas,

In my scenario, we are not using TAB in Material Master.

Please find the below screen shot.

So that we are facing issue in merging screen if we doesn't have the view.

Thank you,

Arunkumaran