I have an automation set that will create a new maintenance ticket whenever a change request that meets criteria is approved.
The issue I am running into: The team who controls the Change Request process uses custom date fields "Change Start Date" and "Change Completion Date", while our operations team uses separate custom fields "Start Time" & "End Time" for their maintenance issue types.
Is it possible to use the value of the CR start and end time fields, to fill the value of the Maintenance Start and End time fields.
Below
{
"fields": {
"customfield_10068": {{triggerissue.fields.customfield_10022}},
"customfield_10069": {{triggerissue.fields.customfield_10023}}
}
}
"customfield_10022": "Change Start Date"
"customfield_10023": "Change Completion Date"
"customfield_10068": "Start Time"
"customfield_10069": "End Time"
Modifying the request / issue types to use the same field is not possible in this case, even though I'm sure that would resolve the issue.