<?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: LIST in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/list/m-p/2403212#M535531</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;Read the Partciular line using the READ Statement and pass that value to the Z table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if it is helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sangeetha.A&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 Jun 2007 11:49:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-06T11:49:24Z</dc:date>
    <item>
      <title>LIST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/list/m-p/2403209#M535528</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HAI,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    AFTER MODIFYING VALUES IN THE BASIC OR INTERACTIVE LIST HOE CAN I UPDATE THAT VALUE IN DATABASE TABLE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THANK YOU &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASHOK KUMAR&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 11:45:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/list/m-p/2403209#M535528</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T11:45:43Z</dc:date>
    </item>
    <item>
      <title>Re: LIST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/list/m-p/2403210#M535529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ashok,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use update keyword to update database table.&lt;/P&gt;&lt;P&gt;ex: UPDATE &amp;lt;data base table&amp;gt; FROM TABLE &amp;lt;itab&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then write commitwork.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points if helpful.&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;seshu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 11:49:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/list/m-p/2403210#M535529</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T11:49:16Z</dc:date>
    </item>
    <item>
      <title>Re: LIST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/list/m-p/2403211#M535530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Declare an Internal table similar to the Database table which you wants to update&lt;/P&gt;&lt;P&gt;Move all the values/data from your interactive list to this Internal table .&lt;/P&gt;&lt;P&gt;then using this Internal tables update the database table using the command INSERT or Update.&lt;/P&gt;&lt;P&gt;see the doc&lt;/P&gt;&lt;P&gt;INSERT&lt;/P&gt;&lt;P&gt;... { {VALUES wa} &lt;/P&gt;&lt;P&gt;    | {FROM wa|{TABLE itab [ACCEPTING DUPLICATE KEYS]}} }. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. ... {VALUES wa} | {FROM wa} ... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. ... FROM TABLE itab [ACCEPTING DUPLICATE KEYS] ... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After FROM and VALUES, you can specify a non-table-type data object wa. After FROM, you can also specify an internal table itab. The contents of the row(s) to be inserted are taken from these data objects&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UPDATE&lt;/P&gt;&lt;P&gt;... { {SET set_expression [WHERE sql_cond]} &lt;/P&gt;&lt;P&gt;    | {FROM wa|{TABLE itab}} }. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. ... SET set_expression [WHERE sql_cond] &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. ... FROM wa &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. ... FROM TABLE itab &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The specifications in source define which rows and columns are changed. Either individual columns are changed using the addition SET or entire rows are overwritten using the addition FROM. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After FROM, either a non-table-type data object wa or an internal table itab can be specified. The content of these objects determines - on the one hand - which row(s) is/are changed, and - on the other hand - which values are used to overwrite the row(s). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points for useful Answers&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 11:49:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/list/m-p/2403211#M535530</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T11:49:22Z</dc:date>
    </item>
    <item>
      <title>Re: LIST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/list/m-p/2403212#M535531</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;Read the Partciular line using the READ Statement and pass that value to the Z table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if it is helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sangeetha.A&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 11:49:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/list/m-p/2403212#M535531</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T11:49:24Z</dc:date>
    </item>
    <item>
      <title>Re: LIST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/list/m-p/2403213#M535532</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;update statement is used for updating database tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UPDATE &amp;lt;data base table&amp;gt; FROM TABLE &amp;lt;itab&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex: UPDATE mara from table it_mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if helpful reward some points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards,&lt;/P&gt;&lt;P&gt;suresh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 12:04:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/list/m-p/2403213#M535532</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T12:04:47Z</dc:date>
    </item>
    <item>
      <title>Re: LIST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/list/m-p/2403214#M535533</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hai,&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; HOW CAN I MOVE DATA FROM LIST TO INTERNAL TABLE.&lt;/P&gt;&lt;P&gt;IS IT USING READ SATEMENT OR SOME THING ELSE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THANK YOU&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASHOK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 12:05:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/list/m-p/2403214#M535533</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T12:05:08Z</dc:date>
    </item>
    <item>
      <title>Re: LIST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/list/m-p/2403215#M535534</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;You will be displaying the interactive List by using a Internal Table.&lt;/P&gt;&lt;P&gt;so move the values of that Internal table to this new Internal table (ITAB) which is like the database table.&lt;/P&gt;&lt;P&gt;and now Insert the data to DB TABLE  from this ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points for useful Answers&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 12:10:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/list/m-p/2403215#M535534</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T12:10:07Z</dc:date>
    </item>
    <item>
      <title>Re: LIST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/list/m-p/2403216#M535535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HAI,&lt;/P&gt;&lt;P&gt;         THAT INTERNAL TABLE  DO NOT HAVE UPLOADED OR ENTERED DATA  FROM LIST. IT HAS ONLY OLD DATAB . SO HOW CAN READ&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THANK YOU&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASHOK KUMAR&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2007 12:24:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/list/m-p/2403216#M535535</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-06T12:24:12Z</dc:date>
    </item>
  </channel>
</rss>

