<?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: MODIFY dbtab FROM wa - Not Working in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-dbtab-from-wa-not-working/m-p/7950492#M1601765</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I deleted ZRPROJ and recreated again by copying PROJ and deleting indices again. Now it's workign fien with the code unchanged. The problem was ofcourse with Table (dont know what exactly it is) but not the declaration or any other part of code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Solved. Thanks everyone for your valuable inputs.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Jun 2011 08:17:51 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-06-15T08:17:51Z</dc:date>
    <item>
      <title>MODIFY dbtab FROM wa - Not Working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-dbtab-from-wa-not-working/m-p/7950484#M1601757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CLEAR gs_proj.&lt;/P&gt;&lt;P&gt;      MOVE-CORRESPONDING proj TO gs_proj.&lt;/P&gt;&lt;P&gt;      gs_proj-aenam = sy-uname.&lt;/P&gt;&lt;P&gt;      gs_proj-aedat = sy-datum.&lt;/P&gt;&lt;P&gt;      gs_proj-zzdate = date.&lt;/P&gt;&lt;P&gt;      MODIFY zrproj FROM gs_proj.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ZRPROJ is copy of PROJ table with an extra primary key as zzdate. Now though I give a unique entry with different zzdate, MODIFY is not working but is giving sy-subrc 4. When I checked, there were secondary indices in ZRPROJ (copied from PROJ) and hence deleted all the secondary indices. But still sy-subrc is 4 only. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anybody help me in figuring out what the problem is here?&lt;/P&gt;&lt;P&gt;Your help is highly appreciable.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2011 06:50:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-dbtab-from-wa-not-working/m-p/7950484#M1601757</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-15T06:50:34Z</dc:date>
    </item>
    <item>
      <title>Re: MODIFY dbtab FROM wa - Not Working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-dbtab-from-wa-not-working/m-p/7950485#M1601758</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;Have you done a database adjust in SE14 after deleting the secondary indexes ??&lt;/P&gt;&lt;P&gt;If not, pls try by doing that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;HM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2011 07:00:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-dbtab-from-wa-not-working/m-p/7950485#M1601758</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-15T07:00:57Z</dc:date>
    </item>
    <item>
      <title>Re: MODIFY dbtab FROM wa - Not Working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-dbtab-from-wa-not-working/m-p/7950486#M1601759</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;are you sure that&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&amp;gt; gs_proj is of type (structure) zrproj?&lt;/P&gt;&lt;P&gt;-&amp;gt; value of field DATE isn't empty?&lt;/P&gt;&lt;P&gt;-&amp;gt; MOVE-CORRESPONDING is working fine for all key fields of table proj?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Klaus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2011 07:15:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-dbtab-from-wa-not-working/m-p/7950486#M1601759</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-15T07:15:35Z</dc:date>
    </item>
    <item>
      <title>Re: MODIFY dbtab FROM wa - Not Working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-dbtab-from-wa-not-working/m-p/7950487#M1601760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tell me if your Z table has MANDT (Client) field as primary key). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it is then also provide value for client as well. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if your prob. is resolved or need help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers.&lt;/P&gt;&lt;P&gt;NK.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2011 07:21:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-dbtab-from-wa-not-working/m-p/7950487#M1601760</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-15T07:21:47Z</dc:date>
    </item>
    <item>
      <title>Re: MODIFY dbtab FROM wa - Not Working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-dbtab-from-wa-not-working/m-p/7950488#M1601761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@ Hareesh&lt;/P&gt;&lt;P&gt;Adjusted...but no luck &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@ Klaus&lt;/P&gt;&lt;P&gt;-&amp;gt;gs_proj is of type proj only&lt;/P&gt;&lt;P&gt;-&amp;gt;DATE isn't empty...being filled in&lt;/P&gt;&lt;P&gt;-&amp;gt;yes, working fine&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@ Nishant&lt;/P&gt;&lt;P&gt;MANDT is a key field and is being filled in...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anybody help me out please...?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2011 07:51:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-dbtab-from-wa-not-working/m-p/7950488#M1601761</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-15T07:51:14Z</dc:date>
    </item>
    <item>
      <title>Re: MODIFY dbtab FROM wa - Not Working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-dbtab-from-wa-not-working/m-p/7950489#M1601762</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;You wrote "gs_proj is of type proj only".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But gs_proj has to be like structure of table ZRPROJ .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2011 07:57:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-dbtab-from-wa-not-working/m-p/7950489#M1601762</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-15T07:57:09Z</dc:date>
    </item>
    <item>
      <title>Re: MODIFY dbtab FROM wa - Not Working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-dbtab-from-wa-not-working/m-p/7950490#M1601763</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@ Cannao&lt;/P&gt;&lt;P&gt;Both are same right? I declared gs_proj as zrproj structure only.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2011 08:04:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-dbtab-from-wa-not-working/m-p/7950490#M1601763</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-15T08:04:21Z</dc:date>
    </item>
    <item>
      <title>Re: MODIFY dbtab FROM wa - Not Working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-dbtab-from-wa-not-working/m-p/7950491#M1601764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;why dont you paste the data declaration part also here.&lt;/P&gt;&lt;P&gt;The only reason for modify to not work is that structures dont match.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2011 08:13:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-dbtab-from-wa-not-working/m-p/7950491#M1601764</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-15T08:13:01Z</dc:date>
    </item>
    <item>
      <title>Re: MODIFY dbtab FROM wa - Not Working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-dbtab-from-wa-not-working/m-p/7950492#M1601765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I deleted ZRPROJ and recreated again by copying PROJ and deleting indices again. Now it's workign fien with the code unchanged. The problem was ofcourse with Table (dont know what exactly it is) but not the declaration or any other part of code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Solved. Thanks everyone for your valuable inputs.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2011 08:17:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-dbtab-from-wa-not-working/m-p/7950492#M1601765</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-15T08:17:51Z</dc:date>
    </item>
    <item>
      <title>Re: MODIFY dbtab FROM wa - Not Working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-dbtab-from-wa-not-working/m-p/7950493#M1601766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If  the ZRPROJ is different from PROJ, the gs_proj has to be like ZRPROJ.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway, I understood that you tried this solution and you have still your issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2011 08:18:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-dbtab-from-wa-not-working/m-p/7950493#M1601766</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-15T08:18:20Z</dc:date>
    </item>
  </channel>
</rss>

