Skip to main content
sunilc0007
April 26, 2022
Question

I am facing this error in Record Type

  • April 26, 2022
  • 2 replies
  • 0 views

Hello Community,

please solve my error

Whenever I edit list in the record type I get this error to add resume 

Error Evaluating UI Expression

Expression evaluation error at function a!gridField [line 36]: A grid component [label="null"] has an invalid value for "columns". A grid column [label="Resume"] has encountered an error. Expression evaluation error at function 'document' [line 52]: Document Does Not Exist or has been Deleted

please help me 

    2 replies

    harshitb6843
    April 26, 2022

    You must have used a document value in a column. The error states that the document does not exist. Try removing that column and it should work. 

    April 26, 2022

    Hi,

    Looks like in your record list you have a column to display document using document function. If that is the case, some row don't have documents, because of this you may getting this error. To solve this try to handle null conditions

    ex:

     if(
    
       a!isNullOrEmpty(fv!row[recordType!yourdocumentFiled]),
       "",
       document(fv!row[recordType!yourdocumentFiled], "name") /*what ever your propert you are planning to use*/
       )