no rep output caused by incompatible frequency
Hi All,
I wanna to run another rep from a rep using srw.run_report. Here is my code :
function BetweenPage return boolean is
begin
IF pkg_var.v_loc_from = 'KL' THEN
IF pkg_var.v_loc_to = 'PTI' THEN
srw.run_report('report=ticket_thailand');
END IF;
END IF;
return (TRUE);
end;
The value of the pkg_var is referred to formula column which again refer to column retrieved from SQL.
I got this error : column 'cf_loc_from' references column 'loc_from', which has incompatible frequency.
Pls help
Thanks,
Shu Wen