- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2025 09:12 AM
Hi
I am using a reference qualifier condition on a variable in the multi row variable set "javascript: new global.skilUtil().getUser(current.variables.requested_for);" and requested_for is a variable but the current.variables.requested_for is actually sending undefined value. Could you please help me is there anything wrong and need to be changed.
Thankyou
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2025 09:43 AM - edited 03-16-2025 09:43 AM
Hello @Sagar Rd
Try below:
javascript: new global.skilUtil().getUser(current.row.requested_for);
Hope that helps!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2025 09:56 AM
Thanks for the response, it still undefined below is the reference qualifier -- javascript: new global.skilUtil().getUser(current.row.requested_for);
Thank you
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2025 10:11 AM
Hi @Sagar Rd ,
The current in the MVRS refers to just the MVRS.
you can refer to the Scenario 2 in the below blog and create a onload client script on the MVRS and store the
requested_for value as a session client data and give it a unique name
Please mark my answer as helpful/correct if it resolves your query.
Regards,
Chaitanya
Please mark my answer as helpful/correct if it resolves your query.
Regards,
Chaitanya
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2025 03:50 PM
Thankyou @Chaitanya ILCR