cancel
Showing results for 
Search instead for 
Did you mean: 

OPSK field not editable in change mode

0 Kudos

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

Accepted Solutions (0)

Answers (3)

Answers (3)

ahdbell
Discoverer

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.

kenmelching
Active Contributor

Submit an Incident to SAP.

former_member469721
Participant
0 Kudos

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