cancel
Showing results for 
Search instead for 
Did you mean: 

sy-repid cannot be changed at upgrade ECC5.0

Former Member
0 Kudos

this statement is giving error at ECC5.0

sy-repid= 'ZAKORD50'.

SAVE_REPID = SY-REPID. "Report

IF NOT RXBKOR IS INITIAL.

SAVE_EVENT = REVENT.

SAVE_RXBKOR = RXBKOR.

ENDIF.

Accepted Solutions (0)

Answers (1)

Answers (1)

christian_wohlfahrt
Active Contributor
0 Kudos

Hi!

So the rule 'you should not overwrite system fields' is now checked.

Search in the program, where sy-repid is used. See, if you can replace this with an own varialbe (like save_repid) -> exchange save_repid and sy-repid. Then you don't need to change sy-repid, but you can test for 'ZAKORD50'.

If it's just printing information in list header -> define header text explicit!

Regards,

Christian