2009 Feb 10 11:45 AM
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.
2009 Feb 10 5:33 PM
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
2009 Sep 11 6:32 AM
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
2012 Feb 16 2:52 PM
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
2009 Nov 04 12:16 AM
Hi,
I have the same problem, but what is the BADI that i have to implement ??
Regards