TECH TIP: Checking for Null Data values
The DataPipeline.FieldObjects[] array property provides access to the TppField objects. TppField has an IsNull boolean property.
The notation is:
DataPipeline.FieldObjects['FieldName'].IsNull
Example:
if Customer.FieldObjects['Addr1'].IsNull then ShowMessage('field value is null');