2009 Apr 24 11:50 AM
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.
2009 Apr 24 12:05 PM
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
2009 Apr 24 12:13 PM
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.