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: 

regarding Generic Object Services

Former Member
0 Kudos

hi to all,

In my project I have customized transaction code /tmw/tmw , which contains multiple transaction numbers(like multiple purchase orders in me23n) .I just added functionality called GOS. but the problem is , when ever i create attachment it will showing for transaction numbers . need to act fuctionality different for different transaction numbers like me23n . is there any solution for this . thank you

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

There is a GOS class you could use to handle.

For more infomation please check SAP NOTE: 961713 / 927407

Following is the Online help link for : Publishing Object and Excluding Services

[http://help.sap.com/saphelp_erp60_sp/helpdata/en/ee/f36a47a33111d389c80000e8216438/frameset.htm|http://help.sap.com/saphelp_erp60_sp/helpdata/en/ee/f36a47a33111d389c80000e8216438/frameset.htm]

BTW, there is alos an BADI you could use: SOBL_GOS_BROWSER

Cheers,

Edited by: NI SHILIANG on Feb 28, 2010 9:28 AM

2 REPLIES 2

Former Member
0 Kudos

Hi,

There is a GOS class you could use to handle.

For more infomation please check SAP NOTE: 961713 / 927407

Following is the Online help link for : Publishing Object and Excluding Services

[http://help.sap.com/saphelp_erp60_sp/helpdata/en/ee/f36a47a33111d389c80000e8216438/frameset.htm|http://help.sap.com/saphelp_erp60_sp/helpdata/en/ee/f36a47a33111d389c80000e8216438/frameset.htm]

BTW, there is alos an BADI you could use: SOBL_GOS_BROWSER

Cheers,

Edited by: NI SHILIANG on Feb 28, 2010 9:28 AM

0 Kudos

There is also another BADI: GOS_SRV_SELECT

In this BADI, you could display your objects only when needed by checking the TYPEID ( set in the SGOSATTR )

if is_lpor-typeid <> 'VTTK'.

clear ls_sel.

ls_sel-sign = 'E'.

ls_sel-option = 'CP'.

ls_sel-low = 'Z08DMSVTTK*'.

append ls_sel to et_options.

endif.

Edited by: NI SHILIANG on Feb 28, 2010 9:50 AM