I am wondering if I could create an update attribute rule to a table A that copies a value (V) from a field in a table B (by using the $feature.globalid to find the record in table
and inserting a new record into a table C to paste the V. So far, I managed to transfer the V from the $feature in table A to a new record in table C.
code:
return {
"edit": [{
"className": "table C",
"adds": [{
'attributes':
{
"gid_fk":$feature.globalid
}
}]
}]
}Thanks in advance