This information is captured in the access logs. The access logs are loaded into tables such as log_details and log_sessions, if the 'Tomcat access log import/analyze' job is scheduled to run in the system. These tables can therefore be queried to determine this information.
Sample query:
select csu.full_name, ld.start_time, ld.url_short, ld.action_method, ld.url_actionfrom log_details ld join log_sessions ls on ld.session_cookie = ls.token join cmn_sec_users csu on csu.id = ls.user_idwhere lower(ld.url_action) like '%obastaffs%'order by ld.start_time desc;