Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello ...
I'm importing our sales data through ODBC interface. I have items with code "08020"and the article code "8020", which are all seen with the code "08020", thereby distortingthe data revenue.
How can I fix it??
Hello,
Use Text() function in the load script so it will respect leading zeroes:
Table:LOAD Text(Code) AS Code;SQL SELECT CodeFROM Datasource;
Hope that helps.
Hello,
Use Text() function in the load script so it will respect leading zeroes:
Table:LOAD Text(Code) AS Code;SQL SELECT CodeFROM Datasource;
Hope that helps.
Ok!!! Everything's ok now. Thank's