This message was deleted.
# general
s
This message was deleted.
n
You could have a script on before load that adds a custom field to your transaction and pulls back the relevant value and populates it. This would only ever reflect the current value. Just be warned it would not save the value on the transaction if you wanted that to happen. You could extend it to copy the temp field value to a regular field on before submit if that's what you're trying to achieve. That would be a snapshot and only update if you navigate to the record. If you need to keep it up to date (i.e. the custom field on the custom record updates regularly) you'd be looking at a scheduled process to update your transaction record at which point you don't even need a temp field just directly populate whatever you want to have that value on the transaction.
I suggested what I know. I do not know a non-scriptable solution. You can hang around and see if anyone else replies though 😄
BTW the custom field on the transaction you say you use {custrecord_field} but how is it to know which custom record that lives on and which instance of that record? That's your issue and why I say you need to script it, but interesting to see what anyone else comes up with... if at all.