Add a new checking set affecting a single job type

Procedure

  1. In Studio, open the UWIssueCheckingSet typelist.
  2. Add a new typecode entering a code, name, and description.
  3. Add the same typecode to the TriggeringPointKey.ttx typelist extension.

    Next, link the checking set typecode to the triggering point key.

  4. In UWIssueCheckinSet.ttx, add a category. Set typelist to TriggeringPointKey and code to the typecode value.
  5. Open gw.job.JobProcessUWIssueEvaluator.gs.
  6. In the forJobtype method, instantiate a new JobProcessUWIssueEvaluator with the appropriate CheckedAt properties set. Assign it to this.JobProcessEvaluator. If this code already exists, you can add a CheckedAt property.
    For example, the forSubmission method in the default configuration is as follows:
    static function forSubmission() : JobProcessUWIssueEvaluator {
        return new JobProcessUWIssueEvaluator() { 
          :CheckedAtAllBlockingPoints = {"All"}
        }
      }