<?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: Conversion exit.. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit/m-p/2708733#M627712</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jaif,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; You can use CONVERSION_EXIT_ALHA_INPUT.&lt;/P&gt;&lt;P&gt; In the export part send your variable &amp;amp; the  import part you'll get the desired output. Declare the import variable of the length that you want as output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward all helpful answers.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Siddhesh sanghvi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 19 Aug 2007 16:56:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-19T16:56:11Z</dc:date>
    <item>
      <title>Conversion exit..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit/m-p/2708732#M627711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guyz..!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In a report of i need to modify .. one of the data output type..&lt;/P&gt;&lt;P&gt;right now its (say GL acc HKONT) coming 589040 ..but it&lt;/P&gt;&lt;P&gt;should come out as 0000589040 ..with leading zeros..!&lt;/P&gt;&lt;P&gt;how do i do it with conv exits...?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Aug 2007 16:46:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit/m-p/2708732#M627711</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-19T16:46:39Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion exit..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit/m-p/2708733#M627712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jaif,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; You can use CONVERSION_EXIT_ALHA_INPUT.&lt;/P&gt;&lt;P&gt; In the export part send your variable &amp;amp; the  import part you'll get the desired output. Declare the import variable of the length that you want as output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward all helpful answers.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Siddhesh sanghvi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Aug 2007 16:56:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit/m-p/2708733#M627712</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-19T16:56:11Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion exit..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit/m-p/2708734#M627713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jaif,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use CONVERSION_EXIT_ALPHA_INPUT function module to convert from external to internal format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: V_HKONT(10).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT ITAB.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    INPUT =  ITAB-HKONT&lt;/P&gt;&lt;P&gt;  IMPORTING&lt;/P&gt;&lt;P&gt;    OUTPUT = V_HKONT.&lt;/P&gt;&lt;P&gt;WRITE:/ V_HKONT.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Otherwise, Simply declare a variable of type N with 10 length.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA V_HKONT(10) TYPE N.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT ITAB.&lt;/P&gt;&lt;P&gt;V_HKONT = ITAB-HKONT.&lt;/P&gt;&lt;P&gt;WRITE:/ V_HKONT.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Aug 2007 17:00:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit/m-p/2708734#M627713</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-19T17:00:37Z</dc:date>
    </item>
  </channel>
</rss>

