ā2012 Nov 05 9:44 AM
HI ,
I am just working Capturing the User activity ..........
Can any body let me know what all the possible values for system variable SYUCOMM.
i just want to know what are the standard Fcodes used for
Create
Change
Display
Change
Regards
SAM
ā2012 Nov 05 9:54 AM
Hello Sam,
I think you need more searching or real time practical .... anyway
Whenever you want to know the ok code or sy-ucomm value of a key , type '/h' in the command box and press enter. It shows a message on the status bar 'Debugging Switched On'. Now if you press any key , it switches to debugging mode and type sy-ucomm in the fields list then you will get the SY-UCOMM or OK CODE.
Thanks and regards,
Ravindra Sonar
ā2012 Nov 05 11:23 AM
Hi Ravindra ,
Thank you for your reply,
As i am working with User Activity Management,
Could you suggest any generalized coding , where i can conclude whether a user has performed
a particular activity or not,Based on the Fcode.......
or
where do all the standard FCODEs stored........
regards
SAM
ā2012 Nov 05 11:30 AM
Hi Sam,
Check tabel RSMPTEXTS.
http://scn.sap.com/message/4107484#4107484
I think here you will get answer for your query.
Regards,
A.Trivedi
ā2012 Nov 05 11:37 AM
Menu painter ? I am not sure what u want ...... there is a table which stores text RSMPTEXTS ...
ā2012 Nov 05 12:11 PM
Hi Sam,
One Thing you can do. go to cl_gui_alv_grid from SE24 and then attributes tab. Here you can get function codes.That is of type 'ui_func'. so in your code If user has selected 'Total' button then
case sy-ucomm.
when '&SUMC'.
<your code>.
endcase.
Regards,
A.Trivedi