28-10-22 07:46 AM
System.Data.EvaluateException: Type mismatch in function argument: Trim(), argument 1, expected System.String.
Can anyone suggest how to delete null rows from a DateTime field?
28-10-22 08:50 AM
08-11-22 09:51 AM
08-11-22 09:55 AM
16-11-22 10:06 AM
16-11-22 03:01 PM
Hi Vinod,
A Flag data item is aligned to the .NET Boolean data type, therefore it's value can only be equal to True or False.
If you pass a Flag data item into a Code Stage and the current value of this data item has not been set to True or False, then the Code Stage will default the value to False.
You can Loop the Collection outside of a Code Stage and text the length of the column value. If the value in the Collection has not been initialized, and therefore appears to be null, then the length would equal 0.
Len([CollectionName.FieldName]) = 0
You can then remove the row from the Collection using the Collections - Internal Business Object.