<?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: ASSIC ERROR IN ECC6 version in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/assic-error-in-ecc6-version/m-p/3107386#M737703</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 this, it is working for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Report ZTEST. 

*From A to 65 

data : char value 'A'. 
field-symbols : &amp;lt;fs&amp;gt; type x. 
data : int type i. 
assign char to &amp;lt;fs&amp;gt; casting. 
move &amp;lt;fs&amp;gt; to int. 
write int. 

*From 66 to B 

data : int1 type i value 66. 
data : x type x. 
field-symbols : &amp;lt;fs1&amp;gt; type c. 
move int1 to x. 
assign x to &amp;lt;fs1&amp;gt; casting type c. 
move &amp;lt;fs1&amp;gt; to char. 
write char.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 02 Dec 2007 10:45:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-02T10:45:09Z</dc:date>
    <item>
      <title>ASSIC ERROR IN ECC6 version</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/assic-error-in-ecc6-version/m-p/3107383#M737700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi~all&lt;/P&gt;&lt;P&gt;    i write some code for conver ASSIC to char in ecc6,but there is some error about it,following is my code ,please give me some cue to solve it ,thank you very much !&lt;/P&gt;&lt;P&gt;data : i type i value 65.&lt;/P&gt;&lt;P&gt;data : x type x.&lt;/P&gt;&lt;P&gt;data:c type c.&lt;/P&gt;&lt;P&gt;field-symbols : &amp;lt;fc&amp;gt; type c.&lt;/P&gt;&lt;P&gt;move i to x.&lt;/P&gt;&lt;P&gt;assign x to &amp;lt;fc&amp;gt; casting type c.&lt;/P&gt;&lt;P&gt;move &amp;lt;fc&amp;gt; to c.&lt;/P&gt;&lt;P&gt;write c.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Dec 2007 13:36:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/assic-error-in-ecc6-version/m-p/3107383#M737700</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-01T13:36:36Z</dc:date>
    </item>
    <item>
      <title>Re: ASSIC ERROR IN ECC6 version</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/assic-error-in-ecc6-version/m-p/3107384#M737701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi~all&lt;/P&gt;&lt;P&gt;   The question is not still solved ,i am continue try it,thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 02 Dec 2007 09:39:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/assic-error-in-ecc6-version/m-p/3107384#M737701</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-02T09:39:19Z</dc:date>
    </item>
    <item>
      <title>Re: ASSIC ERROR IN ECC6 version</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/assic-error-in-ecc6-version/m-p/3107385#M737702</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;What is the error?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 02 Dec 2007 09:45:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/assic-error-in-ecc6-version/m-p/3107385#M737702</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-02T09:45:30Z</dc:date>
    </item>
    <item>
      <title>Re: ASSIC ERROR IN ECC6 version</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/assic-error-in-ecc6-version/m-p/3107386#M737703</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 this, it is working for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Report ZTEST. 

*From A to 65 

data : char value 'A'. 
field-symbols : &amp;lt;fs&amp;gt; type x. 
data : int type i. 
assign char to &amp;lt;fs&amp;gt; casting. 
move &amp;lt;fs&amp;gt; to int. 
write int. 

*From 66 to B 

data : int1 type i value 66. 
data : x type x. 
field-symbols : &amp;lt;fs1&amp;gt; type c. 
move int1 to x. 
assign x to &amp;lt;fs1&amp;gt; casting type c. 
move &amp;lt;fs1&amp;gt; to char. 
write char.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 02 Dec 2007 10:45:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/assic-error-in-ecc6-version/m-p/3107386#M737703</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-02T10:45:09Z</dc:date>
    </item>
    <item>
      <title>Re: ASSIC ERROR IN ECC6 version</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/assic-error-in-ecc6-version/m-p/3107387#M737704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi~all&lt;/P&gt;&lt;P&gt;    thank you your demo first.&lt;/P&gt;&lt;P&gt;   the first example is not problem here &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but  second exmple take place  some error message ,the following is error describe:&lt;/P&gt;&lt;P&gt;the length of "X" in bytes must be a multiple of the size a unicode &lt;/P&gt;&lt;P&gt;character(regardless of the of the unicode character)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Dec 2007 12:44:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/assic-error-in-ecc6-version/m-p/3107387#M737704</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-06T12:44:52Z</dc:date>
    </item>
  </channel>
</rss>

