Single-Element Functions : List of Functions : stm_r_ch_creation_date

stm_r_ch_creation_date
Returns the date (as a string) on which the specified chart was created.
Note:
Function type
STRING
For elements
Syntax
stm_r_ch_creation_date (ch_id, status)
Arguments
Status Codes
Example
To retrieve the chart date, use the following statements:

VARIABLE
CHART chart_id;
INTEGER status;
.
.
.
chart_id := stm_r_ch (’TOP’, status);
WRITE (’\n Chart created on:’,
stm_r_ch_creation_date (chart_id, status));
.
.
.

The template writes to the document the date on which the chart named TOP was created.