0

I had command file -

 CMD PROMPT('MY COMMAND FILE')                                     
 PARM KWD(A1) TYPE(*CHAR) VALUES(A1 A2) LEN(11) MIN(1) +    
 PROMPT('MY NAME IS ANDY') RSTD(*YES)                                           
 PARM KWD(A2) TYPE(*CHAR) LEN(250) MIN(1) +                                  
 PROMPT('MY NAME IS BRAWO')  

I want to add small letters in PROMPT('my name is andy') param. I tryied to create command file with small letter description but its not allowing me to do so.

Anand Dhage
  • 109
  • 17

1 Answers1

2

You can put lower case letters in quotes. If you just key lowercase letters, they are automatically converted to upper case, but anything inside the quotes is kept as is.

CMD PROMPT('MY COMMAND FILE')                                     
PARM KWD(A1) TYPE(*CHAR) VALUES(IdentityIQ IdentityNow) LEN(11) MIN(1) +    
PROMPT('My name is Andy') RSTD(*YES)                                           
PARM KWD(A2) TYPE(*CHAR) LEN(250) MIN(1) +                                  
PROMPT('My name is Brawo')

Now if you are using RDi, you might have a setting to auto uppercase everything. I don't think it upper cases anything in quotes, but if you are having trouble with that you can fix the setting in RDi.

jmarkmurphy
  • 11,030
  • 31
  • 59