Create a knowledge feedback Task (kb_feedback_task) with Article Reference using script.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-12-2025 12:13 AM
Hi all,
I am looking for guidance on how to insert a record into the Knowledge Feedback Task table in ServiceNow and associate it with a specific Article via script.
Currently I am failed to insert Article and Feedback Task type (other then "User Feedback") to a new entry by script.
Regards
Deepak Tomar

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-12-2025 02:54 AM
Hi,
So we can review what you've done so far, please share your existing script
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-12-2025 03:25 AM
Hi Kieran,
I am using below script:
Inserted record:
Regards
Deepak Tomar

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-12-2025 05:41 AM
Thanks Deepak,
You can't dot-walk and create records using insert in that way.
If you create a record in kb_feedback, a kb_feedback_task will be auto-created by 'Knowledge Feedback Task Creation' business rule.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-12-2025 05:52 AM
Thanks @Kieran Anson.