SE37,AUTH_CHECK_TCODE加断点:

SAP跳过权限检查/前提是有debug权限

执行事务代码,进入断点,修改sy-subrc = 0,执行,就可以跳过权限检查。

 

 

只给了事务代码权限,没有操作权限:

CL_SUID_TOOLS=================CM00B

SE38进入这个程序

    if sy-subrc eq 0. "Auth check in cache.
      if ls_cache_auth_node-authorized ne 'X'.
        es_msg = ls_cache_auth_node-msg.
      endif.
      return.
    endif.

在这个位置加断点,每次修改sy-subrc = 0.

ls_cache_auth_node-authorized = 'X'

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-06-07
  • 2022-12-23
  • 2021-06-05
  • 2022-02-17
  • 2022-01-08
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-11-05
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-03
相关资源
相似解决方案