PnlFieldName property: RCMapFields class
Description
Use the PnlFieldName property to set or return the mapped data value as a string value. The value specified—for example, the mapped page field name, key field name, fixed value, system variable, and so on—depends on the value of the MapFieldType property.
This property is read/write.
Example 1
Local PTCS_SRVCONFIG:RCMapFields &rcMapFlds = &rcServConfig.AppendMapField("0.OPRID_VW2.OPRID.2");
&rcMapFields.MapFieldType = "PF";
Local string &sPnlFieldName = &rcMapFlds.PnlFieldName;
Example 2
Local PTCS_SRVCONFIG:RCMapFields &rcMapFlds = &rcServConfig.AppendMapField("0.OPRID_VW2.OPRID.2");
&rcMapFields.MapFieldType = "SV";
&rcMapFlds.PnlFieldName = "%UserId";