Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Macro name changed from html to html-bobswift during server to cloud migration processing.

...

LE environment variables, such as TZ, are set with the LE option ENVAR using the JCL step PARM keyword. For example, the following statement sets the standard time zone to Eastern Standard Time (EST) with an offset of 5 hours and the daylight saving time zone to Eastern Daylight Saving Time (EDT).


Panel
Html bobswift
<pre>
//PS1      EXEC PGM=UCMD,PARM='ENVAR(TZ=EST5EDT)/&UPARM'
</pre>
Note
titleNote

The forward slash ( / ) character separates the LE runtime parameters from the program parameters.

...

Jn

The Julian day, where n is in the range 1 to 365, inclusive. This format cannot handle leap days. J59 is always February 28 and J60 is always March 1.

n

The Julian day, where n is in the range 0 to 365, inclusive. This format does support leap days:

  • In non-leap years, day 59 is March 1 and day 364 is December 31.
  • In leap years, day 59 is February 29 and December 31 is day 365.

Mm.n.d

Where:

Html bobswift
<ul>
<li> <code>m</code> is the month in the range 1 to 2, inclusive.
<li> <code>n</code> is the week of the month in the range 1 to 5, inclusive.
<li> <code>d</code> is the day of the week in the range 0 to 6, inclusive.
</ul>

Use week 5 to specify the last occurrence of a particular day within the specified month. Week 1 always refers to the first occurrence of a given day within the specified month. For example, M3.5.0 is the last Sunday in March and M11.1.0 is the first Sunday in November.

...