Hi
In the beginning let's say I'm not an expert in Oracle Reports.
I've created a simple query (in scott schema)
and a Format Trigger on SAL column.
function B_SALFormatTrigger return boolean is
begin
if :sal >1000 then
return false;
else
return TRUE;
end if;
end;
But the Reports Builder throws an error
Quote: |
REP-1314 Format Trigger 'B_SAL' references column 'SAL' at a wrong frequency
|
I found on google that column should by a ' repeating frame '
but no one says how to change it.
------EDIT------
OK found the anwser.
I tried to create script on column header not on records.
[Updated on: Fri, 05 September 2008 11:39]
Report message to a moderator