Formatted output of the time:
DATA TIME TYPE T VALUE '154633'.
WRITE (8) TIME USING EDIT MASK '__:__:__'. "Output:
15:46:33
If the output length "(8)" was not specified here, the
output
would be "15:46:" because the implicit output length for the
type T is 6.  |