|
|
Re: Problem(Call reports from oracle forms) [message #501128 is a reply to message #501082] |
Sat, 26 March 2011 02:26 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
ranamirfan
Messages: 535 Registered: January 2006 Location: Pakistan / Saudi Arabia
|
Senior Member |
![ranamirfan@gmail.com](/forum/theme/orafaq/images/google.png)
|
|
Dear,
Web.Show_Document('http://hoitvoltes5:9002/reports/rwservlet?userid=nisadmin/nisadmin@abc&server=ReportsServer_HOITVOLTES5_asin&report=F:\xyz.rdf&destype=CACHE&desformat=htmlcss¶mform=no','_blank');
With Two Report Parameters ( Company ID, Voucher No ).
Declare
v_connect VARCHAR2 (200) := 'userid=nisadmin/nisadmin@abc';
v_report_name VARCHAR2(100) := 'Voucher.rdf';
v_format VARCHAR2(12) :='Htmlcss';
Begin
Web.Show_Document('http://hoitvoltes5:9002/reports/rwservlet?'||v_connect||'&server=ReportsServer_HOITVOLTES5_asin&destype=cache&report='||v_report_name||'&desformat='||v_format||'&companyid='||:voucher.companyid||'&vouno='||:voucher.vouno,'_blank');
End;
Hope it'll help you.
Regards,
Irfan
[Updated on: Sat, 26 March 2011 02:28] Report message to a moderator
|
|
|
|