FRM-41214 error [message #318143] |
Mon, 05 May 2008 21:22 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
lakshmisaran
Messages: 26 Registered: May 2008
|
Junior Member |
|
|
Hi,
In my form i call 6 reports. all 5 r working fine and while running the 6th, FRM-41214 error msg is thrown.
ADD_PARAMETER(PARA_ID,'P_MSG',TEXT_PARAMETER,:msg);
add_parameter(para_id,'p_exn',text_parameter,'TEST1');
add_parameter(para_id,'p_ex1',text_parameter,'TEST1');
add_parameter(para_id,'p_ex2',text_parameter,'TEST1');
add_parameter(para_id,'p_ex3',text_parameter,'TEST1');
set_report_object_property(v_report_id, report_comm_mode, SYNCHRONOUS);
set_report_object_property(v_report_id, REPORT_EXECUTION_MODE, RUNTIME);
set_report_object_property(v_report_id,REPORT_DESTYPE, CACHE);
set_report_object_property(v_report_id, report_server, 'rep_server');
set_report_object_property(v_report_id,report_other,'paramform=NO');
set_report_object_property(v_report_id, report_filename,'g:\invoice.rdf');
v_reportserverjob:=run_report_object(v_report_id, para_id);
v_job_id := substr(v_reportserverjob,length('rep_server')+2,length(v_reportserverjob));
v_rep_status:=report_object_status(v_reportserverjob);
Web.show_document('http://local_machine:8889/reports/rwservlet/getjobid'||v_job_id||'?server=rep_server','_blank');
the code for all others is similar except the parameters and report name.
Anyone could guess on this scenario.
Rgds,
Lakshmi
|
|
|
|
|
|
|
asdf [message #318453 is a reply to message #318143] |
Tue, 06 May 2008 21:42 ![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) |
lakshmisaran
Messages: 26 Registered: May 2008
|
Junior Member |
|
|
hi DJ,
thx for the reply.
I'm doing upgradation work from 6i to 10g. my 5th report is working and found out the problem.
when all other 4 reports are generating why not this guy, so i guessed that problem shud be in report(did by some other guy). they have used a image item where the file path is locating someother drive which is ok for 6i but not ok for 10g.
now got some problem with the last report, tracing the bug... if i couldnt pls help me... will post u the code.
Thx
Lakshmi
|
|
|
|
|