Retrieves the synonym of the specified element. The synonym is defined in the element’s form.
To write out the synonym of activityA1
, use the following statements:VARIABLE
ACTIVITY act_id;
INTEGER status;
.
.
.
act_id := stm_r_ac(’A1’, status);
WRITE (’\n Synonym:’, stm_r_ac_synonym
(act_id, status));
.
.
.