RelLangRecName property: Record class
Description
This property returns the name of the related language record as a string. The value will be a null string ("") if there is no related language record.
Example
Local Record &REC;
&REC = GetRecord();
&RECNAME_BASE = &REC.Name;
&RELLANGRECNAME = &REC.RelLangRecName;
SQLExec("select RELLANGRECNAME from PSRECDEFN where RECNAME = :1", &RECNAME_BASE,⇒
&RELLANGRECNAME);