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: 

Generic Object Services (GOS) feature to be activated on QP01/02/03

Former Member
0 Kudos
1,335

My client want to have the Object Services(GOS) capability turned ON on

QP01, QP02 and QP03 screens which will allow them to link documents to

the Inspection Plan. And right now that feature/icon is not there on

QP01/QP02/QP03 screens. When I tried to activate the 'Services for

Object' on those screens, I got the message 'No Service Available'.

Could anyone please provide a solution to turn on that feature for the

Inspection Plan screens?

Thanks & Regards,

AnjiReddy Pulagam.

4 REPLIES 4

LucianoBentiveg
Active Contributor
222

You need to implement a BADI to generate the GOS toolbar for that transactions, and put this code inside:


DATA: LO_MANAGER  TYPE REF TO CL_GOS_MANAGER,
          LA_OBJ      TYPE BORIDENT.
 

* Set object Key
    LA_OBJ-OBJTYPE = 'BUS1191'. "Bussiness object for inspection plan
    LA_OBJ-OBJKEY  = inspectionPlanIdentifier. " Inspection plan number
 
* GOS toolbar
    CREATE OBJECT LO_MANAGER
      EXPORTING
        IS_OBJECT    = LA_OBJ
        IP_NO_COMMIT = SPACE
      EXCEPTIONS
        OTHERS = 1.
 

Regards

0 Kudos
222

Hi Pelluka.

Thanks for the reply. I did the same but attachment list under create is deactivated to see attachments created. Can you help me how to activate that attachment list as that is in disable mode.

Thanks & Regards,

AR

222

Dear Peluka,

thank you a lot for your suggestion, it helped me to solve my problem.

@Claudio De Felici: to enable GOS in QP02/QP03 I used the customer exit CPAU0001, Include ZXCPAU01

best regards

Alexander

Former Member
0 Kudos
222

Hi,

I have the same problem, but what is the BADI that i have to implement ??

Regards