I am import a ; csv file, when importing the records some records with " are not imported correct.
Four Field in data port importing in to my customized table.
Location, Item, Unit of Measure, Quantity.
“001”;“Test01”;KGS;3.0;“001”;“Test02”;L;4.0;“001”;“Test03”;PCS;4.0;
If my location and item are available the data needs to be imported else log will be written.
When i am importing the above records first two records are imported correctly and not the 3rd one.
When i debug the code the data for location is showing as
"
001"
and because of it the location.get code does not get any record and error log is written.
The data is correct in the filed, there are no space its just when importing happening.
FieldStartDelimiter <">
FieldEndDelimiter <">
FieldSeparator ;