<?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: Enhancement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084937#M99015</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello suresh &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes i am using exit ZXPADU02.&lt;/P&gt;&lt;P&gt;As per your logic goes, if i set a flag value to 'X' when it enters the first time and when it gets triggered again i can check the value of the flag in the condition.&lt;/P&gt;&lt;P&gt;It should work fine, alright. &lt;/P&gt;&lt;P&gt;This will work when the user is creating record (IT 0470 and IT 0471) only for one employee.&lt;/P&gt;&lt;P&gt;What if the user is dealing with more than one employee. &lt;/P&gt;&lt;P&gt;As for the first employee the FLAG will be changed to 'X' (lets say) and will remain 'X' for the next time too and finally condition will not be TRUE for second employee and so on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if i am wrong suresh.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanking you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 11 Dec 2005 23:22:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-12-11T23:22:03Z</dc:date>
    <item>
      <title>Enhancement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084925#M99003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello everyone &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a Question based on my own requirement. It is based on Travel management.&lt;/P&gt;&lt;P&gt;whenever i create a record in travel profile IT 0470 using PA30 for an employee then user exit should be triggered to create default record in flight preference IT0471 using BDC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the problem here is when i create a record in travel profile IT0470 for an employee and at last if i hit ENTER, then the user exit is triggered, IT 0471 screen is shown up, default values are created and comes back to intial screen IT 0470.&lt;/P&gt;&lt;P&gt;Now, if i hit SAVE to save the record for IT 0470 then again the user exit is triggered.&lt;/P&gt;&lt;P&gt;I dont want this to happen, all that i want is only if the user hits SAVE for saving the record IT 0470 then only user exit must be triggered and default values for IT 0471 must be created.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestion will be appreciated and awarded with points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanking you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Dec 2005 17:55:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084925#M99003</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-11T17:55:00Z</dc:date>
    </item>
    <item>
      <title>Re: Enhancement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084926#M99004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, in the user exit you must check the ok_code of the screen before doing the process of the user exit.  The user exit will get triggered either way, so you must wrap your logic inside the user exit to only be executed when the "SAVE" function is being clicked.  You must first find out what the FCODE or ok_code is behind the save button in that particular screen, then in your user exit, you must try doing something like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;IF ok_code = 'SAVE'.

* Then do the logic.

ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I probably won't be as easy as this, because you probably won't have access to the OK_CODE field in the user exit, but you never know.  If you can't get access to it,  you can use a trick with field symbols.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;


  data: field(50).

  field-symbols: &amp;lt;ok_code&amp;gt;.

* Assign an individual variable 
* Here you need the main program name and the 
* ok_code field of the screen.
  field = '(MainProgramName)ok_code'.
  assign (field) to &amp;lt;ok_code&amp;gt;.


if &amp;lt;ok_code&amp;gt; = 'SAVE'.

ENDIF.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does this make sense?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Dec 2005 18:15:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084926#M99004</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-12-11T18:15:17Z</dc:date>
    </item>
    <item>
      <title>Re: Enhancement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084927#M99005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe you could even get away with checking SY-UCOMM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;if sy-UCOMM = 'SAVE'.


Endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Again you need to find out what the FCODE is for "Save" in that transaction.  Turn on debugger just befor hitting save, then type sy-ucomm into the debugger field at the bottom and hit enter, see if there is value there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Dec 2005 18:32:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084927#M99005</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-12-11T18:32:56Z</dc:date>
    </item>
    <item>
      <title>Re: Enhancement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084928#M99006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think you need to worry about all this, You can use dynamic actions, by which you can create another infotype record while creating or changing an infotype.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If dynamic actoins is ok for you.  Pleae let me know, I can guide you through.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Venu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Dec 2005 19:05:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084928#M99006</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-11T19:05:45Z</dc:date>
    </item>
    <item>
      <title>Re: Enhancement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084929#M99007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vijay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You say it is a BDC right? then why do you need the User exit? If your objective is to create a 0471 for every 0470, put the code in the BDC.. or instead of BDC, you can use the "HR_INFOTYPE_OPERATION' function call twice.. ie once each for 0470 &amp;amp; 0471.. If it is not an initial load, you can also opt for Dynamic Actions ( V_T588*) as suggested by Venugopal..&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>Sun, 11 Dec 2005 20:34:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084929#M99007</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2005-12-11T20:34:24Z</dc:date>
    </item>
    <item>
      <title>Re: Enhancement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084930#M99008</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yep Rich &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are right, i have to see the or i have to capture the ok_code for SAVE and include it in myh user exit code.&lt;/P&gt;&lt;P&gt;But you i know what i have tried for all possible vaules like SAVE , =UPD,.......(combinations) and result FAILED.&lt;/P&gt;&lt;P&gt;And at last as you mentioned using feild-symbols, i did`nt get it. Can you explain more.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanking you.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Dec 2005 22:08:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084930#M99008</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-11T22:08:43Z</dc:date>
    </item>
    <item>
      <title>Re: Enhancement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084931#M99009</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello venu and suresh &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you have mentioned Dynamic action, i dont know how to set it up. But if you could explain in more detail that would be great.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh, I know i can use HR_INFOTYPE_OPERATION FM to create a record in IT 0471 for every record in IT 0471, but i want to do using BDC. And my main problem is with triggering the user exit only when the user hits SAVE and not when user hits ENTER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your replies guys.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Dec 2005 22:15:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084931#M99009</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-11T22:15:04Z</dc:date>
    </item>
    <item>
      <title>Re: Enhancement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084932#M99010</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to run the transaction manually.  Put a break point in the user exit,  run the transaction, when it program stops at your break point, check the value of sy-ucomm by typeing sy-ucomm in the box at the bottom of the debugger, is there any value here?  if so, then check for this value in your IF statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Dec 2005 22:15:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084932#M99010</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-12-11T22:15:50Z</dc:date>
    </item>
    <item>
      <title>Re: Enhancement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084933#M99011</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Through SM30 Transacton you have to create entries in table t588z.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find the sample customization below.  Please read help on each field of these table entries.  Those are self explanatory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;9918 04	0	***CREATE INFOTYPE 9919 ***&lt;/P&gt;&lt;P&gt;9918 04	200 I	INS,9919,,,(P9918-BEGDA),(P9918-ENDDA)&lt;/P&gt;&lt;P&gt;9918 04	201 W	P9919-NAME='TEST DYNAMIC ACTIONS'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the above example: When ever you are creating Infotype 9918 record, an infotype 9919 record will be created.  The values for 9919-begda and 9919-endda are passed from infotype 9918.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please close the issue with appropriate points if it is helpful.  Let me know if you have any questions while customizing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck.&lt;/P&gt;&lt;P&gt;Venu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Dec 2005 22:47:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084933#M99011</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-11T22:47:00Z</dc:date>
    </item>
    <item>
      <title>Re: Enhancement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084934#M99012</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Rich&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have checked the value of sy-ucomm in the debug mode&lt;/P&gt;&lt;P&gt;and it is UPD. Then i tried to use this condition in IF statement "IF innnn-infty = '0470' and sy-ucomm = 'UPD'" and i am facing the same problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Previously i was using the following IF statement :&lt;/P&gt;&lt;P&gt;IF innnn-infty = '0470' and ipsyst-IOPER = 'UPD' &lt;/P&gt;&lt;P&gt;and i was facing the same problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanking you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Dec 2005 22:53:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084934#M99012</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-11T22:53:51Z</dc:date>
    </item>
    <item>
      <title>Re: Enhancement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084935#M99013</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Vijay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why don't you set a flag the first time it enters the User exit and check its value when it gets triggered again... BTW are you using the ZXPADU02 exit?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Dec 2005 23:02:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084935#M99013</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2005-12-11T23:02:02Z</dc:date>
    </item>
    <item>
      <title>Re: Enhancement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084936#M99014</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you saying that sy-ucomm = UPD when user presses ENTER and when he clicks SAVE?  I'm a little confused.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you click save,  sy-ucomm is UPD,  in the user exit you only want to do certain logic when the user presses save(UPD).  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So in user exit, you should be able to wrap all that logic in a single IF statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;If sy-ucomm = 'UPD'.

* do this logic.

Endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this in debug, it is not bypassing when user hits ENTER?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Dec 2005 23:14:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084936#M99014</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-12-11T23:14:09Z</dc:date>
    </item>
    <item>
      <title>Re: Enhancement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084937#M99015</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello suresh &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes i am using exit ZXPADU02.&lt;/P&gt;&lt;P&gt;As per your logic goes, if i set a flag value to 'X' when it enters the first time and when it gets triggered again i can check the value of the flag in the condition.&lt;/P&gt;&lt;P&gt;It should work fine, alright. &lt;/P&gt;&lt;P&gt;This will work when the user is creating record (IT 0470 and IT 0471) only for one employee.&lt;/P&gt;&lt;P&gt;What if the user is dealing with more than one employee. &lt;/P&gt;&lt;P&gt;As for the first employee the FLAG will be changed to 'X' (lets say) and will remain 'X' for the next time too and finally condition will not be TRUE for second employee and so on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if i am wrong suresh.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanking you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Dec 2005 23:22:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084937#M99015</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-11T23:22:03Z</dc:date>
    </item>
    <item>
      <title>Re: Enhancement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084938#M99016</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello rich&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What i have observed is when the user presses ENTER then sy-ucomm value is nothing and when the user hits SAVE then sy-ucomm is UPD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not able to uderstand if sy-ucomm is nothing when user presses ENTER then how is the condition &lt;/P&gt;&lt;P&gt;"IF innnn-infty = '0470' and sy-ucomm = 'UPD'" &lt;/P&gt;&lt;P&gt;being statisfied. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hello Venu &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That was a valuable info about dynamic action (setting it up).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanking  you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Dec 2005 23:40:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084938#M99016</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-11T23:40:30Z</dc:date>
    </item>
    <item>
      <title>Re: Enhancement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084939#M99017</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Vijay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can check the pernr each time too as this is triggered for each record...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Dec 2005 23:44:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084939#M99017</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2005-12-11T23:44:22Z</dc:date>
    </item>
    <item>
      <title>Re: Enhancement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084940#M99018</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's what I'd like to know, if sy-ucomm is space when user is hitting enter, how is the program going inside the IF statement.  Have you stepped thru this in debug?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Dec 2005 23:44:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084940#M99018</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-12-11T23:44:53Z</dc:date>
    </item>
    <item>
      <title>Re: Enhancement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084941#M99019</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello suresh &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you explain more about the logic using pernr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanking you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Dec 2005 23:49:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084941#M99019</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-11T23:49:04Z</dc:date>
    </item>
    <item>
      <title>Re: Enhancement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084942#M99020</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Rich&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have checked in the debug mode when user presses ENTER, then the value sy-ucomm is space. And also seen when it reaches the condition IF statement it is not getting into it.&lt;/P&gt;&lt;P&gt;But ...................seems to be weird even though if it is not getting into If statement, then how come it is showing me the IT 0471 screen. This problem is heating up my brain :(.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanking you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Dec 2005 23:54:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084942#M99020</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-11T23:54:40Z</dc:date>
    </item>
    <item>
      <title>Re: Enhancement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084943#M99021</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh, not sure there.  I was just trying to keep you from executing the user exit logic,  that part seems to be working.  When and how is this other screen called?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Dec 2005 00:01:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084943#M99021</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-12-12T00:01:25Z</dc:date>
    </item>
    <item>
      <title>Re: Enhancement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084944#M99022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Vijay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IN your logic that creates the 0471 record, export a variable to memory and check for its value in the User exit by importing from memory and decide whether or not to go further in the User exit. Do an F1 and the SAP documentation is very clear on how to use the EXPORT/IMPORT statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it helps,&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>Mon, 12 Dec 2005 00:10:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enhancement/m-p/1084944#M99022</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2005-12-12T00:10:31Z</dc:date>
    </item>
  </channel>
</rss>

