Parameter | Description |
---|---|
iFile | Number of table in current filelist |
iField | Number of column iField in table |
Property String File_Field_Current_Description
Read Access: | Get File_Field_Current_Description iFile iField to StringVariable |
File_Field_Current_Description returns the description for the current value of a foreign column as listed in the column's validation table.This can be used to get at these descriptions within reports and batch processes. If there is no description value, or no validation table, the value of iField itself is returned.
Many of the DataDictionary methods contain a two variants of the same message: Field_Message and File_Field_Message. For a complete description of these messages please refer to The File Field and Field Keywords.
The Field_ version of a message must use the keyword FIELD to identify the Table.Column name. The File_Field_ version must use the keyword FILE_FIELD to identify the Table.Column values. These should never be mixed!
// When using Field_ message use the Field keyword Get Field_Current_Description Field OrderHea.Ship_via to sDescription // When using the File_Field_ message use the File_Field keyword Get File_Field_Current_Description of oOrderHea_DD File_Field OrderHea.Ship_via to sDescriptionSee Also