The Forums on slxdeveloper.com are now retired. The forum archive will remain available for the time being. Thank you for your participation on slxdeveloper.com!
|
|
Navigation --> Reports --> Can I change somehing there?
Posted: 08 Aug 06 4:57 AM
|
fiogf49gjkf0d Hello guys!
Probably you know the screen on the left navigation "Reports" . We have a lot of Crystal Reports there. Is it possible to change this view? I would like to change the function on the button "Email" becuase we're using another mail tool as SalesLogix is supporting.
Does anybody knows something about this view/button? |
|
|
|
Re: Navigation --> Reports --> Can I change somehing there?
Posted: 08 Aug 06 12:36 PM
|
fiogf49gjkf0d In version 7, the reports area will be completely customizable. The entire thing is rewritten as an active form and uses Crystal RDC for programatic generation of the reports.
However, in current versions, unless you want to build your own reports view, you can 't change that functionality afaik.
-Ryan |
|
|
| |
| |
| |
| |
| |
|
Re: Navigation --> Reports --> Can I change somehing there?
Posted: 10 Aug 06 3:20 AM
|
fiogf49gjkf0d Also, there is a QuickReports bundle that Kevin Noreus (SLX Dev) that wraps everything into an easy to use function - sample below:
'Including Script - System:SLX Report Controller 'Including Script - System:SLX Report Conditions
'Including Script - System:SLX Database Support 'Including Script - System:SLX Crystal Report
'********************************************************************************************************* ' Description : SLX Report Quick Launch ' Purpose : Quick Launch Report functions for Easy Report integration ' Notes : Each of the 4 functions comes with an Example to show how to use with you own code ' Author : SalesLogix ' Updates : ' Comments : It's important to note that should you use the GlobalReportController function to manage ' report output. This is to ensure 1 point of access to the underlying reports collection ' and to prevent RDC object inconsitencies in viewing reports '*********************************************************************************************************
'*** CrystalReportPreview ******************************************** '*** Description: Launch a Report into Non-Modal Viewer for Preview '*** Paramaters '*** Family --> Report (Plugin) Family '*** ReportName --> Report (Plugin) Name '********************************************************************** '*** Example '*** CrystalReportPreview "Account" , "Account Summary - Sample" '*********************************************************************
|
|
|
|