<?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: regarding an abap statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-an-abap-statement/m-p/2464210#M553174</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;When a1 = Z:   ascii value of Z is 90. 90 converted to Hexadecimal is 5A. So, you are seeing 90 in rn and 5A in a1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope I could make it clear.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 03 Jul 2007 08:09:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-03T08:09:13Z</dc:date>
    <item>
      <title>regarding an abap statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-an-abap-statement/m-p/2464208#M553172</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  field-symbols : &amp;lt;n&amp;gt; type x,&lt;/P&gt;&lt;P&gt;                  &amp;lt;pn&amp;gt; type c,&lt;/P&gt;&lt;P&gt;                  &amp;lt;dn1&amp;gt; type x.&lt;/P&gt;&lt;P&gt;  data: rn type i,&lt;/P&gt;&lt;P&gt;        rn1(4) type c,&lt;/P&gt;&lt;P&gt;        n type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  describe field P_I_UPLOAD type _c.&lt;/P&gt;&lt;P&gt;  if _c eq 'u'.&lt;/P&gt;&lt;P&gt;    &lt;U&gt;l = strlen( P&lt;/U&gt;I_UPLOAD ).&lt;/P&gt;&lt;P&gt;    _i = _l div 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    do _l times.&lt;/P&gt;&lt;P&gt;      a = sy-index - 1.&lt;/P&gt;&lt;P&gt;      a1 = P_I_UPLOAD+a(1).&lt;/P&gt;&lt;P&gt;      assign a1 to &amp;lt;n&amp;gt; casting.&lt;/P&gt;&lt;P&gt;      move &amp;lt;n&amp;gt; to rn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and so on&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what is confusing is the last statement move &amp;lt;n&amp;gt; to rn&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can anyone please tell me whats the effect of this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the value in a1 = Z.&lt;/P&gt;&lt;P&gt;then&lt;/P&gt;&lt;P&gt; assign a1 to &amp;lt;n&amp;gt; casting.&lt;/P&gt;&lt;P&gt;this statement puts the value in &amp;lt;n&amp;gt;  is 5A&lt;/P&gt;&lt;P&gt;and then&lt;/P&gt;&lt;P&gt;move &amp;lt;n&amp;gt; to rn.&lt;/P&gt;&lt;P&gt;puts he the value in rn =  90&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can anyone tell me why is this happening?&lt;/P&gt;&lt;P&gt; assign a1 to &amp;lt;n&amp;gt; casting.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jul 2007 07:15:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-an-abap-statement/m-p/2464208#M553172</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-03T07:15:27Z</dc:date>
    </item>
    <item>
      <title>Re: regarding an abap statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-an-abap-statement/m-p/2464209#M553173</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ashish,&lt;/P&gt;&lt;P&gt;  See it converting value of Hexadecimal to type i.&lt;/P&gt;&lt;P&gt;If you check the value of hex then it comes like,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dec Hx Oct Char Dec Hx Oct Char Dec Hx Oct Char Dec Hx Oct Char &lt;/P&gt;&lt;P&gt;26 1A 032 SUB (substitute) 58 3A 072 :  &amp;lt;b&amp;gt;90 5A&amp;lt;/b&amp;gt; 132 Z 122 7A 172 z &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jul 2007 07:58:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-an-abap-statement/m-p/2464209#M553173</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-03T07:58:57Z</dc:date>
    </item>
    <item>
      <title>Re: regarding an abap statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-an-abap-statement/m-p/2464210#M553174</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;When a1 = Z:   ascii value of Z is 90. 90 converted to Hexadecimal is 5A. So, you are seeing 90 in rn and 5A in a1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope I could make it clear.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jul 2007 08:09:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-an-abap-statement/m-p/2464210#M553174</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-03T08:09:13Z</dc:date>
    </item>
  </channel>
</rss>

