Cybersecurity
DevOps Cloud
IT Operations Cloud
I have two applications - a library of items (the parent) and a check-out (the child). A child can check out multiple parents, and I have a transition action to put the parent in a "Requested" state. Then, the parents need to be manually updated to include the child in a single relational field before the parent is checked out. The "check-out" transition executes an action to transition the child to an "In use" state. This is problematic because if any one parent transitions the child, the other parent is also transitioned, but does not have the child reference and is difficult to find and update. Once the child is finished with the parents, a child "Check-in" transition action returns the parents back to the librarian for review. In the review for each parent, the child must be manually moved from a single relational to a multi-relational to show the check-out history for the parent.
I want to automate this process but I am not a JavaScript coder, and the orchestrations are too complicated to figure out how to make them work. In other applications, I have used post-type transitions to map fields from one application to another, but in this case, a post-type transition is not the right move. I don't want the child to create new parents, nor do I want to create a child from multiple parents (which results in multiple children per parent). I need a lot of help here, so I hope someone has done something similar and can provide me with a full example.
Top Comments