- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2021 04:20 AM
Hello,
I want to create a UI Action and pass the value to UI Page processing page. I created UI Action and UI Page but able to get the parameters to processing script.
UI Action
UI Page
Processing Script
Please suggest the way to get the values to processing script from ui action
Regards,
prudhvi
Solved! Go to Solution.
- Labels:
-
Customer Service Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2021 04:53 AM
Hi,
You can assign the value to the input variable and use the value in the process script.
sample code:
<j2:set var="jvar_req_id" value="${sysparm_prequest}" />
<input type="hidden" id="request" name="request" value="$[jvar_req_id]" />
use the "request" directly in the processing script.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-13-2021 04:53 AM
Hi,
You can assign the value to the input variable and use the value in the process script.
sample code:
<j2:set var="jvar_req_id" value="${sysparm_prequest}" />
<input type="hidden" id="request" name="request" value="$[jvar_req_id]" />
use the "request" directly in the processing script.