Issue report by Datagrace
Product
FileMaker ServerVersion
13Operating system version
Windows Server 2008 R2Description of the issue
A script that tests for platform, finds the found count, and omits > 25 completes on a desktop client and fails in WD. The server incorrectly calculates how many records to omit.Steps to reproduce the problem
Set Variable[$Param; Get(ScriptParameter)Go to Layout[Layoutname by calculation: $Param & " List"]
If[$$Platform = 4]
Set Variable[$FC; Get(FoundCount)]
If[$FC > 25]
OmitMultipleRecords[No dialog; GetAsNumber($FC) - 25]
End If
End If