Hi experts,
I try to define delta filters for a SAP table that has columns with create/change dates as timestamp (for example, 20220615023536):
- when I use "date" type for the dynamic parameter - I get error during extraction: Value 2.0220804014626E13 could not be read as Date, expected formats: yyyy/MM/dd, yyyy-MM-dd, yyyyMMdd, dd/MM/yyyy, dd-MM-yyyy, ddMMyyyy
- when I use "text" type for the dynamic parameter - I get error during extraction: Value 2.0220804014626E13 could not be read as Text
- when I use "integer" type for the dynamic parameter - I don't get error, but the value is calculated as 2147483647 instead of the original value - 20220804014626
Could you advise if there is a proper way to work with timestamps like columns?
As the table holds different SAP objects at the same time, I can't use max ID or something like that. I could divide the extraction job into several separate jobs (for each involved SAP object) and create delta filters based on SAP object ID (max value), but the appearance of the SAP objects in the table is not sequential and this rule won't work... I assume I have to extract all records...