Application Development 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: 

screen gets hanged for call transaction MM02

Former Member
0 Kudos

Hi Experts,

I have called transaction MM02 in my report. so when I select storage location plant view for the material and press enter a pop-up is coming to enter plant & storage location.

Now if I press F4 help for storage location/plant, the possible entries list is coming.But I am not able to perform any action on that list.

When I run tcode MM02 directly,this issue is not happening.

Can anyone please help me how to solve the issue and why is this happening for BDC mode?

Thanks,

Sonali.

5 REPLIES 5

Pawan_Kesari
Active Contributor
0 Kudos

Is there any particular reason you are using BDC instead of CALL TRANSACTION .. SKIP INITIAL.

Use this code to open the tab directly

SET PARAMETER ID 'MAT' FIELD matnr .     
SET PARAMETER ID 'WRK' FIELD werks .     
SET PARAMETER ID 'LAG' FIELD lgort .     
SET PARAMETER ID 'MXX' FIELD 'L' .                
CALL TRANSACTION 'MM02' AND SKIP FIRST SCREEN .

Edited by: Pawan Kesari on May 19, 2009 9:42 PM

0 Kudos

Hi,

In fact, I have implemented ECR/ECO workflow. ECR is engineering change request.Its master data in PLM module.

In my workflow, one work item is calling transaction MM02. when user directly runs MM02,put material number and change number.then selects Storage Location Stock view.then press F4 for storage location,pop-up is coming for possible entries.User can select value from this possible entry list/clicks cancel button in the possible entry list.

But when user executes work item,he is taken to transaction MM02.then he put material number and change number.then selects Storage Location Stock view.then press F4 for storage location,pop-up is coming for possible entries.BUT now no action can be taken in this possible entries pop-up window.user is not able to select value/to click any button,its seems hanged.

Then for testing I wrote a Zreport that calls transaction MM02. I am only providing values for the initial screen of MM02 in the bdcdata internal table.Same problem is happening.

So,I am confirmed whenever MM02 is called in batch input processing,issue is happening.

Why is this happening and how to resolve this issue.

Thanks,

Sonali.

Former Member
0 Kudos

I am really sorry to say but u cannot use F4 functionality while running a BDC. So u need to record the BDC again without F4 and give value for that field while running BDC rather than using F4 help...

Former Member
0 Kudos

using bdc f4 help in not possible. so please record bdc again and put all velues in recoding then do it.

0 Kudos

Hi Friends,

Thanks for your help.

Sonali.