Is it possible to have something like the following?
$R{${P{my_paramater}}
The above throws a complilation error
That won't work, you'll have to do str($P{my_paramater}).
str($P{my_paramater})