So, I’m creating a new workflow to copy specific property values from the Deal into the Service object.
These properties won’t all be filled, as they represent the quantities of different products sold (and not every deal will have one of everything).
I’d like to avoid getting Issues (which I have in other workflows) particularly when they report:
The deal property couldn’t be copied. The record doesn’t have this property or the property doesn’t have a value.
I know we could:
- Segment the workflow for all 16 properties (!), having it check if there’s a value, and only attempt to copy if there is.
- Ignore the Issues when they’re reported.
However, neither seems like a smart solution. 1 is a lot of work and maintenance. While #2 makes me uncomfortable as I’m potentially missing other errors/issues in the future.
Ideally, we’d have an if/then/or option in the workflows (e.g. “Copy if filled, ignore if not”) but we don’t.
Any ideas?