Expression evaluation error at function a!util_sasaUiSource: An error occurred w

Expression evaluation error at function a!util_sasaUiSource: An error occurred while executing a save: java.lang.NullPointerException.

The dataset is loading perfectly good on sail environment but the same is returning null pointer exception..
The objective is to add/remove country to a paging grid.
Can some one help

Thanks in advance.

pagingGrid3.sail

OriginalPostID-149871

OriginalPostID-149871

  Discussion posts and replies are publicly visible

Parents
  • Is the code which you have attached is the final version? I could still see some syntactical errors - Comma at line #210 and #212 should be removed.

    AFAIK, definitely there should be some null value in the local!try.REGION_EID. Could you replace the identifiers with the following snippet in your SAIL interface?:

    identifiers: if(
    local!datasubset.totalCount = 0,
    {},
    reject(
    rule!APN_isBlank(singlePV:_),
    index(
    local!datasubset.data,
    "REGION_EID",
    {}
    )
    )
    )
Reply
  • Is the code which you have attached is the final version? I could still see some syntactical errors - Comma at line #210 and #212 should be removed.

    AFAIK, definitely there should be some null value in the local!try.REGION_EID. Could you replace the identifiers with the following snippet in your SAIL interface?:

    identifiers: if(
    local!datasubset.totalCount = 0,
    {},
    reject(
    rule!APN_isBlank(singlePV:_),
    index(
    local!datasubset.data,
    "REGION_EID",
    {}
    )
    )
    )
Children
No Data