- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2024 06:41 AM
I am trying to create incident using custom record producer. I have mapped 'Requested for' field to caller field but after submitting the form it is setting value of caller field with current user.
Can anyone tell me why it is happening?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2024 07:11 AM
Hello @saba tanveer ,
Please check if there are any other script which is setting the caller fileld while submitting. if not instead of mapping field you can use records producer script to do the same work:
current.caller_id = producer.caller_id // you can use your variable name here
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2024 07:06 AM
Hi @saba tanveer
please refer this Article:
https://www.servicenow.com/community/developer-articles/record-producer-map-to-field-on-variable-set...
……………………………………………………………………………………………………
Please Mark it helpful 👍and Accept Solution✔️!! If this helps you!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2024 07:11 AM
Hello @saba tanveer ,
Please check if there are any other script which is setting the caller fileld while submitting. if not instead of mapping field you can use records producer script to do the same work:
current.caller_id = producer.caller_id // you can use your variable name here