<?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: Services for object in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/services-for-object/m-p/1609484#M273397</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Len, it is the object that you are attaching to, the business object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Oct 2006 16:24:35 GMT</pubDate>
    <dc:creator>RichHeilman</dc:creator>
    <dc:date>2006-10-19T16:24:35Z</dc:date>
    <item>
      <title>Services for object</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/services-for-object/m-p/1609480#M273393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Certain transactions allow you to "attach" objects to documents. For those that do (ex. VBO2) there is a "services for object" button on the top left of the screen.&lt;/P&gt;&lt;P&gt;Is there any way to use this functionality in batch? The BDC recording disables this button. Is there a BAPI/FM out there that covers the "services for object" functionality?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Srinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Oct 2006 15:23:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/services-for-object/m-p/1609480#M273393</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-13T15:23:50Z</dc:date>
    </item>
    <item>
      <title>Re: Services for object</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/services-for-object/m-p/1609481#M273394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, this is the GOS(Generic Object Services),  you may be able to use the class CL_GOS_MANAGER.&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;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Oct 2006 15:33:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/services-for-object/m-p/1609481#M273394</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-10-13T15:33:48Z</dc:date>
    </item>
    <item>
      <title>Re: Services for object</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/services-for-object/m-p/1609482#M273395</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can have a look at this example.Maybe this will help you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : gs_borident  TYPE borident,&lt;/P&gt;&lt;P&gt;       lv_service   TYPE sgs_srvnam,&lt;/P&gt;&lt;P&gt;       lp_no_commit TYPE sgs_cmode,&lt;/P&gt;&lt;P&gt;       gl_service_selection TYPE tgos_sels,&lt;/P&gt;&lt;P&gt;       lv_rwmode    TYPE sgs_rwmod,&lt;/P&gt;&lt;P&gt;       lv_pop       TYPE sgs_cmode,&lt;/P&gt;&lt;P&gt;       lv_status    TYPE sgs_status,&lt;/P&gt;&lt;P&gt;       lv_icon      TYPE sgs_icon,&lt;/P&gt;&lt;P&gt;       lv_event     TYPE i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gs_borident-objkey  = '0000004057620001'.&lt;/P&gt;&lt;P&gt;gs_borident-objtype = 'QMSM'.&lt;/P&gt;&lt;P&gt;lv_rwmode = 'E'.&lt;/P&gt;&lt;P&gt;lv_service = 'PCATTA_CREA'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'GOS_EXECUTE_SERVICE'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    ip_service           = lv_service&lt;/P&gt;&lt;P&gt;    is_object            = gs_borident&lt;/P&gt;&lt;P&gt;    ip_no_commit         = lp_no_commit&lt;/P&gt;&lt;P&gt;    ip_popup             = lv_pop&lt;/P&gt;&lt;P&gt;    ip_rwmod             = lv_rwmode&lt;/P&gt;&lt;P&gt;    it_service_selection = gl_service_selection&lt;/P&gt;&lt;P&gt;  IMPORTING&lt;/P&gt;&lt;P&gt;    ep_event             = lv_event&lt;/P&gt;&lt;P&gt;    ep_status            = lv_status&lt;/P&gt;&lt;P&gt;    ep_icon              = lv_icon&lt;/P&gt;&lt;P&gt;  EXCEPTIONS&lt;/P&gt;&lt;P&gt;    execution_failed     = 1&lt;/P&gt;&lt;P&gt;    OTHERS               = 2.&lt;/P&gt;&lt;P&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    .&lt;/P&gt;&lt;P&gt;data: lv_class type ref to ZCL_FI_IMG_WF_OVERVIEW.&lt;/P&gt;&lt;P&gt;CREATE OBJECT lv_class.&lt;/P&gt;&lt;P&gt;CALL METHOD lv_class-&amp;gt;update_service&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    ip_status = lv_status&lt;/P&gt;&lt;P&gt;    ip_icon   = lv_icon&lt;/P&gt;&lt;P&gt;    ip_event  = lv_event.&lt;/P&gt;&lt;P&gt;    .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Oct 2006 04:58:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/services-for-object/m-p/1609482#M273395</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-19T04:58:05Z</dc:date>
    </item>
    <item>
      <title>Re: Services for object</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/services-for-object/m-p/1609483#M273396</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;Does the gs_borident-objtype field contain the object I'm trying to attach (in this case a url link) or the object I'm attaching to (in this case a rebate agreement)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Oct 2006 16:22:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/services-for-object/m-p/1609483#M273396</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-19T16:22:47Z</dc:date>
    </item>
    <item>
      <title>Re: Services for object</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/services-for-object/m-p/1609484#M273397</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Len, it is the object that you are attaching to, the business object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Oct 2006 16:24:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/services-for-object/m-p/1609484#M273397</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-10-19T16:24:35Z</dc:date>
    </item>
    <item>
      <title>Re: Services for object</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/services-for-object/m-p/1609485#M273398</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Whoa that was fast Rich thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, in my scenario where I'm attaching a URL to a rebate agreement I think I need the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gs_borident-objkey  = the rebate number?&lt;/P&gt;&lt;P&gt;gs_borident-objtype = 'BUS3031'.&lt;/P&gt;&lt;P&gt;lv_rwmode = 'E'.&lt;/P&gt;&lt;P&gt;lv_service = 'URL_CREA'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But where do I pass the actual URL value?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Oct 2006 16:40:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/services-for-object/m-p/1609485#M273398</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-19T16:40:52Z</dc:date>
    </item>
    <item>
      <title>Re: Services for object</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/services-for-object/m-p/1609486#M273399</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check this weblog for code sample.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;a href="/people/rammanohar.tiwari/blog/2006/03/25/generic-object-services-gos--in-background--part-ii"&amp;gt;Generic object services (GOS) - in Background - Part II&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 Oct 2006 09:26:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/services-for-object/m-p/1609486#M273399</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2006-10-29T09:26:07Z</dc:date>
    </item>
  </channel>
</rss>

