- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2022 02:41 AM
Hi All
In my scenario I have a sc_tasks related to a RITM. Variables are displayed on task form and user can change value in one variable. I need to get value typed by user in a "UI Action". It's this possibile?
I try something like "variable_pool.<variable name>" but doesn't work and also I can't use document.getElementById(element_name) because the name change for different tasks
Regards
Giuseppe M
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2022 06:37 PM
is this UI action client callable or server script?
client side you can get value like g_form.getValue('variables.variablename");
Server side : current.variables.variablename;
Harish

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-26-2022 06:37 PM
is this UI action client callable or server script?
client side you can get value like g_form.getValue('variables.variablename");
Server side : current.variables.variablename;
Harish