Giuseppe Iannacone Posted March 30, 2020 Share Posted March 30, 2020 in a scenario where from a change request (father) we log via BPM a new release (child) we want to send an update to the father request... how to get the father ID?!? Link to comment Share on other sites More sharing options...
Steven Boardman Posted March 30, 2020 Share Posted March 30, 2020 @Giuseppe Iannacone it's possible 1. In the BPM of the parent ticket - use a log new request node - note in the outputs for this node you get the Request ID of the newly created child ticket (as a variable) 2. Follow this node with an update request - custom field node In the Request ID field (the one you would never normally change), change this to manual and using the variable picker add in the output parameter from the previous node into this field - value will be like this - &[global["flowcoderefs"]["fcres"]["newRequestId"]] In a custom field add a variable and input &[global["inputParams"]["requestId"]] What you have done here is update the newly created child ticket and put the reference number into a custom field(of the child tickeT) which is the parent ticket ID In the BPM of the child ticket, you can now refer to that custom field, which holds the ticket id of the parent ticket, whenever you want to apply an update to the parent from the child So in your example from your change process do the above, this will pass the id of the change to your release ticket, and the release ticket can then use the value in it's custom field to pass updates back to the parent change ticket Hope that makes sense Link to comment Share on other sites More sharing options...
Giuseppe Iannacone Posted March 30, 2020 Author Share Posted March 30, 2020 @Steven Boardman thanks for the quick reply I will try and eventually get back in case of issues. By the way I was really close to the solution, but now I'm sure am pursuing the right path, which is better! Stay Safe, Stay at Home. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now