<?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: User exit in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/3707297#M892613</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You Are talking with &lt;EM&gt;Guest&lt;/EM&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 Nov 2008 23:34:51 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-21T23:34:51Z</dc:date>
    <item>
      <title>User exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/3707294#M892610</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RFEBLB00 is the standard lockbox program. To fulfill some clearing criteria for company codes, some user exists were added to the standard program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;user exits EXIT_RFEBLB20_001 and EXIT_RFEBLB20_002  were created  for it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then again for some requirement a copy of the prg RFEBLB00 was created as ZRFEBLB00.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now this ZRFEBLB00 no more calls the prg RFEBLB20 but it calls a copy of it i.e. ZRFEBLB20.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now user exits are not being working can any body help me regarding this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think in RFEBLB20 we have the statements like &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL CUSTOMER-FUNCTION '001'.  so then it goes for the user exit EXIT_RFEBLB20_001 and works accordingly..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but in ZRFEBLB20 the same stament cannt call the user exit EXIT_RFEBLB20_001 as it looks for the EXIT_ZRFEBLB20_001 which cannt be created (as we cannt create this user exit for Zprg) but i have to use the same user exit...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can i use any other statements which can replace this CALL CUSTOMER-FUNCTION '001'. ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or else...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can i use CALL FUNCTION ' EXIT_RFEBLB20_001'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please help me regarding this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Apr 2008 09:10:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/3707294#M892610</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-17T09:10:33Z</dc:date>
    </item>
    <item>
      <title>Re: User exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/3707295#M892611</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PLease help this is very urgent&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Apr 2008 09:23:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/3707295#M892611</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-17T09:23:19Z</dc:date>
    </item>
    <item>
      <title>Re: User exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/3707296#M892612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here's how we modified the lockbox functionality:&lt;/P&gt;&lt;P&gt;We had a format from the bank which was close to BAI2 but not quite the SAP BAI2&lt;/P&gt;&lt;P&gt;On txn OBAY, we created a new entry called 'OBAI'.&lt;/P&gt;&lt;P&gt;We modified RFEBLB00 like so:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen on formt.&lt;/P&gt;&lt;P&gt;  if  formt ne 'BAI'&lt;/P&gt;&lt;P&gt;*{   INSERT         CDSK906195                                        1&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;added for new lockbox&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  and formt ne 'OBAI'&lt;/P&gt;&lt;P&gt;*}   INSERT&lt;/P&gt;&lt;P&gt;  and formt ne 'BAI2'.&lt;/P&gt;&lt;P&gt;    message i634.                            "45a&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in start-of-selection:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    case formt.&lt;/P&gt;&lt;P&gt;      when 'BAI '.&lt;/P&gt;&lt;P&gt;        perform process_bai_file(rfeblb20).&lt;/P&gt;&lt;P&gt;      when 'BAI2'.&lt;/P&gt;&lt;P&gt;        perform process_bai_file(rfeblb20).&lt;/P&gt;&lt;P&gt;*{   INSERT         CDSK906195                                        1&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Process the Lockbox Format cc 2000&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      when 'OBAI'.&lt;/P&gt;&lt;P&gt;        perform process_bai_file(zrfeblb20).&lt;/P&gt;&lt;P&gt;*}   INSERT&lt;/P&gt;&lt;P&gt;      when others.&lt;/P&gt;&lt;P&gt;        message e637.&lt;/P&gt;&lt;P&gt;    endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So you can see, we needed a new copy of RFEBLB20, but we only needed to modify the following subroutines to make our Lockbox format fit the SAP BAI2:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FINISH_PREV_CHECK &lt;/P&gt;&lt;P&gt;NEW_CHECK &lt;/P&gt;&lt;P&gt;OVERFLOW_RECORD &lt;/P&gt;&lt;P&gt;PROCESS_BAI_FILE &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just called the RFEBLB20 subroutines whenever they were needed.  They in turn called the customer exits, so no issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g. &lt;/P&gt;&lt;P&gt;    case ident.&lt;/P&gt;&lt;P&gt;      when '5'.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;------- new batch -&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        clear w_skip_rec.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       we will someday deal with these, just not today.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        if flb05-dh002 = '800'  "ACH entries&lt;/P&gt;&lt;P&gt;        or flb05-dh002 = '900'. "Wires&lt;/P&gt;&lt;P&gt;          w_skip_rec = 'X'.&lt;/P&gt;&lt;P&gt;          add 1 to w_flb09_sub_rec.&lt;/P&gt;&lt;P&gt;        endif.&lt;/P&gt;&lt;P&gt;        if febko-azidt+0(7) ne flb05-dh004&lt;/P&gt;&lt;P&gt;        or febko-azidt+8(6) ne flb05-dh005.&lt;/P&gt;&lt;P&gt;          if w_skip_rec is initial.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        new lockbox or new deposit date&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            perform finish_prev_check.&lt;/P&gt;&lt;P&gt;            perform finish_prev_lockbox(rfeblb20).&lt;/P&gt;&lt;P&gt;            perform new_lockbox(rfeblb20).&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;Maybe you can do something similar?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Nov 2008 20:27:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/3707296#M892612</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-21T20:27:23Z</dc:date>
    </item>
    <item>
      <title>Re: User exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/3707297#M892613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You Are talking with &lt;EM&gt;Guest&lt;/EM&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Nov 2008 23:34:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/3707297#M892613</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-21T23:34:51Z</dc:date>
    </item>
    <item>
      <title>Re: User exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/3707298#M892614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;that too after 7 months&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Nov 2008 23:48:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/3707298#M892614</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-21T23:48:25Z</dc:date>
    </item>
    <item>
      <title>Re: User exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/3707299#M892615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Even more I'm not sure he is asking a question or suggesting him a solution!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Nov 2008 00:01:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/3707299#M892615</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-22T00:01:05Z</dc:date>
    </item>
  </channel>
</rss>

