<?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: report in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/3782294#M910100</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;do this way ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : v_char(10) value '1000',&lt;/P&gt;&lt;P&gt;     v_numc(10) type n.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; v_numc = v_char.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;write : v_char, v_numc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are looking for some FM then &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;USE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CHAR_NUMC_CONVERSION'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;INPUT = 0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORTING &lt;/P&gt;&lt;P&gt;NUMCSTR =  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or u can use this piece of code also.&lt;/P&gt;&lt;P&gt;DATA: lv_chr(4) type c,&lt;/P&gt;&lt;P&gt;lv_num type p.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'MOVE_CHAR_TO_NUM'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;CHR = lv_chr&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;NUM = lv_num&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;CONVT_NO_NUMBER = 1&lt;/P&gt;&lt;P&gt;CONVT_OVERFLOW = 2&lt;/P&gt;&lt;P&gt;OTHERS = 3.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO &lt;/P&gt;&lt;P&gt;WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4. &lt;/P&gt;&lt;P&gt;ENDIF.[/code]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or USE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONVERT_STRING_TO_INTEGER&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or USE THESE FMs&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE_CHAR_TO_NUM&lt;/P&gt;&lt;P&gt;C14W_CHAR_NUMBER_CONVERSION&lt;/P&gt;&lt;P&gt;CHAR_NUMC_CONVERSION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;plz reward me if useful...&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 05 May 2008 15:24:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-05T15:24:42Z</dc:date>
    <item>
      <title>report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/3782292#M910098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;report for converting a  character into numeric.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 15:19:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/3782292#M910098</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-05T15:19:37Z</dc:date>
    </item>
    <item>
      <title>Re: report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/3782293#M910099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;there must be a FM in transaction SE37. Search for * CONVERT&lt;STRONG&gt;CHAR&lt;/STRONG&gt;NUM* or something like it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 15:21:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/3782293#M910099</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2008-05-05T15:21:31Z</dc:date>
    </item>
    <item>
      <title>Re: report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/3782294#M910100</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;do this way ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : v_char(10) value '1000',&lt;/P&gt;&lt;P&gt;     v_numc(10) type n.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; v_numc = v_char.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;write : v_char, v_numc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are looking for some FM then &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;USE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CHAR_NUMC_CONVERSION'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;INPUT = 0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORTING &lt;/P&gt;&lt;P&gt;NUMCSTR =  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or u can use this piece of code also.&lt;/P&gt;&lt;P&gt;DATA: lv_chr(4) type c,&lt;/P&gt;&lt;P&gt;lv_num type p.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'MOVE_CHAR_TO_NUM'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;CHR = lv_chr&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;NUM = lv_num&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;CONVT_NO_NUMBER = 1&lt;/P&gt;&lt;P&gt;CONVT_OVERFLOW = 2&lt;/P&gt;&lt;P&gt;OTHERS = 3.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO &lt;/P&gt;&lt;P&gt;WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4. &lt;/P&gt;&lt;P&gt;ENDIF.[/code]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or USE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONVERT_STRING_TO_INTEGER&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or USE THESE FMs&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE_CHAR_TO_NUM&lt;/P&gt;&lt;P&gt;C14W_CHAR_NUMBER_CONVERSION&lt;/P&gt;&lt;P&gt;CHAR_NUMC_CONVERSION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;plz reward me if useful...&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 15:24:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/3782294#M910100</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-05T15:24:42Z</dc:date>
    </item>
    <item>
      <title>Re: report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/3782295#M910101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;Declare a numeric field and pass the character value. make sure u dont have any special characters.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 May 2008 15:35:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/3782295#M910101</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-05T15:35:48Z</dc:date>
    </item>
  </channel>
</rss>

