<?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: Enabling Services for objects in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/enabling-services-for-objects/m-p/1730465#M318078</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peluka ,&lt;/P&gt;&lt;P&gt;  Can you please explain me what the above code does.Moreover, the relationship which you have given is 'ATTA', from some of the SDN queries i understand that it has to be URL for url related stuff.It would be great if you can tell me the relevance of the given code for my scenario.&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 18 Dec 2006 13:17:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-18T13:17:24Z</dc:date>
    <item>
      <title>Enabling Services for objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enabling-services-for-objects/m-p/1730463#M318076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;We have a requirement which involves mass change of URLs of notification.It  was planned to implement the same using customized program.The issue is that while using BDC for the transaction IW23, the "services for object" option in the menu "System" is disabled(while running SHDB).Please suggest a way to do this.Is there any FM which can be used for the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Dec 2006 12:36:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enabling-services-for-objects/m-p/1730463#M318076</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-18T12:36:09Z</dc:date>
    </item>
    <item>
      <title>Re: Enabling Services for objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enabling-services-for-objects/m-p/1730464#M318077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use class CL_GOS_MANAGER.&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT zgos_prueba2 .

CONSTANTS: cc_objtype LIKE borident-objtype VALUE 'BUS2038'.
DATA: manager TYPE REF TO cl_gos_manager,
      obj TYPE borident.


PARAMETERS:
 p_bokey  LIKE borident-objkey DEFAULT '000010287751'.



START-OF-SELECTION.
  obj-objtype = cc_objtype.
  obj-objkey = p_bokey.
  CREATE OBJECT manager
  EXPORTING is_object = obj
            ip_no_commit = 'R'
  EXCEPTIONS others = 1.


  CALL METHOD manager-&amp;gt;start_service_direct
   EXPORTING ip_service = 'VIEW_ATTA'
             is_object = obj
   EXCEPTIONS
    no_object = 1
    object_invalid = 2
    execution_failed = 3
    OTHERS = 4.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Dec 2006 12:58:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enabling-services-for-objects/m-p/1730464#M318077</guid>
      <dc:creator>LucianoBentiveg</dc:creator>
      <dc:date>2006-12-18T12:58:50Z</dc:date>
    </item>
    <item>
      <title>Re: Enabling Services for objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enabling-services-for-objects/m-p/1730465#M318078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peluka ,&lt;/P&gt;&lt;P&gt;  Can you please explain me what the above code does.Moreover, the relationship which you have given is 'ATTA', from some of the SDN queries i understand that it has to be URL for url related stuff.It would be great if you can tell me the relevance of the given code for my scenario.&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Dec 2006 13:17:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enabling-services-for-objects/m-p/1730465#M318078</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-18T13:17:24Z</dc:date>
    </item>
    <item>
      <title>Re: Enabling Services for objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enabling-services-for-objects/m-p/1730466#M318079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Replace VIEW_ATTA by URL_CREA and try it.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Dec 2006 14:05:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enabling-services-for-objects/m-p/1730466#M318079</guid>
      <dc:creator>LucianoBentiveg</dc:creator>
      <dc:date>2006-12-18T14:05:44Z</dc:date>
    </item>
  </channel>
</rss>

