- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2022 01:05 PM
Hi all,
Need your help and I welcome your comments.
I have created custom table and I have introduced variables in the form view of this table (used UI Formatter feature)
Requirement: I need to update custom table field value when variable value changes.
I understand I (probably) need to create a BR, but not sure which table to query for this BR.
------------
Pasting visualization of my question below.
1. Whenever "Canned response" VARIABLE field changes, I need to
2. Reflect the change in "Canned response" FIELD in my custom table.
I appreciate your comments 🙂
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2022 07:33 AM
The way I addressed this requirement was similar to:
1. Navigate to 'Record Producer' record which you used to populate custom table variables.
2. Create new "Catalog Client Script" of a "onChange" type , which applies only on Target Record,
3. Select Variable name: i.e. Canned Response
4. Apply the following script:
g_form.setValue('canned_response', g_form.getValue('variables.canned_response'));

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2022 01:18 PM
Hi Valque,
this should be accessible the following way:
current.canned_response = current.variables.canned_response
(depending on your field names)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2022 05:15 AM
Thank you Jan,
Question: Where would you use this script line? I am not sure if it will work on 'On Change' of a 'Client Script' and if BR I am not sure on which table to use it.
I appreciate your response.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2022 07:33 AM
The way I addressed this requirement was similar to:
1. Navigate to 'Record Producer' record which you used to populate custom table variables.
2. Create new "Catalog Client Script" of a "onChange" type , which applies only on Target Record,
3. Select Variable name: i.e. Canned Response
4. Apply the following script:
g_form.setValue('canned_response', g_form.getValue('variables.canned_response'));