on 2018 Jun 01 8:24 AM
Hi All,
I am facing an issue in OPSK tcode, the following screen is coming up.
I have already shared the su53 screen to basis team, but as per them there is no technical authorisartion issue as such.
I checked that snote 375945 cud be an issue, but this note is redundant as i am working in s/4 hana .
Any help on this will be appreciated.
Regards,
Rohit
It's because there is no best practice or IDES entry in client 000 for table TCJ01.
The configuration assumes an entry exists.
We resolved with a simple ABAP to insert an entry that then allowed the config to be maintained.
e.g
REPORT ZFIXTCJ01.
DATA: itab TYPE STANDARD TABLE OF TCJ01,
wa LIKE LINE OF itab.
wa-mandt = '120'. "where 120 is the client you are configuring.
wa-argum = 'X'.
wa-STRKZ = '1'.
insert tcj01 from wa.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Submit an Incident to SAP.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Another possibility also could be because of SAP GUI which you are using. Update to the latest available SAP GUI logon pad and test it once.
Regards,
Pradeep
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
92 | |
8 | |
8 | |
7 | |
4 | |
4 | |
3 | |
3 | |
3 | |
2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.