I'm currently trying to create a ticketing system in which a work order is created, and thus a globalid is generated after the survey is submitted. Then use a second survey, created using the same service and opened through an inbox, to fill out the last remaining data for the work order.
I'd like to be able to populate the inbox instance name with a reduced version of the global GUID. I can currently get the globalid to populate in the instance name, but can't figure out the formula to reduce the string.
EX: concat("Work Order Number: ",substr(${globalid},0,5),", ",${address})
concat("Work Order Number: ",substr(string(${globalid},0,5)),", ",${address})
I'd like the instance name to read something like, Work Order Number: 8C903, 29 Cherry Ln
Any help would be appreciated.