%MINUTES Built-In Functions in rpgle
%MINUTES converts a number into a duration(No. of minutes). We can use this duration to add or subtract to a time or timestamp value.
Hence by using %MINUTES, we can get any previous time or future time.
It is used in the form %MINUTES(Number)
Example –%minutes built-in function in rpgle
Columns . . . : 6 80 AMIT/QRPGSRC
SEU==> TESTRPG
FMT * *. 1 ...+... 2 ...+... 3 ...+... 4 ...+... 5 ...+... 6 ...+... 7 ...+... 8
*************** Beginning of data *****************************************
0001.00 DTIME0 S T INZ(T'10.12.15')
0002.00 DTIME1 S T
0003.00 DTIMESTP0 S Z
0004.00 DTIMESTP1 S Z
0005.00 C EVAL TIME1=TIME0 + %MINUTES(2)
0006.00 C TIME0 DSPLY
0007.00 C TIME1 DSPLY
0008.00 C TIME TIMESTP0
0009.00 C EVAL TIMESTP1=TIMESTP0 - %MINUTES(2)
0010.00 C TIMESTP0 DSPLY
0011.00 C TIMESTP1 DSPLY
0012.00 C SETON LR
****************** End of data ********************************************
Output
10.12.15
10.14.15
2013-02-01-01.47.18.620000
2013-02-01-01.45.18.620000