<?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: Please verify the errors below. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-verify-the-errors-below/m-p/12515159#M2004328</link>
    <description>&lt;P&gt;Hi Haya,&lt;/P&gt;&lt;P&gt;This function module helps to remove the left leading zeros if any, also it is always suggested to use the variable in this like any ABAP field.&lt;/P&gt;&lt;P&gt;Conversion exit ALPHA, internal-&amp;gt;external&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vipin&lt;/P&gt;</description>
    <pubDate>Wed, 13 Oct 2021 07:27:03 GMT</pubDate>
    <dc:creator>vipinsaraika</dc:creator>
    <dc:date>2021-10-13T07:27:03Z</dc:date>
    <item>
      <title>Please verify the errors below.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-verify-the-errors-below/m-p/12515158#M2004327</link>
      <description>&lt;P&gt; how we can remove the right leading zero ??????&lt;/P&gt;
  &lt;P&gt;CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT'&lt;/P&gt;
  &lt;P&gt;EXPORTING&lt;/P&gt;
  &lt;P&gt;INPUT = IT_FMIT1-RFIPEX&lt;/P&gt;
  &lt;P&gt;IMPORTING&lt;/P&gt;
  &lt;P&gt;OUTPUT = IT_FMIT1-RFIPEX.&lt;/P&gt;
  &lt;P&gt;i also use this function module but give debug error u can tell please there should be variable or internal table with field???&lt;/P&gt;</description>
      <pubDate>Wed, 13 Oct 2021 07:14:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-verify-the-errors-below/m-p/12515158#M2004327</guid>
      <dc:creator>former_member770121</dc:creator>
      <dc:date>2021-10-13T07:14:44Z</dc:date>
    </item>
    <item>
      <title>Re: Please verify the errors below.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-verify-the-errors-below/m-p/12515159#M2004328</link>
      <description>&lt;P&gt;Hi Haya,&lt;/P&gt;&lt;P&gt;This function module helps to remove the left leading zeros if any, also it is always suggested to use the variable in this like any ABAP field.&lt;/P&gt;&lt;P&gt;Conversion exit ALPHA, internal-&amp;gt;external&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vipin&lt;/P&gt;</description>
      <pubDate>Wed, 13 Oct 2021 07:27:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-verify-the-errors-below/m-p/12515159#M2004328</guid>
      <dc:creator>vipinsaraika</dc:creator>
      <dc:date>2021-10-13T07:27:03Z</dc:date>
    </item>
    <item>
      <title>Re: Please verify the errors below.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-verify-the-errors-below/m-p/12515160#M2004329</link>
      <description>&lt;P&gt;Hello &lt;SPAN class="mention-scrubbed"&gt;aya12&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;The function interface is:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FUNCTION CONVERSION_EXIT_ALPHA_OUTPUT.
*"----------------------------------------------------------------------
*"*"Lokale Schnittstelle:
*"  IMPORTING
*"     VALUE(INPUT) TYPE  CLIKE
*"  EXPORTING
*"     VALUE(OUTPUT) TYPE  CLIKE
*"----------------------------------------------------------------------&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;IT_FMIT1-RFIPEX needs to be a character like field. See SAP Help on &lt;A href="https://help.sap.com/doc/abapdocu_750_index_htm/7.50/en-US/abenbuilt_in_types_generic.htm" target="_blank"&gt;Generic ABAP Types&lt;/A&gt; for the details of CLIKE type.&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Dominik Tylczynski&lt;/P&gt;</description>
      <pubDate>Wed, 13 Oct 2021 07:34:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-verify-the-errors-below/m-p/12515160#M2004329</guid>
      <dc:creator>Dominik_Tylczynski</dc:creator>
      <dc:date>2021-10-13T07:34:30Z</dc:date>
    </item>
    <item>
      <title>Re: Please verify the errors below.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-verify-the-errors-below/m-p/12515161#M2004330</link>
      <description>&lt;P&gt;something like that should work&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;get length of field&lt;BR /&gt;do length times&lt;BR /&gt;  offset = lenght - sy-index.&lt;BR /&gt;  if field+offset(1) eq 0.&lt;BR /&gt;    field = field+0(offset)&lt;BR /&gt;  else.&lt;BR /&gt;    exit.&lt;BR /&gt;  endif.&lt;BR /&gt;enddo.&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 13 Oct 2021 07:35:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-verify-the-errors-below/m-p/12515161#M2004330</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2021-10-13T07:35:57Z</dc:date>
    </item>
    <item>
      <title>Re: Please verify the errors below.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-verify-the-errors-below/m-p/12515162#M2004331</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;offset = lenght - 1.&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 13 Oct 2021 07:36:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-verify-the-errors-below/m-p/12515162#M2004331</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2021-10-13T07:36:48Z</dc:date>
    </item>
    <item>
      <title>Re: Please verify the errors below.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-verify-the-errors-below/m-p/12515163#M2004332</link>
      <description>&lt;P&gt;No problem for me:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA it_fmit1 TYPE fmit.
it_fmit1-rfipex = '000000000000000000000150'.
CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT'
  EXPORTING
    input  = it_fmit1-rfipex
  IMPORTING
    output = it_fmit1-rfipex.
ASSERT it_fmit1-rfipex = '150'.
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 13 Oct 2021 11:46:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-verify-the-errors-below/m-p/12515163#M2004332</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2021-10-13T11:46:15Z</dc:date>
    </item>
  </channel>
</rss>

