...
${prefix}
: A variable namedprefix
with no default value.${prefix:BR}
: A variable namedprefix
with a default value ofBR
.\${prefix}
: Literal text${prefix}
that should not be treated as a variable.
You can also use system variable allowing you to have dynamic reports.
You can use three kinds of system variables :
SYSTEM_PAGE_ID
: will be replaced by the page where the report is inserted in
e.g.key ~ ‘BR%' AND page = '${SYSTEM_PAGE_ID}’
will show all the requirements having a key starting by “BR” and being defined in the page where the report is inserted in.SYSTEM_VARIANT_NAME
andSYSTEM_VARIANT_ID
:
e.g.key ~ ‘BR%' AND variant = '${SYSTEM_VARIANT_NAME}’
will show all the requirements having a key starting by “BR” and being in the variant of the current page where the report is inserted in.Status colour Blue title IN DEVELOPMENT SYSTEM_SPACE_KEY
e.g.key ~ ‘BR%' AND space = '${SYSTEM_SPACE_KEY}’
will show all the requirements having a key starting by “BR” and being in the space of the current page where the report is inserted in.
Use template variables in the “Traceability” tab
...