JSON to Collection Weid Dates Issue
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
17-01-20 11:29 AM
So we have come across a strange issue with JSON to Collection action not formatting some date/times correctly - date format is I believe called epoch (example of our date string being... \/Date(1555372800000)\/)
Once we convert our string into a collection using the above, some dates are being formatted as 1 day in the past with a time of 23:00. The dates being correctly formatted have time of 00:00. Weirdly it seems to be based on Month - November to March show correct date with time 00:00, April to October are wrong showing date-1 and time 23:00.
Using the above example through an online checker (epochconverter.com) shows GMT date as 16 April 2019 00:00:00. This string runs through the JSON to collection and date that comes out is 15 April 2019 23:00:00
Note this is Version 6.4
Has anyone come across this? or have any ideas on where to start looking to address?
hope to hear back
Regards
------------------------------
Adam Ollerenshaw
Process Automation Modeller
Computershare
Europe/Bristol - UK
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
20-01-20 08:45 AM
can't this be related to some daylight saving time and your regional settings?
Regards,
------------------------------
Zdeněk Kabátek
Head of Professional Services
NEOOPS
Europe/Prague
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
20-01-20 03:01 PM
Since you're in the UK, your timezone follows daylight savings whereas GMT does not, that is when you're seeing the hour difference. For me personally, it's a difference of several hours since I'm on CST.
------------------------------
Nicholas Zejdlik
RPA Developer
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
20-01-20 03:37 PM
Thanks for your reply, we deduced that it was a DST issue but were (and still are) trying to work around it by trying to format our source data as text, which is throwing up some other issues, so your response has got us excited!
We are pulling data back from SharePoint, but the thing is we aren't pre-defining fields so I'm wondering how you are outputting these fields to text. Did you make amendments to the JSON to Collection code stage? I'm not very knowledgeable on code stage updates, do you have any advice/tips on how we format the output collection as text?
thanks
------------------------------
Adam Ollerenshaw
Process Automation Modeller
Computershare
Europe/London
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
20-01-20 06:39 PM
Private Function ConvertDateTimeToText(ByVal Table As DataTable) As DataTable Dim Result As New DataTable For Each Column As DataColumn In Table.Columns If Column.DataType = GetType(DateTime) Then Result.Columns.Add(Column.ColumnName, GetType(String)) Else Result.Columns.Add(Column.ColumnName, Column.DataType) End If Next For Each Row As DataRow In Table.Rows Dim NewRow As DataRow = Result.NewRow() For Each Column As DataColumn In Table.Columns If Column.DataType = GetType(DataTable) Then NewRow(Column.ColumnName) = ConvertDateTimeToText(Row(Column.ColumnName)) Else NewRow(Column.ColumnName) = Row(Column.ColumnName) End If Next Result.Rows.Add(NewRow) Next Return Result End Function
Then modify the JSON To Collection stage with the following:
result = ConvertDateTimeToText(ConvertToDataTable(json))
All of the fields returned in the JSON conversion will be changed from DateTime to Text, which will keep Blue Prism from trying to automatically convert the DateTime. The ConvertDateTimeToText() function is recursive, so it will work with nested JSON as well.
On a trivial side note, I realized Blue Prism isn't trying to convert the DateTimes to local time, rather it is trying to convert from local time to UTC, which is why you ended up -1 hour instead of +1 hour. There may be a better way to handle this particular issue on version 6, but I am constrained to version 5 currently and this is the best solution I've found so far.
------------------------------
Nicholas Zejdlik
RPA Developer
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
21-01-20 08:37 AM
------------------------------
Adam Ollerenshaw
Process Automation Modeller
Bristol/United Kingdom
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
19-07-21 09:29 AM
I have been having the same issue in that Date, Time, DateTime all come out as DateTime which causes issues with the validation of data.
I attempted to use the code you supplied however after copying the code into the Global Code and modifying the stage i get an error of:
Internal : Could not execute code stage because exception thrown by code stage: Unable to cast object of type 'System.String' to type 'System.Data.DataTable'.
I am very unfamiliar with code stages so unsure what the cause/solution would be - are you able to help?
------------------------------
James Gregory
RPA Developer
Europe/London
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
02-08-21 06:48 AM
var jsonDate = new Date(1297246301973);
Then let's convert it to js format:
var date = new Date(parseInt(jsonDate.substr(6)));
The substr() function takes out the /Date( part, and the parseInt() function gets the integer and ignores the )/ at the end. The resulting number is passed into the Date constructor .
------------------------------
foster carly
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
02-08-21 08:56 PM
rather it is because the results are being outputted as a datetime value.
For testing purposes,
I modified the JSON To Collection stage to output as text instead of date,
which returns the expected GMT date.
However, when that value is outputted as a DateTime,
it gets converted to your local timezone.
Since you're in the UK, your timezone follows daylight savings whereas GMT does not,
that is when you're seeing the hour difference.
For me personally, it's a difference of several hours since I'm on CST.
------------------------------
The Heller Approach
------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
04-08-21 03:19 PM
Private Function DeserialiseGeneric(ByVal o As Object, ByVal populate As Boolean) As Object
Dim a As JArray = TryCast(o, JArray)
If a IsNot Nothing Then
Return DeserialiseArray(a, populate)
End If
Dim jo As JObject = TryCast(o, JObject)
If jo IsNot Nothing Then
Return DeserialiseObject(jo, populate)
End If
Dim jv As JValue = TryCast(o, JValue)
If jv IsNot Nothing Then
If GetTypeOf(jv.Value) = GetTypeOf(datetime) Then
Return jv.Value.ToLocalTime()
Else
Return jv.Value
End if
End If
Return JSON.Null
End Function
------------------------------
Andrey Kudinov
Project Manager
MobileTelesystems PJSC
Europe/Moscow
------------------------------
