Skip to content
+1-888-319-3663

HELP ARTICLE

The field contains one or more invalid characters


When integrating to Dynamics CRM, we are receiving the above error message for some fields that we are trying to set.

There are some characters that are not accepted by Dynamics CRM and are typically non-printable characters. One method for removing those characters, if you cannot remove them from the data source, would be to create a new Calculated Field.

Use the code below to remove those characters and replace it with the value in the replaceWith variable. In this example we replacing the invalid characters with a New Line.


Dim result As New System.Text.StringBuilder()
Dim replaceWith as string = Environment.NewLine

For i As Integer = 0 To _MYSOURCECOLUMN.Length – 1
Dim c As Char = _MYSOURCECOLUMN(i)
Dim b As Byte = Microsoft.VisualBasic.AscW(c)
If b < 32 Then
result.Append(replaceWith)
Else
result.Append(c)
End If
Next

return result.ToString()


Once the calculated field is created, map this to your field in CRM instead of the source field.

RECENT POSTS


How to set up automatic payments on eOne's website portal
Downloading older versions of SmartConnect
SmartList Favorite Tracking SmartList Builder Template
SmartList Favorite Tracking History SmartList Builder Template
SmartList Builder GoTo opens to the wrong record

POPULAR POSTS


SSL Security error using OLEDB Connection
This implementation is not part of the Windows Platform FIPS validated cryptographic algorithms
Removed Part: /xl/vbaProject.bin part. (Visual Basic for Applications (VBA))
The server process could not be started because the configured identity is incorrect.
Using WINSCP and a task to upload or download files from an SFTP site

CATEGORIES

TAGS

Business Central CRM D365 Business Central Dynamics 365 dynamics crm Dynamics GP Dynamics NAV Econnect Employee Spotlight eone eOne News error Error Message Events Excel Excel Report Builder Extender Flexicoder GP integration Map Microsoft dynamics crm Microsoft Dynamics GP Navigation List Builder Office Relationships Partner All Hands Call Popdock promotions release SalesForce SalesForce.com SmartConnect SmartConnect.com SmartConnect Bootcamp SmartConnect Maps SmartConnect Office Hours SmartList SmartList Builder SmartPost SmartView SQL Tech Tuesday Templates training Zendesk

Integrate & Automate without Any Code.

SmartList Data has Never Been Faster.

The Easiest Way to Report on GP Data.