Hi,
I have a repeted frame in a non repeted frame. when the value of repeated frame is null then the repeated frame do not show but outer non repeting frame show. i want hide this frame when inner repeted frame is null. I have used conditional formating on outer frame but no effect and also is format trigger. On format trigger of non repeating frame i use that codeing
function M_3FormatTrigger return boolean is
begin
if :SrNo2 is NULL then
return (False);
else
return (True);
end if;
end;
here srno 2 is the field of my query
but it also not work, error mesege of "wrong frequency" come.
what should i do?
I have a repeted frame in a non repeted frame. when the value of repeated frame is null then the repeated frame do not show but outer non repeting frame show. i want hide this frame when inner repeted frame is null. I have used conditional formating on outer frame but no effect and also is format trigger. On format trigger of non repeating frame i use that codeing
function M_3FormatTrigger return boolean is
begin
if :SrNo2 is NULL then
return (False);
else
return (True);
end if;
end;
here srno 2 is the field of my query
but it also not work, error mesege of "wrong frequency" come.
what should i do?