<?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/6231020#M1380608</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Abhijeet,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you tell me what's your requirement exaclty ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you want to use Conversion_exit_alpha_input then see the code below :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
    EXPORTING
      INPUT         = r_vbeln 
*   IMPORTING
      OUTPUT        = r_vbeln&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;             .&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;Regards,&lt;/P&gt;&lt;P&gt;Sujeet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 Oct 2009 03:33:46 GMT</pubDate>
    <dc:creator>SujeetMishra</dc:creator>
    <dc:date>2009-10-15T03:33:46Z</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/6231018#M1380606</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;RANGES : r_banfn FOR eban-banfn,&lt;/P&gt;&lt;P&gt;         r_vbeln FOR vbak-vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To populate the range for these two use code:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF NOT p_m_vbeln_low IS INITIAL.&lt;/P&gt;&lt;P&gt;  IF NOT p_m_vbeln_high IS INITIAL.&lt;/P&gt;&lt;P&gt;    r_vbeln-sign = 'I'.&lt;/P&gt;&lt;P&gt;    r_vbeln-option = 'BT'.&lt;/P&gt;&lt;P&gt;    r_vbeln-low = p_m_vbeln_low.&lt;/P&gt;&lt;P&gt;    r_vbeln-high = p_m_vbeln_high.&lt;/P&gt;&lt;P&gt;    APPEND r_vbeln.&lt;/P&gt;&lt;P&gt;    CLEAR r_vbeln.&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;    r_vbeln-sign = 'I'.&lt;/P&gt;&lt;P&gt;    r_vbeln-option = 'EQ'.&lt;/P&gt;&lt;P&gt;    r_vbeln-low = p_m_vbeln_low.&lt;/P&gt;&lt;P&gt;    APPEND r_vbeln.&lt;/P&gt;&lt;P&gt;    CLEAR r_vbeln.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF NOT p_m_banfn_low IS INITIAL.&lt;/P&gt;&lt;P&gt;  IF NOT p_m_banfn_high IS INITIAL.&lt;/P&gt;&lt;P&gt;    r_banfn-sign = 'I'.&lt;/P&gt;&lt;P&gt;    r_banfn-option = 'BT'.&lt;/P&gt;&lt;P&gt;    r_banfn-low = p_m_banfn_low.&lt;/P&gt;&lt;P&gt;    r_banfn-high = p_m_banfn_high.&lt;/P&gt;&lt;P&gt;    APPEND r_banfn.&lt;/P&gt;&lt;P&gt;    CLEAR r_banfn.&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;    r_banfn-sign = 'I'.&lt;/P&gt;&lt;P&gt;    r_banfn-option = 'EQ'.&lt;/P&gt;&lt;P&gt;    r_banfn-low = p_m_banfn_low.&lt;/P&gt;&lt;P&gt;    APPEND r_banfn.&lt;/P&gt;&lt;P&gt;    CLEAR r_banfn.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT EBAN&lt;SUB&gt;BANFN EBAN&lt;/SUB&gt;BNFPO EBAN&lt;SUB&gt;MATNR EBAN&lt;/SUB&gt;TXZ01 EBAN&lt;SUB&gt;MENGE EBAN&lt;/SUB&gt;MEINS EBAN&lt;SUB&gt;LFDAT EBAN&lt;/SUB&gt;WERKS EBAN&lt;SUB&gt;FLIEF EBAN&lt;/SUB&gt;EKORG EBAN&lt;SUB&gt;BEDNR EBKN&lt;/SUB&gt;VBELN  INTO CORRESPONDING FIELDS OF TABLE ITAB_MSGPF&lt;/P&gt;&lt;P&gt;FROM EBAN INNER JOIN EBKN ON EBAN&lt;SUB&gt;BANFN = EBKN&lt;/SUB&gt;BANFN &lt;/P&gt;&lt;P&gt;WHERE   EBKN~VBELN  in r_vbeln AND&lt;/P&gt;&lt;P&gt;               EBAN~BANFN IN v_banfn.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Oct 2009 03:04:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit-alpha-input/m-p/6231018#M1380606</guid>
      <dc:creator>former_member227140</dc:creator>
      <dc:date>2009-10-15T03:04:12Z</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/6231019#M1380607</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Now i have to use conversion_exit_alpha_input &lt;/P&gt;&lt;P&gt;for the two fields like r_vbeln and r_banfn as when it is tested from java site we are facing problem......&lt;/P&gt;&lt;P&gt;how shd i do in my code???????&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Oct 2009 03:05:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit-alpha-input/m-p/6231019#M1380607</guid>
      <dc:creator>former_member227140</dc:creator>
      <dc:date>2009-10-15T03:05: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/6231020#M1380608</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Abhijeet,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you tell me what's your requirement exaclty ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you want to use Conversion_exit_alpha_input then see the code below :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
    EXPORTING
      INPUT         = r_vbeln 
*   IMPORTING
      OUTPUT        = r_vbeln&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;             .&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;Regards,&lt;/P&gt;&lt;P&gt;Sujeet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Oct 2009 03:33:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit-alpha-input/m-p/6231020#M1380608</guid>
      <dc:creator>SujeetMishra</dc:creator>
      <dc:date>2009-10-15T03:33:46Z</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/6231021#M1380609</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello sujeet thnks for reply...but the thing u mentioned ......that i shd pass r_vbeln in FM conversion_exit_alpha_input....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but as u see r_vbeln is range structure...so will it work......?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually i have done like this see&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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         = SALESDOC_NO_LOW&lt;/P&gt;&lt;P&gt;  IMPORTING&lt;/P&gt;&lt;P&gt;    OUTPUT        = SALESDOC_NO_LOW&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         = SALESDOC_NO_HIGH&lt;/P&gt;&lt;P&gt;   IMPORTING&lt;/P&gt;&lt;P&gt;    OUTPUT        = SALESDOC_NO_HIGH&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF NOT SALESDOC_NO_LOW IS INITIAL.&lt;/P&gt;&lt;P&gt;  IF NOT SALESDOC_NO_HIGH IS INITIAL.&lt;/P&gt;&lt;P&gt;    r_vbeln-sign = 'I'.&lt;/P&gt;&lt;P&gt;    r_vbeln-option = 'BT'.&lt;/P&gt;&lt;P&gt;    r_vbeln-low = SALESDOC_NO_LOW.&lt;/P&gt;&lt;P&gt;    r_vbeln-high = SALESDOC_NO_HIGH.&lt;/P&gt;&lt;P&gt;    APPEND r_vbeln.&lt;/P&gt;&lt;P&gt;    CLEAR r_vbeln.&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;    r_vbeln-sign = 'I'.&lt;/P&gt;&lt;P&gt;    r_vbeln-option = 'EQ'.&lt;/P&gt;&lt;P&gt;    r_vbeln-low = SALESDOC_NO_LOW.&lt;/P&gt;&lt;P&gt;    APPEND r_vbeln.&lt;/P&gt;&lt;P&gt;    CLEAR r_vbeln.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&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         =  PRDOC_NO_LOW&lt;/P&gt;&lt;P&gt;  IMPORTING&lt;/P&gt;&lt;P&gt;    OUTPUT        = PRDOC_NO_HIGH&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         =  PRDOC_NO_LOW&lt;/P&gt;&lt;P&gt;   IMPORTING&lt;/P&gt;&lt;P&gt;    OUTPUT        = PRDOC_NO_HIGH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF NOT PRDOC_NO_LOW IS INITIAL.&lt;/P&gt;&lt;P&gt;  IF NOT PRDOC_NO_HIGH IS INITIAL.&lt;/P&gt;&lt;P&gt;    r_banfn-sign = 'I'.&lt;/P&gt;&lt;P&gt;    r_banfn-option = 'BT'.&lt;/P&gt;&lt;P&gt;    r_banfn-low = PRDOC_NO_LOW.&lt;/P&gt;&lt;P&gt;    r_banfn-high = PRDOC_NO_HIGH.&lt;/P&gt;&lt;P&gt;    APPEND r_banfn.&lt;/P&gt;&lt;P&gt;    CLEAR r_banfn.&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;    r_banfn-sign = 'I'.&lt;/P&gt;&lt;P&gt;    r_banfn-option = 'EQ'.&lt;/P&gt;&lt;P&gt;    r_banfn-low = PRDOC_NO_LOW.&lt;/P&gt;&lt;P&gt;    APPEND r_banfn.&lt;/P&gt;&lt;P&gt;    CLEAR r_banfn.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tthen same select query  as i mentioned above........is it right?..what i  have done?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Oct 2009 03:51:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit-alpha-input/m-p/6231021#M1380609</guid>
      <dc:creator>former_member227140</dc:creator>
      <dc:date>2009-10-15T03:51:21Z</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/6231022#M1380610</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;It should work whatever u mentioned, try in this way also if it is not works;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi Use in this way&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at r_vbeln.&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 = r_vbeln-low&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;OUTPUT =r_vbeln-low .&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 = r_vbeln-high&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;OUTPUT =r_vbeln-high.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;modify r_vbeln transporting low high.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear r_vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Same thing for another field also.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Oct 2009 04:10:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit-alpha-input/m-p/6231022#M1380610</guid>
      <dc:creator>praveen_hannu</dc:creator>
      <dc:date>2009-10-15T04:10:41Z</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/6231023#M1380611</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;I dont see anything wrong in your code. Are you still facing any issue in it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vikranth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Oct 2009 04:13:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit-alpha-input/m-p/6231023#M1380611</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-15T04:13:18Z</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/6231024#M1380612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;its fine now whatever i have write it down//the only thing was it was to be tested from java side.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now it is done ...and sloved my problem...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnks vikrant and praveen..y are doing gr8 jobs..keep it up....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Oct 2009 04:26:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit-alpha-input/m-p/6231024#M1380612</guid>
      <dc:creator>former_member227140</dc:creator>
      <dc:date>2009-10-15T04:26:40Z</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/6231025#M1380613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please mark your thread as Answered if the issue is resolved.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Oct 2009 04:31:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/conversion-exit-alpha-input/m-p/6231025#M1380613</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-15T04:31:59Z</dc:date>
    </item>
  </channel>
</rss>

