Hello everyone,
I am attempting to pass an static parameter from the RCF <report_ui> to my Java class. Something like the following.
Will this work?
<control help_tip="Common Project Ref" name="ecs_param_project_ref_default" type="label">
<params>
<param name="label" value="Common Project Ref"/>
<param name="is_visible" value="false"/>
<param name="value" value="XYZ"/>
</params>
</control>
Can I use the following to read my static parameter?
String default_proj_ref = (String)getParameterValue("ecs_param_project_ref_default");