CoreBOSBB
Question about workflows testing - Printable Version

+- CoreBOSBB (https://discussions.corebos.org)
+-- Forum: Support (https://discussions.corebos.org/forumdisplay.php?fid=17)
+--- Forum: Administrator Support (https://discussions.corebos.org/forumdisplay.php?fid=8)
+--- Thread: Question about workflows testing (/showthread.php?tid=1760)



Question about workflows testing - geraldbigot - 04-12-2020

Hello,

When you say using evalwf.php like that :

mycrm/evalwf.php?workflowid=xx&crmid=xx

it's easy to find workflowid but which CRMID is needed ?

Thank you for your help


RE: Question about workflows testing - joebordes - 04-12-2020

the crmid should belong to the record you want to evaluate with. Suppose you have a workflow that is launched against the Contacts module. For that workflow any contact record crmid will do. if the workflow is for Assets, then the crmid must belong to any Asset record you want to test.

The idea is that the workflow is launched against records in a module, so you have to give it the CRMID of any record in that module. Obviously you will try to use records that make the conditions true and false to verify it is configured correctly.


RE: Question about workflows testing - geraldbigot - 04-12-2020

(04-12-2020, 11:26 AM)joebordes Wrote: the crmid should belong to the record you want to evaluate with. Suppose you have a workflow that is launched against the Contacts module. For that workflow any contact record crmid will do. if the workflow is for Assets, then the crmid must belong to any Asset record you want to test.

The idea is that the workflow is launched against records in a module, so you have to give it the CRMID of any record in that module. Obviously you will try to use records that make the conditions true and false to verify it is configured correctly.

Thank you for this explanation.

I know which crmid to chose now.