File_Field_Changed_State - DataDictionary
Flags a foreign table column as changed or not, which determines whether the column participates in a save operation
Type: Property
Access: Read/Write
Data Type: Integer
Parameters: None
Parameters
| Parameter | Type | Description |
|---|---|---|
| iFile | Integer | Number of the table |
| iField | Integer | Number of the column in table iFile |
Syntax
Property Integer File_Field_Changed_State
| Access Type | Syntax |
|---|---|
| Read Access: | Get File_Field_Changed_State to IntegerVariable |
| Write Access: | Set File_Field_Changed_State to IntegerVariable/Value |
Description
File_Field_Changed_State flags a foreign table column as changed or not, which determines whether the column participates in a save operation
Sample
Boolean bState
Get File_Field_Changed_State FILE_FIELD Customer.Name to bState
File and File_Field Interfaces
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 Field and File_Field DD Interfaces.
The Field_ version of a message must use the keyword FIELD to identify the file.field name. The File_Field_ version must use the keyword FILE_FIELD to identify the file.field values. These should never be mixed!
// When using Field_ message use the FIELD keyword
Get Field_Changed_State Field Customer.Name to bState
// When using the File_Field_ message use the FILE_FIELD keyword
Get File_Field_Changed_State of oCustomer_DD File_Field Customer.Name to bState
See Also