- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-09-2023 06:10 AM
When creating a child incident, by default the following elements are copied from the parent incident:
short description
Impacted element
Service impacted
Category
Sub-category
Assignment group
Description
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-10-2023 07:33 AM
Is parent your custom field? As far as I remember OOB parent field is not present on form.
Raghav
MVP 2023
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-10-2023 04:13 AM
Create an before insert/update BR on incident table with condition "parent is not empty" and below clode:
current.short_description = parent.short_description;
current.description = parent.description;
// add all your fields like above.
Please mark the answer correct/helpful accordingly.
Raghav
MVP 2023
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-10-2023 06:31 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-10-2023 06:34 AM
comment out line 3, 4 and 5.
Since parent is reference field on incident table it will automatically work.
Note: Since this is being done through BR , the fields will be auto filled when incident will be saved/inserted.
Raghav
MVP 2023
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-10-2023 07:15 AM
I tried this but It doesn't work, IDK whats wrong.
anyway thank you sir for your time
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-10-2023 07:33 AM
Is parent your custom field? As far as I remember OOB parent field is not present on form.
Raghav
MVP 2023