<?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: table updation using alv in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-updation-using-alv/m-p/5952033#M1336334</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;/1BCDWB/DBJEST - use this program name&lt;/P&gt;&lt;P&gt;to see list of order&lt;/P&gt;&lt;P&gt;actually it is the selection screen program of JEST table&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;s.janagar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 13 Jul 2009 08:04:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-07-13T08:04:06Z</dc:date>
    <item>
      <title>table updation using alv</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-updation-using-alv/m-p/5952032#M1336333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Expert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While updating the jest table against the Order number, the data in the table is not getting affected. When i refresh the list t again shows the order number. Can anyone please provide me sample ALV program where it displays the list of Orders. &lt;/P&gt;&lt;P&gt;when one selects the order the order should get approved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i get sample program then i would be helpful.&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;Shakti.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jul 2009 07:56:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-updation-using-alv/m-p/5952032#M1336333</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-13T07:56:03Z</dc:date>
    </item>
    <item>
      <title>Re: table updation using alv</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-updation-using-alv/m-p/5952033#M1336334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;/1BCDWB/DBJEST - use this program name&lt;/P&gt;&lt;P&gt;to see list of order&lt;/P&gt;&lt;P&gt;actually it is the selection screen program of JEST table&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;s.janagar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jul 2009 08:04:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-updation-using-alv/m-p/5952033#M1336334</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-13T08:04:06Z</dc:date>
    </item>
    <item>
      <title>Re: table updation using alv</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-updation-using-alv/m-p/5952034#M1336335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Sapbond007,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to create an ALV event handler class to write back the data that has been changed in your ALV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please refer to example programs BCALV_EDIT_* (I think BCALV_EDIT_04 should be the correct one)...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or you should refer This code &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Lock the table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;CALL FUNCTION 'ENQUEUE_E_TABLE'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;mode_rstable = 'E'&lt;/P&gt;&lt;P&gt;tabname = p_table&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;foreign_lock = 1&lt;/P&gt;&lt;P&gt;system_failure = 2&lt;/P&gt;&lt;P&gt;OTHERS = 3.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Modify the database table with these changes&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;MODIFY (p_table) FROM TABLE &amp;lt;dyn_tab_temp&amp;gt;.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;REFRESH &amp;lt;dyn_tab_temp&amp;gt;.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Unlock the table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;CALL FUNCTION 'DEQUEUE_E_TABLE'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;mode_rstable = 'E'&lt;/P&gt;&lt;P&gt;tabname = p_table.&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;&lt;/P&gt;&lt;P&gt;Saurabh Goel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jul 2009 08:25:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-updation-using-alv/m-p/5952034#M1336335</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-13T08:25:23Z</dc:date>
    </item>
    <item>
      <title>Re: table updation using alv</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-updation-using-alv/m-p/5952035#M1336336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  After updating the Order number once again you have to call the ALV list then only the internal table contents will update i the ALV list Display.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jul 2009 08:31:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-updation-using-alv/m-p/5952035#M1336336</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-13T08:31:43Z</dc:date>
    </item>
    <item>
      <title>Re: table updation using alv</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-updation-using-alv/m-p/5952036#M1336337</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 think the problem is not somewhere in ALV but that appropriate status is not being set.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could probably use FM such as STATUS_UPDATE to update the status.. and then see the results.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Revert if you need more.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jul 2009 08:50:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-updation-using-alv/m-p/5952036#M1336337</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-13T08:50:17Z</dc:date>
    </item>
    <item>
      <title>Re: table updation using alv</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-updation-using-alv/m-p/5952037#M1336338</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u can use this example&lt;/P&gt;&lt;P&gt;&lt;A href="https://wiki.sdn.sap.com/wiki/display/Snippets/ALV-Editing" target="test_blank"&gt;https://wiki.sdn.sap.com/wiki/display/Snippets/ALV-Editing&lt;/A&gt;&lt;EM&gt;and&lt;/EM&gt;saving&lt;EM&gt;the&lt;/EM&gt;edited&lt;EM&gt;values&lt;/EM&gt;in+Database%28OOPS%29&lt;/P&gt;&lt;P&gt;for saving the table using ALV&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;s.janagar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jul 2009 08:52:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-updation-using-alv/m-p/5952037#M1336338</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-13T08:52:12Z</dc:date>
    </item>
    <item>
      <title>Re: table updation using alv</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-updation-using-alv/m-p/5952038#M1336339</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Expert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While calling the function STATUS_CHANGE_EXTERN the objnr field is passed as blank, due to which the data is&lt;/P&gt;&lt;P&gt;not getting updated.&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;Shakti.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jul 2009 09:45:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-updation-using-alv/m-p/5952038#M1336339</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-13T09:45:17Z</dc:date>
    </item>
  </channel>
</rss>

