Anyone using the new options in loops?
Right now there is a tinsy-winsy problem that Claris is aware of, and will have fixed in the next release.
The issue:
When you use "minimum" or "defer" in a loop, after the loop finishes, FileMaker continues to defer evaluation of relationships. This will cause problems for anyone using Global fields on "this" side of the relationship. When you change the content of the global, the relationship isn't updated, and you keep seeing the old data.
There is a Fix
After using "defer" in your loop, create a new, empty loop which has the "always" option. Inside the loop insert, exit loop[ true ]. That will switch off the "defer" flag, and your relationships will return to normal.
Basically, having a loop run with the "Always" option will switch the flag back to normal behaviour. It can be run from any script. It does have to run after the loop with "Minimum" or "Defer" options has finished.
Loop [ flush: Defer ]
.... do your thing
End Loop
# defer flag should have been switched off, but it hasn't
# force the defer flag to be turned off
Loop [ flush: Always ]
Exit Loop If [ true ]
End Loop