/* @:类似强制类型转换 Suppose a record name is in the PeopleCode variable &RECNAME. Use the @ operator to convert the string to a component name. The following code creates a corresponding record object. */ &RECNAME = "RECORD." | Upper(&RECNAME); //根据表名创建表对象 LOCAL RECORD &REC = CreateRecord(@ &RECNAME);