cancel
Showing results for 
Search instead for 
Did you mean: 

Wrong sy-sysid value

Former Member
0 Kudos

Hello,

An ABAP program which makes use of sy-sysid picks up a wrong value. The system id is TST, but it picks up production id which is PRD. Therefore, when user runs transaction that needs to place a text file in the local directory, it is looking for /PRD/pce/outdata instead of the existing /TST/pce/outdata, and cannot find it. Clients are refreshed via client import and local client copy. Logical System is defined properly. Where is wrong sy-sysid is coming from?

Thanks

Galina

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Galina-

As you said if you are facing this issue after the client refresh then you should check the ABAP prog and debug and see if the value is defined as PRD in that.

Thanks,

GR

Former Member
0 Kudos

George,

There is nothing in ABAP program that uses PRD directly. Here is the ABAP statement:

concatenate '/' sy-sysid '/pce/outdata/' 'PGP-CDR-64009E-UCFR914' into out_file.

Thanks

Galina