<?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 Obtaining varaible from calling program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1208998#M132991</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another basic question from a PM/CS guy trying to make a name as a programmer...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The user-exit I'm using (IWO10004) does not have the import/export parameters I require.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Therefore I'm using the following code in the user-exit to extract the data from the call-stack&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;field-symbols: &amp;lt;fs&amp;gt;. 
data: xclnot like sy-datar. 

* Retrieve values from calling program 
assign ('(SAPLCOIH)XCLNOT') to &amp;lt;fs&amp;gt;. 
xclnot = &amp;lt;fs&amp;gt;.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And it doesn't work. It seems to work OK for internal tables, but not for this single character field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The next thing I would like to do is push it back to the calling program (yes I know this may cause problems - but I won't know till I try)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 18 Mar 2006 12:49:31 GMT</pubDate>
    <dc:creator>peter_atkin</dc:creator>
    <dc:date>2006-03-18T12:49:31Z</dc:date>
    <item>
      <title>Obtaining varaible from calling program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1208998#M132991</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another basic question from a PM/CS guy trying to make a name as a programmer...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The user-exit I'm using (IWO10004) does not have the import/export parameters I require.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Therefore I'm using the following code in the user-exit to extract the data from the call-stack&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;field-symbols: &amp;lt;fs&amp;gt;. 
data: xclnot like sy-datar. 

* Retrieve values from calling program 
assign ('(SAPLCOIH)XCLNOT') to &amp;lt;fs&amp;gt;. 
xclnot = &amp;lt;fs&amp;gt;.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And it doesn't work. It seems to work OK for internal tables, but not for this single character field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The next thing I would like to do is push it back to the calling program (yes I know this may cause problems - but I won't know till I try)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Mar 2006 12:49:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1208998#M132991</guid>
      <dc:creator>peter_atkin</dc:creator>
      <dc:date>2006-03-18T12:49:31Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining varaible from calling program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1208999#M132992</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u can chk out in debugging mode wat might be the reason for this.. just go to the place in the calling program where this user exit is being called.. n at that point of time c wat value this variable of urs is having...if it doesnt hold any value at that instant, then its obvious it ll be blank even in the user exit.&lt;/P&gt;&lt;P&gt;Hope it helps,&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Bikash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Mar 2006 12:58:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1208999#M132992</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-18T12:58:45Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining varaible from calling program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1209000#M132993</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi peter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. first of all to check,&lt;/P&gt;&lt;P&gt;  whether it will work or not,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. go in debug mode,&lt;/P&gt;&lt;P&gt;   and check the variable&lt;/P&gt;&lt;P&gt;  (programname)variablename&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. If it shows the value there,&lt;/P&gt;&lt;P&gt;  then we can proceed to check,&lt;/P&gt;&lt;P&gt;  whats wrong in the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Mar 2006 12:59:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1209000#M132993</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-18T12:59:14Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining varaible from calling program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1209001#M132994</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check out this weblog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;a href="/people/brad.williams/blog/2005/04/25/userexits--how-do-i-access-inaccessible-data"&amp;gt;Userexits - how do I access inaccessible data?&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Mar 2006 13:13:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1209001#M132994</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2006-03-18T13:13:48Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining varaible from calling program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1209002#M132995</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the replies guys.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just before I enter the user-exit in debug mode, if I enter (SAPLCOIH)XCLNOT then the current value is shown. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As soon as I enter the user-exit the above becomes inactive (yellow icon). After the user-exit it is OK again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I use (SAPLCOIH)caufvd, then everything is OK all the way through..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The only difference is that caufvd is a structure and xclnot is a single character field (not in structure or table).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be appreciated&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PeteA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Mar 2006 13:29:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1209002#M132995</guid>
      <dc:creator>peter_atkin</dc:creator>
      <dc:date>2006-03-18T13:29:14Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining varaible from calling program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1209003#M132996</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. If this is the case,&lt;/P&gt;&lt;P&gt;   then probably we cannot do much about it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. The reason may be that the &lt;/P&gt;&lt;P&gt;   structure may have been defined globally in the program,&lt;/P&gt;&lt;P&gt; whereas the variable character field,&lt;/P&gt;&lt;P&gt;  may have been defined some where locally.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Or may be what u are saying is true.&lt;/P&gt;&lt;P&gt;   (but still i think there must be some other&lt;/P&gt;&lt;P&gt;  reason)&lt;/P&gt;&lt;P&gt;  (the program name for that variable may be different,&lt;/P&gt;&lt;P&gt;  it may be in some include or etc etc.)&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.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Mar 2006 14:03:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1209003#M132996</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-18T14:03:29Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining varaible from calling program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1209004#M132997</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pete,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;instead of using field symbols,try this.. in fact SAP does the same thing right before the user exit is called..&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
IMPORT xclnot FROM MEMORY ID 'CLNOT'.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Mar 2006 14:18:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1209004#M132997</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-03-18T14:18:08Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining varaible from calling program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1209005#M132998</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Suresh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is that I want to change the value and send a blank back.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hence the &amp;lt;b&amp;gt;assign&amp;lt;/b&amp;gt; function&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Peter Atkin&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Mar 2006 16:35:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1209005#M132998</guid>
      <dc:creator>peter_atkin</dc:creator>
      <dc:date>2006-03-18T16:35:28Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining varaible from calling program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1209006#M132999</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In that case you can do this..&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
IMPORT xclnot FROM MEMORY ID 'CLNOT'.
clear xclnot.
EXPORT xclnot FROM MEMORY ID 'CLNOT'.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Mar 2006 16:46:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1209006#M132999</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-03-18T16:46:29Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining varaible from calling program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1209007#M133000</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Suresh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is that I cannot add the "IMPORT xclnot... to the SAP standard code (modification).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've messed around with this option, but its too late in the process.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is why I would like to use the &amp;lt;b&amp;gt;assign&amp;lt;/b&amp;gt; function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, the XCLNOT is a local variable in include LCOIHFG8 and not SAPLCOIH. Unfortunately I cannot use this in the &amp;lt;b&amp;gt;assign&amp;lt;/b&amp;gt; function&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Mar 2006 17:13:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1209007#M133000</guid>
      <dc:creator>peter_atkin</dc:creator>
      <dc:date>2006-03-18T17:13:29Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining varaible from calling program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1209008#M133001</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Peter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why is it a modification? Didn't you say it was in the User Exit IWO10004?.. You can put the IMPORT statement right there in place of the ASSIGN statement..&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;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Mar 2006 17:49:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1209008#M133001</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-03-18T17:49:33Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining varaible from calling program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1209009#M133002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Suresh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, but I want to change the value and send it back. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However it is not part of the import/export parameters of the FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I use IMPORT.... to bring this value into the calling program (LCOIHFG7) then this would be a modification.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Mar 2006 17:53:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1209009#M133002</guid>
      <dc:creator>peter_atkin</dc:creator>
      <dc:date>2006-03-18T17:53:21Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining varaible from calling program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1209010#M133003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Peter,&lt;/P&gt;&lt;P&gt;If you want to change the value  &amp;amp; send it back.. you can put the following code in the User Exit.. did you try it?&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
IMPORT xclnot FROM MEMORY ID 'CLNOT'.
clear xclnot.
EXPORT xclnot FROM MEMORY ID 'CLNOT'.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Mar 2006 18:02:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1209010#M133003</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-03-18T18:02:47Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining varaible from calling program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1209011#M133004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Suresh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried it before, and I've just tried it again and it doesn't work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Correct me if I'm wrong..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But you need &amp;lt;b&amp;gt;something&amp;lt;/b&amp;gt; at the other end to re-import the CLNOT memory value. And this is my problem since this "&amp;lt;b&amp;gt;something&amp;lt;/b&amp;gt;" is in the SAP standard code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Mar 2006 18:14:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1209011#M133004</guid>
      <dc:creator>peter_atkin</dc:creator>
      <dc:date>2006-03-18T18:14:55Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining varaible from calling program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1209012#M133005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK now I see your point.. like you already said, there seems to be no other option except to modify the SAP code.. &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;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Mar 2006 18:29:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1209012#M133005</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-03-18T18:29:22Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining varaible from calling program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1209013#M133006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Suresh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So this where I thought the &amp;lt;b&amp;gt;assign&amp;lt;/b&amp;gt; function may be useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But this is causing problems (read the above)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PeteA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Mar 2006 19:22:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1209013#M133006</guid>
      <dc:creator>peter_atkin</dc:creator>
      <dc:date>2006-03-18T19:22:25Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining varaible from calling program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1209014#M133007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Peter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With the ASSIGN, you will only be able read the value of the variable from the other program into the exit, but you cannot change the value of the variable in the other program.&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;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Mar 2006 21:18:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1209014#M133007</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-03-18T21:18:58Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining varaible from calling program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1209015#M133008</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Suresh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not according to this (which I picked up from &amp;lt;b&amp;gt;this&amp;lt;/b&amp;gt; forum):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS : &amp;lt;FS&amp;gt;.&lt;/P&gt;&lt;P&gt;IF CAUFVD_IMP-AUART = 'PM10'.&lt;/P&gt;&lt;P&gt;ASSIGN '(SAPLCOZF)EBAN_EXP-KNTTP' TO &amp;lt;FS&amp;gt;.&lt;/P&gt;&lt;P&gt;&amp;lt;FS&amp;gt; = 'F'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is what I wanted to use to push the data back to the calling program. The first problem is that I can't get it &amp;lt;b&amp;gt;into&amp;lt;/b&amp;gt; the user-exit in the first place.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOTE: I have seen this technique several times before, always with a warning..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Mar 2006 08:06:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1209015#M133008</guid>
      <dc:creator>peter_atkin</dc:creator>
      <dc:date>2006-03-19T08:06:07Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining varaible from calling program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1209016#M133009</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Peter, &lt;/P&gt;&lt;P&gt;the question if you can use the assign trick depends on where the variable is declared. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As for the question if it is a modification or not you are right from a formal point of view. You do not need any access key - hence it is not a modfication. SAP provides with their user-exit concept a defined interface and ensures that the parameters are stable even if after an Upgrade. The variable you try to change is not part of the interface which means SAP does not foresee that you can change it within the user-exit. &lt;/P&gt;&lt;P&gt;You cannot rely that your change is stable in regard to Upgrades. So what you were trying to do is to bypass the modification in a very obsucre way. If SAP changes the logic, your user-exit would not work anymore Or even worse could cause inconsistencies. &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;In my opinion it would be better not to use the user-exit but modify the SAP Code directly. In this case you would realize that the program was changed if you apply a Note or while upgrading and you can check if your logic still fits. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just my 2cts&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Mar 2006 10:30:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1209016#M133009</guid>
      <dc:creator>ChristianFi</dc:creator>
      <dc:date>2006-03-19T10:30:28Z</dc:date>
    </item>
    <item>
      <title>Re: Obtaining varaible from calling program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1209017#M133010</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Christian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was trying to get a "simple" solution to a common problem. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This issue is repeatedly raised in the PM/CS on-line forums.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I get the impression I'm fighting a losing battle... I guess its back to the modification option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PeteA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Mar 2006 12:39:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/obtaining-varaible-from-calling-program/m-p/1209017#M133010</guid>
      <dc:creator>peter_atkin</dc:creator>
      <dc:date>2006-03-19T12:39:47Z</dc:date>
    </item>
  </channel>
</rss>

