How I can populate data in birt report by passing parameters in the URL
问题 I want to pass the parameters in the URL of the BIRT Report. In my reports there are 3 parameters like StoreId, fromdate and todate. I have also tried to write the code of beforeOpen Script of my dataSet in the Birt. Its is as : var store_id; var from_date; var to_date; store_id = params["Store_id"].value; from_date = params["fromdate"].value; to_date = params["todate"].value; this.queryText = this.queryText+" where STORE_ID = "+store_id+" AND TRANSFER_DATE BETWEEN "+from_date+" AND "+to_date