Application Development and Automation 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: 
Read only

Automatically insert value from One field to Another

Former Member
0 Likes
449

Hi,

In transaction F-28, When we insert the value in Clearing text field, that value should insert in Assignment field automatically. How can we do it. Through BADI or some other way is possible for it....

Please help...

Hi,

In transaction F-28, When we insert the value in Clearing text field, that value should insert in Assignment field automatically. How can we do it. Through BADI or some other way is possible for it....

Please help...

2 REPLIES 2
Read only

Clemenss
Active Contributor
0 Likes
393

soory, the answer was for another question

Regards,

Clemens

Edited by: Clemens Li on Oct 10, 2009 3:29 PM

Read only

Clemenss
Active Contributor
0 Likes
393

Hi,

if you want to go for BADI:

Follow the below steps to find out what all BADI's are called when you press any button in any transaction.

1) Goto se24 (Display class cl_exithandler)

2) Double click on the method GET_INSTANCE.

3) Put a break point at Line no.25 (CASE sy-subrc).

Now

4) Execute SAP standard transaction

5) Press the required button for which you need to write an exit logic, the execution will stop at the break point.

6) Check the values of variable 'exit_name', it will give you the BADI name called at that time.

7) This way you will find all the BADIs called on click of any button in any transaction.

Then check the BADIs if one of them can be used to do the desired data transfer.

Good luck.

Regards,

Clemens