|
Logon currently not possible !
BI Client
问题解决:
实际IDES里只是在一个增强里限制了这些符号,正在生产机可能会因为申请license等原因会强制禁止不清楚。这个问题可以在系统中修改:
方法1:把ztarget_addobj表中SID为ERP的行全删除;
方法2:修改ZXUSRU01程序,在里面增加排除的用户名,如:
*----------------------------------------------------------------------*
tables: zsystem_user, ztarget_addobj.
* Log_on user ?
select single * from usr02 where bname eq sy-uname.
* Check: System allowed for Login ?
* if usr02-bname = 'D000195_09' or usr02-bname = 'C5064252' or usr02-bname = 'BUCHERT' or usr02-bname = 'DDIC'.
*break C5064252.
select single * from zsystem_user where bname eq usr02-bname.
if zsystem_user-isallowed <> 'X' and usr02-bname <> 'SAP*' and usr02-bname <> 'DDIC' and usr02-bname <> '自己的用户名'.
希望对大家有用。 |
|