when create a child inc it gets these feilds values

rampage
Tera Contributor

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

1 ACCEPTED SOLUTION

Is parent your custom field? As far as I remember OOB parent field is not present on form.


Raghav
MVP 2023

View solution in original post

9 REPLIES 9

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

rampage
Tera Contributor

I did it like that but it's not working

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

rampage
Tera Contributor

I tried this but It doesn't work, IDK whats wrong.

anyway thank you sir for your time

Is parent your custom field? As far as I remember OOB parent field is not present on form.


Raghav
MVP 2023