<?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: Uni-code syntax error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/uni-code-syntax-error/m-p/3709619#M893115</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As far as my undersdtanding u r getting a warning when compiling u r program and u can ignore it.Just activate it,it will activate w/o any error.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 01 May 2008 04:18:21 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-01T04:18:21Z</dc:date>
    <item>
      <title>Uni-code syntax error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uni-code-syntax-error/m-p/3709617#M893113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts-&lt;/P&gt;&lt;P&gt;I am migration my code from 4.7 to ECC6.0.&lt;/P&gt;&lt;P&gt;The code is working fire in 4.7 but in ECC6.0 it is giving me compilation error. I think it is becuase of Uni-code but not sure how to fix it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Following code id giving me error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: BEGIN OF l_program_tab OCCURS 50.&lt;/P&gt;&lt;P&gt;          INCLUDE STRUCTURE textpool.&lt;/P&gt;&lt;P&gt;  DATA:  program_flag(1) type c,&lt;/P&gt;&lt;P&gt;        END OF l_program_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The error is "The line type of "l_program_tab" must be compatible with one of the types "TEXTPOOL" ".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The TEXTPOOL structure is &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ID	TEXTPOOLID	CHAR	1&lt;/P&gt;&lt;P&gt;KEY	TEXTPOOLKY	CHAR	8&lt;/P&gt;&lt;P&gt;ENTRY	TEXTPOOLTX	CHAR	255&lt;/P&gt;&lt;P&gt;LENGTH	TEXTPOOLLN	INT4	10&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can idea why this piece of code is working in 4.7 and giving error in ECC6.0?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 22:20:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uni-code-syntax-error/m-p/3709617#M893113</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T22:20:05Z</dc:date>
    </item>
    <item>
      <title>Re: Uni-code syntax error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uni-code-syntax-error/m-p/3709618#M893114</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to replace the statement the "data" statment with "types"&lt;/P&gt;&lt;P&gt;and then use data to define internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bye&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 22:50:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uni-code-syntax-error/m-p/3709618#M893114</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T22:50:59Z</dc:date>
    </item>
    <item>
      <title>Re: Uni-code syntax error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uni-code-syntax-error/m-p/3709619#M893115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As far as my undersdtanding u r getting a warning when compiling u r program and u can ignore it.Just activate it,it will activate w/o any error.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 May 2008 04:18:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uni-code-syntax-error/m-p/3709619#M893115</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-01T04:18:21Z</dc:date>
    </item>
    <item>
      <title>Re: Uni-code syntax error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uni-code-syntax-error/m-p/3709620#M893116</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; Check out in this way  ..&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
TYPES: BEGIN OF w_program_tab.
INCLUDE STRUCTURE textpool.
TYPES: program_flag(1) type c,
END OF w_program_tab.

data : i_program_tab type standard table of w_program_tab.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 May 2008 04:34:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uni-code-syntax-error/m-p/3709620#M893116</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-01T04:34:56Z</dc:date>
    </item>
    <item>
      <title>Re: Uni-code syntax error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uni-code-syntax-error/m-p/3709621#M893117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Mr.A &amp;amp; Santosh Kumar-&lt;/P&gt;&lt;P&gt;Your answeres were really helpful I will definately give some points.&lt;/P&gt;&lt;P&gt;I am getting next syntax error on my code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: l_db_tab like l_program_tab OCCURS 50 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the error is "When using 'WITH HEADER LINE', the line type cannot be a table type&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know if I have to make any changes in my above code too?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for helping me, I am not good in data declaration of abap.&lt;/P&gt;&lt;P&gt;Also if you have a good document to change existing abap code in to unicode, please provide me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 May 2008 15:29:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uni-code-syntax-error/m-p/3709621#M893117</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-01T15:29:19Z</dc:date>
    </item>
    <item>
      <title>Re: Uni-code syntax error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uni-code-syntax-error/m-p/3709622#M893118</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;Comment your line&lt;/P&gt;&lt;P&gt;*DATA: BEGIN OF l_program_tab occurs 50 with header line.&lt;/P&gt;&lt;P&gt;and try this line&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF l_program_tab occurs 50.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;both means the same...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;Adil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 May 2008 16:16:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uni-code-syntax-error/m-p/3709622#M893118</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-01T16:16:35Z</dc:date>
    </item>
    <item>
      <title>Re: Uni-code syntax error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uni-code-syntax-error/m-p/3709623#M893119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Adil- I did not understand your reply.&lt;/P&gt;&lt;P&gt;I do not have any error on DATA: BEGIN OF l_program_tab occurs 50 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 May 2008 17:37:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uni-code-syntax-error/m-p/3709623#M893119</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-01T17:37:47Z</dc:date>
    </item>
    <item>
      <title>Re: Uni-code syntax error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/uni-code-syntax-error/m-p/3709624#M893120</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 tried something like...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: l_db_tab like &lt;STRONG&gt;line of&lt;/STRONG&gt; l_program_tab OCCURS 50 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,   Andy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 May 2008 03:20:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/uni-code-syntax-error/m-p/3709624#M893120</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-02T03:20:20Z</dc:date>
    </item>
  </channel>
</rss>

