How do I get a field/attribute of target entity during BPM Task flow or Workflow when creating new entity?
For example I create a task after a call is created and I want to add the original call's ID to the task's description.
For example I create a task after a call is created and I want to add the original call's ID to the task's description.
Code:
$call_id = ?; description = string\concatenate('Trigger: Creation of entity #', $call_id);
Comment