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

Adding new fields to a Screen using BAdi

Former Member
0 Likes
1,881

Hi Experts,

Could you please explain the steps involved in adding a new field to an existing standard SAP screen using BAdi call?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,005

This depends on the definition of the BADI, since handling screen enhancements involves more than just the BADI, as the screen itself will have to exist in a separate program.

If you specify which BADI you're trying to use, I'm sure you'll get some more detailed answers.

2 REPLIES 2
Read only

Former Member
0 Likes
1,006

This depends on the definition of the BADI, since handling screen enhancements involves more than just the BADI, as the screen itself will have to exist in a separate program.

If you specify which BADI you're trying to use, I'm sure you'll get some more detailed answers.

Read only

Former Member
0 Likes
1,005

Screen exits add fields to screens in R/3 applications. SAP creates screen exits by placing special subscreen areas on a standard R/3 screen and calling a customer subscreen from the standard screen’s flow logic.

the tcode is cmod...

1.From the main screen of the Project management transaction, proceed as follows:

Select Enhancement components and choose Change.

2.Choose Edit component.

3.Choose the screen exit and double click on it

4.Create your subscreen using the Screen Painter.

5.Design your screen to be added to the standard screen and activate the particular screen and return back to the flow logic .

6.Choose the PAI and PBO to write down the logic.

7.Generate your screen and choose Back (the green arrow) to return to the Project management transaction.

8.Go to the transaction ME22 to view the customer defined screen exit.

9.Enter the purchase order number and press Enter.

10.Go to the menu header --> Details.

11.Purchase number is visible on the standard screen

Please check this SAP help for screen exit..

http://help.sap.com/saphelp_nw04/helpdata/en/9d/12233a0edd7978e10000000a11402f/frameset.htm

Regards