Insert report output in Temp Table
I am trying to inser report output to temp table, gettting error
"REP-1316: After Report Trigger references column 'DESCRIPTION' at wrong frequency.
	
REP-0069: Internal error
	
REP-57054: In-process job terminated:Terminated with error: 
	
REP-1316: After Report Trigger references column 'DESCRIPTION' at wrong frequency"
in after report triger i am writing insert statment
function AfterReport return boolean is
	
begin
	
 loop
	
  insert into test001(vendor_name)
	
  values (:description);
	
  end loop;
	
  commit;
	
  return (TRUE);
	
end;
Please help
Regards
Sushant
