Last active
August 29, 2015 14:03
-
-
Save styson/601d30e04c0ec0cce653 to your computer and use it in GitHub Desktop.
test for MoreThan generic date filter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var FCApp = new ActiveXObject("FCFLCompat.FCApplication"); | |
FCApp.WorkingDirectory = 'C:\\projects\\Dovetail-Agent\\pages\\'; | |
FCApp.Initialize(); | |
var FCSession = FCApp.CreateSession(); | |
FCSession.Login('sa', 'sa', 'user'); | |
FCSession.ThrowErrors = false; | |
var actEntry = FCSession.CreateGeneric('act_entry'); | |
actEntry.AppendFilter("entry_time", ">", "7/2/2014 10:40:13 AM"); | |
actEntry.Query(); | |
WScript.Echo("\n\nFound: " + actEntry.Count()); | |
WScript.Echo("\n\nProcessing Completed: " + (new Date())); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment