Administration - Smart Quote : Tag Verification
This example demontrates how the verification of a tag (value) for a particular Production Order task can be defined.
Rule Design
when
var config = Configurator();
then
// add verification of SERIALNUMBER tag defined on the SALESORDER when the LOCATE task is set to WIP
// Note: the user working on the Production Order Task LOCATE will not be able to set to COMPLETED until the tag is verified
// The tag value can be scanned if a USB scanner is connected to the computer
config.AddTask("LOCATE").Time(3m).Detail("Locate unit").Verify(new ConfigTaskVerificationModel { Entity="SALESORDER", Target="TAG", TargetValue="SERIALNUMBER" } );