I want to add Info message in Portal view.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2025 12:46 AM
Hi Team.
I want to add Info message in Poral view.
Currently this message showing in platform view
But I want to add this message in Portal view also
Condition : This message should remain display until "CAN PROVISION PROD (u_approved_for_production_provisioning) "box is checked.
Can please help me how to achieve this.
Thank you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2025 04:13 AM
You mentioned that it's configured on the record producer, but I see that you're trying the scripts in the UI policy/client scripts, not catalog UI policy/catalog client script. Please provide complete information; otherwise, it will be difficult to debug.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2025 04:49 AM - edited 04-16-2025 04:51 AM
@J Siva ,
my apologies,
I have written below code in Client script , but not working
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2025 07:09 AM
CAN PROVISION PROD (u_approved_for_production_provisioning) " This field is available in Platform only , not available in Portal view .
I want achieve by Using Display Business rule and client script.
if it is possible or not. Please let me know.
If Yes please share example script.
Thank you.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2025 03:01 AM - edited 04-16-2025 03:02 AM
Step 1: Create a New Widget
Go to:
Service Portal > WidgetsClick New
Give it a name like:
📝Provisioning Status MessageIn the HTML template, use something like:
In the Server Script, add:
In the Client Script, pass the sys_id:
Step 2: Add the Widget to the Form Page
Go to:
Service Portal > PagesSearch for your record page (e.g., the one used for the custom table)
Add your widget to the top or wherever you want the message to appear
Step 3: Test It
Open the form in Service Portal.
The message should appear if the checkbox is unchecked, and disappear once it’s checked.
Works real-time on load — for dynamic response (live update), you’d need event binding or a g_form script — but this covers most scenarios.
Hope the answer has helped you, please mark the answer correct/helpful. Thank you.