<?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: ztable data updation issue in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/ztable-data-updation-issue/m-p/6524786#M1425651</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Murli , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Press F1 on Insert and check it option with internal table .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to use , INSERT ztable from table itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 09 Jan 2010 07:47:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-01-09T07:47:40Z</dc:date>
    <item>
      <title>ztable data updation issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ztable-data-updation-issue/m-p/6524783#M1425648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                I had an issue where in If iam entering the data manually in the table control, and trying to save into the ztable, The data &lt;/P&gt;&lt;P&gt;is not going into the ztable.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for save button in the standard toolbar, I have written the code like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;insert ztable from itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here itab is the internaltable for my table control.&lt;/P&gt;&lt;P&gt;ztable is my actual ztable in which the data should come.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;before inserting the data, shoulld i need to append the internal table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If so,  I have used &lt;/P&gt;&lt;P&gt;                                 APPEND itab   also,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but the issue is not getting solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me to resolve this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks and regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Murali Krishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Jan 2010 06:05:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ztable-data-updation-issue/m-p/6524783#M1425648</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-09T06:05:34Z</dc:date>
    </item>
    <item>
      <title>Re: ztable data updation issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ztable-data-updation-issue/m-p/6524784#M1425649</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;the type for the your internal table must be same.&lt;/P&gt;&lt;P&gt;pass your table control data into internal table.&lt;/P&gt;&lt;P&gt;then loop on the internal table and insert the data into ztable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at internal table into work area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  insert ztable from workarea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Jan 2010 06:41:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ztable-data-updation-issue/m-p/6524784#M1425649</guid>
      <dc:creator>nirajgadre</dc:creator>
      <dc:date>2010-01-09T06:41:12Z</dc:date>
    </item>
    <item>
      <title>Re: ztable data updation issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ztable-data-updation-issue/m-p/6524785#M1425650</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;insert ztable from itab&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;its considering the header line only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think it should be like this&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;insert ztable from &lt;STRONG&gt;table&lt;/STRONG&gt; itab&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Jan 2010 07:07:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ztable-data-updation-issue/m-p/6524785#M1425650</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-01-09T07:07:04Z</dc:date>
    </item>
    <item>
      <title>Re: ztable data updation issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ztable-data-updation-issue/m-p/6524786#M1425651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Murli , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Press F1 on Insert and check it option with internal table .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to use , INSERT ztable from table itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Jan 2010 07:47:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ztable-data-updation-issue/m-p/6524786#M1425651</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-09T07:47:40Z</dc:date>
    </item>
    <item>
      <title>Re: ztable data updation issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ztable-data-updation-issue/m-p/6524787#M1425652</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;Check whether your internal table is getting appended with the data you entered in debug mode.....if so ....use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INSERT &amp;lt;ZTABLE&amp;gt; FROM TABLE &amp;lt;INTERNAL TABLE&amp;gt;. should work .....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and your internal table and ztable must have same structure...&lt;/P&gt;&lt;P&gt;&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;Shailaja Ainala.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jan 2010 13:06:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ztable-data-updation-issue/m-p/6524787#M1425652</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-11T13:06:25Z</dc:date>
    </item>
  </channel>
</rss>

