<?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/3688051#M888076</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Certain fields values in certain Tables were maintained in such a way that when you see the data in table format it appears with one value and when display that record it shows another value:&lt;/P&gt;&lt;P&gt;for example PARVW (partner function) field in KNVP or VBPA table has 2 values&lt;/P&gt;&lt;P&gt;'SP' outsideand in the table it is displayed as 'WE'.&lt;/P&gt;&lt;P&gt;similalry the field ATINN in the table AUSP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when you store the value of KUNNR in table it is stored as 0000012435.&lt;/P&gt;&lt;P&gt;but when we use we enter just 12435.&lt;/P&gt;&lt;P&gt;so to convert these fields from one value to other (which are acceptable)&lt;/P&gt;&lt;P&gt;we use this CONVERSION_EXIT_ALPHA_INPUT/OUTPUT.&lt;/P&gt;&lt;P&gt;when we want 18 char material value for a value of 8 char we use this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 11 Apr 2008 07:49:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-11T07:49:58Z</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/3688048#M888073</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 we use function module CONVERSION_EXIT_ALPHA_INPUT?&lt;/P&gt;&lt;P&gt;what does this function module do?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Apr 2008 07:28:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit-alpha-input/m-p/3688048#M888073</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-11T07:28:54Z</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/3688049#M888074</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;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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Apr 2008 07:31:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit-alpha-input/m-p/3688049#M888074</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-11T07:31:49Z</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/3688050#M888075</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; 1.Just this function module add the leading zeroes to the input value.&lt;/P&gt;&lt;P&gt;like:input of this function module is 45600&lt;/P&gt;&lt;P&gt;                         output is 00045600.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Regards,&lt;/P&gt;&lt;P&gt;If helpful reward with points(Don't forget).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Apr 2008 07:39:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit-alpha-input/m-p/3688050#M888075</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-11T07:39: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/3688051#M888076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Certain fields values in certain Tables were maintained in such a way that when you see the data in table format it appears with one value and when display that record it shows another value:&lt;/P&gt;&lt;P&gt;for example PARVW (partner function) field in KNVP or VBPA table has 2 values&lt;/P&gt;&lt;P&gt;'SP' outsideand in the table it is displayed as 'WE'.&lt;/P&gt;&lt;P&gt;similalry the field ATINN in the table AUSP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when you store the value of KUNNR in table it is stored as 0000012435.&lt;/P&gt;&lt;P&gt;but when we use we enter just 12435.&lt;/P&gt;&lt;P&gt;so to convert these fields from one value to other (which are acceptable)&lt;/P&gt;&lt;P&gt;we use this CONVERSION_EXIT_ALPHA_INPUT/OUTPUT.&lt;/P&gt;&lt;P&gt;when we want 18 char material value for a value of 8 char we use this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Apr 2008 07:49:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit-alpha-input/m-p/3688051#M888076</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-11T07:49:58Z</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/3688052#M888077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Aug 2011 15:27:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit-alpha-input/m-p/3688052#M888077</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-08-09T15:27:56Z</dc:date>
    </item>
  </channel>
</rss>

