Server Guide

Example

Formats the date and time, with separators, and displays the date in the format MMDDYY on the Transcript.

| result abstime |
 
result := CICS asktime exec.
abstime := result abstime.
 
result := CICS formattime
               abstime: abstime;
               datesep: $/;
               timesep: $:;
               exec.
 
Transcript show: (result mmddyy).


[ Top of Page | Previous Page | Next Page | Table of Contents | Index ]