Community Tip - Learn all about PTC Community Badges. Engage with PTC and see how many you can earn! X
Hello,
anyone could help determining how the workflow expression for a conditional OR should look like checking if a change task (wt.change2.WTChangeActivity2) has affected/resulting objects at all?
regards Torsten
Haven't tested it, but something like this should work:
if(wt.change2.ChangeHelper2.service.getChangeablesAfter((wt.change2.ChangeActivity2) primaryBusinessObject).size()>0){
result ="has resulting objects";
} else if( wt.change2.ChangeHelper2.service.getChangeablesBefore((wt.change2.ChangeActivity2) primaryBusinessObject).size()>0){
result ="has affected objects";
} else {
result= "no objects";
}
Was that the solution you expected?
Yes bmr Peridot,
actually the changeables after/before interfaces did point me towards a solution. Since i worked with using queries in situations like this i used a query framework with the same helper interface. And at the very end our superusers voted for only changeables after was of interest to be checked
Thanks a lot
Regards Torsten