<?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: Generic Object Services u2013 GOS in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/generic-object-services-u2013-gos/m-p/7167024#M1516669</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Using  following  u got GOS tool bar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CREATE OBJECT lo_manager&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;EXPORTING&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;is_object    = la_obj&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;ip_no_commit = space&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;EXCEPTIONS&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;OTHERS = 1.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;EXAMPLE&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

REPORT  ZGOS.

DATA: lo_manager  TYPE REF TO cl_gos_manager,
      la_obj      TYPE borident.


START-OF-SELECTION.
  la_obj-objtype = 'TRDIR'.
  la_obj-objkey  = 'REPS'.


* GOS toolbar
  CREATE OBJECT lo_manager
    EXPORTING
      is_object    = la_obj
      ip_no_commit = space
    EXCEPTIONS
      OTHERS = 1.

* To generate output
  WRITE: 'GOS test for Customer'.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Aug 2010 08:33:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-08-12T08:33:27Z</dc:date>
    <item>
      <title>Generic Object Services u2013 GOS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/generic-object-services-u2013-gos/m-p/7167022#M1516667</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gurus&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not familiar with this in SAP and would appreciate some help please. With transaction CV04n we need to create an attachment on the document via the menu: GOS icon, Create, Create Attachment. The requirement is to delete the file from the local masjine after attaching it. Do we use a user exit or BADI for this? I cannot seem to find one where the breakpoint is after this popup for attaching the file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards B.Garlipp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Aug 2010 06:12:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/generic-object-services-u2013-gos/m-p/7167022#M1516667</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-12T06:12:27Z</dc:date>
    </item>
    <item>
      <title>Re: Generic Object Services u2013 GOS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/generic-object-services-u2013-gos/m-p/7167023#M1516668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the GOS_SRV_REQUEST and GOS_SRV_SELECT Business Add-Ins (BadI) (These BAdIs are documented in the system, you can also find some documents online like [Customizing Object Services|http://help.sap.com/saphelp_nw04/helpdata/en/15/7b623c28695c63e10000000a11405a/frameset.htm])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Aug 2010 06:22:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/generic-object-services-u2013-gos/m-p/7167023#M1516668</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2010-08-12T06:22:03Z</dc:date>
    </item>
    <item>
      <title>Re: Generic Object Services u2013 GOS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/generic-object-services-u2013-gos/m-p/7167024#M1516669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Using  following  u got GOS tool bar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CREATE OBJECT lo_manager&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;EXPORTING&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;is_object    = la_obj&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;ip_no_commit = space&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;EXCEPTIONS&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;OTHERS = 1.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;EXAMPLE&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

REPORT  ZGOS.

DATA: lo_manager  TYPE REF TO cl_gos_manager,
      la_obj      TYPE borident.


START-OF-SELECTION.
  la_obj-objtype = 'TRDIR'.
  la_obj-objkey  = 'REPS'.


* GOS toolbar
  CREATE OBJECT lo_manager
    EXPORTING
      is_object    = la_obj
      ip_no_commit = space
    EXCEPTIONS
      OTHERS = 1.

* To generate output
  WRITE: 'GOS test for Customer'.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Aug 2010 08:33:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/generic-object-services-u2013-gos/m-p/7167024#M1516669</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-12T08:33:27Z</dc:date>
    </item>
  </channel>
</rss>

