<?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: records not modifying in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/records-not-modifying/m-p/1664754#M294359</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorry folks, the logic is wrong.. I realized. Let me tell you what I am trying to do..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have one record in table 'it_pb4000' and I have to change the enddate to '9999/12/31' hecne i cleared the field 'endda'.&lt;/P&gt;&lt;P&gt;My question is how can i insert this date into the internal table first?&lt;/P&gt;&lt;P&gt;After inserting the data I need to update the same record with this new date into the database table from this internal table?&lt;/P&gt;&lt;P&gt;Sorry for the confusion.&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;P&gt;vinu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 08 Nov 2006 21:56:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-08T21:56:13Z</dc:date>
    <item>
      <title>records not modifying</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/records-not-modifying/m-p/1664750#M294355</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to modify the records in the internal table. It is not happening.&lt;/P&gt;&lt;P&gt;data: it_pb4000 type standard table of pb4000 with header line.&lt;/P&gt;&lt;P&gt; select  * from pb4000 up to 1 rows into table it_pb4000&lt;/P&gt;&lt;P&gt;        where pernr = g_app ORDER BY begda DESCENDING.&lt;/P&gt;&lt;P&gt;                  if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;                   read table it_pb4000 index 1.&lt;/P&gt;&lt;P&gt;******the value is cleared...&lt;/P&gt;&lt;P&gt;                   clear it_pb4000-endda.&lt;/P&gt;&lt;P&gt;*****&lt;STRONG&gt;NOT HAPPENING&lt;/STRONG&gt;****&lt;/P&gt;&lt;P&gt;      modify it_pb4000 transporting endda where&lt;/P&gt;&lt;P&gt;                   endda = '99991231'.&lt;/P&gt;&lt;P&gt;            modify pb4000 from it_pb4000.&lt;/P&gt;&lt;P&gt;can anyone tell me where I am doing wrong?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vinu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Nov 2006 21:40:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/records-not-modifying/m-p/1664750#M294355</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-08T21:40:27Z</dc:date>
    </item>
    <item>
      <title>Re: records not modifying</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/records-not-modifying/m-p/1664751#M294356</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;Check if there is any record available in IT_PB4000 for ENDDA = '99991231'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Nov 2006 21:45:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/records-not-modifying/m-p/1664751#M294356</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-08T21:45:54Z</dc:date>
    </item>
    <item>
      <title>Re: records not modifying</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/records-not-modifying/m-p/1664752#M294357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Vinu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From the code it seems like you have only 1 record in the internal table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hence you can change the code a little, as shown below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;modify it_pb4000 index 1.&lt;/P&gt;&lt;P&gt;modify pb4000 rom it_pb4000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if this is not working, you can use internal table (without header line ) and work area, which would be more advicable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;Sajan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Nov 2006 21:49:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/records-not-modifying/m-p/1664752#M294357</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-08T21:49:11Z</dc:date>
    </item>
    <item>
      <title>Re: records not modifying</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/records-not-modifying/m-p/1664753#M294358</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The code you wrote should work (at least as far as modifying the internal table). Are you asking about that or the database table update?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Nov 2006 21:54:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/records-not-modifying/m-p/1664753#M294358</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-08T21:54:54Z</dc:date>
    </item>
    <item>
      <title>Re: records not modifying</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/records-not-modifying/m-p/1664754#M294359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorry folks, the logic is wrong.. I realized. Let me tell you what I am trying to do..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have one record in table 'it_pb4000' and I have to change the enddate to '9999/12/31' hecne i cleared the field 'endda'.&lt;/P&gt;&lt;P&gt;My question is how can i insert this date into the internal table first?&lt;/P&gt;&lt;P&gt;After inserting the data I need to update the same record with this new date into the database table from this internal table?&lt;/P&gt;&lt;P&gt;Sorry for the confusion.&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;P&gt;vinu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Nov 2006 21:56:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/records-not-modifying/m-p/1664754#M294359</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-08T21:56:13Z</dc:date>
    </item>
    <item>
      <title>Re: records not modifying</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/records-not-modifying/m-p/1664755#M294360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Instead of clearing the enddate, whay aren't you setting it to '99991231'?&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
it_pb4000-endda = '99991231'.
modify it_pb4000 transporting endda.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Rob Burbank&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Nov 2006 22:00:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/records-not-modifying/m-p/1664755#M294360</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-08T22:00:36Z</dc:date>
    </item>
    <item>
      <title>Re: records not modifying</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/records-not-modifying/m-p/1664756#M294361</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;&lt;/P&gt;&lt;P&gt;Changes are marked in bold..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from pb4000 up to 1 rows into table it_pb4000&lt;/P&gt;&lt;P&gt;where pernr = g_app ORDER BY begda DESCENDING.&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;read table it_pb4000 index 1.&lt;/P&gt;&lt;P&gt;******the value is cleared...&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;it_pb4000-endda = '99991231'.&lt;/P&gt;&lt;P&gt;modify it_pb4000 index 1.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;modify pb4000 from it_pb4000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Nov 2006 22:05:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/records-not-modifying/m-p/1664756#M294361</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-08T22:05:27Z</dc:date>
    </item>
    <item>
      <title>Re: records not modifying</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/records-not-modifying/m-p/1664757#M294362</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Vinu,&lt;/P&gt;&lt;P&gt;Since your requirement is to retrieve the last record (based on date) and set the date to 31.12.9999, you dont need to store the date to an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you just need on work area of type PB4000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data wa_p4000 type p4000.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;select * from pb4000 upto 1 rows into in wa_p4000 &amp;lt;where condition&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_p4000-endda = '99993112'.&lt;/P&gt;&lt;P&gt;modify pb4000 from wa_p4000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this resolves your issue.&lt;/P&gt;&lt;P&gt;Sajan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Nov 2006 22:08:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/records-not-modifying/m-p/1664757#M294362</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-08T22:08:25Z</dc:date>
    </item>
    <item>
      <title>Re: records not modifying</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/records-not-modifying/m-p/1664758#M294363</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It results in short dump.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vinu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Nov 2006 22:11:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/records-not-modifying/m-p/1664758#M294363</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-08T22:11:42Z</dc:date>
    </item>
    <item>
      <title>Re: records not modifying</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/records-not-modifying/m-p/1664759#M294364</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;it_pb4000-endda = '99991231'.
modify it_pb4000 index 1 transporting endda.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Nov 2006 22:16:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/records-not-modifying/m-p/1664759#M294364</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-08T22:16:28Z</dc:date>
    </item>
    <item>
      <title>Re: records not modifying</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/records-not-modifying/m-p/1664760#M294365</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;Please try the solution posted in my earlier post..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Nov 2006 22:18:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/records-not-modifying/m-p/1664760#M294365</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-08T22:18:50Z</dc:date>
    </item>
    <item>
      <title>Re: records not modifying</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/records-not-modifying/m-p/1664761#M294366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Data wa_p4000 type p4000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from pb4000 up to 1 rows into wa_p4000 where pernr = g_app ORDER BY begda DESCENDING.&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;wa_p4000-endda = '99991231'.&lt;/P&gt;&lt;P&gt;modify pb4000 from wa_p4000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this should work Vinu...or else, there is no data in wa_p4000...thats why it is dumping.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sajan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Nov 2006 22:21:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/records-not-modifying/m-p/1664761#M294366</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-08T22:21:14Z</dc:date>
    </item>
    <item>
      <title>Re: records not modifying</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/records-not-modifying/m-p/1664762#M294367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sajan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks that helped. But it is creating another record in the databse table, actually it hsould update the enddate of the existing record in the databse table.should I need to use Update and update the existing record??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vinu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Nov 2006 22:25:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/records-not-modifying/m-p/1664762#M294367</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-08T22:25:42Z</dc:date>
    </item>
    <item>
      <title>Re: records not modifying</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/records-not-modifying/m-p/1664763#M294368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A more elegant solution would be to use field symbols:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FIELD-SYMBOLS: &amp;lt;data&amp;gt; TYPE pb4000.
    ...
  READ TABLE it_pb4000 INDEX 1 ASSIGNING &amp;lt;data&amp;gt;.
  CLEAR &amp;lt;data&amp;gt;-endda.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Nov 2006 22:25:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/records-not-modifying/m-p/1664763#M294368</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-08T22:25:53Z</dc:date>
    </item>
    <item>
      <title>Re: records not modifying</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/records-not-modifying/m-p/1664764#M294369</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 trying something like this...&lt;/P&gt;&lt;P&gt;Actually I am trying to delimit the last record to '12/31/9999' in the table. Since the last record will have the enddate one day less than the begin date of the current record.&lt;/P&gt;&lt;P&gt;Hence I reading the current date into a variable and subtracting one day from it and tracking the record in the table using that date and changing the enddate to '12/31/9999' using 'UPDATE'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    update pb4000 from wa_p4000 where endda = g_endda.&lt;/P&gt;&lt;P&gt;But this command is not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for help.&lt;/P&gt;&lt;P&gt;Vinu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Nov 2006 22:44:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/records-not-modifying/m-p/1664764#M294369</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-08T22:44:51Z</dc:date>
    </item>
    <item>
      <title>Re: records not modifying</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/records-not-modifying/m-p/1664765#M294370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Vinu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the following logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data wa_p4000 type p4000.&lt;/P&gt;&lt;P&gt;data lv_endda type p4000-endda.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from pb4000 up to 1 rows into wa_p4000 where pernr = g_app ORDER BY begda DESCENDING.&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;lv_endda = wa_04000-endda.&lt;/P&gt;&lt;P&gt;wa_p4000-endda = '99991231'.&lt;/P&gt;&lt;P&gt;update pb4000 set endda =  wa_p4000-endda &lt;/P&gt;&lt;P&gt;where PERNR = wa_p4000-pernr and&lt;/P&gt;&lt;P&gt;SUBTY = wa_p4000-subty and&lt;/P&gt;&lt;P&gt;OBJPS = wa_p4000-objps and&lt;/P&gt;&lt;P&gt;SPRPS = wa_p4000-sprps and&lt;/P&gt;&lt;P&gt;ENDDA = lv_endda&lt;/P&gt;&lt;P&gt;BEGDA = wa_p4000-begda&lt;/P&gt;&lt;P&gt;SEQNR = wa_p4000-seqnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps.&lt;/P&gt;&lt;P&gt;Sajan.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yeah you can change the type to PB4000..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if helped....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Sajan Joseph&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Nov 2006 23:02:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/records-not-modifying/m-p/1664765#M294370</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-08T23:02:58Z</dc:date>
    </item>
    <item>
      <title>Re: records not modifying</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/records-not-modifying/m-p/1664766#M294371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;I think this should work,but the wa_p400 has been defined with structure p4000. But the table has MANDT field and henec all the records are pushed by three chars. let me try by declaring the table and see.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vinu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Nov 2006 23:41:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/records-not-modifying/m-p/1664766#M294371</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-08T23:41:51Z</dc:date>
    </item>
    <item>
      <title>Re: records not modifying</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/records-not-modifying/m-p/1664767#M294372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Sajan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used with the internal table instead of work area. it worked.Thanks a lot for your help. I shall award the points.&lt;/P&gt;&lt;P&gt;Vinu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Nov 2006 23:54:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/records-not-modifying/m-p/1664767#M294372</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-08T23:54:28Z</dc:date>
    </item>
  </channel>
</rss>

