Multiple choice technology packaged enterprise solutions

Which directive is used to define the active property reference

  1. Reference

  2. Lookup

  3. With

  4. Save

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The WITH directive is used to define the active property reference in Pega expressions. It establishes which property becomes the primary reference point for subsequent operations. Reference directive is for referencing clipboard pages, Lookup for retrieving external data, and Save for persisting data.

AI explanation

In Pega PRPC's HTML rule syntax, the 'With' directive (pega:reference/pega:list with 'with' tag equivalents in older syntax) is used to set the active property reference for a block of markup, so subsequent controls inside it resolve property references relative to that context. 'Reference' and 'Lookup' aren't the actual directive names used for this purpose. 'Save' is unrelated — it controls persistence behavior, not active property context. Hence 'With' is correct.