Application Development 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: 

GOS Toolbar On mi01 t-code

Former Member
0 Kudos

Hi Experts,

My requirement is to create Gos toolbar over standard T-Code mi01.

To achieve this, I need to implement the below code :

DATA: LR_GOS_MANAGER TYPE REF TO CL_GOS_MANAGER,

        IS_BORIDENT TYPE BORIDENT.

data : l_objky(23) type c.

CONCATENATE POMAT-matnr POMARC-werks RC29N-STLAN INTO l_objky.

IS_BORIDENT-OBJTYPE = 'BUS2028'

IS_BORIDENT-OBJKEY  = l_objky.

CREATE OBJECT LR_GOS_MANAGER

EXPORTING

IS_OBJECT = IS_BORIDENT

IP_NO_COMMIT = ' '

EXCEPTIONS

OBJECT_INVALID = 1.


My doubts are:


1. Do I need to implement this in PBO of SAPMM07I (700). If yes.. Kindly let me know the Include/Form

2. I need to find Object Type and Key.. Please route me.


For the 2nd Point, I checked in SWo1.. I found BUS2028(Right/Wrong).


Regards,

G.V.S Praveen Kumar

1 ACCEPTED SOLUTION

kranthi_kiran5
Explorer
0 Kudos

Dear Praveen,

   As it is a Standard The sap Should Provide i, if not go for the Custom Business Object Interface type, and the to Display the GOS Toolbar in the T Code leve, Please Check for the Enhancement Points.

Regards

Kranthi Kiran CH

2 REPLIES 2

kranthi_kiran5
Explorer
0 Kudos

Dear Praveen,

   As it is a Standard The sap Should Provide i, if not go for the Custom Business Object Interface type, and the to Display the GOS Toolbar in the T Code leve, Please Check for the Enhancement Points.

Regards

Kranthi Kiran CH

0 Kudos

Thanks for your reply.

I got your answer.