We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1af229d commit 4618a70Copy full SHA for 4618a70
Client-Side Components/UI Actions/RedirectAdobeSign/AdobeSign.js
@@ -0,0 +1,15 @@
1
+// UI Action - "Redirect to Adobe Sign".
2
+// HR Agent workspace
3
+Trigger Condition - current.hr_service== gs.getproperty("On Boarding HR Service");
4
+Format Configurable Workspace - "Checked" for workspace button visibility
5
+Table - "sn_hr_le_case"
6
+
7
+//Workspace Client script
8
+function onClick(g_form) {
9
10
+ g_form.setValue("work_notes","Redirected to Adobe Application"); // Worknotes updated
11
+ g_form.addInfoMessage("Redirected to Adobe Application");
12
+ var win= top.window.open("https://xyz.eu1.echosign.com/account/homeJS",'_blank'); // Redirect to Adobe Sign page
13
+ win.focus();
14
+ g_form.save();
15
+}
0 commit comments