Returns the short description of the specified element. The short description is defined in the element’s form.
stm_r_description (id, status)
Input/Output If no description exists in the element’s form, status receives the valuestm_missing_short_description
.To retrieve the contents of the short description field in the form of stateSSS.S1
, use the following statements:VARIABLE
STATE state_id;
STRING state_desc;
INTEGER status;
.
.
.
state_id := stm_r_st (’SSS.S1’, status);
state_desc:= stm_r_st_description (state_id, status);
.
.
.