<?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/1595833#M267669</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi subhash,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. MAINPROGRAM -&lt;/P&gt;&lt;HR originaltext="--------" /&gt;&lt;P&gt;&amp;gt; user-exit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. There will always be a main program,&lt;/P&gt;&lt;P&gt;    in which user-exit FM is called.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. to get any GLOBAL variable&lt;/P&gt;&lt;P&gt;   of the main program,&lt;/P&gt;&lt;P&gt;   we can use like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; (U can also first check in debugging)&lt;/P&gt;&lt;P&gt; (in deubgging mode,&lt;/P&gt;&lt;P&gt;   use &amp;lt;b&amp;gt;(programname)varname&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;  (with brackets)&lt;/P&gt;&lt;P&gt;  to know the run-time value of the variable&lt;/P&gt;&lt;P&gt;  of the main program)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : varname(50) type c.&lt;/P&gt;&lt;P&gt;field-symbols : &amp;lt;FS&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;VARNAME = '(PROGNAME)VARNAME' .&lt;/P&gt;&lt;P&gt;ASSIGN (VARNAME) TO &amp;lt;FS&amp;gt;.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;WRITE : &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. &lt;/P&gt;&lt;P&gt;Note : a) Brackets are important.&lt;/P&gt;&lt;P&gt;       b) PROGNAME should be in CAPITAL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&amp;lt;b&amp;gt;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Sep 2006 07:12:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-11T07:12:05Z</dc:date>
    <item>
      <title>User-Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/1595832#M267668</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 have a scenario in which I want to use a parameter other than the ones that are passed in the Formal Parameters of a USER-EXIT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can I achieve this functionality in my user-exit?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If yes , how can this be done?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank You&lt;/P&gt;&lt;P&gt;Nicky.S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Sep 2006 07:03:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/1595832#M267668</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-11T07:03:30Z</dc:date>
    </item>
    <item>
      <title>Re: User-Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/1595833#M267669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi subhash,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. MAINPROGRAM -&lt;/P&gt;&lt;HR originaltext="--------" /&gt;&lt;P&gt;&amp;gt; user-exit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. There will always be a main program,&lt;/P&gt;&lt;P&gt;    in which user-exit FM is called.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. to get any GLOBAL variable&lt;/P&gt;&lt;P&gt;   of the main program,&lt;/P&gt;&lt;P&gt;   we can use like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; (U can also first check in debugging)&lt;/P&gt;&lt;P&gt; (in deubgging mode,&lt;/P&gt;&lt;P&gt;   use &amp;lt;b&amp;gt;(programname)varname&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;  (with brackets)&lt;/P&gt;&lt;P&gt;  to know the run-time value of the variable&lt;/P&gt;&lt;P&gt;  of the main program)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : varname(50) type c.&lt;/P&gt;&lt;P&gt;field-symbols : &amp;lt;FS&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;VARNAME = '(PROGNAME)VARNAME' .&lt;/P&gt;&lt;P&gt;ASSIGN (VARNAME) TO &amp;lt;FS&amp;gt;.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;WRITE : &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. &lt;/P&gt;&lt;P&gt;Note : a) Brackets are important.&lt;/P&gt;&lt;P&gt;       b) PROGNAME should be in CAPITAL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&amp;lt;b&amp;gt;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Sep 2006 07:12:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/1595833#M267669</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-11T07:12:05Z</dc:date>
    </item>
    <item>
      <title>Re: User-Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/1595834#M267670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HEllo Subash,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think u can do it by declaring the variable in the Main program of the FM. taht is Top include of The function group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If useful reward.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Sep 2006 07:49:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/1595834#M267670</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-11T07:49:53Z</dc:date>
    </item>
  </channel>
</rss>

