Skip to content

Commit 5a01b94

Browse files
authored
Variable Ownerships UI Action (#2317)
* Create Readme.md * Create script.js
1 parent 6613e6c commit 5a01b94

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
The Variable Ownerships UI Action is a lightweight admin utility designed to help manage request item (RITM) variables more effectively.
2+
3+
With just one click, it provides direct access to the variable values table, allowing administrators to quickly review, update, or remove sensitive data entered by mistake. This eliminates the need to navigate multiple related tables manually, saving time and reducing risk.
4+
5+
Key Benefits:
6+
7+
• Direct access to RITM variable values
8+
9+
• Faster cleanup of sensitive information
10+
11+
• Improves data hygiene and admin efficiency
12+
13+
• Simple to implement and lightweight
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/*
2+
This script should be placed in the UI action on the table sc_req_item form view.
3+
This UI action should be marked as client.
4+
Use viewMtom() function in the Onclick field.
5+
*/
6+
7+
function viewMtom() {
8+
9+
var url = 'sc_item_option_mtom_list.do?sysparm_query=request_item=' + g_form.getUniqueValue();
10+
g_navigation.openPopup(url);
11+
12+
}

0 commit comments

Comments
 (0)