2009 Apr 29 12:34 PM
hi experts.
I have one iternal table, and user will change any record from that table on screen.
so i want to update that record in the internal table.
but can anybody tell me that "how to read that record at which user has made changes."
thanks in advance
hi experts.
I have one iternal table, and user will change any record from that table on screen.
so i want to update that record in the internal table.
but can anybody tell me that "how to read that record at which user has made changes."
thanks in advance
2009 Apr 29 12:39 PM
keep a flag corresponding to the change and as per the flag value process ur logic.....
Regards,
Anil N.
2009 Apr 29 12:50 PM
Hi ,
Use USER_COMMAND form . The information of the cursor position can be obtained from SLIS_SELFIELD ( Type group SLIS ).
Regards,
Deepthi
2009 Apr 29 12:51 PM
2009 Apr 29 1:23 PM
thanks Dev..
but can u tell me "How to use get cursor.
shall iI use " get cursor field OR
get cursor line"
2009 Apr 29 4:24 PM
Hello,
If you are using a Table Control, check whether CURRENT_LINE helps you.
Regards
Eduardo
2009 Apr 30 6:33 AM
Thanks Eduardo
I am trying same..
but can u tell me how to use "CURRENT-LINE" briefly
2009 Apr 30 6:39 AM
Kindly declare 1 variable inside internal tables as CBOX
and use the below code
MODIFY IT_LIST FROM WA_ITLIST INDEX SY-TABIX TRANSPORTING CBOX1.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |