I have a workflow that modifies a record and causes another workflow to fire that creates a record. The created record in the second workflow should be related to the modified record in the first workflow but this is not happening. The second record is created but not related to first record.
I have determined that this sort of cascading workflows does not pass relationships along. It would be nice if workflows would cascade in way that allowed that relationship to be maintained.
I case I have been unclear.
Record 1 has Field 1. Workflow 1 is triggered when Field 1 is modified, because Field 1 is modified to equal a certain value Workflow 2 is triggered and Record 2 is created. Record 2 should be related to Record 1 but it is not. That relationship does not carry across the workflows.
I have remedied this situation by combining the workflows but I would like to implement this solution using cascading workflows.
Any thoughts?