Returns the name of the Statemate user who created the specified chart. This function is relevant only for charts that were explicitly created using one of the graphic editors.
The function status codeVARIABLE
CHART chart_id;
INTEGER status;
.
.
.
chart_id := stm_r_ch (’TOP’, status);
WRITE (’\n Chart created by:’,
stm_r_ch_creator (chart_id, status));
.
.
.