Application Development Blog Posts
Learn and share on deeper, cross technology development topics such as integration and connectivity, automation, cloud extensibility, developing at scale, and security.
cancel
Showing results for 
Search instead for 
Did you mean: 
former_member1716
Active Contributor

INTRODUCTION:

This post will explain in detail about adding an additional Tab to standard transactions for sales order (VA01, VA02, and VA03), contract documents (VA41, VA42, and VA43) and other related transactions of the program SAPMV45A.

HISTORY:

-->When I had this requirement of adding an additional tab, I started with my research on this across SCN and other SAP related sites. Irrespective of my long research I could not find any solution for this requirement without the need of ACCESS KEY.

-->However there are solution for this requirement which requires ACCESS KEY.  There are two additional tabs ADDITIONAL TAB A and ADDITIONAL TAB B which SAP has provided to add customer specific fields. The related screens for modifying these tabs are 8459, 8309.

FEW IMPORTANT POINTS ABOUT THESE TABS:

è The Additional TAB A and B are designed by SAP before the advent of BADI based plug in screens.

è The screens 8309, 8549 are never touched during upgrades, however taking access key could mean that the objects we are changing should be registered for SCCR and special care should be taken during upgrades to protect the change as they fall in SAP naming spaces.

è SAPMV45A / 8459 or 8309 even if they are in SAP naming space they are for customer modifications and SAP won’t overwrite them during upgrades.

è There are few ABAPers who are in a wrong assumption that SAP didn’t provide any BADI for this screen modification since many customers have already satisfied their need with the TABS A and B which is wrong.

è SAP has provided a BADI to add additional TABS up to 5(as far as my knowledge) to accommodate any user specific fields which depends on the later requirements of the customer.

STEP BY STEP IMPLEMENTATION OF THE BADI:

In this blog post I will explain in detail steps on how to implement the BADI.

STEP 1:

Go to transaction SE18 and give the badi name as BADI_SLS_ITEM_SCR_CUS. Click Display.

STEP 2:

You will be lead into this page where you can see several BADI definitions, you can see the purpose of each BADIs by reading its description.

STEP 3:

Now our intention here is to add additional tabs only at item level so we select the BADI accordingly, however there are different BADI for different purpose.

Now right click on the badi BADI_SLS_ITEM_SCR_CUS as below and select create implementation.

STEP 4:

Click on the paper icon as marked below in red to create a new implementation.

STEP 5:

Give a meaningful name for the implementation as shown below.

STEP 6:

Give a meaningful name for the enhancement implementation and description as shown below and click the TICK icon as shown below marked in red.

STEP 7:

Now you will be popped up with another window as below.

STEP 8:

Give a meaningful name for the implementation as shown below in the boxes below.

STEP 9:

Give a meaningful name for the implementation as shown below in the boxes below. Please note that all the details that you have filled earlier is for enhancement and now it is for BADI.

STEP 10:

Give a meaningful name for the implementation as shown below in the boxes below. Class name should be same as given below, this is the class method where you will write the code.

STEP 11:

Activate now, after activation you will be displayed with a screen as shown below which indicates that the enhancement and BADI implementation is complete.

STEP 12:

Now Go out and come again into the transaction SE18 and you can see the below screen.

STEP 13:

Click on the enhancement implementation tab and you will see the implementation that you have created, double click on that.

STEP 14:

Now you will be able to see the window as below.

STEP 15:

Now you will be able to see the window as below. Double click on the class method.

STEP 16:

Now you will be able to see the window as below. Double click on the first method as shown below to code for adding the tab.

Now you will be able to see the screen as below, in the field caption give the ‘name of the tab’,

In the field program give the ‘module program name’, in the field dynpro give the ‘screen number’, give all the details in single quants.

Important points:

1)      Module Program: This program should contain the screen which will have the required fields and the respective logic for the fields.

2)      Screen Number: This should be screen which you want to get displayed under the Tab that you have defined.

3)      Please note that the screen that you create here must be a sub screen and not main screen failing which it will lead to a runtime error.

4)      Please note that in the if condition I have given as

                                                --> If sy-tcode cp ‘VA4*’.

Which means this tab will be there for all the item details in the contract transactions like va41, va42, va43. So you can code as per your requirement.

Now after activating if you go to the required transaction you will be able to see the tab you have added as below. These fields are placed as per your requirement.

CONCLUSION:

è Thus we have implemented the requirement of adding the tab and necessary logic are coded in the module pool programming and screen is designed as per the requirements.

è Hope this post will serve as a good guide for beginners like me.

è Am sure many of us would have come across such scenarios and will have lot to share, eagerly awaiting for your posts.

è I will be very happy for any comments, corrections, likes and ratings regarding this post, which will serve as a source of encouragement to the beginners like me since this is only my third post in SCN. :smile: :smile: :smile:

è Thanks to SCN once again for all those commendable efforts it has made till now. :smile:

E

EXTENSION (Blogs Relevant to this Blog):

Apart from adding Additional tabs to the standard transactions, if you wish to rearrange the tabs you can check out my Blog below. Hope it helps.

Standard tabs Re-arrangement in Standard SAP Transactions

  “Lets LEARN and Collaborate in SCN” :smile: :smile: :smile:

109 Comments