<?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 problem with modify statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-modify-statement/m-p/1569501#M257117</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 am using the following statement &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   MODIFY ZDISPLAY FROM TABLE GT_OUTTAB.   then my dbtable zdisplay is not updating only last record of gt_outtab. all records are not getting appended any commit statement i have to use before or after?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 29 Sep 2006 03:53:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-29T03:53:13Z</dc:date>
    <item>
      <title>problem with modify statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-modify-statement/m-p/1569501#M257117</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 am using the following statement &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   MODIFY ZDISPLAY FROM TABLE GT_OUTTAB.   then my dbtable zdisplay is not updating only last record of gt_outtab. all records are not getting appended any commit statement i have to use before or after?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Sep 2006 03:53:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-modify-statement/m-p/1569501#M257117</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-29T03:53:13Z</dc:date>
    </item>
    <item>
      <title>Re: problem with modify statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-modify-statement/m-p/1569502#M257118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;make sure the int table GT_OUTTAB is of type ZDISPLAY only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Sep 2006 04:09:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-modify-statement/m-p/1569502#M257118</guid>
      <dc:creator>gopi_narendra</dc:creator>
      <dc:date>2006-09-29T04:09:07Z</dc:date>
    </item>
    <item>
      <title>Re: problem with modify statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-modify-statement/m-p/1569503#M257119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi srinivas &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think ur key value is same in urs internal table. u make one new key (in ztable &amp;amp; internal table) sr no. as a key field and incremant +1 in loop. urs problem may be slove. otherwise send me data &amp;amp; struct. of tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Manish Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Sep 2006 05:15:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-modify-statement/m-p/1569503#M257119</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-29T05:15:02Z</dc:date>
    </item>
    <item>
      <title>Re: problem with modify statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-modify-statement/m-p/1569504#M257120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi kota,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Primary key&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. The modify statement,&lt;/P&gt;&lt;P&gt;   will only modify &lt;/P&gt;&lt;P&gt;   if the primary key combination of fields,&lt;/P&gt;&lt;P&gt;   matches with that of work area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. If EXACT match is not found,&lt;/P&gt;&lt;P&gt;   then it will automatically INSERT a new record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. Moreover, we have to use like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT GT_OUTTAB.&lt;/P&gt;&lt;P&gt;MODIFY ZDISPLAY FROM GT_OUTTAB.&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;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Sep 2006 05:25:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-modify-statement/m-p/1569504#M257120</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-29T05:25:32Z</dc:date>
    </item>
    <item>
      <title>Re: problem with modify statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-modify-statement/m-p/1569505#M257121</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;tips&lt;/P&gt;&lt;P&gt;*********&lt;/P&gt;&lt;P&gt;1. gt_outtab should have the same structure of zdisplay&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.all the key  combination shuld be there, if there is any chnage in the key field insdie the loop, it will insert a new record into the ZDISPALY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. use like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at gt_outtab.&lt;/P&gt;&lt;P&gt;modilfy zdisplay from gt_outtab.&lt;/P&gt;&lt;P&gt;clear gt_outtab.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;P&gt;anver&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if still problem pls let the forum know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mark points 4 all hlpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Sep 2006 06:01:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-modify-statement/m-p/1569505#M257121</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2006-09-29T06:01:17Z</dc:date>
    </item>
    <item>
      <title>Re: problem with modify statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-modify-statement/m-p/1569506#M257122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi srinivas..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;give in loop.&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;modify ZDisplay from table itab.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Sep 2006 06:27:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-modify-statement/m-p/1569506#M257122</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-29T06:27:11Z</dc:date>
    </item>
    <item>
      <title>Re: problem with modify statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-modify-statement/m-p/1569507#M257123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Srinivas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Adding to Anversha reply...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; take care of key ...if you dont sepecify any then combination of all character fields will be taken as default key ..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Sep 2006 06:41:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-modify-statement/m-p/1569507#M257123</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-29T06:41:49Z</dc:date>
    </item>
  </channel>
</rss>

