<?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: hexadecimal in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hexadecimal/m-p/1544138#M247667</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In your example the hex value of the string was 12 and hence the output as 12. Do you mean that you have a numeric value which you wish to convert into hex and transfer it to dataset ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lnum = '12'.&lt;/P&gt;&lt;P&gt;lhex = lnum.&lt;/P&gt;&lt;P&gt;lstr = lhex.&lt;/P&gt;&lt;P&gt;transfer lstr to dsn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anurag&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 Aug 2006 09:49:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-16T09:49:11Z</dc:date>
    <item>
      <title>hexadecimal</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hexadecimal/m-p/1544132#M247661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Group,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to write hexadecimal variable in the file on application server.&lt;/P&gt;&lt;P&gt;With Transfer statement its giving dump.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Aug 2006 09:18:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hexadecimal/m-p/1544132#M247661</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-16T09:18:19Z</dc:date>
    </item>
    <item>
      <title>Re: hexadecimal</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hexadecimal/m-p/1544133#M247662</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think write it to a character field and than transfer..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Aug 2006 09:26:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hexadecimal/m-p/1544133#M247662</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-16T09:26:41Z</dc:date>
    </item>
    <item>
      <title>Re: hexadecimal</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hexadecimal/m-p/1544134#M247663</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I transfer to string and write in to the file using transfer still its not writing .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data v_str type string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types : begin of ty_sep,&lt;/P&gt;&lt;P&gt;        str(1) type c,&lt;/P&gt;&lt;P&gt;        vsep(2) type x,&lt;/P&gt;&lt;P&gt;        end of ty_sep.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data wa_sep type ty_sep.&lt;/P&gt;&lt;P&gt;wa_sep-str = " ".&lt;/P&gt;&lt;P&gt;wa_sep-vsep = '12'.&lt;/P&gt;&lt;P&gt;v_str = wa_sep-vsep.&lt;/P&gt;&lt;P&gt;transfer v_sep to fname.&lt;/P&gt;&lt;P&gt;its writting as 1200 on application server instead of control L.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Aug 2006 09:31:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hexadecimal/m-p/1544134#M247663</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-16T09:31:04Z</dc:date>
    </item>
    <item>
      <title>Re: hexadecimal</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hexadecimal/m-p/1544135#M247664</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;transfer v_str instead of v_sep and check the value in the output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, note you dont need it to be string but of type Char with length twice that of the hex value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anurag&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Aug 2006 09:36:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hexadecimal/m-p/1544135#M247664</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-16T09:36:33Z</dc:date>
    </item>
    <item>
      <title>Re: hexadecimal</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hexadecimal/m-p/1544136#M247665</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data : v_hex type x value '09'. "horizantal tab&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE V_FIELD1&lt;/P&gt;&lt;P&gt;            V_FIELD2&lt;/P&gt;&lt;P&gt;            V_FIELD3&lt;/P&gt;&lt;P&gt;            INTO V_STRING SEPARATED BY V_HEX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRANSFER V_STRING TO &amp;lt;FILENAME&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will works fine. in AL11,you can see '#' between the feilds.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;srikanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Aug 2006 09:39:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hexadecimal/m-p/1544136#M247665</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-16T09:39:58Z</dc:date>
    </item>
    <item>
      <title>Re: hexadecimal</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hexadecimal/m-p/1544137#M247666</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry I trnasfered v_str only,I tried to transfer&lt;/P&gt;&lt;P&gt;the character value but its writting 12 on application server instead of writting hexadecimal equivalent.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Aug 2006 09:43:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hexadecimal/m-p/1544137#M247666</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-16T09:43:47Z</dc:date>
    </item>
    <item>
      <title>Re: hexadecimal</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hexadecimal/m-p/1544138#M247667</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In your example the hex value of the string was 12 and hence the output as 12. Do you mean that you have a numeric value which you wish to convert into hex and transfer it to dataset ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lnum = '12'.&lt;/P&gt;&lt;P&gt;lhex = lnum.&lt;/P&gt;&lt;P&gt;lstr = lhex.&lt;/P&gt;&lt;P&gt;transfer lstr to dsn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anurag&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Aug 2006 09:49:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hexadecimal/m-p/1544138#M247667</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-16T09:49:11Z</dc:date>
    </item>
    <item>
      <title>Re: hexadecimal</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hexadecimal/m-p/1544139#M247668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it will be displayed in AL11 as #(any hexadecimal value) i guess.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;have you defined that variable as X or not ??&lt;/P&gt;&lt;P&gt;like&lt;/P&gt;&lt;P&gt;data : v_hex &amp;lt;b&amp;gt;type x&amp;lt;/b&amp;gt; value '09'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Aug 2006 09:58:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hexadecimal/m-p/1544139#M247668</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-16T09:58:24Z</dc:date>
    </item>
  </channel>
</rss>

