
nkuebelbeck
VIP Member
say i've got a table with 4 fields. two of which make a unique record, and have an index
Fields A,B,C,D (A,B unique index)
given a four records
before ube execution
A|B|C|D
1) 1 2 3 4
1) 1 3 5 4
1) 1 4 6 4
1) 1 5 7 4
I select in my ube dataselection where A==1
I want to update each B field B+=10
desired after ube execution
A|B|C|D
1) 1 20 3 4
1) 1 30 5 4
1) 1 40 6 4
1) 1 50 7 4
now, I don't think I can do this using event rules unless I delete the record and insert a new record. Is that the only way?
My only other thought would be to do an assignment during to DO event and assign the BC value to the new value, but I'm unsure if this would work.
thanks
Fields A,B,C,D (A,B unique index)
given a four records
before ube execution
A|B|C|D
1) 1 2 3 4
1) 1 3 5 4
1) 1 4 6 4
1) 1 5 7 4
I select in my ube dataselection where A==1
I want to update each B field B+=10
desired after ube execution
A|B|C|D
1) 1 20 3 4
1) 1 30 5 4
1) 1 40 6 4
1) 1 50 7 4
now, I don't think I can do this using event rules unless I delete the record and insert a new record. Is that the only way?
My only other thought would be to do an assignment during to DO event and assign the BC value to the new value, but I'm unsure if this would work.
thanks