Expression error

Certified Lead Developer

 Expression evaluation error at function a!isNullOrEmpty parameter 1 ???null???: Invalid index: Cannot index property 'x' of type Text into type List of Variant.

 

This error is faced by user when opening record action. This is only faced by a specific user. when I open the same request, I am not getting this error. Also in design error log only highlights the process which calls the interface. This error looks very high level and not highlighting the object name clearly. Does anyone faced any similar kind of issue? Please let me know if there is way to debug this.

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Lead Developer

    Generally it happens when, The specific user has corrupt or unexpected data in their record.
    Open Process Monitor -> find that user's process instance -> inspect the variable values directly.
    Replace unsafe dot notation like pv.myData.x with index(pv.myData, "x", null) before a!isNullOrEmpty() in the record action interface/process.

    Try this things and let us know if that works for you.

Reply
  • 0
    Certified Lead Developer

    Generally it happens when, The specific user has corrupt or unexpected data in their record.
    Open Process Monitor -> find that user's process instance -> inspect the variable values directly.
    Replace unsafe dot notation like pv.myData.x with index(pv.myData, "x", null) before a!isNullOrEmpty() in the record action interface/process.

    Try this things and let us know if that works for you.

Children
No Data