<?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 User-exits in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/3821399#M919032</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In exits I want to pass some other values from other program. How can do that? .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 17 May 2008 09:59:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-17T09:59:58Z</dc:date>
    <item>
      <title>User-exits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/3821399#M919032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In exits I want to pass some other values from other program. How can do that? .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 May 2008 09:59:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/3821399#M919032</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-17T09:59:58Z</dc:date>
    </item>
    <item>
      <title>Re: User-exits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/3821400#M919033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not sure what is your requirement but you can exprt some value to memory from your other Z program and then catch it in your user exit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 May 2008 18:58:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/3821400#M919033</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-17T18:58:56Z</dc:date>
    </item>
    <item>
      <title>Re: User-exits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/3821401#M919034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi buddula1 5,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ich you mean you want to access other fields in the &lt;STRONG&gt;callin&lt;/STRONG&gt; program than the ones passed in the exit modules interface, you can do so using dynamic assign (just an example - adapt to your needs):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
FUNCTION FIELD_EXIT_ZLSPR.
*"----------------------------------------------------------------------
*"*"Local Interface:
*"       IMPORTING
*"             VALUE(INPUT)
*"       EXPORTING
*"             VALUE(OUTPUT)
*"----------------------------------------------------------------------
*-----------------------------------------------------------------------
* 17.02.2000 CLi Field-Exit for payment lock on invoice screen
* Transaction F-43
*-----------------------------------------------------------------------

CONSTANTS: BSL(20) VALUE '(SAPMF05A)BSEG-BSCHL'.

FIELD-SYMBOLS: &amp;lt;BSL&amp;gt;.

ASSIGN (BSL) TO &amp;lt;BSL&amp;gt;.
IF SY-SUBRC = 0.
   IF INPUT  = ' '  AND
*     &amp;lt;BSL&amp;gt; &amp;lt;&amp;gt; '37' AND
      &amp;lt;BSL&amp;gt; &amp;lt;&amp;gt; '27'.
      OUTPUT = 'A'.
      MESSAGE S002(ZF) WITH 'Zahlsperre "A" wurde gesetzt'.
   ELSE.
      OUTPUT = INPUT.
   ENDIF.
ELSE.
   OUTPUT = INPUT.
ENDIF.
ENDFUNCTION.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is no longer documented in ABAP help but it works since ever until (at least) ECC600. Have debugger stop in your Exit, click call hierarchy, jump to calling program/routine(s) and seen what fields are availabe in debugger. You can assign them dynamically (use capittal letters!) - read and write access!).&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;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 May 2008 22:01:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/3821401#M919034</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2008-05-17T22:01:06Z</dc:date>
    </item>
  </channel>
</rss>

