<?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 CONVERSION_EXIT_ALPHA_INPUT Error  CONV_EXIT_FIELD_TOO_SHORT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-conversion-exit-alpha-input-error-conv-exit-field-too-short/m-p/7727760#M1580682</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Lalit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am new for ABAP, can you elaborate please. Will I have to change the standard program or function. If yes than please tell me name of the function / program and change which i have to make. Please.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DSC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Apr 2011 05:19:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-04-12T05:19:31Z</dc:date>
    <item>
      <title>FUNCTION CONVERSION_EXIT_ALPHA_INPUT Error  CONV_EXIT_FIELD_TOO_SHORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-conversion-exit-alpha-input-error-conv-exit-field-too-short/m-p/7727754#M1580676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ABAP GURUS &amp;amp; EXPERTS,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am getting an ABAP error during F.05 (Posting of Foreign currency valuation): &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Runtime errors         CONV_EXIT_FIELD_TOO_SHORT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------------------------------------" /&gt;&lt;P&gt;Source code extract&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;000010   FUNCTION CONVERSION_EXIT_ALPHA_INPUT.&lt;/P&gt;&lt;P&gt;000020   *"                                                             -&lt;/P&gt;&lt;HR originaltext="--------" /&gt;&lt;P&gt;000030   *"Lokale Schnittstelle:&lt;/P&gt;&lt;P&gt;000040   *"       IMPORTING&lt;/P&gt;&lt;P&gt;000050   *"             INPUT&lt;/P&gt;&lt;P&gt;000060   *"       EXPORTING&lt;/P&gt;&lt;P&gt;000070   *"             OUTPUT&lt;/P&gt;&lt;P&gt;000080   *"&lt;/P&gt;&lt;P&gt;000090&lt;/P&gt;&lt;P&gt;     &amp;gt;     CALL 'CONVERSION_EXIT_ALPHA_INPUT'  ID 'INPUT'  FIELD INPUT&lt;/P&gt;&lt;P&gt;000110                                         ID 'OUTPUT' FIELD OUTPUT.&lt;/P&gt;&lt;P&gt;000120&lt;/P&gt;&lt;P&gt;000130   ENDFUNCTION.&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="------------------------------------------------------------------" /&gt;&lt;P&gt;I am using standard program and function. When I check the function (SE37) found there is no &lt;STRONG&gt;Type Spec.&lt;/STRONG&gt; and &lt;STRONG&gt;Associated Type&lt;/STRONG&gt; defined for Input (IMPORT) and Output (EXPORT)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have checked on SDN but nor find any solution. I am new for ABAP. So, please help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DSC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Apr 2011 06:45:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-conversion-exit-alpha-input-error-conv-exit-field-too-short/m-p/7727754#M1580676</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-11T06:45:42Z</dc:date>
    </item>
    <item>
      <title>Re: FUNCTION CONVERSION_EXIT_ALPHA_INPUT Error  CONV_EXIT_FIELD_TOO_SHORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-conversion-exit-alpha-input-error-conv-exit-field-too-short/m-p/7727755#M1580677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be length of output paramter is less than input parameter.&lt;/P&gt;&lt;P&gt;Ouptut paramter length should be equal or greater than input parameter's length. Change it.&lt;/P&gt;&lt;P&gt;Below code is an example that will go for runtime error&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: L_NUM(3) TYPE C,
      L_NUM1(2) TYPE C.   

CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
  EXPORTING
    INPUT  = L_NUM      "  Length is 3
  IMPORTING
    OUTPUT = L_NUM1.  " Length is 2. It should be greater than or equal to 3.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Apr 2011 06:54:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-conversion-exit-alpha-input-error-conv-exit-field-too-short/m-p/7727755#M1580677</guid>
      <dc:creator>awin_prabhu</dc:creator>
      <dc:date>2011-04-11T06:54:20Z</dc:date>
    </item>
    <item>
      <title>Re: FUNCTION CONVERSION_EXIT_ALPHA_INPUT Error  CONV_EXIT_FIELD_TOO_SHORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-conversion-exit-alpha-input-error-conv-exit-field-too-short/m-p/7727756#M1580678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Go in debug mode (/h) it may happen you are missing some parameters whicle posting, check at the said function module and see the input-output field value and properties. I think at-least this much of information is required for any one to pinpoint or suggest any answer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Apr 2011 07:03:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-conversion-exit-alpha-input-error-conv-exit-field-too-short/m-p/7727756#M1580678</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-11T07:03:12Z</dc:date>
    </item>
    <item>
      <title>Re: FUNCTION CONVERSION_EXIT_ALPHA_INPUT Error  CONV_EXIT_FIELD_TOO_SHORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-conversion-exit-alpha-input-error-conv-exit-field-too-short/m-p/7727757#M1580679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks all for your reply,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;During my testing I have come to know one more interesting thing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The error is appearing only for some G/L. While for some G/L system generating the ABAP ERROR message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unable to understand WHY? and What to check??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DSC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Apr 2011 07:12:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-conversion-exit-alpha-input-error-conv-exit-field-too-short/m-p/7727757#M1580679</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-11T07:12:17Z</dc:date>
    </item>
    <item>
      <title>Re: FUNCTION CONVERSION_EXIT_ALPHA_INPUT Error  CONV_EXIT_FIELD_TOO_SHORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-conversion-exit-alpha-input-error-conv-exit-field-too-short/m-p/7727758#M1580680</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;The solution provided by &lt;STRONG&gt;SAP Fan&lt;/STRONG&gt; above should work in both the scenarios.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Manish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Apr 2011 07:20:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-conversion-exit-alpha-input-error-conv-exit-field-too-short/m-p/7727758#M1580680</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-11T07:20:22Z</dc:date>
    </item>
    <item>
      <title>Re: FUNCTION CONVERSION_EXIT_ALPHA_INPUT Error  CONV_EXIT_FIELD_TOO_SHORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-conversion-exit-alpha-input-error-conv-exit-field-too-short/m-p/7727759#M1580681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;as per my knowledge your GL account is of type HKONT which is of length 10 digits.&lt;/P&gt;&lt;P&gt;so define 2 variables of same type with same length as your gl account,&lt;/P&gt;&lt;P&gt;one variable for input and another for output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pass the value to the FM via these variables and i hope this will solve your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;LG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Apr 2011 10:10:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-conversion-exit-alpha-input-error-conv-exit-field-too-short/m-p/7727759#M1580681</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-11T10:10:13Z</dc:date>
    </item>
    <item>
      <title>Re: FUNCTION CONVERSION_EXIT_ALPHA_INPUT Error  CONV_EXIT_FIELD_TOO_SHORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-conversion-exit-alpha-input-error-conv-exit-field-too-short/m-p/7727760#M1580682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Lalit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am new for ABAP, can you elaborate please. Will I have to change the standard program or function. If yes than please tell me name of the function / program and change which i have to make. Please.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DSC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Apr 2011 05:19:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-conversion-exit-alpha-input-error-conv-exit-field-too-short/m-p/7727760#M1580682</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-12T05:19:31Z</dc:date>
    </item>
    <item>
      <title>Re: FUNCTION CONVERSION_EXIT_ALPHA_INPUT Error  CONV_EXIT_FIELD_TOO_SHORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-conversion-exit-alpha-input-error-conv-exit-field-too-short/m-p/7727761#M1580683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi DSC,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you are getting this short dump in a SAP standard transaction (F.05 =&amp;gt; Report SAPF100). 1st you should know which field causes this error. If it is no customer field, then you can look for SAP notes or contact SAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The reason of this issue should be a too long input for a special field!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do not change SAP standard programs to correct this error without SAP notes!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Klaus&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Klaus Babl on Apr 12, 2011 7:39 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Apr 2011 05:39:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-conversion-exit-alpha-input-error-conv-exit-field-too-short/m-p/7727761#M1580683</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-12T05:39:28Z</dc:date>
    </item>
  </channel>
</rss>

