<?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: Unicode problem for converting raw data type to string in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-problem-for-converting-raw-data-type-to-string/m-p/5477554#M1254130</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi suman ,&lt;/P&gt;&lt;P&gt;           You need to follow the procedure given below &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) You need to load the class  as mentioned below.&lt;/P&gt;&lt;P&gt; syntax :    class CL_ABAP_CONTAINER_UTILITIES definition load.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) Then call the method read_container_c&lt;/P&gt;&lt;P&gt;J_2IEXTRCT-EXTRCTDATA and  I_RG23PART1-I_PART1_TYP are the 2 incompatable variables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax:&lt;/P&gt;&lt;P&gt; call method cl_abap_container_utilities=&amp;gt;read_container_c&lt;/P&gt;&lt;P&gt;  exporting  IM_CONTAINER           = J_2IEXTRCT-EXTRCTDATA&lt;/P&gt;&lt;P&gt;  importing  EX_VALUE               = I_RG23PART1-I_PART1_TYP&lt;/P&gt;&lt;P&gt;  exceptions ILLEGAL_PARAMETER_TYPE = 1&lt;/P&gt;&lt;P&gt;             others                 = 2.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 14 Apr 2009 11:15:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-14T11:15:19Z</dc:date>
    <item>
      <title>Unicode problem for converting raw data type to string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-problem-for-converting-raw-data-type-to-string/m-p/5477548#M1254124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     I am facing the problem in Unicode.&lt;/P&gt;&lt;P&gt;     Before Unicode in version 4.7 we can able to convert the data from string to raw (ssfbin data type) and vise versa. But after Unicode check it is giving error as Unicode not compatible to pass to string .How can I over come to this problem could u please do me needful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanking you,&lt;/P&gt;&lt;P&gt;Suman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 07:08:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-problem-for-converting-raw-data-type-to-string/m-p/5477548#M1254124</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-14T07:08:52Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode problem for converting raw data type to string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-problem-for-converting-raw-data-type-to-string/m-p/5477549#M1254125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;unicode doesnt allow assignment of string to raw type as the data length for char type and X type differ in 6.0 version. &lt;/P&gt;&lt;P&gt;You can try using field-symbols for assignin string to raw as shown .....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;field-symbols: &amp;lt;fs&amp;gt; type x.&lt;/P&gt;&lt;P&gt;assign str to &amp;lt;fs&amp;gt; casting.&lt;/P&gt;&lt;P&gt;raw = &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 07:16:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-problem-for-converting-raw-data-type-to-string/m-p/5477549#M1254125</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-14T07:16:05Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode problem for converting raw data type to string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-problem-for-converting-raw-data-type-to-string/m-p/5477550#M1254126</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 with the FM     &lt;STRONG&gt;ISH_N2_STRING_TO_RAWTAB&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Sekhar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 07:29:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-problem-for-converting-raw-data-type-to-string/m-p/5477550#M1254126</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-14T07:29:03Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode problem for converting raw data type to string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-problem-for-converting-raw-data-type-to-string/m-p/5477551#M1254127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there.... .you can try MOVE command to move raw data into string. .....  if this does not help, please revert back.... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards&lt;/P&gt;&lt;P&gt;Prem Sharma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 09:12:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-problem-for-converting-raw-data-type-to-string/m-p/5477551#M1254127</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-14T09:12:31Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode problem for converting raw data type to string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-problem-for-converting-raw-data-type-to-string/m-p/5477552#M1254128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suman,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The RAW datatype cannot be converted to a string type,As RAW type consists of sequence of bytes, so only numerical values can be converted , but in case of char it is not like that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For any other datatype , u could have easily used MOVE statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Laveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 10:37:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-problem-for-converting-raw-data-type-to-string/m-p/5477552#M1254128</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-14T10:37:36Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode problem for converting raw data type to string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-problem-for-converting-raw-data-type-to-string/m-p/5477553#M1254129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Thanks for your response .&lt;/P&gt;&lt;P&gt;I did that but it is not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanking you,&lt;/P&gt;&lt;P&gt;Suman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 10:45:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-problem-for-converting-raw-data-type-to-string/m-p/5477553#M1254129</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-14T10:45:50Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode problem for converting raw data type to string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-problem-for-converting-raw-data-type-to-string/m-p/5477554#M1254130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi suman ,&lt;/P&gt;&lt;P&gt;           You need to follow the procedure given below &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) You need to load the class  as mentioned below.&lt;/P&gt;&lt;P&gt; syntax :    class CL_ABAP_CONTAINER_UTILITIES definition load.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) Then call the method read_container_c&lt;/P&gt;&lt;P&gt;J_2IEXTRCT-EXTRCTDATA and  I_RG23PART1-I_PART1_TYP are the 2 incompatable variables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax:&lt;/P&gt;&lt;P&gt; call method cl_abap_container_utilities=&amp;gt;read_container_c&lt;/P&gt;&lt;P&gt;  exporting  IM_CONTAINER           = J_2IEXTRCT-EXTRCTDATA&lt;/P&gt;&lt;P&gt;  importing  EX_VALUE               = I_RG23PART1-I_PART1_TYP&lt;/P&gt;&lt;P&gt;  exceptions ILLEGAL_PARAMETER_TYPE = 1&lt;/P&gt;&lt;P&gt;             others                 = 2.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 11:15:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-problem-for-converting-raw-data-type-to-string/m-p/5477554#M1254130</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-14T11:15:19Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode problem for converting raw data type to string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-problem-for-converting-raw-data-type-to-string/m-p/5477555#M1254131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suman,&lt;/P&gt;&lt;P&gt;           Could you please let us know how did u resolve this issue as even i face a similar issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank You,&lt;/P&gt;&lt;P&gt;Divaker&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Aug 2009 16:27:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-problem-for-converting-raw-data-type-to-string/m-p/5477555#M1254131</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-19T16:27:58Z</dc:date>
    </item>
  </channel>
</rss>

