I'd like to request a new field in Appcoll, that returns a comma separated list of inventor first names.
Currently, the way we have to do it is like this:
Step 1 - template definition:
Hello {Matter.Inventor1.First}, {Matter.Inventor2.First}, {Matter.Inventor3.First}, {Matter.Inventor4.First}, {Matter.Inventor5.First},
Step 2 - form generation based on template (assume this matter has 3 inventors)
Hello John, Tim, Mike, , ,
Step 3 - manual editing
Hello John, Tim, and Mike,
[["and" inserted and extra commas removed]]
My proposal would eliminate step 3.
Proposed step 1 - template definition:
Hello {Matter.InventorFirstNames},
Proposed Step 2 - form generation based on template:
Hello John, Tim, and Mike,
[["and" inserted and extra fields removed by AppColl backend logic]]
A similar proposal is possible for other lists of variable length, such as inventor full names and email addresses. This would eliminate a lot of manual editing on our end and further reduce likelihood of errors.