CoreBOSBB

Full Version: Question about workflows testing
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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
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.
(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.