How to set the filter for a field (varchar, yes NULL ) with empty value in Query Editor

Hi there,


I have database table, one field "matnr" configured as varchar, can be NULL, but when setting it to null or NULL in the process model, then writing to database (pic 1), the field value is not NULL, while kind like empty (pic 2) .

I am trying to create a expression rule searching the information with this field "matnr" without value, set "matnr is null" is not working. what's the way to do this? why Appian condition "is null" in Query editor does not work for empty field as other languages?

regards,
Lin

  Discussion posts and replies are publicly visible

Parents Reply Children
  • 0
    Appian Employee
    in reply to linp0001

    Interesting I'd never done this before - instead I've always used the "in" operator, which allows you to provide an empty string. That way, you'd still be able to distinguish between a true empty string and a space.

    Here's an example:

    filter: a!queryFilter(
      field: "text",
      operator: "in",
      value: {""}
    )

    For what it's worth, if you use synced records you don't need to do this - using the "is null" operator will return both explicit NULL values and empty string values Slight smile

  • Hi Peter,

    unfortunately the "is null" operator does NOT work for empty string, otherwise I would not post the question here.

    Mike mentioned it's a long-known issue, I am hoping you can report this issue to Appian development team. hopefully they can fix it as it's really not a small problem, sometime have to do some trick thing.

    Also another thing (mentioned in my post) is that even you explicitly set the value of a field as null in the input data, Appian's "write to data store entity" will still set the field data to empty string, that's also the reason I post this question here as I tried using "is null" operator is query editor, it does NOT return the record with empty string value.

    regards,

    Lin