Solved
Bypass import records based off date in records (Time Dim)
How would I bypass import records where the time is not equal to the WF Time POV?
How would I bypass import records where the time is not equal to the WF Time POV?
You can bypass records at the Data Source level. You would need to add a complex expression to the Time dimension of the data source. It could look something like this:
Dim WFTimeStr As String = api.CurrentDataClusterKey.TimeName
Dim FileTime As String = args.Value
If FileTime.XFEqualsIgnoreCase(WFTimeStr) = True Then
Return args.Value
Else
globals.Bypass = True
End If
Test and see if you can get that to work.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.