Question

I am fairly new to working in a z\OS environment, I've tried Googling this but found no result.

I'm creating a data set member in the ISPF edit window. However, every time I exit out of the file, save it, try to submit it as a JCL job, it will convert all the characters to upper case.

How can I stop this happening?

Was it helpful?

Solution

While in ISPF Edit on a member, if you type PROFILE on the "Command===>" line and press Enter, you will likely see CAPS ON included in your current options. You can change this by doing the following...

PROFILE UNLOCK
CAPS OFF
PROFILE LOCK

...on the Command===> line, pressing Enter after each.

The ISPF documentation is quite extensive. The above are what ISPF calls primary commands. The ISPF editor is quite powerful, there are SHARE presentations on its features.

ISPF Edit also has line commands, entered by overtyping the line number for a given line. Two such are UC and LC, which correspond to Upper Case and Lower Case respectively. They do just what you'd think, the former folds all text to upper case and the latter folds all text to lower case. Numbers and special characters are unaffected.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top