<?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: urgent!!  abap objects in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-abap-objects/m-p/1505951#M233833</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for all your replies. This is not the error I was talking about. I forgot to put the period by mistake.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My error is near the start-of-selection line and the error says "statement cannot be accessed".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Madhuri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 27 Jul 2006 04:29:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-07-27T04:29:05Z</dc:date>
    <item>
      <title>urgent!!  abap objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-abap-objects/m-p/1505945#M233827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am having problems executing this program using events. I think it is a simple problem but am not able to solve it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  Z_KMADHUR_PROGRAM5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;class declarations.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class pilot definition.&lt;/P&gt;&lt;P&gt;public section.&lt;/P&gt;&lt;P&gt;methods: call_flight_attendant.&lt;/P&gt;&lt;P&gt;EVENTS: call_button_presses.&lt;/P&gt;&lt;P&gt;endclass.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class passenger definition.&lt;/P&gt;&lt;P&gt;public section.&lt;/P&gt;&lt;P&gt;methods: constructor importing value(i_seatnumber) type i,&lt;/P&gt;&lt;P&gt;         service_number importing value(i_servicenumber) type i,&lt;/P&gt;&lt;P&gt;         service_type importing value(i_servicetype) type i,&lt;/P&gt;&lt;P&gt;         call_for_help.&lt;/P&gt;&lt;P&gt;EVENTS: call_button_pressed exporting value(e_seatnumber) type i,&lt;/P&gt;&lt;P&gt;        call_service_number exporting value(e_servicenumber) type i,&lt;/P&gt;&lt;P&gt;        call_service_type exporting value(e_servicetype) type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROTECTED SECTION.&lt;/P&gt;&lt;P&gt;data seatnumber type i.&lt;/P&gt;&lt;P&gt;data servicenumber type i.&lt;/P&gt;&lt;P&gt;data servicetype type i.&lt;/P&gt;&lt;P&gt;endclass.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class flight_attendant DEFINITION.&lt;/P&gt;&lt;P&gt;PUBLIC SECTION.&lt;/P&gt;&lt;P&gt;METHODS: constructor&lt;/P&gt;&lt;P&gt;         importing i_id type string,&lt;/P&gt;&lt;P&gt;         help_the_pilot for EVENT&lt;/P&gt;&lt;P&gt;         call_button_presses OF pilot,&lt;/P&gt;&lt;P&gt;         help_a_passenger FOR EVENT&lt;/P&gt;&lt;P&gt;         call_button_pressed OF passenger&lt;/P&gt;&lt;P&gt;         IMPORTING e_seatnumber,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         give_service_number for event&lt;/P&gt;&lt;P&gt;         call_service_number of passenger&lt;/P&gt;&lt;P&gt;         IMPORTING e_servicenumber,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         give_service_type for event&lt;/P&gt;&lt;P&gt;         call_service_type of passenger&lt;/P&gt;&lt;P&gt;         IMPORTING e_servicetype.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         PROTECTED SECTION.&lt;/P&gt;&lt;P&gt;DATA id TYPE string.&lt;/P&gt;&lt;P&gt;ENDCLASS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;class Implementations&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class pilot implementation.&lt;/P&gt;&lt;P&gt;method call_flight_attendant.&lt;/P&gt;&lt;P&gt;RAISE EVENT call_button_presses.&lt;/P&gt;&lt;P&gt;ENDMETHOD.&lt;/P&gt;&lt;P&gt;ENDCLASS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         class passenger implementation.&lt;/P&gt;&lt;P&gt;         method: constructor.&lt;/P&gt;&lt;P&gt;         seatnumber = i_seatnumber.&lt;/P&gt;&lt;P&gt;         servicenumber = servicenumber.&lt;/P&gt;&lt;P&gt;         servicetype = servicetype.&lt;/P&gt;&lt;P&gt;         endmethod.&lt;/P&gt;&lt;P&gt;         method: call_for_help.&lt;/P&gt;&lt;P&gt;         RAISE EVENT call_button_pressed&lt;/P&gt;&lt;P&gt;EXPORTING e_seatnumber = seatnumber.&lt;/P&gt;&lt;P&gt;RAISE EVENT call_service_number&lt;/P&gt;&lt;P&gt;exporting e_servicenumber = servicenumber.&lt;/P&gt;&lt;P&gt;RAISE EVENT call_service_type&lt;/P&gt;&lt;P&gt;exporting e_servicetype = servicetype.&lt;/P&gt;&lt;P&gt;      endmethod.&lt;/P&gt;&lt;P&gt;      endclass.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class flight_attendant implementation.&lt;/P&gt;&lt;P&gt;method: constructor.&lt;/P&gt;&lt;P&gt;id = i_id.&lt;/P&gt;&lt;P&gt;endmethod.&lt;/P&gt;&lt;P&gt;method: help_the_pilot.&lt;/P&gt;&lt;P&gt;write: / id, 'helps pilot'.&lt;/P&gt;&lt;P&gt;endmethod.&lt;/P&gt;&lt;P&gt;method: help_a_passenger.&lt;/P&gt;&lt;P&gt;write: / id, 'helps passenger on seat',e_seatnumber.&lt;/P&gt;&lt;P&gt;endmethod.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;method: give_service_number.&lt;/P&gt;&lt;P&gt;write: 'to have', e_servicenumber.&lt;/P&gt;&lt;P&gt;endmethod.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;method: give_service_type.&lt;/P&gt;&lt;P&gt;write: e_servicetype.&lt;/P&gt;&lt;P&gt;endmethod.&lt;/P&gt;&lt;P&gt;endclass.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;global data&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: o_pilot type ref to pilot,&lt;/P&gt;&lt;P&gt;      o_passenger_1 type ref to passenger,&lt;/P&gt;&lt;P&gt;      o_passenger_2 type ref to passenger,&lt;/P&gt;&lt;P&gt;      o_passenger_3 type ref to passenger,&lt;/P&gt;&lt;P&gt;      o_passenger_4 type ref to passenger,&lt;/P&gt;&lt;P&gt;      o_passenger_5 type ref to passenger.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: o_purser type ref to flight_attendant,&lt;/P&gt;&lt;P&gt;      o_stewardess type REF to flight_attendant,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;classical processing blocks&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      start-of-selection.&lt;/P&gt;&lt;P&gt;      create object o_pilot.&lt;/P&gt;&lt;P&gt;      create object o_passenger_1 exporting i_seatnumber = 11.&lt;/P&gt;&lt;P&gt;      create object o_passenger_2 exporting i_seatnumber = 17.&lt;/P&gt;&lt;P&gt;      create object o_passenger_3 exporting i_seatnumber = 21.&lt;/P&gt;&lt;P&gt;      create object o_passenger_4 exporting i_seatnumber = 25.&lt;/P&gt;&lt;P&gt;      create object o_passenger_5 exporting i_seatnumber = 31.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create object: o_purser&lt;/P&gt;&lt;P&gt;               exporting i_id = 'purser',&lt;/P&gt;&lt;P&gt;               o_stewardess&lt;/P&gt;&lt;P&gt;               exporting i_id = 'stewardess',&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set handler: o_purser-&amp;gt;help_the_pilot for o_pilot,&lt;/P&gt;&lt;P&gt;             o_stewardess-&amp;gt;help_a_passenger for all instances,&lt;/P&gt;&lt;P&gt;             o_stewardess-&amp;gt;give_service_number for all instances,&lt;/P&gt;&lt;P&gt;             o_stewardess-&amp;gt;give_service_type for all instances.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call method: o_pilot-&amp;gt;call_flight_attendant,&lt;/P&gt;&lt;P&gt;o_passenger_1-&amp;gt;call_for_help,&lt;/P&gt;&lt;P&gt;o_passenger_1-&amp;gt;call_service_number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am getting an error near the start-of-selection. It says "statement is not acceptable".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i remove the start-of-selection, it says "unable to interpret object. Incorrect spelling or coma error".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;My output should look like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;purser helps pilot&lt;/P&gt;&lt;P&gt;stewardess helps passenger on seat 11 to have 2 foodservice.&lt;/P&gt;&lt;P&gt;stewardess helps passenger on seat 11 to have 2 drinkservice.&lt;/P&gt;&lt;P&gt;stewardess helps passenger on seat 17 &lt;/P&gt;&lt;P&gt;stewardess helps passenger on seat 17 to have 1 foodservice.&lt;/P&gt;&lt;P&gt;stewardess helps passenger on seat 17 to have 1 drinkservice.&lt;/P&gt;&lt;P&gt;stewardess helps passenger on seat 21 &lt;/P&gt;&lt;P&gt;stewardess helps passenger on seat 21 to have 3 foodservice.&lt;/P&gt;&lt;P&gt;stewardess helps passenger on seat 21 to have 3 drinkservice.&lt;/P&gt;&lt;P&gt;stewardess helps passenger on seat 25 &lt;/P&gt;&lt;P&gt;stewardess helps passenger on seat 25 to have 1 foodservice.&lt;/P&gt;&lt;P&gt;stewardess helps passenger on seat 25 to have 1 drinkservice.&lt;/P&gt;&lt;P&gt;stewardess helps passenger on seat 31 &lt;/P&gt;&lt;P&gt;stewardess helps passenger on seat 31 to have 2 foodservice.&lt;/P&gt;&lt;P&gt;stewardess helps passenger on seat 31 to have 2 drinkservice.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Thanks in advance..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;Madhuri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Jul 2006 22:25:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-abap-objects/m-p/1505945#M233827</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-26T22:25:06Z</dc:date>
    </item>
    <item>
      <title>Re: urgent!!  abap objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-abap-objects/m-p/1505946#M233828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Simple mistake...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;DATA: o_purser type ref to flight_attendant,&lt;/P&gt;&lt;P&gt;o_stewardess type REF to flight_attendant,&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you are placing , instead of period.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the below code...&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;DATA: o_purser type ref to flight_attendant,&lt;/P&gt;&lt;P&gt;o_stewardess type REF to flight_attendant.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Jul 2006 22:38:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-abap-objects/m-p/1505946#M233828</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-26T22:38:43Z</dc:date>
    </item>
    <item>
      <title>Re: urgent!!  abap objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-abap-objects/m-p/1505947#M233829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No need to remove the start-of-selection event. You just forgot to place a period here:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: o_purser type ref to flight_attendant,&lt;/P&gt;&lt;P&gt;o_stewardess type REF to flight_attendant,  &amp;lt;----&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That is why the erros says comma error. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S. Please award points for useful answers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Jul 2006 01:37:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-abap-objects/m-p/1505947#M233829</guid>
      <dc:creator>aris_hidalgo</dc:creator>
      <dc:date>2006-07-27T01:37:22Z</dc:date>
    </item>
    <item>
      <title>Re: urgent!!  abap objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-abap-objects/m-p/1505948#M233830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The error is in this statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: o_purser type ref to flight_attendant,&lt;/P&gt;&lt;P&gt;o_stewardess type REF to flight_attendant,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It can be corrected as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: o_purser type ref to flight_attendant,&lt;/P&gt;&lt;P&gt;o_stewardess type REF to flight_attendant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vijay.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Jul 2006 03:44:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-abap-objects/m-p/1505948#M233830</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-27T03:44:11Z</dc:date>
    </item>
    <item>
      <title>Re: urgent!!  abap objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-abap-objects/m-p/1505949#M233831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;u jus need to put a period thts it!!!&lt;/P&gt;&lt;P&gt;well dint u activated ur prog or dint check syntactically?? it shows this minor mistakes there itself anyways here is the code-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: o_purser type ref to flight_attendant,&lt;/P&gt;&lt;P&gt;o_stewardess type REF to flight_attendant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Seema.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Jul 2006 03:59:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-abap-objects/m-p/1505949#M233831</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-27T03:59:25Z</dc:date>
    </item>
    <item>
      <title>Re: urgent!!  abap objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-abap-objects/m-p/1505950#M233832</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;&lt;/P&gt;&lt;P&gt;This is not where my error is. I have corrected this one already. &lt;/P&gt;&lt;P&gt;The error I posted  is near the start-of-selection line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me with that error. it says statement is not accessible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Madhuri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Jul 2006 04:20:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-abap-objects/m-p/1505950#M233832</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-27T04:20:03Z</dc:date>
    </item>
    <item>
      <title>Re: urgent!!  abap objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-abap-objects/m-p/1505951#M233833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for all your replies. This is not the error I was talking about. I forgot to put the period by mistake.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My error is near the start-of-selection line and the error says "statement cannot be accessed".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Madhuri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Jul 2006 04:29:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-abap-objects/m-p/1505951#M233833</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-27T04:29:05Z</dc:date>
    </item>
    <item>
      <title>Re: urgent!!  abap objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-abap-objects/m-p/1505952#M233834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Madhuri,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Usually such errors happen when you fail to put start-of-selection statement to demarcate the variable declaration and the object creation while dealing with local classes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It can also happen when you fail to close the class definition or implementation using endclass statement or you fail to put a period (.) after the endclass statement..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just check in your program for similar cases.Of if you don't mind, can you just post the final, modified source-code so that we can analyse it for errors..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Jul 2006 05:28:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-abap-objects/m-p/1505952#M233834</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-27T05:28:52Z</dc:date>
    </item>
    <item>
      <title>Re: urgent!!  abap objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-abap-objects/m-p/1505953#M233835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there any difference between my, Azaz, Viray and Vijay's answer???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Jul 2006 06:29:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-abap-objects/m-p/1505953#M233835</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-27T06:29:09Z</dc:date>
    </item>
    <item>
      <title>Re: urgent!!  abap objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-abap-objects/m-p/1505954#M233836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi madhun,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;whereever you copied the program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;exporting i_id = 'stewardess'. "&amp;lt;== no comma here&lt;/P&gt;&lt;P&gt;Implementation missing for method "SERVICE_NUMBER" . &lt;/P&gt;&lt;P&gt;Implementation missing for method "SERVICE_TYPE" . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That's where I gave up.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Mar 2007 13:05:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-abap-objects/m-p/1505954#M233836</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2007-03-11T13:05:16Z</dc:date>
    </item>
  </channel>
</rss>

