<?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: EVENT problem in Table maintenance generator in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/event-problem-in-table-maintenance-generator/m-p/6288370#M1389476</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Nisha &amp;amp; Danilo&lt;/P&gt;&lt;P&gt;                                  Thanks a lot. I have not used EXTRACT in coding. I will try it ..BUT in the documentation of events from SAP i read that Both TOTAL and EXTRACT tables should be modified . So i had started coding with TOTAL and got stuck..&lt;/P&gt;&lt;P&gt;anyways i will check and revert back&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks once again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Nilesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Nov 2009 18:06:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-11-06T18:06:57Z</dc:date>
    <item>
      <title>EVENT problem in Table maintenance generator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/event-problem-in-table-maintenance-generator/m-p/6288365#M1389471</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all&lt;/P&gt;&lt;P&gt;             I m working on 4.6C sytem. I m facing  2 problems in events in table maintenance generator&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(1) I am using 04 event (After deleting records from table)   I have written BREAK-POINT in the Form .....ENDFORM... But the control doesnt stop there , when i select  an existing record and press delete record button? not able to understand  this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(2) When i implement even t 03( Before deleting records from table) , and select  an existing record and press delete record button . Control &lt;STRONG&gt;successfully Go&lt;/STRONG&gt;  to corresponding FORM ...   BREAK-POINT ENDFORM .  &lt;/P&gt;&lt;P&gt;But now the problem is.. in debuggin i can see the contents in TOTAL table  but when i try to code LOOP at TOTAL ..ENDLOOP...it gives me syntax error saying "  table TOTAL doesnot exists or not defined..but similar field TOTAL_S , TOTAL_M , TOTAL_L  exists.. ??? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  how come i can see the same during debugging but cannot code it ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plese help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nilesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Nov 2009 16:23:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/event-problem-in-table-maintenance-generator/m-p/6288365#M1389471</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-05T16:23:59Z</dc:date>
    </item>
    <item>
      <title>Re: EVENT problem in Table maintenance generator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/event-problem-in-table-maintenance-generator/m-p/6288366#M1389472</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nilesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(1)  I think the control will stop there after you delete AND save. Not sure about that but give it a try.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(2) I believe you are trying to access fields inside table TOTAL, is that right? &lt;/P&gt;&lt;P&gt;Actually you have to declare a work area with your Z table type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: w_workarea type ztable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
LOOP at total.
  w_workarea = total.

endoop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you can work with w_workarea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Nov 2009 16:49:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/event-problem-in-table-maintenance-generator/m-p/6288366#M1389472</guid>
      <dc:creator>danilo_henriques</dc:creator>
      <dc:date>2009-11-05T16:49:56Z</dc:date>
    </item>
    <item>
      <title>Re: EVENT problem in Table maintenance generator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/event-problem-in-table-maintenance-generator/m-p/6288367#M1389473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello danilo,  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     I had tried it , but after pressing SAVE also it DID NOT stop there. and it just deleted the entries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also&lt;/P&gt;&lt;P&gt;      i DID NOT declare work area for my table BUT before that  IF i simply  write LOOP AT TOTAL ...ENDLOOP  still it gives me the same syntax error..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nilesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Nov 2009 17:11:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/event-problem-in-table-maintenance-generator/m-p/6288367#M1389473</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-05T17:11:37Z</dc:date>
    </item>
    <item>
      <title>Re: EVENT problem in Table maintenance generator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/event-problem-in-table-maintenance-generator/m-p/6288368#M1389474</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you tried using table EXTRACT ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/91/ca9f14a9d111d1a5690000e82deaaa/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/91/ca9f14a9d111d1a5690000e82deaaa/content.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Nov 2009 17:22:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/event-problem-in-table-maintenance-generator/m-p/6288368#M1389474</guid>
      <dc:creator>danilo_henriques</dc:creator>
      <dc:date>2009-11-05T17:22:28Z</dc:date>
    </item>
    <item>
      <title>Re: EVENT problem in Table maintenance generator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/event-problem-in-table-maintenance-generator/m-p/6288369#M1389475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nilesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the link given by Danilo.&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/91/ca9f14a9d111d1a5690000e82deaaa/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/91/ca9f14a9d111d1a5690000e82deaaa/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Only those structures will be available for coding, which is given under 'Realization' heading in that link.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TOTAL itab will not be available in 03 &amp;amp; 04 events. You can use EXTRACT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Nisha Vengal.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Nov 2009 05:33:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/event-problem-in-table-maintenance-generator/m-p/6288369#M1389475</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-06T05:33:59Z</dc:date>
    </item>
    <item>
      <title>Re: EVENT problem in Table maintenance generator</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/event-problem-in-table-maintenance-generator/m-p/6288370#M1389476</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Nisha &amp;amp; Danilo&lt;/P&gt;&lt;P&gt;                                  Thanks a lot. I have not used EXTRACT in coding. I will try it ..BUT in the documentation of events from SAP i read that Both TOTAL and EXTRACT tables should be modified . So i had started coding with TOTAL and got stuck..&lt;/P&gt;&lt;P&gt;anyways i will check and revert back&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks once again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Nilesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Nov 2009 18:06:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/event-problem-in-table-maintenance-generator/m-p/6288370#M1389476</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-06T18:06:57Z</dc:date>
    </item>
  </channel>
</rss>

