Dynamic Watermarks in BI publisher

Aadi

Member
I need to make a BIP report with watermark. My watermark will change depending upon a value in processing options in the report versions. The watermark is required in one case is – Draft (diagonally) and in other case we require Lafarge logo (In Horizontal). I do not want to make two templates. Any suggestion how to implement it in one template.
 
Hello

perhaps, you can use XSL for that. Something like this
<?if: CONDITION =’DRAFT’?>
...Form Field ...
<?end if?>
<?if: CONDITION =’FINAL’?>
...Form Field ...
<?end if?>
 
Back
Top