back to top

Updating the SalesLogix History Summary Crystal Report

Next up in our updating of Sage SalesLogix standard Crystal reports, History Summary.  On December 16th 2008, I wrote a blog post on the SalesLogix History Reports.  In the post I wrote the following on the History Summary Crystal Report.


Start Excerpt………………..


The History Summary Report is very impressive.  This report is a user based report.  The User group has some useful header information.  The footer displays some roll up information. The report is sorted alphabetically by User last name, then by Account, and then by History date with the latest record displayed first. 


I would advise the same improvement items as in the previous reports in this post.  Other improvements would be to have roll up by Activity types.  Overall, this would be a nice starter report for just about any type of user summaries.


 


End Excerpt………………….


The following list details what was updated in previous History Reports and will be included in the updated version of this report:



  1. Update the layout from Landscape to Portrait.

  2. Add a parameter field that allowed the user to filter out database changes. 

  3. Insert the HISTORY.LONGNOTES field to replace the HISTORY.NOTES field (which is 255 character text field), then enter some objects and formulas to handle when the field is empty. 

  4. Format the duration field to read as hours and minutes. 

The additional change I will make to this report is to allow the user to filter out by different types of History Records (ie…  E-mail, To-Do’s, Meetings, or Phone Call).  Since this is the only item we have not discussed in previous posts I will detail how I handled this challenge in todays blog. 


First I created the parameter.


Name the parameter “HistoryType”, the Type will be “String”, under the Value section add “All”, “E-mail”, “To-Do”, “Meeting”, and “Phone Call” to the list (Note: these are the Default Pick list values, adjust to your needs), under Value Options section I added the Prompt Text of “What Type of History do you want to review?” then set the Prompt with Description only to “True”, Default to “All”, and Allow custom values to “False”.


Since the HISTORY.TYPE stores the ID of the Picklist table, we need to look at SQL to determine what the specific ID’s so we use them for our formula.


This is my SQL query:


SELECT DISTINCT sysdba.HISTORY.TYPE, sysdba.PICKLIST.TEXT
FROM         sysdba.HISTORY LEFT OUTER JOIN
                      sysdba.PICKLIST ON sysdba.HISTORY.TYPE = sysdba.PICKLIST.ID


These are my results:











































262145 Meeting
262146 Phone Call
262147 To-Do
262148 Note
262149 Question
262153 Document
262154 E-Mail
262156 Database Change
262159 NULL
262160 Process
262162 Personal Activity
262163 Literature Request
262164 Stop


I now entered a Record Selection Formula of:


(if {?DatabaseChanges} = “No” then {HISTORY.CATEGORY}<>”Database Change”
else
{HISTORY.HISTORYID}>”)
and
(if {?HistoryType} = “Phone Call” Then {HISTORY.TYPE}= 262146
else if {?HistoryType} = “Meetings” Then {HISTORY.TYPE}= 262145
else if {?HistoryType} = “Email” Then {HISTORY.TYPE}= 262154
else if {?HistoryType} = “To-Do” Then {HISTORY.TYPE}= 262147
Else {HISTORY.HISTORYID}>”)


With all of the changes complete I think this already great report is improved.



Make sure to download a free copy of this report using this link.


Get all of our Free SalesLogix Reports here…


Big challenge in our next post, we tackle a report that needs a lot of help. 

Contact Customer FX for your CRM project
We let our expertise speak for itself - let us know how our all-star team can help on your CRM project
About the Author

1 COMMENT

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Infor CRM Sync for Exchange: Action Required by August 31, 2026

Using Infor CRM Sync for Exchange with Microsoft 365? Your Exchange administrator must update tenant settings by August 31, 2026 to prevent sync disruption.

[Webinar] What’s Coming Next for Infor CRM SLX and Why v10 Matters

See what’s coming next for Infor CRM SLX, including new marketing workflows, automation improvements, and reasons to consider upgrading to v10.

Disable Caching in Infor CRM SLX Web Client

In the rare case caching is causing issues in the Infor CRM SLX web client, it is possible to disable specific types of caching by making edits using Application Architect, and then deploying.

Exploring AI Options for Infor CRM v10

I've started taking a closer look at the AI capabilities built into Infor CRM v10. Over the next several posts, I'll share what I learn. From the built-in features and supported AI providers to implementation considerations, costs, and practical use cases.

Infor CRM SLX 10.0: Delegate Ownership Changes for “Everyone” Records

Learn how the new EveryoneOwnerAssignment secured action in Infor CRM SLX 10.0 allows designated users to change ownership of Everyone-owned records without requiring Administrator access.

Related Articles

Infor CRM Sync for Exchange: Action Required by August 31, 2026

Using Infor CRM Sync for Exchange with Microsoft 365? Your Exchange administrator must update tenant settings by August 31, 2026 to prevent sync disruption.

[Webinar] What’s Coming Next for Infor CRM SLX and Why v10 Matters

See what’s coming next for Infor CRM SLX, including new marketing workflows, automation improvements, and reasons to consider upgrading to v10.

Disable Caching in Infor CRM SLX Web Client

In the rare case caching is causing issues in the Infor CRM SLX web client, it is possible to disable specific types of caching by making edits using Application Architect, and then deploying.

Exploring AI Options for Infor CRM v10

I've started taking a closer look at the AI capabilities built into Infor CRM v10. Over the next several posts, I'll share what I learn. From the built-in features and supported AI providers to implementation considerations, costs, and practical use cases.

Related Videos