back to top

SalesLogix Activity Types

The SalesLogix Activity & History tables use a ‘Type’ field to store the type of Activity. If you look at the TYPE field, you’ll see that the values there are numeric values such as ‘262147’. This number represents the type for the given activity or history record. But for someone new to SalesLogix it might be difficult to determine how & where these types are defined.

These “types” are stored as a picklist named “Activity Types”. Take a look at the items in the picklist with the following query:

select p1.id, p1.text, p1.shorttext from picklist p1 
left outer join picklist p2 on (p1.picklistid = p2.itemid)
where p2.picklistid = 'PICKLISTLIST' and p2.text = 'Activity Types'

This query will return three columns from the picklist table. The ID, which you will find is the numeric value stored in the TYPE field of the Activity & History tables (such as “262147“), the Text field, which is the text name for the Activity Type (such as “To-Do”, “Phone Call”, etc), and the ShortText, which is the abbreviated text for the activity type (such as “TODO”, “CALL”, etc). The results of the above query will show you the following:

262156  Database Change    DBCHANGE
262150  Dialog             DIALOG
262153  Document           DOC
262154  E-Mail             EMAIL
262151  Event Selection    ESP
262155  Fax                FAX
262157  Form               FORM
262163  Literature Request LITREQ
262145  Meeting            APPT
262148  Note               NOTE
262158  OLE                OLE
262161  Page               PAGE
262162  Personal Activity  PERSONAL
262146  Phone Call         CALL
262160  Process            PROCESS
262149  Question           Q
262152  Report             REPORT
262144  Start              START
262164  Stop               STOP
262147  To-Do              TODO

Having these “types” in the picklist table make for an easy join from the activity and history tables to display the type’s associated text with the history or activity items.

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
Ryan Farley
Ryan Farleyhttps://customerfx.com/article/author/ryanfarley/
Ryan Farley is the Director of Development for Customer FX and creator of slxdeveloper.com. He's been blogging regularly about SalesLogix, now Infor CRM, since 2001 and believes in sharing with the community. His new passion for CRM is Creatio, formerly bpm'online. He loves C#, Javascript, web development, open source, and Linux. He also loves his hobby as an amateur filmmaker.

1 COMMENT

  1. Hi, I apologize for not being as tech savvy as you all are but I have a question related to this topic. I am trying to create a tab/query in saleslogix that will show me all of the activities for a specific user by type. In the type field I am getting the integer and I’d like the name to appear. What do I need to do to make the name appear instead of the integer? Should I create a join? If so, what is the parent table/field and child table/field and what type of join? Thanks for any help you can give me. Katherine

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