Format ddmmmyy (where mmm is the month in character format):
According to the preceding example, we might try the following original JCL:
//PDPA0001  JOB  (......),BILL,CLASS=A  | 
//  | 
Variable substitution by stages would proceed as follows:
%%ODAY %%MONTH_IN_CHAR_%%OMONTH.00  | 
%%ODAY %%MONTH_IN_CHAR_0600  | 
However, this results in the following error: Symbol %%MONTH_IN_CHAR_0600 is not resolved.
This error would not have occurred had we tried the following original JCL:
//PDPA0001  JOB  (......),BILL,CLASS=A  | 
//  | 
Parent Topic |