How to pass a long list of tags or a checklist in an AppExtension to avoid the error "data value too large"?

These articles provide good practice as well as a workaround to the error message "data value too large". Your AppExtension will consist mainly of a Token.You can also add Tags and Checklists

Click here to create an AppExtention.

Click here to learn more on Checklist.

circle-exclamation

The below screenshot shows you an example of the error:

How you should avoid creating AppExtension?

triangle-exclamation

How to add Checklist in an AppExtension with a formula field?

  • Create a Formula field of type text on the WorkOrder. For example CheckListFormula__c.

  • In the Formula field, CheckListFormula__c , add the checklist value, that is the list of tags separated by a semi-colon. For example: "Front-Door;Back-Yard;Entrance "(Every values should be separate by a ; )

  • Once the Formula field is saved, copy its API name and paste it into the SharinPix deeplink value in the AppExtension

Here is an example of how to write AppExtension with a formula field:

circle-check

How to add Checklist in an AppExtension with a long text area field?

  • Create a field of type Text Area (long). For example TagList__c.

  • In the text area field TagList__c add the checklist value. The value should be separated by a semi-colon. For example: "Front_of_Home" + ";" +"Right_Side_of_Home" + ";" +"Left_Side_of_Home "

Here is an example of how to write AppExtension with a long text area:

Last updated

Was this helpful?