cancel
Showing results for 
Search instead for 
Did you mean: 

Screen Enhancement without BADI / Screen Exit.

Former Member
0 Kudos

Dear All,

I need to add some extra tab in Transaction SOLAR01 ( SolMan ).

For that I can not find any Scren Exit or BADI.

Is it possible to add extra tab in the transaction without using SAP Object Key ?

Please guide me to add the extra tab in Transaction SOLAR01.

Thanking You All.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi ,

Please go through the sap note 1027579 which mentions adding/hiding object types to SOLAR01 using BADI/Spots to see if it fits the requirement

Details of the note are provided here...

[https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/5337] [original link is broken] [original link is broken] [original link is broken];

Note 1027579 - Extend SAP Solution Manager to Manage New Object Types

Hope it helps

Regards

Byju

Former Member
0 Kudos

Dear Byju,

Thanks a lot .

This blog only contains the solution for adding objects in "Transaction", "Configuration" and "Development" tab but I want to add a completly new tab in Tranasction Solar01.

Any body having any idea please help.

Thanking You All.

Former Member
0 Kudos

hi,

please visit this link and help me out in this regard,

thanks in advance,

ben.

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi Ankit,

Have you managed to add the custom fields to the transaction.

Regards,

TIbin

Former Member
0 Kudos

Hi,

it is possible, but you need to perform a few steps. Tabs are created in method CREATE_TABS of class CL_SA_APPLICATION.

If you want to add a tab, you need to:

- enhance method GET_ALL_TABS

- add data for your new tab in table TTABP. Or enhance the function module that reads this table (SPROJECT_GET_ACTIVE_TABS)

- create a subscreen for the tabstrip

- enhance method ADD_TABSTRIP at the beginning: when TABSTRIP-TABTYPE is your new tab, then add the correct screen and program.

That should get you started.

Roy