<?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: AT LINE-SELECTION in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-line-selection/m-p/2547497#M579619</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;AT LINE-SELECTION is generally used when u go for interactive report and u want to insert detailed list within the basic list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET CURSOR FIELD is used to get the position of cursor at a particular point in the program.&lt;/P&gt;&lt;P&gt;For any further help u can get the syntax and more detailed description on help,sap.com&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls reward points if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ameet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 Jul 2007 10:04:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-18T10:04:32Z</dc:date>
    <item>
      <title>AT LINE-SELECTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-line-selection/m-p/2547491#M579613</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;what is the use of AT LINE-SELECTION&lt;/P&gt;&lt;P&gt;where we use this what is the use of GET CURSOR FIELD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Kalyani..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 09:58:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-line-selection/m-p/2547491#M579613</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T09:58:25Z</dc:date>
    </item>
    <item>
      <title>Re: AT LINE-SELECTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-line-selection/m-p/2547492#M579614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT LINE SELECTION is basically used when you are displaying in the Interactive reports. This is used once the BASIC list is generated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET CURSOR FIELD is used to capture the cursor field in the output list and it is stored in the Field value " FVAL ".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sample Program :&lt;/P&gt;&lt;P&gt;Just copy n paste this program and execute, you will come to know&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT z_find_userexit NO STANDARD PAGE HEADING.
 
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp; Enter the transaction code that you want to search through in order
*&amp;amp; to find which Standard SAP User Exits exists.
*&amp;amp;
*&amp;amp;---------------------------------------------------------------------*
 
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp; Tables
*&amp;amp;---------------------------------------------------------------------*
 
TABLES : tstc, "SAP Transaction Codes
tadir, "Directory of Repository Objects
modsapt, "SAP Enhancements - Short Texts
modact, "Modifications
trdir, "System table TRDIR
tfdir, "Function Module
enlfdir, "Additional Attributes for Function Modules
tstct. "Transaction Code Texts
 
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp; Variables
*&amp;amp;---------------------------------------------------------------------*
 
DATA : jtab LIKE tadir OCCURS 0 WITH HEADER LINE.
DATA : field1(30).
DATA : v_devclass LIKE tadir-devclass.
 
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp; Selection Screen Parameters
*&amp;amp;---------------------------------------------------------------------*
SELECTION-SCREEN BEGIN OF BLOCK a01 WITH FRAME TITLE text-001.
SELECTION-SCREEN SKIP.
PARAMETERS : p_tcode LIKE tstc-tcode OBLIGATORY.
SELECTION-SCREEN SKIP.
SELECTION-SCREEN END OF BLOCK a01.
 
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp; Start of main program
*&amp;amp;---------------------------------------------------------------------*
 
START-OF-SELECTION.
 
* Validate Transaction Code
SELECT SINGLE * FROM tstc
WHERE tcode EQ p_tcode.
 
* Find Repository Objects for transaction code
IF sy-subrc EQ 0.
SELECT SINGLE * FROM tadir
WHERE pgmid = 'R3TR'
AND object = 'PROG'
AND obj_name = tstc-pgmna.
 
MOVE : tadir-devclass TO v_devclass.
 
IF sy-subrc NE 0.
SELECT SINGLE * FROM trdir
WHERE name = tstc-pgmna.
 
IF trdir-subc EQ 'F'.
 
SELECT SINGLE * FROM tfdir
WHERE pname = tstc-pgmna.
 
SELECT SINGLE * FROM enlfdir
WHERE funcname = tfdir-funcname.
 
SELECT SINGLE * FROM tadir
WHERE pgmid = 'R3TR'
AND object = 'FUGR'
AND obj_name = enlfdir-area.
 
MOVE : tadir-devclass TO v_devclass.
ENDIF.
ENDIF.
 
* Find SAP Modifactions
SELECT * FROM tadir
INTO TABLE jtab
WHERE pgmid = 'R3TR'
AND object = 'SMOD'
AND devclass = v_devclass.
 
SELECT SINGLE * FROM tstct
WHERE sprsl EQ sy-langu
AND tcode EQ p_tcode.
 
FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
WRITE:/(19) 'Transaction Code - ',
20(20) p_tcode,
45(50) tstct-ttext.
SKIP.
IF NOT jtab[] IS INITIAL.
WRITE:/(95) sy-uline.
FORMAT COLOR COL_HEADING INTENSIFIED ON.
WRITE:/1 sy-vline,
2 'Exit Name',
21 sy-vline ,
22 'Description',
95 sy-vline.
WRITE:/(95) sy-uline.
 
LOOP AT jtab.
SELECT SINGLE * FROM modsapt
WHERE sprsl = sy-langu AND
name = jtab-obj_name.
FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
WRITE:/1 sy-vline,
2 jtab-obj_name HOTSPOT ON,
21 sy-vline ,
22 modsapt-modtext,
95 sy-vline.
ENDLOOP.
 
WRITE:/(95) sy-uline.
DESCRIBE TABLE jtab.
SKIP.
FORMAT COLOR COL_TOTAL INTENSIFIED ON.
WRITE:/ 'No of Exits:' , sy-tfill.
ELSE.
FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
WRITE:/(95) 'No User Exit exists'.
ENDIF.
ELSE.
FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
WRITE:/(95) 'Transaction Code Does Not Exist'.
ENDIF.
 
* Take the user to SMOD for the Exit that was selected.
AT LINE-SELECTION.
GET CURSOR FIELD field1.
CHECK field1(4) EQ 'JTAB'.
SET PARAMETER ID 'MON' FIELD sy-lisel+1(10).
CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.&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;Regards&lt;/P&gt;&lt;P&gt;Deepu.k&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 10:00:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-line-selection/m-p/2547492#M579614</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T10:00:27Z</dc:date>
    </item>
    <item>
      <title>Re: AT LINE-SELECTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-line-selection/m-p/2547493#M579615</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;&amp;lt;b&amp;gt;AT LINE-SELECTION.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When the user triggers the function code PICK, AT LINE-SELECTION is always triggered if the cursor is positioned on a list line. The function code PICK is, by default, always linked with function key F2 and hence with the mouse double-click. Consequently, if you have a simple program that does not react to any further user actions, you only need to write this event block. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT LINE-SELECTION.&lt;/P&gt;&lt;P&gt;  &amp;lt;statements&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As described in the section Dialog Status for Lists, the function code PICK is always added to the standard list status when you have an AT LINE-SELECTION event in your program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you assign PICK to other function keys or menu entries, AT LINE-SELECTION is also triggered when the user chooses then. You should avoid this for the sake of the semantics. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Conversely, if you have a more extensive program that does not react to line selection, you should not use the function code PICK. Instead you should assign a different function code to F2 , to ensure that as many events as possible trigger the AT USER-COMMAND event. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;GET CURSOR FIELD field&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;  [OFFSET offset]&lt;/P&gt;&lt;P&gt;  [LINE line]&lt;/P&gt;&lt;P&gt;  [VALUE value]&lt;/P&gt;&lt;P&gt;  [LENGTH length]&lt;/P&gt;&lt;P&gt;  [AREA area].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You use this command to return the name of the field on which the cursor currently stands. The additions also give information about the cursor&amp;#146;s offset within the field, the number of any step loop line or absolute list line present, the current value, the field&amp;#146;s output length or the name of a control, if present. You can use this command both in dialog processing and in interactive reporting. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;go to this link, it will be helpful.&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/9f/dba3ae35c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/9f/dba3ae35c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;reward points for useful ans&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Aarti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 10:02:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-line-selection/m-p/2547493#M579615</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T10:02:36Z</dc:date>
    </item>
    <item>
      <title>Re: AT LINE-SELECTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-line-selection/m-p/2547494#M579616</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;&amp;lt;b&amp;gt;AT LINE-SELECTION&amp;lt;/b&amp;gt; : This Event triggers when we double click a line on the list, when the event is triggered a new sublist is going to be generated. Under this event what ever the statements that are been return will be displayed on newly generated sublist. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After user interaction with the screen, you may need to know the position of the cursor when the action occurred. This is particularly important if the user chooses the Choose function (F2 or mouse double-click). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To find out the cursor position, use the following statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET CURSOR FIELD &amp;lt;f&amp;gt; [OFFSET &amp;lt;off&amp;gt;]&lt;/P&gt;&lt;P&gt;                     [LINE &amp;lt;lin&amp;gt;] &lt;/P&gt;&lt;P&gt;                     [VALUE &amp;lt;val&amp;gt;] &lt;/P&gt;&lt;P&gt;                     [LENGTH &amp;lt;len&amp;gt;].&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 10:03:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-line-selection/m-p/2547494#M579616</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T10:03:33Z</dc:date>
    </item>
    <item>
      <title>Re: AT LINE-SELECTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-line-selection/m-p/2547495#M579617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;AT LINE-SELECTION is used for the interactive reporting.&lt;/P&gt;&lt;P&gt;GET CURSOR is to get the secondary list only when we click a particular field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Look at the sample code with AT LINE-SELECTION and GET CURSOR&lt;/P&gt;&lt;P&gt;*-----Tables declaration&lt;/P&gt;&lt;P&gt;TABLES:EKKO.                                       "PO Header&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*-----Data Declaration&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;  TYPES:BEGIN OF X_EKKO,&lt;/P&gt;&lt;P&gt;          EBELN TYPE EKKO-EBELN,                    "PO Number&lt;/P&gt;&lt;P&gt;          BUKRS TYPE EKKO-BUKRS,                    "Company code&lt;/P&gt;&lt;P&gt;          BSART TYPE EKKO-BSART,                    "Document type&lt;/P&gt;&lt;P&gt;          LIFNR TYPE EKKO-LIFNR,                    "Vendor&lt;/P&gt;&lt;P&gt;          SPRAS TYPE EKKO-SPRAS,                    "Language key&lt;/P&gt;&lt;P&gt;          ZTERM TYPE EKKO-ZTERM,                    "Terms of payment&lt;/P&gt;&lt;P&gt;        END OF X_EKKO,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        BEGIN OF X_EKPO,&lt;/P&gt;&lt;P&gt;          EBELN TYPE EKPO-EBELN,&lt;/P&gt;&lt;P&gt;          EBELP TYPE EKPO-EBELP,                     "PO Item&lt;/P&gt;&lt;P&gt;          WERKS TYPE EKPO-WERKS,                     "Plant&lt;/P&gt;&lt;P&gt;          MATNR TYPE EKPO-MATNR,                     "Material Number&lt;/P&gt;&lt;P&gt;          MATKL TYPE EKPO-MATKL,                     "Material Group&lt;/P&gt;&lt;P&gt;        END OF X_EKPO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA:IT_EKKO TYPE TABLE OF X_EKKO,&lt;/P&gt;&lt;P&gt;       WA_EKKO TYPE X_EKKO,&lt;/P&gt;&lt;P&gt;       IT_EKPO TYPE TABLE OF X_EKPO,&lt;/P&gt;&lt;P&gt;       WA_EKPO TYPE X_EKPO,&lt;/P&gt;&lt;P&gt;       V TYPE EKKO-EBELN.&lt;/P&gt;&lt;P&gt;*-----Selection-screen design&lt;/P&gt;&lt;P&gt;  SELECTION-SCREEN BEGIN OF BLOCK B1.&lt;/P&gt;&lt;P&gt;  SELECT-OPTIONS:S_EBELN FOR EKKO-EBELN.&lt;/P&gt;&lt;P&gt;  SELECTION-SCREEN END OF BLOCK B1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*-----Selection-screen validation&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;*-----retrieving data from the PO Header&lt;/P&gt;&lt;P&gt;  SELECT EBELN&lt;/P&gt;&lt;P&gt;  FROM EKKO&lt;/P&gt;&lt;P&gt;  INTO TABLE IT_EKKO&lt;/P&gt;&lt;P&gt;  WHERE EBELN IN S_EBELN.&lt;/P&gt;&lt;P&gt;*-----if there are no records display an error&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC NE 0.&lt;/P&gt;&lt;P&gt;    MESSAGE E009.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*-----Data retrieval&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;*-----To retrieve the header information&lt;/P&gt;&lt;P&gt;  SELECT EBELN BUKRS BSART LIFNR SPRAS ZTERM&lt;/P&gt;&lt;P&gt;  FROM EKKO&lt;/P&gt;&lt;P&gt;  INTO TABLE IT_EKKO&lt;/P&gt;&lt;P&gt;  WHERE EBELN IN S_EBELN&lt;/P&gt;&lt;P&gt;     AND SPRAS = 'EN'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*-----Top-of-page&lt;/P&gt;&lt;P&gt;TOP-OF-PAGE.&lt;/P&gt;&lt;P&gt;  WRITE:/30 TEXT-012.&lt;/P&gt;&lt;P&gt;  ULINE (100).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*-----Top-of-page for the secondary list&lt;/P&gt;&lt;P&gt;TOP-OF-PAGE DURING LINE-SELECTION.&lt;/P&gt;&lt;P&gt;  WRITE:/30 TEXT-013.&lt;/P&gt;&lt;P&gt;  SKIP.&lt;/P&gt;&lt;P&gt;  ULINE (80).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*-----Displaying the data&lt;/P&gt;&lt;P&gt;END-OF-SELECTION.&lt;/P&gt;&lt;P&gt;  WRITE:/01 SY-VLINE,02 TEXT-001,&lt;/P&gt;&lt;P&gt;         19 SY-VLINE,20 TEXT-002,&lt;/P&gt;&lt;P&gt;         32 SY-VLINE,33 TEXT-003,&lt;/P&gt;&lt;P&gt;         57 SY-VLINE,58 TEXT-004,&lt;/P&gt;&lt;P&gt;         70 SY-VLINE,71 TEXT-005,&lt;/P&gt;&lt;P&gt;         91 SY-VLINE,92 TEXT-006,&lt;/P&gt;&lt;P&gt;         100 SY-VLINE.&lt;/P&gt;&lt;P&gt;  ULINE (100).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT IT_EKKO INTO WA_EKKO.&lt;/P&gt;&lt;P&gt;    WRITE:/01 SY-VLINE,02 WA_EKKO-EBELN,&lt;/P&gt;&lt;P&gt;           19 SY-VLINE,20 WA_EKKO-BUKRS,&lt;/P&gt;&lt;P&gt;           32 SY-VLINE,33 WA_EKKO-BSART,&lt;/P&gt;&lt;P&gt;           57 SY-VLINE,58 WA_EKKO-LIFNR,&lt;/P&gt;&lt;P&gt;           70 SY-VLINE,71 WA_EKKO-SPRAS,&lt;/P&gt;&lt;P&gt;           91 SY-VLINE,92 WA_EKKO-ZTERM,&lt;/P&gt;&lt;P&gt;           100 SY-VLINE.&lt;/P&gt;&lt;P&gt;    ULINE (100).&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*-----To get the secondary list.&lt;/P&gt;&lt;P&gt;AT LINE-SELECTION.&lt;/P&gt;&lt;P&gt;  GET CURSOR FIELD WA_EKKO-EBELN VALUE V.&lt;/P&gt;&lt;P&gt;*-----To retrieve the item information&lt;/P&gt;&lt;P&gt;  SELECT EBELN EBELP WERKS MATNR MATKL&lt;/P&gt;&lt;P&gt;  FROM EKPO&lt;/P&gt;&lt;P&gt;  INTO TABLE IT_EKPO&lt;/P&gt;&lt;P&gt;  WHERE EBELN = V.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*-----To display an error if the user clicks on any other header detail&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC NE 0.&lt;/P&gt;&lt;P&gt;    MESSAGE E001.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WRITE:/01 SY-VLINE,02 TEXT-007,&lt;/P&gt;&lt;P&gt;         19 SY-VLINE,20 TEXT-008,&lt;/P&gt;&lt;P&gt;         42 SY-VLINE,43 TEXT-009,&lt;/P&gt;&lt;P&gt;         48 SY-VLINE,49 TEXT-010,&lt;/P&gt;&lt;P&gt;         67 SY-VLINE,68 TEXT-011,&lt;/P&gt;&lt;P&gt;         80 SY-VLINE.&lt;/P&gt;&lt;P&gt;  ULINE (80).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT IT_EKPO INTO WA_EKPO.&lt;/P&gt;&lt;P&gt;    WRITE:/01 SY-VLINE,02 WA_EKPO-EBELN,&lt;/P&gt;&lt;P&gt;           19 SY-VLINE,20 WA_EKPO-EBELP,&lt;/P&gt;&lt;P&gt;           42 SY-VLINE,43 WA_EKPO-WERKS,&lt;/P&gt;&lt;P&gt;           48 SY-VLINE,49 WA_EKPO-MATNR,&lt;/P&gt;&lt;P&gt;           67 SY-VLINE,68 WA_EKPO-MATKL,&lt;/P&gt;&lt;P&gt;           80 SY-VLINE.&lt;/P&gt;&lt;P&gt;    ULINE (80).&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Roja Velagapudi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 10:03:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-line-selection/m-p/2547495#M579617</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T10:03:43Z</dc:date>
    </item>
    <item>
      <title>Re: AT LINE-SELECTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-line-selection/m-p/2547496#M579618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kalyani,&lt;/P&gt;&lt;P&gt;                 In the report, if the user double clicks on a word or clicks on a hot spot, and you want to perform some operation based this input. in this case you go for AT line selection event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;get cursor field  will return the field name and the value which the user has clicked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; see the sample program below&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------------" /&gt;&lt;P&gt;report  ztest.&lt;/P&gt;&lt;P&gt;data: f(20) type c,&lt;/P&gt;&lt;P&gt;      v(20) type c.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;               START-OF-SELECTION                   *&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  write: /, at 50 'Yahoo' hotspot on.&lt;/P&gt;&lt;P&gt;  skip.&lt;/P&gt;&lt;P&gt;  write: /, at 50 'Google' hotspot on.&lt;/P&gt;&lt;P&gt;  skip.&lt;/P&gt;&lt;P&gt;  write: /, at 50 'Yahoomail' hotspot on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;               AT LINE-SELECTION                       *&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at line-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  get cursor field f value v.&lt;/P&gt;&lt;P&gt;  case v.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    when 'Yahoo'.&lt;/P&gt;&lt;P&gt;      write: 'You have pressed Yahoo'.&lt;/P&gt;&lt;P&gt;    when 'Google'.&lt;/P&gt;&lt;P&gt;      write: 'You have pressed google'.&lt;/P&gt;&lt;P&gt;    when 'Yahoomail'.&lt;/P&gt;&lt;P&gt;      write: 'You have pressed Yahoo Mail'.  &lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Niyaz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 10:04:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-line-selection/m-p/2547496#M579618</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T10:04:24Z</dc:date>
    </item>
    <item>
      <title>Re: AT LINE-SELECTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-line-selection/m-p/2547497#M579619</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;AT LINE-SELECTION is generally used when u go for interactive report and u want to insert detailed list within the basic list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET CURSOR FIELD is used to get the position of cursor at a particular point in the program.&lt;/P&gt;&lt;P&gt;For any further help u can get the syntax and more detailed description on help,sap.com&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls reward points if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ameet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 10:04:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-line-selection/m-p/2547497#M579619</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T10:04:32Z</dc:date>
    </item>
    <item>
      <title>Re: AT LINE-SELECTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-line-selection/m-p/2547498#M579620</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;&lt;/P&gt;&lt;P&gt;AT LINE SELECTION is basically used when you are displaying in the Interactive reports. This is used once the BASIC list is generated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET CURSOR FIELD is used to capture the cursor field in the output list and it is stored in the Field value " FVAL ".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer to this sample program&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/a-sample-hide-get-cursor-in-interactive-programming.htm" target="test_blank"&gt;http://www.sap-img.com/abap/a-sample-hide-get-cursor-in-interactive-programming.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT z_find_userexit NO STANDARD PAGE HEADING.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp; Enter the transaction code that you want to search through in order&lt;/P&gt;&lt;P&gt;*&amp;amp; to find which Standard SAP User Exits exists.&lt;/P&gt;&lt;P&gt;*&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp; Tables&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;TABLES : tstc, "SAP Transaction Codes&lt;/P&gt;&lt;P&gt;tadir, "Directory of Repository Objects&lt;/P&gt;&lt;P&gt;modsapt, "SAP Enhancements - Short Texts&lt;/P&gt;&lt;P&gt;modact, "Modifications&lt;/P&gt;&lt;P&gt;trdir, "System table TRDIR&lt;/P&gt;&lt;P&gt;tfdir, "Function Module&lt;/P&gt;&lt;P&gt;enlfdir, "Additional Attributes for Function Modules&lt;/P&gt;&lt;P&gt;tstct. "Transaction Code Texts&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp; Variables&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;DATA : jtab LIKE tadir OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA : field1(30).&lt;/P&gt;&lt;P&gt;DATA : v_devclass LIKE tadir-devclass.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp; Selection Screen Parameters&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK a01 WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN SKIP.&lt;/P&gt;&lt;P&gt;PARAMETERS : p_tcode LIKE tstc-tcode OBLIGATORY.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN SKIP.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK a01.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp; Start of main program&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Validate Transaction Code&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;SELECT SINGLE * FROM tstc&lt;/P&gt;&lt;P&gt;WHERE tcode EQ p_tcode.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Find Repository Objects for transaction code&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;SELECT SINGLE * FROM tadir&lt;/P&gt;&lt;P&gt;WHERE pgmid = 'R3TR'&lt;/P&gt;&lt;P&gt;AND object = 'PROG'&lt;/P&gt;&lt;P&gt;AND obj_name = tstc-pgmna.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;MOVE : tadir-devclass TO v_devclass.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;SELECT SINGLE * FROM trdir&lt;/P&gt;&lt;P&gt;WHERE name = tstc-pgmna.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;IF trdir-subc EQ 'F'.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;SELECT SINGLE * FROM tfdir&lt;/P&gt;&lt;P&gt;WHERE pname = tstc-pgmna.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;SELECT SINGLE * FROM enlfdir&lt;/P&gt;&lt;P&gt;WHERE funcname = tfdir-funcname.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;SELECT SINGLE * FROM tadir&lt;/P&gt;&lt;P&gt;WHERE pgmid = 'R3TR'&lt;/P&gt;&lt;P&gt;AND object = 'FUGR'&lt;/P&gt;&lt;P&gt;AND obj_name = enlfdir-area.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;MOVE : tadir-devclass TO v_devclass.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Find SAP Modifactions&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;SELECT * FROM tadir&lt;/P&gt;&lt;P&gt;INTO TABLE jtab&lt;/P&gt;&lt;P&gt;WHERE pgmid = 'R3TR'&lt;/P&gt;&lt;P&gt;AND object = 'SMOD'&lt;/P&gt;&lt;P&gt;AND devclass = v_devclass.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;SELECT SINGLE * FROM tstct&lt;/P&gt;&lt;P&gt;WHERE sprsl EQ sy-langu&lt;/P&gt;&lt;P&gt;AND tcode EQ p_tcode.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.&lt;/P&gt;&lt;P&gt;WRITE:/(19) 'Transaction Code - ',&lt;/P&gt;&lt;P&gt;20(20) p_tcode,&lt;/P&gt;&lt;P&gt;45(50) tstct-ttext.&lt;/P&gt;&lt;P&gt;SKIP.&lt;/P&gt;&lt;P&gt;IF NOT jtab[] IS INITIAL.&lt;/P&gt;&lt;P&gt;WRITE:/(95) sy-uline.&lt;/P&gt;&lt;P&gt;FORMAT COLOR COL_HEADING INTENSIFIED ON.&lt;/P&gt;&lt;P&gt;WRITE:/1 sy-vline,&lt;/P&gt;&lt;P&gt;2 'Exit Name',&lt;/P&gt;&lt;P&gt;21 sy-vline ,&lt;/P&gt;&lt;P&gt;22 'Description',&lt;/P&gt;&lt;P&gt;95 sy-vline.&lt;/P&gt;&lt;P&gt;WRITE:/(95) sy-uline.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;LOOP AT jtab.&lt;/P&gt;&lt;P&gt;SELECT SINGLE * FROM modsapt&lt;/P&gt;&lt;P&gt;WHERE sprsl = sy-langu AND&lt;/P&gt;&lt;P&gt;name = jtab-obj_name.&lt;/P&gt;&lt;P&gt;FORMAT COLOR COL_NORMAL INTENSIFIED OFF.&lt;/P&gt;&lt;P&gt;WRITE:/1 sy-vline,&lt;/P&gt;&lt;P&gt;2 jtab-obj_name HOTSPOT ON,&lt;/P&gt;&lt;P&gt;21 sy-vline ,&lt;/P&gt;&lt;P&gt;22 modsapt-modtext,&lt;/P&gt;&lt;P&gt;95 sy-vline.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;WRITE:/(95) sy-uline.&lt;/P&gt;&lt;P&gt;DESCRIBE TABLE jtab.&lt;/P&gt;&lt;P&gt;SKIP.&lt;/P&gt;&lt;P&gt;FORMAT COLOR COL_TOTAL INTENSIFIED ON.&lt;/P&gt;&lt;P&gt;WRITE:/ 'No of Exits:' , sy-tfill.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.&lt;/P&gt;&lt;P&gt;WRITE:/(95) 'No User Exit exists'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.&lt;/P&gt;&lt;P&gt;WRITE:/(95) 'Transaction Code Does Not Exist'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Take the user to SMOD for the Exit that was selected.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;AT LINE-SELECTION.&lt;/P&gt;&lt;P&gt;GET CURSOR FIELD field1.&lt;/P&gt;&lt;P&gt;CHECK field1(4) EQ 'JTAB'.&lt;/P&gt;&lt;P&gt;SET PARAMETER ID 'MON' FIELD sy-lisel+1(10).&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'SMOD' AND SKIP FIRST 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;Regards,&lt;/P&gt;&lt;P&gt;Priyanka.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 10:05:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-line-selection/m-p/2547498#M579620</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T10:05:22Z</dc:date>
    </item>
    <item>
      <title>Re: AT LINE-SELECTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-line-selection/m-p/2547499#M579621</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;at line selection is used in interactive reports to move from one list to another.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;get cursor field returns the name of the field upon which the cursor is placed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;srinivas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;*&lt;STRONG&gt;reward for useful answers&lt;/STRONG&gt;*&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 10:06:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-line-selection/m-p/2547499#M579621</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T10:06:52Z</dc:date>
    </item>
    <item>
      <title>Re: AT LINE-SELECTION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-line-selection/m-p/2547500#M579622</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;GET CURSOR FIELD and GET CURSOR LINE  commnad is used to to pass the output field or output line on which the cursor was positioned during the interactive event to the processing block.&lt;/P&gt;&lt;P&gt;Syntax &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET CURSOR FIELD &amp;lt;f&amp;gt; [OFFSET &amp;lt;off&amp;gt;] [LINE &amp;lt;lin&amp;gt;]  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[VALUE &amp;lt;val&amp;gt;] [LENGTH &amp;lt;len&amp;gt;].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT LINE-SELECTION&lt;/P&gt;&lt;P&gt;Moment at which the user selects a line by double-clicking on it or by positioning the cursor on it and pressing F2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sandeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 10:08:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-line-selection/m-p/2547500#M579622</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T10:08:04Z</dc:date>
    </item>
  </channel>
</rss>

