<?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: Event for Cursor Movement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/event-for-cursor-movement/m-p/1534651#M244002</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ruchika,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are no events for cursor movements in list processing or alv grid.&lt;/P&gt;&lt;P&gt;But if you want some event for screens or selection screens, you can use list box instead of text box for the field on which you want to set a event. Assign a function code to the list box. Then you will be able to proces the screen whenever the value in the listbox is changed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Prabhas.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Aug 2006 10:25:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-29T10:25:45Z</dc:date>
    <item>
      <title>Event for Cursor Movement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/event-for-cursor-movement/m-p/1534648#M243999</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I have a problem in which some  validations are required on cursor movement. Even not to press enter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any event for cursor? If yes , Tell me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ruchika&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Aug 2006 10:15:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/event-for-cursor-movement/m-p/1534648#M243999</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-29T10:15:48Z</dc:date>
    </item>
    <item>
      <title>Re: Event for Cursor Movement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/event-for-cursor-movement/m-p/1534649#M244000</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ruchika,&lt;/P&gt;&lt;P&gt;       There is an event called doubleclick in cl_gui_alv* (i'm not sure abt the Class). If you'r using ALV Grid then you can define a function module in the event parameter in the Function Module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       Hope this might help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Prashanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Aug 2006 10:18:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/event-for-cursor-movement/m-p/1534649#M244000</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-29T10:18:48Z</dc:date>
    </item>
    <item>
      <title>Re: Event for Cursor Movement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/event-for-cursor-movement/m-p/1534650#M244001</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;In the PAI event of the selection screen, the event&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON BLOCK block&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;event is triggered. You define a block  by enclosing the declarations of the elements in the block between the statements SELECTION-SCREEN BEGIN OF BLOCK block - END OF BLOCK block. You can use this event block to check the consistency of the input fields in the block. If an error message occurs within this event block, the fields in the block are made ready for input again on the selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT demo_at_selection_on_block.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK part1 WITH FRAME.&lt;/P&gt;&lt;P&gt;PARAMETERS: number1 TYPE i,&lt;/P&gt;&lt;P&gt;            number2 TYPE i,&lt;/P&gt;&lt;P&gt;            number3 TYPE i.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK part1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK part2 WITH FRAME.&lt;/P&gt;&lt;P&gt;PARAMETERS: number4 TYPE i,&lt;/P&gt;&lt;P&gt;            number5 TYPE i,&lt;/P&gt;&lt;P&gt;            number6 TYPE i.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK part2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON BLOCK part1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF number3 LT number2 OR&lt;/P&gt;&lt;P&gt;     number3 LT number1 OR&lt;/P&gt;&lt;P&gt;     number2 LT number1.&lt;/P&gt;&lt;P&gt;    MESSAGE e888(sabapdocu) WITH text-001.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON BLOCK part2.&lt;/P&gt;&lt;P&gt;  IF number6 LT number5 OR&lt;/P&gt;&lt;P&gt;     number6 LT number4 OR&lt;/P&gt;&lt;P&gt;     number5 LT number4.&lt;/P&gt;&lt;P&gt;    MESSAGE e888(sabapdocu) WITH text-001.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the user does not enter numbers in ascending order in one of the blocks, the whole of the corresponding block is made ready for input again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vishal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Aug 2006 10:22:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/event-for-cursor-movement/m-p/1534650#M244001</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-29T10:22:06Z</dc:date>
    </item>
    <item>
      <title>Re: Event for Cursor Movement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/event-for-cursor-movement/m-p/1534651#M244002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ruchika,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are no events for cursor movements in list processing or alv grid.&lt;/P&gt;&lt;P&gt;But if you want some event for screens or selection screens, you can use list box instead of text box for the field on which you want to set a event. Assign a function code to the list box. Then you will be able to proces the screen whenever the value in the listbox is changed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Prabhas.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Aug 2006 10:25:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/event-for-cursor-movement/m-p/1534651#M244002</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-29T10:25:45Z</dc:date>
    </item>
    <item>
      <title>Re: Event for Cursor Movement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/event-for-cursor-movement/m-p/1534652#M244003</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;Actually , Requirement is like :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are two parameters. One is mandatory.one is not.&lt;/P&gt;&lt;P&gt;Based on Radiobutton r1 or r2 I have to make other parameter also mandatory if i select r1.But This should happen as soon as cursor moves.Even User do not want press enter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This has been done but after pressing f8 using At selection screen validations.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am unable to find any event for cursor movement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help in this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ruchika&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Aug 2006 10:33:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/event-for-cursor-movement/m-p/1534652#M244003</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-29T10:33:34Z</dc:date>
    </item>
    <item>
      <title>Re: Event for Cursor Movement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/event-for-cursor-movement/m-p/1534653#M244004</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;Please explain your previous matter clearlr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ruchika&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Aug 2006 10:35:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/event-for-cursor-movement/m-p/1534653#M244004</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-29T10:35:28Z</dc:date>
    </item>
    <item>
      <title>Re: Event for Cursor Movement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/event-for-cursor-movement/m-p/1534654#M244005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Ruchika,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please assign function code to your radio buttons. &lt;/P&gt;&lt;P&gt;use the addition 'USER-COMMAND' in your declaration.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EX.&lt;/P&gt;&lt;P&gt;PARAMETER : RAD1 RADIOBUTTON GROUP GR1 USER-COMMAND ABCD,&lt;/P&gt;&lt;P&gt;            RAD RADIOBUTTON GROUP GR1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will trigger an event when the user clicks any of the radio buttons.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the event AT SELECTION-SCREENu can code ur logic after checking the sy-ucomm = 'ABCD'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please assign points if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prabhas.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Aug 2006 11:13:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/event-for-cursor-movement/m-p/1534654#M244005</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-29T11:13:18Z</dc:date>
    </item>
    <item>
      <title>Re: Event for Cursor Movement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/event-for-cursor-movement/m-p/1534655#M244006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prabhas &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had found this. Also working when I am going from r2 to r1. But as parameter become mandatory in this case ,&lt;/P&gt;&lt;P&gt;screen does not allow to go at selction screen ouput when i want to change from r1 to r2 again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had assigned the points for previous one .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ruchika&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2006 06:12:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/event-for-cursor-movement/m-p/1534655#M244006</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-30T06:12:18Z</dc:date>
    </item>
  </channel>
</rss>

