<?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: Update Command is not working. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-command-is-not-working/m-p/4698764#M1104168</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is the value of SY-SUBRC immediately after the UPDATE? If 4 and not 0, then there is something wrong in your work area.&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 30 Oct 2008 16:32:13 GMT</pubDate>
    <dc:creator>ThomasZloch</dc:creator>
    <dc:date>2008-10-30T16:32:13Z</dc:date>
    <item>
      <title>Update Command is not working.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-command-is-not-working/m-p/4698762#M1104166</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;     There are 15 fields in the database table. The first 5 fields are set as primary keys. In the table, only the first field has got unique values. In the next 4 primary keys the values are getting repeated. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, i am trying to modify the 10th field using Update Command. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have written the below command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Updated ZOMT_PROCESS using WL_INITIAL_VALUES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The record is not getting modified in the database table with the values of the work area WL_INITIAL_VALUES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What could be the problem?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2008 13:54:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-command-is-not-working/m-p/4698762#M1104166</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-30T13:54:09Z</dc:date>
    </item>
    <item>
      <title>Re: Update Command is not working.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-command-is-not-working/m-p/4698763#M1104167</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You've forgotten to commit?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2008 16:29:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-command-is-not-working/m-p/4698763#M1104167</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2008-10-30T16:29:36Z</dc:date>
    </item>
    <item>
      <title>Re: Update Command is not working.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-command-is-not-working/m-p/4698764#M1104168</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is the value of SY-SUBRC immediately after the UPDATE? If 4 and not 0, then there is something wrong in your work area.&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2008 16:32:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-command-is-not-working/m-p/4698764#M1104168</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2008-10-30T16:32:13Z</dc:date>
    </item>
    <item>
      <title>Re: Update Command is not working.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-command-is-not-working/m-p/4698765#M1104169</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;Move all the modifiable work area fields to an Internal table and modify the ztable.    &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the following syntax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT i_selected_rows INTO w_selected_rows. &lt;/P&gt;&lt;P&gt;    READ TABLE itab INTO wa INDEX w_selected_rows-index. &lt;/P&gt;&lt;P&gt;    IF sy-subrc EQ 0. &lt;/P&gt;&lt;P&gt;      MOVE-CORRESPONDING wa TO w_modified. &lt;/P&gt;&lt;P&gt;      APPEND w_modified TO i_modified. &lt;/P&gt;&lt;P&gt;    ENDIF. &lt;/P&gt;&lt;P&gt;  ENDLOOP. &lt;/P&gt;&lt;P&gt;  MODIFY zzzmaterial FROM TABLE i_modified. &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;Bala Krishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2008 16:43:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-command-is-not-working/m-p/4698765#M1104169</guid>
      <dc:creator>former_member585060</dc:creator>
      <dc:date>2008-10-30T16:43:26Z</dc:date>
    </item>
    <item>
      <title>Re: Update Command is not working.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-command-is-not-working/m-p/4698766#M1104170</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you please send your complete Sourcecode.&lt;/P&gt;&lt;P&gt;Otherwise we can only imagine your problem.&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;Gerald&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2008 21:34:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-command-is-not-working/m-p/4698766#M1104170</guid>
      <dc:creator>GeraldP</dc:creator>
      <dc:date>2008-10-30T21:34:03Z</dc:date>
    </item>
    <item>
      <title>Re: Update Command is not working.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-command-is-not-working/m-p/4698767#M1104171</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you please send your complete Sourcecode.&lt;/P&gt;&lt;P&gt;Otherwise we can only imagine your problem.&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;Gerald&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2008 21:35:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-command-is-not-working/m-p/4698767#M1104171</guid>
      <dc:creator>GeraldP</dc:creator>
      <dc:date>2008-10-30T21:35:10Z</dc:date>
    </item>
  </channel>
</rss>

