统计SAP用户在一段时间内使用了哪些tcode的报表,按用户,时间,统计出使用的次数,以便以统计事务码使用的频率,及是否还在使用中。
源码:
部份代码摘要
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
IF p_rb4 IS NOT INITIAL. LOOP AT s_tcode . IF ( s_tcode-low IS NOT INITIAL AND s_tcode-low NS 'Z' ) OR ( s_tcode-high IS NOT INITIAL AND s_tcode-high NS 'Z' ). MESSAGE s001(00) WITH '仅支持查询自开发的应用程序!' DISPLAY LIKE 'E'. LEAVE LIST-PROCESSING. ENDIF. ENDLOOP. SELECT tstc~tcode,tstct~ttext INTO TABLE @DATA(gt_tstc) FROM tstc LEFT JOIN tstct ON tstc~tcode = tstct~tcode AND tstct~sprsl = @sy-langu WHERE tstc~tcode IN @s_tcode AND tstc~tcode LIKE 'Z%'. ELSEIF p_rb5 IS NOT INITIAL. SELECT tstc~tcode,tstct~ttext INTO TABLE @gt_tstc FROM tstc LEFT JOIN tstct ON tstc~tcode = tstct~tcode AND tstct~sprsl = @sy-langu WHERE tstc~tcode IN @s_tcode . ELSEIF p_rb6 IS NOT INITIAL."""登录次数 PERFORM frm_get_logon. RETURN. ENDIF. |
你好,遇到这个表ztbcrsaulist不清楚里面的结构,能帮忙提供一下吗?谢谢!
以前系统的代码,现已登陆不上系统了,所以结构只能自己按着代码还原一下了。