<?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: function module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/5310953#M1224477</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;PRE&gt;&lt;CODE&gt;
CALL 'CONVERSION_EXIT_ALPHA_INPUT'  ID 'INPUT'  FIELD INPUT
                                      ID 'OUTPUT' FIELD OUTPUT.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;This FM calls itself&lt;/STRONG&gt; and According to the Parameter passed to the Input and Output it adds '0' before the input parameter upto its length.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose input field has value '12'.&lt;/P&gt;&lt;P&gt;And it s length is 8.&lt;/P&gt;&lt;P&gt;So in output it will diaply as '00000012'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sandipan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Mar 2009 10:50:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-03-02T10:50:09Z</dc:date>
    <item>
      <title>function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/5310950#M1224474</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;i saw CONVERSION_EXIT_ALPHA_INPUT . in that fm i found source code.&lt;/P&gt;&lt;P&gt; call 'CONVERSION_EXIT_ALPHA_INPUT'  id 'INPUT'  field input&lt;/P&gt;&lt;P&gt;                                      id 'OUTPUT' field output.&lt;/P&gt;&lt;P&gt; but where exactly write the source code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2009 10:38:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/5310950#M1224474</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-02T10:38:27Z</dc:date>
    </item>
    <item>
      <title>Re: function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/5310951#M1224475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Anitha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Conversion exits basically utilise SAP Kernel calls to fetch the values. The function exists in the file &lt;STRONG&gt;sapactab.h&lt;/STRONG&gt; which is basically a C source code file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can get the additional input by doing an F1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope i am clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2009 10:45:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/5310951#M1224475</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2009-03-02T10:45:44Z</dc:date>
    </item>
    <item>
      <title>Re: function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/5310952#M1224476</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello ,&lt;/P&gt;&lt;P&gt;U r question is not clear.&lt;/P&gt;&lt;P&gt;&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_val&lt;/P&gt;&lt;P&gt;          importing&lt;/P&gt;&lt;P&gt;            output = v_val.&lt;/P&gt;&lt;P&gt;like this u need call a FM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank u&lt;/P&gt;&lt;P&gt;santhosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2009 10:48:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/5310952#M1224476</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-02T10:48:12Z</dc:date>
    </item>
    <item>
      <title>Re: function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/5310953#M1224477</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;PRE&gt;&lt;CODE&gt;
CALL 'CONVERSION_EXIT_ALPHA_INPUT'  ID 'INPUT'  FIELD INPUT
                                      ID 'OUTPUT' FIELD OUTPUT.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;This FM calls itself&lt;/STRONG&gt; and According to the Parameter passed to the Input and Output it adds '0' before the input parameter upto its length.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose input field has value '12'.&lt;/P&gt;&lt;P&gt;And it s length is 8.&lt;/P&gt;&lt;P&gt;So in output it will diaply as '00000012'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sandipan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2009 10:50:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/5310953#M1224477</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-02T10:50:09Z</dc:date>
    </item>
    <item>
      <title>Re: function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/5310954#M1224478</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anitha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have not understood your query propely. So, I may not be able to address your query accurately. About the FM CONVERSION_EXIT_ALPHA_INPUT I can say, it is normally used for formatting value before making updation/searching in databse tables. If you check in databse tables, you will often find that Data element size is often greater than the actual value being inserted. In such cases, entered value is often prefixed with ZEROS (0). This conversion is taken care by this FM. So as a developer, this FM is useful in searching and/or retrieving record from databse table. So, before searching the actual record you can format your search criteria as per actual database table entry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it will help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sambaran Ray.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2009 10:50:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/5310954#M1224478</guid>
      <dc:creator>former_member755502</dc:creator>
      <dc:date>2009-03-02T10:50:23Z</dc:date>
    </item>
  </channel>
</rss>

