<?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: Problem With Insert statement using field symbols with unicode enabled in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-insert-statement-using-field-symbols-with-unicode-enabled/m-p/2290134#M499501</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;Try to use Modify or Move-corresponding instead of Insert. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anoop&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 May 2007 12:53:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-24T12:53:45Z</dc:date>
    <item>
      <title>Problem With Insert statement using field symbols with unicode enabled</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-insert-statement-using-field-symbols-with-unicode-enabled/m-p/2290131#M499498</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was writng a function module for dyanamic operations on the table. We are using the field symbols, function module is unicode enabled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assign statements are working fine, with which we created work are &amp;lt;fs_wa_header&amp;gt; and internal table &amp;lt;fs_tb_item&amp;gt; dynamically based on the table name (IM_TB_HENAME) which we get as import parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we have query which is giving us dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INSERT  (IM_TB_HENAME)  FROM &amp;lt;FS_WA_HEADER&amp;gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 May 2007 12:44:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-insert-statement-using-field-symbols-with-unicode-enabled/m-p/2290131#M499498</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-24T12:44:37Z</dc:date>
    </item>
    <item>
      <title>Re: Problem With Insert statement using field symbols with unicode enabled</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-insert-statement-using-field-symbols-with-unicode-enabled/m-p/2290132#M499499</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the entry in (IM_TB_HENAME) is already exist, and change INSERT on MODIFY. May be it's help you ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 May 2007 12:48:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-insert-statement-using-field-symbols-with-unicode-enabled/m-p/2290132#M499499</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-24T12:48:33Z</dc:date>
    </item>
    <item>
      <title>Re: Problem With Insert statement using field symbols with unicode enabled</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-insert-statement-using-field-symbols-with-unicode-enabled/m-p/2290133#M499500</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;INSERT (IM_TB_HENAME) FROM &amp;lt;FS_WA_HEADER&amp;gt; is good for inserting a line in the database, so IM_TB_HENAME has to have the name of dictionary table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U should write:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INSERT  &amp;lt;FS_WA_HEADER&amp;gt; INTO (IM_TB_HENAME).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I believe you can't use the variable IM_TB_HENAME, you should use another field-symbols:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN (IM_TB_HNAME) TO &amp;lt;FS_TB_ITEM&amp;gt;.&lt;/P&gt;&lt;P&gt;INSERT  &amp;lt;FS_WA_HEADER&amp;gt; INTO &amp;lt;FS_TB_ITEM&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 May 2007 12:52:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-insert-statement-using-field-symbols-with-unicode-enabled/m-p/2290133#M499500</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-24T12:52:48Z</dc:date>
    </item>
    <item>
      <title>Re: Problem With Insert statement using field symbols with unicode enabled</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-insert-statement-using-field-symbols-with-unicode-enabled/m-p/2290134#M499501</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;Try to use Modify or Move-corresponding instead of Insert. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anoop&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 May 2007 12:53:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-insert-statement-using-field-symbols-with-unicode-enabled/m-p/2290134#M499501</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-24T12:53:45Z</dc:date>
    </item>
    <item>
      <title>Re: Problem With Insert statement using field symbols with unicode enabled</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-insert-statement-using-field-symbols-with-unicode-enabled/m-p/2290135#M499502</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Max&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IM_TB_HENAME is the import parameter for table name which is a dictionary table not an internal table, then how we can assign it to any field symbol.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to make it very much clear IM_TB_HENAME is name for database table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 May 2007 13:06:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-insert-statement-using-field-symbols-with-unicode-enabled/m-p/2290135#M499502</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-24T13:06:13Z</dc:date>
    </item>
    <item>
      <title>Re: Problem With Insert statement using field symbols with unicode enabled</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-insert-statement-using-field-symbols-with-unicode-enabled/m-p/2290136#M499503</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IM_TB_HENAME is the name of dictionary table which we taking as import parameter, for making it dynamic, it is not an internal table so no move-corresponding or move statement will work&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 May 2007 13:08:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-insert-statement-using-field-symbols-with-unicode-enabled/m-p/2290136#M499503</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-24T13:08:01Z</dc:date>
    </item>
    <item>
      <title>Re: Problem With Insert statement using field symbols with unicode enabled</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-insert-statement-using-field-symbols-with-unicode-enabled/m-p/2290137#M499504</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So I suppose you've a code like this (?):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOOP AT &amp;lt;FS_TB_ITEM&amp;gt; ASSIGNING &amp;lt;FS_WA_HEADER&amp;gt;.
  INSERT (IM_TB_HNAME) FROM &amp;lt;FS_WA_HEADER&amp;gt;.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it's so, you should know us which dump you're obtaining.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 May 2007 13:41:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-insert-statement-using-field-symbols-with-unicode-enabled/m-p/2290137#M499504</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-24T13:41:26Z</dc:date>
    </item>
  </channel>
</rss>

