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: 

enhancement in me 51 tr code

Former Member
0 Kudos

Hi ,

Dear All expert guru,

my requirement is when run Tr. code me51 and entered data in screen field storage location (eban-lgort) then should be

display Pop message (are u want to sure ). facing problem. while trying mostly exit .

so pls help me any one.

writing code like this

if sy-tcode = 'me51'.

if eban-lgort ne '1106'.

message 'ARE YOU SURE STORAGE LOCATION.' TYPE ' I '.

Regards.

Sudhir Srivastva.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

I guess u need to create enhancement implementation at "FORM FCODE_CALL." in main program for that TCODE

Edited by: vidyasagar. on Aug 26, 2010 9:37 AM

5 REPLIES 5

Former Member
0 Kudos

write the code in the user-exit / BADI Method that triggers the screen for the Tcode - ME51 . Use the function module to display the popup as:-

call screen (yr screen number).

FM POP_UP_TO_CONFIRM .

Former Member
0 Kudos

I guess u need to create enhancement implementation at "FORM FCODE_CALL." in main program for that TCODE

Edited by: vidyasagar. on Aug 26, 2010 9:37 AM

Former Member
0 Kudos

sir,

My problem is what should be customer exit exact used for enhancement in Tr Code ME51,

then i will used message pop up FUNCTION., pls tell me where i do will used.

REGARDS.

0 Kudos

well you need to find out the enhancement by debugging the screen for the transaction ME51. First check if any of the usr-exit triggers the screen or not . If not then look for the particular BADI .

nirajgadre
Active Contributor
0 Kudos

Hi,

Try to use the BADI ME_PROCESS_REQ_CUST and call the POPUP_TO_CONFIRM function module inside the method correct method.