4D v16.3

Modified record

Home

 
4D v16.3
Modified record

Modified record 


 

Modified record {( aTable )} -> Function result 
Parameter Type   Description
aTable  Table in Table to test if current record has been modified, or Default table, if omitted
Function result  Boolean in Record has been modified (True), or Record has not been modified (False)

Modified record returns True if the current record of aTable has been modified but not saved; otherwise it returns False. This function allows the designer to quickly test whether or not the record needs to be saved. It is especially valuable in input forms to check whether or not to save the current record before proceeding to the next one. This function always returns True for a new record.

Note that this function always returns True in the following contexts:

  • the current record is a new record,
  • after the execution of the PUSH RECORD and POP RECORD commands,
  • as soon as a value has been assigned to a field of the record, even if it is the same value as the former one. For example, Modified record returns True after the following statement is executed:
     [Table_1]Field_1:=[Table_1]Field_1

Example  

The following example shows a typical use for Modified record:

 If(Modified record([Customers]))
    SAVE RECORD([Customers])
 End if



See also 

Modified
Old
SAVE RECORD

 
PROPERTIES 

Product: 4D
Theme: Records
Number: 314

This command can be run in preemptive processes

 
HISTORY 

Created: < 4D v6

 
ARTICLE USAGE

4D Language Reference ( 4D v16)
4D Language Reference ( 4D v16.1)
4D Language Reference ( 4D v16.2)
4D Language Reference ( 4D v16.3)