<?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: help me.... in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-me/m-p/3356321#M805297</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HII&lt;/P&gt;&lt;P&gt;Edited by: Anil Nautiyal on Jun 19, 2008 10:53 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Jun 2008 07:38:27 GMT</pubDate>
    <dc:creator>former_member438956</dc:creator>
    <dc:date>2008-06-19T07:38:27Z</dc:date>
    <item>
      <title>help me....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-me/m-p/3356316#M805292</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can anyone tell me what the function module 'CONVERSION_EXIT_ALPHA_INPUT' do with an example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Jan 2008 05:12:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-me/m-p/3356316#M805292</guid>
      <dc:creator>former_member438956</dc:creator>
      <dc:date>2008-01-25T05:12:59Z</dc:date>
    </item>
    <item>
      <title>Re: help me....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-me/m-p/3356317#M805293</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, 25 Jan 2008 05:15:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-me/m-p/3356317#M805293</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-25T05:15:04Z</dc:date>
    </item>
    <item>
      <title>Re: help me....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-me/m-p/3356318#M805294</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;Hope it will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Reward if help.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is Conversion Programs? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Conversion takes place when converting the contents of a screen field from display format to SAP-internal format and vice versa and when outputting with the ABAP statement WRITE, depending on the data type of the field. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If standard conversion is not suitable, it can be overridden by specifying a conversion routine in the underlying domain. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A conversion routine is identified by its five-place name and is stored as a group of two function modules. &lt;/P&gt;&lt;P&gt;The function modules have a fixed naming convention. &lt;/P&gt;&lt;P&gt;The following function modules are assigned to conversion routine xxxxx: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONVERSION_EXIT_xxxxx_INPUT &lt;/P&gt;&lt;P&gt;CONVERSION_EXIT_xxxxx_OUTPUT &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The INPUT module performs the conversion from display format to internal format. The OUTPUT module performs &lt;/P&gt;&lt;P&gt;the conversion from internal format to display format. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If a screen field refers to a domain with a conversion routine, this conversion routine is executed automatically each time an entry is made in this screen field or when values are displayed with this screen field. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg. refer to the vbak table. &lt;/P&gt;&lt;P&gt;Go to SE11 -&amp;gt; VBAK -&amp;gt; Display mode -&amp;gt; double click on the data element VBELN_VA &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Double click on the domain VBELN &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can find the conversion routine in the Output characteristics. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the FM Documentation.&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;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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Jan 2008 05:17:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-me/m-p/3356318#M805294</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-25T05:17:47Z</dc:date>
    </item>
    <item>
      <title>Re: help me....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-me/m-p/3356319#M805295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks ramesh and deepankar and i have rewarded the same for the answer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Jan 2008 05:21:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-me/m-p/3356319#M805295</guid>
      <dc:creator>former_member438956</dc:creator>
      <dc:date>2008-01-25T05:21:44Z</dc:date>
    </item>
    <item>
      <title>Re: help me....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-me/m-p/3356320#M805296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;conversion exits are to change the format of the input as per the database format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'CONVERSION_EXIT_ALPHA_INPUT' is used to change the format of input text as per the text displayed in database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg. if u enter material number as '1234' but actually in database its 10 digits so this function module will change it to 10 digits by appending 6 zeros before it. i.e. '0000001234' .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this is enough for ur understanding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pl reward if its helpful to u.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Jan 2008 06:24:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-me/m-p/3356320#M805296</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-25T06:24:20Z</dc:date>
    </item>
    <item>
      <title>Re: help me....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-me/m-p/3356321#M805297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HII&lt;/P&gt;&lt;P&gt;Edited by: Anil Nautiyal on Jun 19, 2008 10:53 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2008 07:38:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-me/m-p/3356321#M805297</guid>
      <dc:creator>former_member438956</dc:creator>
      <dc:date>2008-06-19T07:38:27Z</dc:date>
    </item>
    <item>
      <title>Re: help me....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-me/m-p/3356322#M805298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DATA: LV2(3)   TYPE c,&lt;/P&gt;&lt;P&gt;          LV3(2)  TYPE c,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR: LV2,&lt;/P&gt;&lt;P&gt;           LV3.&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  = T_DRAW-DOKTL1   " input is zero&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        OUTPUT = LV2.                      " output is double zero&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  = T_DRAW-DOKVR1           "input is zero&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        OUTPUT = LV3.                              " output is triple zero&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    SELECT SINGLE * FROM DRAW into DRAW WHERE   DOKNR = T_DRAW-DOKNR1&lt;/P&gt;&lt;P&gt;                                         AND    DOKAR = T_DRAW-DOKAR1&lt;/P&gt;&lt;P&gt;                                         AND    DOKTL = LV2&lt;/P&gt;&lt;P&gt;                                         AND    DOKVR = LV3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in above select stmt &lt;/P&gt;&lt;P&gt;i want pass 000 for DOKTL&lt;/P&gt;&lt;P&gt;i want pass 00 for DOKVR Througt excel sheet.&lt;/P&gt;&lt;P&gt;but we can not enter 000 , 00 in excel ssheet.&lt;/P&gt;&lt;P&gt;if we enter 000 it will take 0 only,&lt;/P&gt;&lt;P&gt;but in our program we have to pass 000 to DOKTL.&lt;/P&gt;&lt;P&gt;so we convert 0 to 000&lt;/P&gt;&lt;P&gt;that time we have to use 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;pls give points if it usefull.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2008 08:36:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-me/m-p/3356322#M805298</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-19T08:36:47Z</dc:date>
    </item>
  </channel>
</rss>

