‎2008 Oct 24 3:42 PM
Hi all,
Is there any function module in abap, that captures the value of the screen where we have clicked?
Suppose I positioned the cursor on field count which shows value 9 on screen. The value 9 has to be captured.
Is there any ways to do so?
Answers please.
Thanks in advance.
Vijay.
‎2008 Oct 24 3:50 PM
‎2008 Oct 24 3:51 PM
Use GET Cursor command
GET CURSOR FIELD 'WA_SCREEN_FLD9' value l_value.
Regards,
Naimesh Patel
‎2008 Oct 24 3:53 PM
If you are trying to provide an interactive list for an ALV display. The selected field on the screen for further process is stored in RS_SELFIELD and before providing that option, you pass HOTSPOT value as 'X' at fieldcatalog level for that field.
Hope this helps, if not let us know your requirement.
‎2008 Oct 24 4:01 PM
Hi,
GET CURSOR FIELD fieldname value variable.
here variable can have the value of the fieldsname when ever user click on the field value.
Regads,
Bharani