Skip to main content
6-Contributor
July 14, 2025
Solved

How to address tracker key in interwiki stereotype

  • July 14, 2025
  • 1 reply
  • 480 views

Hi,

 

I would like to define an interwiki stereotype in the application configuration resulting from this interwiki link

[<<itemnamerevision5>>|ISSUE:1234]

 the following format:

Requirement name (Rev0, REQ-1234)

 

Application configuration:

"itemnamerevision5" : {
 "link" : {
 "text" : "${name} (Rev${customField[5]}, ${trackerKey}-${id})"
 },
 "popup" : {
 "text" : "Description: ${description}"
 }
}

 

The variable ${trackerKey} does not work asexpected. I also tried several other variable names without success. How can I address the tracker key?

 

CB version: 2.1.0.6

 

Thank you in advance.

Best answer by PolarBear

Have you tried tracker.key? It seems to work for me.

 "myitem" : {
 "link" : {
 "text" : "${summary} ${tracker.key} ${id}"
 },
 "popup" : {
 "text" : "${interwikiLink} Status: ${status}; Description: ${description}"
 }
 }

PolarBear_0-1753642173308.png

 

 

1 reply

PolarBear7-BedrockAnswer
7-Bedrock
July 27, 2025

Have you tried tracker.key? It seems to work for me.

 "myitem" : {
 "link" : {
 "text" : "${summary} ${tracker.key} ${id}"
 },
 "popup" : {
 "text" : "${interwikiLink} Status: ${status}; Description: ${description}"
 }
 }

PolarBear_0-1753642173308.png

 

 

6-Contributor
July 28, 2025

Hi @PolarBear,

that is exactly what I was looking for. Thank you.