Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Newbie.

Status
Not open for further replies.

mbehna

Programmer
Feb 9, 2004
3
US
I have a report where there is a detail and summary - the latter printing on a separate page.

The user can request either detail report which includes summary or summary only.

How do I create such a report? I thought about using different frames but have no idea whether I can suppress the printing of one frame and whether the idea has any merit.

This is my first oracle report. Using Report Builder 6.0.8.12.2 on Windows...

And BTW, thanks in advance to all who reply. :)
 
You are absolutely right. Put details and summaries in separate frames. You will need PL/SQL code in the format triggers of those frames. The code (between begin and end) be something like (for detail frame):

if :p_det_or_sum_parameter = 'DETAIL' then return true;
else return false;
end if;

The same idea for the summary frame.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top