<?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  'append' syntax in ECC 6.0 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-append-syntax-in-ecc-6-0/m-p/7107960#M1509328</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Elinuk,&lt;/P&gt;&lt;P&gt;Use field symbols to make it compatible.&lt;/P&gt;&lt;P&gt;Hope the below code helps.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT  zvk_test.

TABLES: arc_buffer.

DATA: BEGIN OF class_package OCCURS 0.
        INCLUDE STRUCTURE arch_packa.
DATA: END OF class_package.

DATA:lw_arch_packa TYPE arch_packa.
FIELD-SYMBOLS:&amp;lt;fs_arch_packa&amp;gt;.

arc_buffer-segment = 'krishna999988jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj'.

ASSIGN arc_buffer-segment TO &amp;lt;fs_arch_packa&amp;gt; CASTING TYPE arch_packa.
MOVE &amp;lt;fs_arch_packa&amp;gt; TO lw_arch_packa.

APPEND lw_arch_packa TO class_package.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 07 Jul 2010 02:40:12 GMT</pubDate>
    <dc:creator>vattekrishna</dc:creator>
    <dc:date>2010-07-07T02:40:12Z</dc:date>
    <item>
      <title>problem with  'append' syntax in ECC 6.0</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-append-syntax-in-ecc-6-0/m-p/7107958#M1509326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am upgrading a old report  i got a unicode error  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;actually  the report has the followig structure  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables: arc_buffer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF class_package OCCURS 0.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE arch_packa.&lt;/P&gt;&lt;P&gt;DATA: END OF class_package.   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now  the report has following syntax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND  arc_buffer-segment TO class_package.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i try to execute it  it gives error that &lt;/P&gt;&lt;P&gt;'a line of class_package and arc_buffer-segment are not mutually convertible in a unicode program.'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can any one help me to resolve this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Jul 2010 00:05:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-append-syntax-in-ecc-6-0/m-p/7107958#M1509326</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-07T00:05:09Z</dc:date>
    </item>
    <item>
      <title>Re: problem with  'append' syntax in ECC 6.0</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-append-syntax-in-ecc-6-0/m-p/7107959#M1509327</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;just check data definitions in SE11. You will see that structure ARCH_PACKA does not match with ARC_BUFFER-SEGMENT. The difference is in data type as well as length.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Jul 2010 00:08:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-append-syntax-in-ecc-6-0/m-p/7107959#M1509327</guid>
      <dc:creator>mvoros</dc:creator>
      <dc:date>2010-07-07T00:08:39Z</dc:date>
    </item>
    <item>
      <title>Re: problem with  'append' syntax in ECC 6.0</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-append-syntax-in-ecc-6-0/m-p/7107960#M1509328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Elinuk,&lt;/P&gt;&lt;P&gt;Use field symbols to make it compatible.&lt;/P&gt;&lt;P&gt;Hope the below code helps.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT  zvk_test.

TABLES: arc_buffer.

DATA: BEGIN OF class_package OCCURS 0.
        INCLUDE STRUCTURE arch_packa.
DATA: END OF class_package.

DATA:lw_arch_packa TYPE arch_packa.
FIELD-SYMBOLS:&amp;lt;fs_arch_packa&amp;gt;.

arc_buffer-segment = 'krishna999988jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj'.

ASSIGN arc_buffer-segment TO &amp;lt;fs_arch_packa&amp;gt; CASTING TYPE arch_packa.
MOVE &amp;lt;fs_arch_packa&amp;gt; TO lw_arch_packa.

APPEND lw_arch_packa TO class_package.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Jul 2010 02:40:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-append-syntax-in-ecc-6-0/m-p/7107960#M1509328</guid>
      <dc:creator>vattekrishna</dc:creator>
      <dc:date>2010-07-07T02:40:12Z</dc:date>
    </item>
    <item>
      <title>Re: problem with  'append' syntax in ECC 6.0</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-append-syntax-in-ecc-6-0/m-p/7107961#M1509329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi  mr.krishna  i like to thank you very much for your support u have solved my problem i really appreciate your concern.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;iam very thankful to you . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;actually i am   working on upgrading some old reports  i am the only developer in team and i am new to upgrading  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and i like to request you if u have any interesting documents to read about unicode abap programming ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i hope u will help me in further doubts i get .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you for your support......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Jul 2010 09:15:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-append-syntax-in-ecc-6-0/m-p/7107961#M1509329</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-07T09:15:03Z</dc:date>
    </item>
  </channel>
</rss>

