Home General
New Blog Posts: Merging Reports - Part 1 and Part 2

Checking Null values with RAP

edited July 2007 in General
Hi

Is it possible to check for a Null value for a field using RAP?

Eric

Comments

  • edited July 2007
    ----------------------------------------------
    Tech Tip: RAP: 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');


    --
    Regards,

    Nico Cizik
    Digital Metaphors
    http://www.digital-metaphors.com

    Best Regards,

    Nico Cizik
    Digital Metaphors
    http://www.digital-metaphors.com
  • edited July 2007
    Great support, as ever!

    Eric

This discussion has been closed.