Repeating frames-No Data Found [message #150491] |
Thu, 08 December 2005 02:53 |
kitab
Messages: 3 Registered: June 2005
|
Junior Member |
|
|
Hi All,
In the case of reports if there are 3 repeating frames among them first one contains data and the second contains “no data found” and the third contains data . what I have to do to eliminate the second repeating frame.
Thanks in advance
Kitab
|
|
|
Re: Repeating frames-No Data Found [message #150599 is a reply to message #150491] |
Thu, 08 December 2005 11:48 |
guans
Messages: 2 Registered: December 2005
|
Junior Member |
|
|
Hi,
If you know which field does not contain data, try to use conditional formatting to hide the frame when there is no data returned. For example,
function R_G_name_FormatTrigger return boolean is
begin
if (:field1 is null)
then
return (FALSE);
end if;
return (TRUE);
end;
sg
|
|
|