<?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_alpha_input' in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit-alpha-input/m-p/1700338#M307087</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;For some data in SAP, there is an internal format and external format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you check MATERIAL number, if you display value it shoows in external format(that is removing leading zeros).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For converting internal to external/external to internal we use conversion_exit_alpha_input/conversion_exit_alpha_output&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg: &lt;/P&gt;&lt;P&gt;Assume before function call v_matnr = 1000.&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   = v_matnr&lt;/P&gt;&lt;P&gt;  importing&lt;/P&gt;&lt;P&gt;    outout  = v_matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after function call v_matnr = 000000000000001000&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 24 Oct 2006 10:32:37 GMT</pubDate>
    <dc:creator>venkata_ramisetti</dc:creator>
    <dc:date>2006-10-24T10:32:37Z</dc:date>
    <item>
      <title>'conversion_exit_alpha_input'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit-alpha-input/m-p/1700333#M307082</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;&lt;/P&gt;&lt;P&gt;    What is the function of 'conversion_exit_alpha_input'&lt;/P&gt;&lt;P&gt;FM? How it will be used?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;GovindarajanUmadevi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Oct 2006 10:26:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit-alpha-input/m-p/1700333#M307082</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-24T10:26:57Z</dc:date>
    </item>
    <item>
      <title>Re: 'conversion_exit_alpha_input'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit-alpha-input/m-p/1700334#M307083</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CONVERSION_EXIT_ALPHA_INPUT - converts any number into a string fill with zeroes-right&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example:&lt;/P&gt;&lt;P&gt;input = 123&lt;/P&gt;&lt;P&gt;output = 0000000000000...000000000000123&lt;/P&gt;&lt;P&gt;CONVERSION_EXIT_ALPHA_OUTPUT - converts any number with zeroes-right into a simple integer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example:&lt;/P&gt;&lt;P&gt;input = 00000000000123&lt;/P&gt;&lt;P&gt;output = 123&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Oct 2006 10:28:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit-alpha-input/m-p/1700334#M307083</guid>
      <dc:creator>roberto_tagliento</dc:creator>
      <dc:date>2006-10-24T10:28:48Z</dc:date>
    </item>
    <item>
      <title>Re: 'conversion_exit_alpha_input'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit-alpha-input/m-p/1700335#M307084</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Uma,&lt;/P&gt;&lt;P&gt;  It si well documented.&lt;/P&gt;&lt;P&gt;Check this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Conversion exit ALPHA, external-&amp;gt;internal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ALPHA conversion is used especially with account numbers. During conversion from the external to the internal format, the system checks to see if input in the INPUT field is purely numeric, that is, if this input consists only of numbers, possibly with spaces before and after them. If this is the case, then the number string is inserted right- justified in the display field OUTPUT and all spaces to the left of the value are filled with zeroes ('0'). If the input is not purely numeric, it is inserted in the display field from left to right and all extra spaces are filled with blanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(Input field and output field are both eight characters in length)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. '1234    ' --&amp;gt; '00001234'&lt;/P&gt;&lt;P&gt;2. 'ABCD    ' --&amp;gt; 'ABCD    '&lt;/P&gt;&lt;P&gt;3. ' 1234   ' --&amp;gt; '00001234'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Conversion from the internal to the external format (function module CONVERSION_EXIT_ALPHA_OUTPUT) is undertaken in exactly the opposite manner.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Usage:&lt;/P&gt;&lt;P&gt;&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  = v_input&lt;/P&gt;&lt;P&gt;           importing&lt;/P&gt;&lt;P&gt;                output = v_output&lt;/P&gt;&lt;P&gt;           exceptions&lt;/P&gt;&lt;P&gt;                others = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;ravi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Ravi Kanth Talagana&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Oct 2006 10:29:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit-alpha-input/m-p/1700335#M307084</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-24T10:29:17Z</dc:date>
    </item>
    <item>
      <title>Re: 'conversion_exit_alpha_input'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit-alpha-input/m-p/1700336#M307085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is used for field conversion to allow user to enter a number without preceding 0. This function will put 0 at the begining of the field to set in numeric format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fred&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Oct 2006 10:29:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit-alpha-input/m-p/1700336#M307085</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2006-10-24T10:29:52Z</dc:date>
    </item>
    <item>
      <title>Re: 'conversion_exit_alpha_input'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit-alpha-input/m-p/1700337#M307086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is an conversion FM. Used mainly when dealing with select queries. &lt;/P&gt;&lt;P&gt;Because what appears on screen is not the way it is stored in databases. There will be a conversion routine.&lt;/P&gt;&lt;P&gt;So if we are reading directly from tables, we have to use the conversion exits.&lt;/P&gt;&lt;P&gt;Generally these are provided with the data element defintion you are dealing with.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Sandeep Josyula&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Mark Helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Oct 2006 10:29:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit-alpha-input/m-p/1700337#M307086</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-24T10:29:59Z</dc:date>
    </item>
    <item>
      <title>Re: 'conversion_exit_alpha_input'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit-alpha-input/m-p/1700338#M307087</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;For some data in SAP, there is an internal format and external format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you check MATERIAL number, if you display value it shoows in external format(that is removing leading zeros).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For converting internal to external/external to internal we use conversion_exit_alpha_input/conversion_exit_alpha_output&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg: &lt;/P&gt;&lt;P&gt;Assume before function call v_matnr = 1000.&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   = v_matnr&lt;/P&gt;&lt;P&gt;  importing&lt;/P&gt;&lt;P&gt;    outout  = v_matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after function call v_matnr = 000000000000001000&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Oct 2006 10:32:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit-alpha-input/m-p/1700338#M307087</guid>
      <dc:creator>venkata_ramisetti</dc:creator>
      <dc:date>2006-10-24T10:32:37Z</dc:date>
    </item>
    <item>
      <title>Re: 'conversion_exit_alpha_input'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit-alpha-input/m-p/1700339#M307088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Govindarajan Umadevi &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By the way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;help yourself.&lt;/P&gt;&lt;P&gt;use trn 'se37'. or doubel-click on this fm.&lt;/P&gt;&lt;P&gt;you can find a document.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FU CONVERSION_EXIT_ALPHA_INPUT&lt;/P&gt;&lt;P&gt;____________________________________________________&lt;/P&gt;&lt;P&gt;Short Text&lt;/P&gt;&lt;P&gt;Conversion exit ALPHA, external-&amp;gt;internal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ALPHA conversion is used especially with account numbers. During conversion from the external to the internal format, the system checks to see if input in the INPUT field is purely numeric, that is, if this input consists only of numbers, possibly with spaces before and after them. If this is the case, then the number string is inserted right- justified in the display field OUTPUT and all spaces to the left of the value are filled with zeroes ('0'). If the input is not purely numeric, it is inserted in the display field from left to right and all extra spaces are filled with blanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(Input field and output field are both eight characters in length)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. '1234    ' --&amp;gt; '00001234'&lt;/P&gt;&lt;P&gt;2. 'ABCD    ' --&amp;gt; 'ABCD    '&lt;/P&gt;&lt;P&gt;3. ' 1234   ' --&amp;gt; '00001234'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Conversion from the internal to the external format (function module CONVERSION_EXIT_ALPHA_OUTPUT) is undertaken in exactly the opposite manner.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameters&lt;/P&gt;&lt;P&gt;INPUT&lt;/P&gt;&lt;P&gt;OUTPUT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Oct 2006 10:33:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit-alpha-input/m-p/1700339#M307088</guid>
      <dc:creator>roberto_tagliento</dc:creator>
      <dc:date>2006-10-24T10:33:56Z</dc:date>
    </item>
    <item>
      <title>Re: 'conversion_exit_alpha_input'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit-alpha-input/m-p/1700340#M307089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Here the Docu of the FM:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FU CONVERSION_EXIT_ALPHA_INPUT&lt;/P&gt;&lt;P&gt;____________________________________________________&lt;/P&gt;&lt;P&gt;Short text&lt;/P&gt;&lt;P&gt;Conversion exit ALPHA, external-&amp;gt;internal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ALPHA conversion is used especially with account numbers. During conversion from the external to the internal format, the system checks to see if input in the INPUT field is purely numeric, that is, if this input consists only of numbers, possibly with spaces before and after them. If this is the case, then the number string is inserted right- justified in the display field OUTPUT and all spaces to the left of the value are filled with zeroes ('0'). If the input is not purely numeric, it is inserted in the display field from left to right and all extra spaces are filled with blanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(Input field and output field are both eight characters in length)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. '1234 ' --&amp;gt; '00001234'&lt;/P&gt;&lt;P&gt;2. 'ABCD ' --&amp;gt; 'ABCD '&lt;/P&gt;&lt;P&gt;3. ' 1234 ' --&amp;gt; '00001234'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Conversion from the internal to the external format (function module CONVERSION_EXIT_ALPHA_OUTPUT) is undertaken in exactly the opposite manner.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameter&lt;/P&gt;&lt;P&gt;INPUT&lt;/P&gt;&lt;P&gt;OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Exceptions&lt;/P&gt;&lt;P&gt;Function group&lt;/P&gt;&lt;P&gt;ALFA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;short example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;REPORT  ZGRO_TEST.                   .&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;DATA: c1(18) value '123'.&lt;/P&gt;&lt;P&gt;DATA: c2(18).&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;write: / c1.&lt;/P&gt;&lt;P&gt;*&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         = C1&lt;/P&gt;&lt;P&gt;  IMPORTING&lt;/P&gt;&lt;P&gt;    OUTPUT        = C2.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;write: / c2.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards, Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Oct 2006 10:37:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit-alpha-input/m-p/1700340#M307089</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-24T10:37:26Z</dc:date>
    </item>
    <item>
      <title>Re: 'conversion_exit_alpha_input'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit-alpha-input/m-p/1700341#M307090</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;We will upload data from ascii files to BW system.&lt;/P&gt;&lt;P&gt;In the txt files we have amount field .Amount field length is 17 in the BW system.To upload data in the ascii format we have to use fixed lenght data in the txt files.But in the txt file amount field is not fixed,stable ,also containd decimal places, for example 4500,58. &lt;/P&gt;&lt;P&gt;How can we fix its size to 17. &lt;/P&gt;&lt;P&gt;We know there is a function CONVERSION_EXIT_ALPHA_INPUT but we can not be able to use it for amount key figure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone solve such a problem like this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Nov 2006 09:38:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit-alpha-input/m-p/1700341#M307090</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-03T09:38:31Z</dc:date>
    </item>
    <item>
      <title>Re: 'conversion_exit_alpha_input'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit-alpha-input/m-p/1700342#M307091</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;USE OF CONVERSION_EXIT_ALPHA_INPUT IS TO CONVERT EXTERNAL FORMAT OF FIELD VALUE TO INTERNAL FORMAT i.e. HOW IT STORES IN DATABASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EX : WHEN WE GENERATE ON REPORT ON SALES ORDERS,&lt;/P&gt;&lt;P&gt;SYSTEM DISPLAYS 'SO' NUMBERS WITH SUPPRESSING ZEROS.&lt;/P&gt;&lt;P&gt;LIKE 2345 OR 45632 ETC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BUT ACTUALLY 'SO' NUMBER LENGTH IS 10 CHARACTER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TO CONVERT 2345 TO 0000002345 WE USE CONVERSION_EXIT_ALPHA_INPUT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Nov 2006 10:18:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit-alpha-input/m-p/1700342#M307091</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-03T10:18:43Z</dc:date>
    </item>
  </channel>
</rss>

