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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Printing without Drilling Down

Status
Not open for further replies.

Shin25

Technical User
Jun 14, 2007
102
US
Hi All

Iam using CRXI Rel 2...and have developed a report which has 4 groups. You can drilldown on all groups.

Is it possible when printing that a user has the option of printing all the data without drilling down to each level?

Or is there a way a user can can control what level of printing be outputted?

Many Thanks
 
You would have to set up a parameter {?Print} that conditionally suppresses sections based on the parameter result and the drilldown level, for example:

//Group#2:
if {?Print} = "No" then
drilldowngrouplevel = 0

//Group#3:
if {?Print} = "No" then
drilldowngrouplevel in 0 to 1

//Group#4:
if {?Print} = "No" then
drilldowngrouplevel in 0 to 2

//Details:
if {?Print} = "No" then
drilldowngrouplevel in 0 to 3

If {?Print} = "Yes", everything would be printed; if "No", you would still have the drilldown functionality available.
You would want to format each section with "suppress blank section" and also format the footers to suppress (if unused).

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top