<?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 Database Table From Dynamic Internal Table. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-database-table-from-dynamic-internal-table/m-p/2931725#M690837</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you have all your data in the table &amp;lt;outtab&amp;gt; you can directly modify the database table using the statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;modify (tab) from table &amp;lt;outtab&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you done the proper assignment of the field symbols to the required types?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Abhishek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 14 Oct 2007 17:01:53 GMT</pubDate>
    <dc:creator>former_member195698</dc:creator>
    <dc:date>2007-10-14T17:01:53Z</dc:date>
    <item>
      <title>Modify Database Table From Dynamic Internal Table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-database-table-from-dynamic-internal-table/m-p/2931723#M690835</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;Created a report which calls a RFC and gets data from Quality Server into Development server. Also creates dynamic internal table.&lt;/P&gt;&lt;P&gt;The RFC fetches data from Q server and comes to Dev Server, now I need to Modify database table in Dev Server with the data from Q Server.&lt;/P&gt;&lt;P&gt;Please Help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the code which I use for Modify&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Declarations&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;outtab&amp;gt; TYPE ANY TABLE,&lt;/P&gt;&lt;P&gt;&amp;lt;l_line&amp;gt; TYPE ANY,&lt;/P&gt;&lt;P&gt;&amp;lt;l_field&amp;gt; TYPE ANY.&lt;/P&gt;&lt;P&gt;DATA: new_table TYPE REF TO data.&lt;/P&gt;&lt;P&gt;DATA: new_line TYPE REF TO data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: tab TYPE dd02l-tabname OBLIGATORY ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;****&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at &amp;lt;outtab&amp;gt; into &amp;lt;l_line&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  modify (tab) from &amp;lt;l_line&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It gives a Error&lt;/P&gt;&lt;P&gt; "The types of the operands "dbtab" and "wa" are not mutually convertible."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please Help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raghu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Oct 2007 14:00:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-database-table-from-dynamic-internal-table/m-p/2931723#M690835</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-14T14:00:12Z</dc:date>
    </item>
    <item>
      <title>Re: Modify Database Table From Dynamic Internal Table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-database-table-from-dynamic-internal-table/m-p/2931724#M690836</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 dont think you can just modify by using modify (tab) from &amp;lt;l_line&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you have to ASSIGN COMPONENT to the &amp;lt;l_field&amp;gt; and pass those values to the wa of the table you are trying to modify and finally modify the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not sure though...can give it a try.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Oct 2007 16:11:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-database-table-from-dynamic-internal-table/m-p/2931724#M690836</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-14T16:11:13Z</dc:date>
    </item>
    <item>
      <title>Re: Modify Database Table From Dynamic Internal Table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-database-table-from-dynamic-internal-table/m-p/2931725#M690837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you have all your data in the table &amp;lt;outtab&amp;gt; you can directly modify the database table using the statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;modify (tab) from table &amp;lt;outtab&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you done the proper assignment of the field symbols to the required types?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Abhishek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 14 Oct 2007 17:01:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-database-table-from-dynamic-internal-table/m-p/2931725#M690837</guid>
      <dc:creator>former_member195698</dc:creator>
      <dc:date>2007-10-14T17:01:53Z</dc:date>
    </item>
    <item>
      <title>Re: Modify Database Table From Dynamic Internal Table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-database-table-from-dynamic-internal-table/m-p/2931726#M690838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have all data in the table &amp;lt;outtab&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i tried Modify (tab) from table &amp;lt;outtab&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but it gives me dump with error&lt;/P&gt;&lt;P&gt;"Alignment of lines in an internal table is not sufficient."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please Help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raghu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Oct 2007 06:57:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-database-table-from-dynamic-internal-table/m-p/2931726#M690838</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-15T06:57:16Z</dc:date>
    </item>
  </channel>
</rss>

