Hello,
I'm triing to populate a matrix using conditions...
I have to filter records that have a null value in a date field...but it doesn't work!
It works if I filter not null values with the following code:
oCondition = oConditions.Add
oCondition.Alias = "U_DTClose"
oCondition.Operation = SAPbouiCOM.BoConditionOperation.co_NOT_EQUAL
oCondition.CondVal = String.Empty
I wonder what is the code to filter null values...
Thanks
Max