<?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: Z- table operations in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/z-table-operations/m-p/2818917#M659259</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would like to know all the other operations - &lt;/P&gt;&lt;P&gt;like how to delete the contents of the entire table , &lt;/P&gt;&lt;P&gt;where commit work is used. and all that&lt;/P&gt;&lt;P&gt;Thank you .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 05 Oct 2007 14:12:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-05T14:12:56Z</dc:date>
    <item>
      <title>Z- table operations</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/z-table-operations/m-p/2818914#M659256</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 have a Z table , now I want to perform the following operations on it from my internal table. &lt;/P&gt;&lt;P&gt;1) Move the entire internal table to the Z table and delete the original contents of the Z table.&lt;/P&gt;&lt;P&gt;2) Move selected rows into the Z table from the itnernal table while retaining the original contents of the Z table  &lt;/P&gt;&lt;P&gt;Can anyone give me the code for these.&lt;/P&gt;&lt;P&gt;3) Modify the Z table from the internal table and not insert duplicate entries.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also want to know if coding is the only way to update Z tables , or can we use any SAP function modules. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Oct 2007 13:53:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/z-table-operations/m-p/2818914#M659256</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-05T13:53:36Z</dc:date>
    </item>
    <item>
      <title>Re: Z- table operations</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/z-table-operations/m-p/2818915#M659257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at Itab.&lt;/P&gt;&lt;P&gt;Write : / itab-matnr,itab-maktx.&lt;/P&gt;&lt;P&gt;read table t_ztable with key itab-matnr.&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;t_ztable-maktx = itab-maktx.&lt;/P&gt;&lt;P&gt;modify table t_ztable from t_ztable transporting maktx.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;t_ztable-matnr = itab-matnr.&lt;/P&gt;&lt;P&gt;t_ztable-maktx = itab-maktx.&lt;/P&gt;&lt;P&gt;append t_ztable.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;Endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;modify ztable from table t_ztable.&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;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Oct 2007 14:01:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/z-table-operations/m-p/2818915#M659257</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-05T14:01:43Z</dc:date>
    </item>
    <item>
      <title>Re: Z- table operations</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/z-table-operations/m-p/2818916#M659258</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;U can try this for Inserting into Z-Table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES SPFLI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA WA TYPE SPFLI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WA-CARRID = 'LH'.&lt;/P&gt;&lt;P&gt;WA-CITYFROM = 'WASHINGTON'.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;INSERT INTO SPFLI VALUES WA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WA-CARRID = 'UA'.&lt;/P&gt;&lt;P&gt;WA-CITYFROM = 'LONDON'.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;INSERT SPFLI FROM WA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPFLI-CARRID = 'LH'.&lt;/P&gt;&lt;P&gt;SPFLI-CITYFROM = 'BERLIN'.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;INSERT SPFLI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Modifying Z-Table,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY &amp;lt;Z-Table&amp;gt; FROM &amp;lt;wa&amp;gt; .&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;Padmam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Oct 2007 14:03:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/z-table-operations/m-p/2818916#M659258</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-05T14:03:36Z</dc:date>
    </item>
    <item>
      <title>Re: Z- table operations</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/z-table-operations/m-p/2818917#M659259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would like to know all the other operations - &lt;/P&gt;&lt;P&gt;like how to delete the contents of the entire table , &lt;/P&gt;&lt;P&gt;where commit work is used. and all that&lt;/P&gt;&lt;P&gt;Thank you .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Oct 2007 14:12:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/z-table-operations/m-p/2818917#M659259</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-05T14:12:56Z</dc:date>
    </item>
    <item>
      <title>Re: Z- table operations</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/z-table-operations/m-p/2818918#M659260</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can create data using SE16.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Oct 2007 14:13:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/z-table-operations/m-p/2818918#M659260</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-05T14:13:24Z</dc:date>
    </item>
  </channel>
</rss>

