Hi Everyone,
Is it possible to use the fetched_row function on relate field (not relationship)?
Currently we have the code below written in a before save logic hook, but the current account field is not pulling back a value using fetched_row.
$currentAccount = $bean->fetched_row['account_user_c'];
$GLOBALS['log']->fatal('Current Account: ' . $currentAccount);
$newAccount = $bean->account_user_c;
$GLOBALS['log']->fatal('New Account:: ' . $newAccount);
Any suggestions? Thanks!