REP-52251: Cannot get output of job ID 422101 you requested on Thu Jul 05 17:04:46 MYT 2012.<P>REP-5 [message #559642] |
Thu, 05 July 2012 04:34 |
|
annuar85
Messages: 7 Registered: July 2012 Location: Malaysia
|
Junior Member |
|
|
Hello All,
When i try to run a report in the Apps Server through a client machine, i get this error:
REP-52251: Cannot get output of job ID 422101 you requested on Thu Jul 05 17:04:46 MYT 2012.<P>REP-56033: Job 422101 does not exist..
I can run other reports , they do not have a error.
What may be the problem ?
My forms button to call report code:
declare
report_id report_object;
report_job_id varchar2( 128 );
parm_list ParamList;
paramlist_name varchar2( 11 ) := 'REPPARMLIST';
report_status varchar2( 100 );
alert number;
begin
report_id := find_report_object('CT1001');
if not id_null( parm_list ) then
destroy_parameter_list( parm_list );
end if;
parm_list := create_parameter_list( paramlist_name );
report_job_id := run_report_object( report_id, parm_list );
if report_job_id is not null then
report_status := Report_Object_Status( report_job_id );
if report_status = 'FINISHED' then
Web.Show_Document( '/reports/rwservlet/getjobid' ||
substr( report_job_id, instr( report_job_id, '_', -1 ) + 1 ),
'_blank' );
else
message( 'Report failed with error message ' || report_status );
end if;
else
message( 'Report id is null!' );
end if;
if not id_null( parm_list ) then
destroy_parameter_list( parm_list );
end if;
end;
Please help me solved this problem since i'm new in oracle..
|
|
|
|
|
|
|
|
|