<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Activating GOS browser in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/activating-gos-browser/m-p/3890083#M934348</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Laurens&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think in some cases the display of the GOS is truely hard-coded. If you create either a new sales order or a purchase order (not via IDoc!) the purchase order (ME23, ME23N) displays the GOS functionality whereas the sales order (VA03) does not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you debug transaction ME23 (on ECC 6.0) you will find the following coding:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
" Main program = SAPMM06E
" Source code of = MM06EF0L_LESEN_BELEG
" Routine = LESEN_BELEG

...
*- Publish the Serv button if no authority-check problems ------------*
  IF fc_vorga NE cva_en OR ekko-bstyp EQ bstyp-best.
    DATA: go_gos TYPE REF TO cl_gos_manager,
          ls_borident TYPE borident.

    ls_borident-objkey = ekko-ebeln.
    ls_borident-objtype = business_object.

* publish object.
    CREATE OBJECT go_gos
      EXPORTING
        is_object        = ls_borident
        ip_no_commit     = 'R'
      EXCEPTIONS
        object_invalid   = 1
        callback_invalid = 2
        OTHERS           = 3.
  ENDIF.
...
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am aware that this is not really the answer to your question but perhaps there are BAdI around to activate the GOS although I doubt this because SAP clearly says that GOS functionality is no longer supported ([Business Services|http://help.sap.com/saphelp_nw04/helpdata/en/2c/ed8e3f55b20617e10000000a114084/frameset.htm]).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 06 Jul 2008 20:06:51 GMT</pubDate>
    <dc:creator>uwe_schieferstein</dc:creator>
    <dc:date>2008-07-06T20:06:51Z</dc:date>
    <item>
      <title>Activating GOS browser</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/activating-gos-browser/m-p/3890080#M934345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everybody,&lt;/P&gt;&lt;P&gt;  I have a small question. Where do you 'activate'  the GOS object for specific business objects? For example. When we look at an order in our development system, we see the GOS browser in the topleft. When we look at an order in our Staging system, the GOS browser is deactivated. So it is possible to activate and deactivate the GOS for an object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this a customizing setting? We already had a look at the documentation on help.sap but I can't imagine that we have to make implementations of classes to make the GOS available for standard objects.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you can help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards&lt;/P&gt;&lt;P&gt;Laurens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 May 2008 12:15:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/activating-gos-browser/m-p/3890080#M934345</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-29T12:15:25Z</dc:date>
    </item>
    <item>
      <title>Re: Activating GOS browser</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/activating-gos-browser/m-p/3890081#M934346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Laurens&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may get an idea how to to this by looking at the following documentation:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[How to Attach Documents to Any Custom Program Using Generic Object Services|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/0e6b0d95-0a01-0010-4696-ca0a48de5fb3]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 May 2008 12:43:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/activating-gos-browser/m-p/3890081#M934346</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2008-05-29T12:43:58Z</dc:date>
    </item>
    <item>
      <title>Re: Activating GOS browser</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/activating-gos-browser/m-p/3890082#M934347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Uwe,&lt;/P&gt;&lt;P&gt;  thank you for the reply. The documentation you mentioned only addresses the use of GOS in a custom program. In fact, we already used it this way in one of our programs. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Laurens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2008 05:29:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/activating-gos-browser/m-p/3890082#M934347</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-30T05:29:21Z</dc:date>
    </item>
    <item>
      <title>Re: Activating GOS browser</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/activating-gos-browser/m-p/3890083#M934348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Laurens&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think in some cases the display of the GOS is truely hard-coded. If you create either a new sales order or a purchase order (not via IDoc!) the purchase order (ME23, ME23N) displays the GOS functionality whereas the sales order (VA03) does not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you debug transaction ME23 (on ECC 6.0) you will find the following coding:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
" Main program = SAPMM06E
" Source code of = MM06EF0L_LESEN_BELEG
" Routine = LESEN_BELEG

...
*- Publish the Serv button if no authority-check problems ------------*
  IF fc_vorga NE cva_en OR ekko-bstyp EQ bstyp-best.
    DATA: go_gos TYPE REF TO cl_gos_manager,
          ls_borident TYPE borident.

    ls_borident-objkey = ekko-ebeln.
    ls_borident-objtype = business_object.

* publish object.
    CREATE OBJECT go_gos
      EXPORTING
        is_object        = ls_borident
        ip_no_commit     = 'R'
      EXCEPTIONS
        object_invalid   = 1
        callback_invalid = 2
        OTHERS           = 3.
  ENDIF.
...
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am aware that this is not really the answer to your question but perhaps there are BAdI around to activate the GOS although I doubt this because SAP clearly says that GOS functionality is no longer supported ([Business Services|http://help.sap.com/saphelp_nw04/helpdata/en/2c/ed8e3f55b20617e10000000a114084/frameset.htm]).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 06 Jul 2008 20:06:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/activating-gos-browser/m-p/3890083#M934348</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2008-07-06T20:06:51Z</dc:date>
    </item>
  </channel>
</rss>

