Error in Decision Node "Cannot compare incompatible operands of type Null and type Number (Integer)."

I have two tables, Volunteer Requests and Speakers.  The Volunteer Request table collects requests from a website through an API to become a speaker.  The process model writes to the Request table the status of the Volunteer Request, (Approved or Not Approved), then writes the data to the Speaker table for those Volunteer Requests that are approved.

When I process an approved Volunteer Request, the process throws an error at the XOR decision node.

The error is, "An error occurred while evaluating expression: =pv!volunteerRecord['recordType!PMSO Volunteer Request.fields.volunteerStatusId']=2 (Expression evaluation error : Cannot compare incompatible operands of type Null and type Number (Integer).)"

However, the Write Record smart service Update Request, does it's job perfectly and updates the volunteerStatusId in the pv to 2 for an approved Volunteer Request and writes the data to the database.

The expression in the XOR decision node is:

The field is an integer field and I am comparing to a number.  I'm not sure where the null comes in.

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Lead Developer
    in reply to Chris.Gillespie

    Let's have a quick look at the details here.

    You have a PV with some data in your process. You push that data into a write records node to persist the changes. Then you store the updated records value back to your PV. This results in a PV with just the primary key value populated.

    If you don't need that record data anymore in your process, you are fine and can stop reading.

    If this is a new record you store to DB, you will have to fetch the newly generated primary key value and fetch the full record data either in a separate script task, or in the data outputs of the write records node.

    If this is a updated record, use the write records node to push the updates to the DB, but do NOT configure data outputs to store the updated records back to the PV.

    Does this make sense for you?

Children