bussiness rule for updating a change that happens in one table to other table

Community Alums
Not applicable

bussiness rule for updating a change that happens in one table to other table

2 ACCEPTED SOLUTIONS

Shaik Ibrahim k
Tera Contributor

Insert/update BR on Table A

View solution in original post

Community Alums
Not applicable
7 REPLIES 7

Community Alums
Not applicable

is it correct?

Shaik Ibrahim k
Tera Contributor

Insert/update BR on Table A

Abhinandan Bhan
Tera Expert

Set 'Advanced' field to true in BR and add script to Script field in Advanced section to update another record:

var inc = new GlideRecord('targettable');
inc.addQuery('field_name', value);
inc.query();
while(inc.next){
inc.setValue('category', 'Software');
inc.update();
}