How do I display the internalId of a joined record in a search (It's needed to match up to an external system.) It always displays the name of the record.
It's for this field: {transaction.salesorder}
I tried a formula: CONCAT('#',{transaction.salesorder}) I also tried number formula: {transaction.salesorder}
But I just get errors.
You can access the internal id for List/Record type fields in a saved search simply by appending .id
to the field name in a formula. For your example this would mean using {transaction.salesorder.id}
HTH.