back to top

ISO Date Conversions Revisited

I’ve talked a few times in the past about converting dates to ISO format in SQL statements for the SalesLogix Provider (See “When to convert dates to ISO format“, “ISO Date Formatting“, “Date formats and the SalesLogix provider“). I cannot stress just how important this is. I guarantee you that if you’re not converting dates inline in your SQL INSERT/UPDATE/DELETE statements then you are having sync issues (even though you might not know it yet). When I get issues regarding synchronization back to me that is the first thing I will check.

I’ve posted before some code to demonstrate how to convert your dates to ISO formatted dates in C#. It didn’t occur to me that I never posted similar code for VBScript and legacy basic until I was asked the other day how to do this in a legacy script. I tend to focus more on C# since that is where I do most of my development. I don’t develop often in VBScript or legacy basic in the SalesLogix Architect but when I do I bundle in my own utility scripts which include reusable functions for ISO date conversions.

Converting dates to ISO in VBScript

Function ISODateTime(ByVal dtDate)

On Error Resume Next

    ISODateTime = CStr(Year(dtDate)) & _
    Right("00" & Month(dtDate), 2) & _
    Right("00" & Day(dtDate), 2) & _
    " " & Right("00" & Hour(dtDate), 2) & _
    ":" & Right("00" & Minute(dtDate), 2) & _
    ":" & Right("00" & Second(dtDate), 2)
End Function

With VBScript, your only option is to separate the date parts and put them back as a complete string. Not all that pretty, but gets the job done.

Converting dates to ISO in legacy basic

Function ISODateTime(ByVal dtDate As Date) As String
    ISODateTime = Format(dtDate, "YYYYMMDD HH:NN:SS")
End Function

SalesLogix Legacy basic includes the standard VB Format function which allows for a much cleaner syntax to format the string as an ISO date.

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.

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