here is my issue:
I have written a custom load method to load results to the OrdersGrid for the Pick Workbench so I can get the records I want. This works - but the end user wants to further be able to filter the results using the standard filter options with the grid columns. For example, if they enter "Part1" in the Item column and filter, they want the results to still use the results from the CLM but only show records for "Part1". Does anyone know how to capture this filter? I tried something like this and I cannot seem to capture the filter:
Sub GetFilter()
Dim f as String
f = ThisForm.PrimaryIDOCollection.Filter
ThisForm.Variables("vPIFilter").Value = f
End Sub
Any examples or suggestions welcomed!