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: 

Need the code to implement in BADI MD_PURREQ_CHANGE

Former Member
0 Kudos
234

Dear Experts,

I have the following Query.

My requirement is to creat a subscreen in transaction ME52N and inside the subscreen the

content is location(field T499S-STAND).

I have created the sub screen(by using the program name SAPLXM02 and screen no 111) and

inside that i have created one field EBAN-STAND.

and activated it.the sub screen is coming perfectly.Now my requirement is to display the value of

location (the value to be extracted from T499S) and display it in the screen field EBAN-STAND.

How to write the code in the implementation of BADI MD_PURREQ_CHANGE.

2 REPLIES 2

Former Member
0 Kudos
81

Hi,

in event PBO of SAPLXM02 create a module and move the value of T499S-stand to EBAN-stand.

PBO

module eban_stand.

EBAN-STAND = T499S-stand .

endmodule.

Regards,

Pavan

0 Kudos
81

No I am asking about in there any other BADI available to implement the code .

I mean the subscreen is EBAN-ZSTAND.My doubt is what is the exact BADI name

where i can implement the code.i.e select the stand value from T499S.

and pass the value to EBAN-ZSTAND.Where i need to implement my code.