Search Option in My to Dos Widget
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2022 09:36 PM
Hi Everyone,
In My To-do Widget, I wanted to add a Search filter. Is there any OOB way to achieve it?
11 REPLIES 11
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2025 07:25 AM
care to share?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2025 01:42 AM
I have attached the xml of modification on My approval page to search approval records based on ticket number.
I have created a custom field Record Number and custom business rule on approvals to update data in record Number field
Business rule will execute before insert of approvals records and script content is:
if (current.sysapproval != '')
current.u_record_number = current.sysapproval.number;
// get Related Record "Number" When approval is created for non task related record
else {
var record = new GlideRecord(current.source_table);
record.get(current.document_id);
current.u_record_number = record.number;
}