Passing values from JCL to Natural

Hi All

Can we pass values from JCL to Natural without getting it changed to upper case?

I understand we can translate it to Lower but my parameter contain Caps character which is required.

For instance:- if I want to pass ‘Right_Angle’, then in the program it is received as RIGHT_ANGLE

Thanks

Regards
Sarabjeet Pal

Check if the Profile Parameter

LC=ON

is set, if it is issue a

SET CONTROL 'L'

in your program, or specify

INPUT ...(AD=W)

.

Thanks Wolfgan, INPUT (AD=W) didn’t work but SET CONTROL ‘L’ worked well.