Hide trailer section [message #383562] |
Thu, 29 January 2009 03:14 |
pragatimathur
Messages: 42 Registered: July 2006 Location: DELHI
|
Member |
|
|
Hi all,
I have 2 reports,
one in main section and another in trailer section.
This works fine.
But it depends upon the criteria of front end that trailer section report should be shown or not.
if suppose :p_audit='Y' THEN
trailer section report should be displayed.
else
only main section report to be dispalyed.
my question is how to hide trailer section else it will show blank page.
Any suggestions would be helpful!! Thanks for the help
|
|
|
|
Re: Hide trailer section [message #383572 is a reply to message #383563] |
Thu, 29 January 2009 03:32 |
pragatimathur
Messages: 42 Registered: July 2006 Location: DELHI
|
Member |
|
|
i did this in last frame i.e. main frame
function M_7FormatTrigger return boolean is
begin
if :p_audit='Y' THEN
return (TRUE);
ELSE
RETURN FALSE;
END IF;
end;
but then also blank page is coming for trailer section.
|
|
|
|
|