back to top

Events based on history in version 6.x SalesLogix

Prior to version 7, there was limited access to those activity and history areas in SalesLogix.  In a recent project, I had to perform a series of tasks upon completing an activity with a particular Type/Category/Result combination.  This had to be done in a 6.2.1 system.  In order to do this, I had to modify the OnCompletedActivity active script.  I wanted to briefly outline the modifications I made to this area for anyone who is running an older version of SalesLogix.


Basically, I needed to look at a completed todo activity with a certain Category, and then update the associated contact and/or opportunity status values depending on the Result of the completed activity.  I created a subroutine named “ToDoActivityOperations” which I call via the Sub Main in the OnCompletedActivity Script


 



Sub ToDoActivityOperations
Dim strSql, objRS

     Set objRS = objSLXDB.GetNewRecordSet


(After creating a recordset, I open a sql statement retuning ContactID, OppID, and result from the history table that have the correct activity type)

     strSql = “SELECT OPPORTUNITYID, CONTACTID, RESULT, TYPE, CATEGORY FROM HISTORY ” & _
              “WHERE ACTIVITYID = ‘” & vActivityID & “‘ and type = ‘” & “262147” & “‘”

     objRS.Open strSql, objSLXDB.Connection


(In my next step, I check to see if any records were returned.  Then I get the values from the history record)


     If objRS.RecordCount <> 0 Then
          strOpportunityID = objRS.Fields(“OPPORUNITYID”).Value & “”
          strContactID = objRS.Fields(“CONTACTID”).Value & “”
          strResult = objRS.Fields(“RESULT”).Value & “”


 (Based on the result value, I call additional subroutines I’ve written to update Opportunity and Status record values
          If lcase(result) = “rejected” Then
             If strOpportunityID <> “” Then UpdateOpportunityStatus “Closed – Rejected”, strOpportunityID
             If strContactID <> “” Then UpdateContactStatus “SRL”, strContactID
          Elseif lCase(result) = “accepted” Then
             If strOpportunityID <> “” Then UpdateOpportunityStatus “SAL”, strOpportunityID
             If strContactID <> “” Then UpdateContactStatus “SAL”, strContactID
          Else

          End If
     End If
     objRS.Close
     set objRS = nothing

End Sub


 That was all there was to it.  It would be nice to be able to edit activity and history views, but short of upgrading to the current version of SalesLogix, this at least allows some degree of control whenever activities are completed.


I hope you find this helpful.  Thanks again for reading! [:)]


 



 

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
Jason Buss
Jason Buss
Jason is a senior application developer with Customer FX.

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