<?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: Insert   data to table Z in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-to-table-z/m-p/3242723#M773942</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;with : INSERT zedi_facturadigi FROM TABLE wa_digi1.&lt;/P&gt;&lt;P&gt; I have a dump, because fields key are the same and the other fields are those that they change but as they are too great, they occupy but of a registry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with : MODIFY zedi_facturadigi FROM wa_digi1.&lt;/P&gt;&lt;P&gt;Only insert tha last registry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 Jan 2008 16:17:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-18T16:17:18Z</dc:date>
    <item>
      <title>Insert   data to table Z</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-to-table-z/m-p/3242719#M773938</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; I have a table Z, to which I need to insert data to him, which I have stored in an internal table, but when I apply to the LOOP to the inserted single internal table in table Z 1 registry. and  I want all data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried this and nothing.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example 1:  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at wa_digi1 into wa_tt.&lt;/P&gt;&lt;P&gt;MODIFY zedi_facturadigi FROM wa_tt.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example2:&lt;/P&gt;&lt;P&gt;loop at wa_digi1 into wa_tt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;update zedi_facturadigi set&lt;/P&gt;&lt;P&gt;zlinea_cadena    = wa_tt-zlinea_cadena&lt;/P&gt;&lt;P&gt;zcadena_original = wa_tt-zcadena_original&lt;/P&gt;&lt;P&gt;where  bukrs           = wa_tt-bukrs and&lt;/P&gt;&lt;P&gt;       zclase_factura  = wa_tt-zclase_factura and&lt;/P&gt;&lt;P&gt;       belnr           = wa_tt-belnr and&lt;/P&gt;&lt;P&gt;        zserie          = wa_tt-zserie.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;commit work.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks and regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jan 2008 15:54:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-to-table-z/m-p/3242719#M773938</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-18T15:54:55Z</dc:date>
    </item>
    <item>
      <title>Re: Insert   data to table Z</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-to-table-z/m-p/3242720#M773939</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;try like this:&lt;/P&gt;&lt;P&gt;INSERT zedi_facturadigi FROM TABLE wa_digi1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;ec&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jan 2008 15:57:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-to-table-z/m-p/3242720#M773939</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2008-01-18T15:57:50Z</dc:date>
    </item>
    <item>
      <title>Re: Insert   data to table Z</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-to-table-z/m-p/3242721#M773940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Ashly,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Only use &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MODIFY zedi_facturadigi FROM wa_digi1.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will make it what you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jan 2008 16:03:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-to-table-z/m-p/3242721#M773940</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-18T16:03:21Z</dc:date>
    </item>
    <item>
      <title>Re: Insert   data to table Z</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-to-table-z/m-p/3242722#M773941</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;Try using Insert statement,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;INSERT zedi_facturadigi FROM wa_tt.&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sriram POnna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jan 2008 16:06:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-to-table-z/m-p/3242722#M773941</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-18T16:06:24Z</dc:date>
    </item>
    <item>
      <title>Re: Insert   data to table Z</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-to-table-z/m-p/3242723#M773942</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;with : INSERT zedi_facturadigi FROM TABLE wa_digi1.&lt;/P&gt;&lt;P&gt; I have a dump, because fields key are the same and the other fields are those that they change but as they are too great, they occupy but of a registry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with : MODIFY zedi_facturadigi FROM wa_digi1.&lt;/P&gt;&lt;P&gt;Only insert tha last registry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jan 2008 16:17:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-to-table-z/m-p/3242723#M773942</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-18T16:17:18Z</dc:date>
    </item>
    <item>
      <title>Re: Insert   data to table Z</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-to-table-z/m-p/3242724#M773943</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry Typo error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make this change:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY zedi_facturadigi FROM &lt;STRONG&gt;TABLE&lt;/STRONG&gt; wa_digi1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jan 2008 16:19:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-to-table-z/m-p/3242724#M773943</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-18T16:19:54Z</dc:date>
    </item>
  </channel>
</rss>

