Now I got the solution using one Open Source Tool called "OpenReport" Report Design Using iReport Tool: For Example, Two report used are Drilldown and Drill_link in both rid field is comman i.e its a primary key Table Design: raghudb=# \d epds Table "public.epds" Column | Type | Modifiers ---------------+---------------+----------- rid | integer | not null customer_name | character(20) | c_address | text | raghudb=# \d epds1 Table "public.epds1" Column | Type | Modifiers ----------+---------+----------- rid | integer | not null c_income | text | c_phno | text | Step1: Right Clik the field which u want to give hyperlink, For eg: rid Step2 : Select Properties-> Hyperlink then set Hyperlink Target = Self set Hyperlink Type = Reference set Hyperlink Reference Expression as "http://localhost:8080/openreports/executeReport.action?reportName=Drill_link&rid=" + $F{rid} + "&exportType=" + $P{OPENREPORTS_EXPORT_TYPE} set Link Parameter as parameter in which u created in other report which u want to give as hypelink Step3: Save and Complie both Report Drilldown and Drill_link Got to Open Report (OpenReport is web application deploy with tomcat) Reference: http://oreports.com/ Step 1: Upload the .jasper file i.e file after compilation in iReport tool (Drilldown.jasper and Drill_link.jasper) Step 2: Set parameter in Open Report as same rid Step 3. Run using JasperReport u can get the Drill down report perfectly I have attached the generated Report for ur reference.