<?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: Tab Delimit -  Unicode system in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/tab-delimit-unicode-system/m-p/1205121#M131938</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can declare a variable something like..&lt;/P&gt;&lt;P&gt;data w_tab TYPE abap_char1&lt;/P&gt;&lt;P&gt;VALUE cl_abap_char_utilities=&amp;gt;horizontal_tab.&lt;/P&gt;&lt;P&gt;&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;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 20 Apr 2006 23:36:32 GMT</pubDate>
    <dc:creator>suresh_datti</dc:creator>
    <dc:date>2006-04-20T23:36:32Z</dc:date>
    <item>
      <title>Tab Delimit -  Unicode system</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tab-delimit-unicode-system/m-p/1205119#M131936</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have a program that uses the tab delimit as follows..&lt;/P&gt;&lt;P&gt;z_tab TYPE x VALUE '09', and this is running good.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now we want to start using the check box "Unicode checks active" which is available in Attributes, but the program pops up with a message as follow:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"Z_TAB must be a character-type data object (data type C,N,D,T or STRING). field string).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any way I can use the TAB delimition with out using the hexa code (of TYPE x).. ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I heard there is a class called "cl_gui_char_utlitites"..but not sure how to use it.. can any one help me in this regard..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Mavip&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Apr 2006 21:08:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tab-delimit-unicode-system/m-p/1205119#M131936</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-20T21:08:50Z</dc:date>
    </item>
    <item>
      <title>Re: Tab Delimit -  Unicode system</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tab-delimit-unicode-system/m-p/1205120#M131937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Mavi,&lt;/P&gt;&lt;P&gt;In the newer releases of SAP,  ABAP supports multi-byte coding for characters in Unicode , earlier only single /double byte code were supported. Because of this the syntax check gives error for several statements which works in 4.6 B .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An eg&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: str1(10), str2(10),str3(20) hex type x.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hex = '0A'.         "0A is the hex code for new line '09' is horozontal tab&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The class CL_ABAP_CHAR_UTILITIES has various attributes that contains values such as tab, line feed etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; You can refer to the link below for more info.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/62/3f2cadb35311d5993800508b6b8b11/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/62/3f2cadb35311d5993800508b6b8b11/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u can use classes to eliminate the error.we too got many unicode errors in new 5.0 ECC version.&lt;/P&gt;&lt;P&gt;u can use classes CR_LF,HORIZONTAL_TAB depending on u'r requirement.&lt;/P&gt;&lt;P&gt;here is one  example.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp; Report  ZTEST10&lt;/P&gt;&lt;P&gt;*&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;&lt;/P&gt;&lt;P&gt;*&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZTEST10.&lt;/P&gt;&lt;P&gt;data: str1(10), str2(10), str3(20).&lt;/P&gt;&lt;P&gt;str1 = 'Initial'.&lt;/P&gt;&lt;P&gt;str2 = 'Second'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;      str3(20),&lt;/P&gt;&lt;P&gt;      end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*concatenate str1 CL_ABAP_CHAR_UTILITIES=&amp;gt;CR_LF str2 into str3.&lt;/P&gt;&lt;P&gt;concatenate str1 CL_ABAP_CHAR_UTILITIES=&amp;gt;HORIZONTAL_TAB str2 into str3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab = str3.&lt;/P&gt;&lt;P&gt;append itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write: str3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'GUI_DOWNLOAD'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    FILENAME                        = 'c:\unicode5.txt'&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    DATA_TAB                        = itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;May be it will help u.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Adarsh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Apr 2006 22:59:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tab-delimit-unicode-system/m-p/1205120#M131937</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-20T22:59:44Z</dc:date>
    </item>
    <item>
      <title>Re: Tab Delimit -  Unicode system</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tab-delimit-unicode-system/m-p/1205121#M131938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can declare a variable something like..&lt;/P&gt;&lt;P&gt;data w_tab TYPE abap_char1&lt;/P&gt;&lt;P&gt;VALUE cl_abap_char_utilities=&amp;gt;horizontal_tab.&lt;/P&gt;&lt;P&gt;&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;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Apr 2006 23:36:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tab-delimit-unicode-system/m-p/1205121#M131938</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-04-20T23:36:32Z</dc:date>
    </item>
    <item>
      <title>Re: Tab Delimit -  Unicode system</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tab-delimit-unicode-system/m-p/1205122#M131939</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Adarsh and Suresh, Thank you friends, my problem got solved..you both deserve the points..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;keep up the good work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Mavi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Apr 2006 13:47:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tab-delimit-unicode-system/m-p/1205122#M131939</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-21T13:47:12Z</dc:date>
    </item>
  </channel>
</rss>

