Event should be triggered, if country select as AB.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-11-2023 07:43 AM
Hi Team,
I need a script,
In which event should be triggered, if we select country as eg. "AB" then the field "License" became "No license available".
Thank you!!
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-11-2023 07:54 AM
I think in your case you can create a business on whatever table you have this fields
on Condition
When Country is "AB" and License is false(here i am supposing license field as true/false) or (if its is a string or choice field then you can have a condition License is No License Available)
And on script you can trigger the event
gs.eventQueue('event_name', current, parm1, parm2);
Regards,
Uday