plz help
493632Jun 18 2006 — edited Jun 19 2006this is the error :
REP-1323: Cannot have output columns in format trigger '<program unit name>'. Cause: In the format trigger for the specified object, you attempted to set the value of a Reports Builder column parameter. For example, you can use the value of a column called COUNT1 in a condition (e.g., IF :COUNT1 = 10), but you cannot directly set its value in an assignment statement (e.g., COUNT1 = 10). Action: Remove the assignment statement from the format trigger.
and this is my code:
function F_7FormatTrigger return boolean is
begin
if testformula > 1 then
return (true);
else return (false);
end if;
end;
can anyone tell me what is wrong with the code i am not getting it and what is the solution
thanx.