How to hide hyperlinks subreports from main reports in printing - sql

I'm using crystal reports for SAP BUSINESS ONE and I want to hide hyperlinks subreports from main reports just when I print it.The hyper link to hide
Thank you!

Related

Crystal Report hide main report in vb.net

I am using Crystal report to display my reports. I have one report which is containing sub report also. Now I want to show only sub report and hide main report in some situation. Can it be possible that hide main report and display sub report only.
Can anyone have an idea how to do this?
leave the section where sub report is placed and for rest all sections apply supress property.... you can directly use supress or you can also conditionally supress by writing a formula by going to section expert.

Pass Chart from VB.NET to Crystal Report

I am using a VB.NET 2013 form that has a Chart for my sales. I want to send this Graph to appear inside a Crystal Report XI Release 2 file as a report without redesign this chart in the crystal report.
How can I do that?
I think you are telling that any third party chart will send into crystal report?
If yes, then that is not possible. You have to redesign chart in crystal report as any third party things is not part of crystal report and report does not understand that.
Report have its own logic to show data even for chart/graph.

How to display all pages continuously in Crystal Reports?

I have a question about Crystal Reports 2013.
I have a report with 11 - 13 pages data (dynamic). And I want to display all of them continuously / without any page break. So, I need to view next page just with scrolling, not with a button like Next Page.
Could you help me please how to do it in Crystal Reports 2013?
you can check this,
CrystalReportViewer1.SeparatePages = false;
Also check this link which say "Keep Togather" setting will help you.
http://www.crystalreportsbook.com/forum/forum_posts.asp?TID=3196
http://scn.sap.com/thread/1649022(This is the last option I found)
Updated
I did not get any thing at crystal report side, the reason will be crystal report every time hit the db and execute whole code and redesign the page. So I don't think you can do this.
http://www.codeproject.com/Questions/87668/Showing-all-pages-using-scroll-in-Crystal-Reports
http://www.crystalreportsbook.com/Forum/forum_posts.asp?TID=7852
http://www.crystalreportsbook.com/Forum/forum_posts.asp?TID=547
You can give the facility in export option as pdf, but not at crystal report side.
No, Crystal Reports won't allow to display many pages continuosly.
I understand that hitting "next page" and waiting for reload is annoying. You can programmatically export a report in PDF, so that Adobe Reader will show pages continuosly.
peace be on you iwan,
please right click on CrystalReportViewer , tag
and see properties,
and set SeperatePages = False
my report pages are now continious without any break with scroll.
![enter image description here][1]

Disable navigation on clicking Sub report from main Crystal Repert - VB.net

How to disable navigation to the sub-report when clicked on it? I have report with 1 sub-report that displays Company information and I need to disable it once it has been clicked by Customer.
it can be disable from crystal report viewer control.Use
CrystalReportViewer1.EnableDrillDown = False
this will work for crystal report 2008 or above.
Edits:
AS per comments by Question owner,in order to disable just navigation.there is no defined way.but it can be achieved by some other means.
"Create an empty text cell that is as wide as the report, and use it to "cover" the clickable fields to prevent drilldown.
Seriously, this is the only way we've found to do this. This is also documented on the BusObj support knowledge base (http://support.businessobjects.com/library/kbase/articles/c2013204.asp)"
for more information,Refer the link Disable Navigation

How to print each report on one page in RDLC report?

I am making a RDLC report. which has tablix , charts and all..other stuff..
I need to ask one thing that , how can I make report that each chart or tablix or rectangle comes on a Single page.
Eagerly waiting for the reply.
Thanks,
Nitin
I believe if you set the report's interactive height to 0 this will will put the entire report on one page.
Original Article