- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
7 hours ago
Hello,
we've added some custom fields to pm_prject, and added the same fields ( same names) to the demande table.
is it possible to copy those fields from demand to project while using the ui action "create project" ?
thank you
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
5 hours ago
there is no property etc which controls this.
the fields to copied are hard-coded and not controller from system property
2 ways
1) update the OOTB script to add your custom fields
OR
2) use before insert BR on project table to set your custom fields from Demand (Recommended way)
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
5 hours ago
Hi @ammar_k ,
You can’t achieve this with configuration alone the out-of-box Create Project only maps standard fields. The cleaner approach is to add a before-insert BR on pm_project that queries the source demand and sets your custom fields, so you don’t have to modify the OOTB UI Action.
Thanks & Regards,
Muhammad Iftikhar
If my response helped, please mark it as the accepted solution so others can benefit as well.