Friday 30 October 2015

How to Hide Elements based on Condition in BIRT in 5 Steps - IBM Maximo


  • Supponse conditon is: hide any item suppose ITEMNUM if null like in service/material case
    row["itemnum"] = null
  • Suppose hide an  element when totalcost is greater than $5000.
     row["totalcost"] > 5000
  • Suppose Display picture depends of specific value of any element, for example we use 2 different picture , pic1 and pic2. One of them will be visiable when a certain condition mets. 
    • Insert both Pics into your desired position in the report and
    • Now hide pic1 and condition expression will be this: row["totalcost "] <= 10000
    • Now hide pic1 and condition expression will be this: row["totalcost "] < 5000 || row["totalcost "] > 10000

No comments:

Post a Comment