When Migrating at Step 7 I get an error message: Mage2SalesOrder: Order Currency Code is too long (maximum is 3 characters)
How can I solve it or where to look?
3 answers
Hi there,
Mage2SalesOrder: Order Currency Code is too long (maximum is 3 characters)
That issue because your database has some records which has bad value in field: sales_flat_order.order_currency_code
(some values has length > 3 characters)
To continue, you must re-correct value of the order_currency_code field in some records in that table. You could use below SQL to listing for that bad records:
Select * From sales_flat_order Where Length (order_currency_code) > 3;
Once done, you could continue with data migration in the step #7 of our migration tool.
Regards,
Mall.
Hi Mall,
Thank you for your fast response. There was indeed one record with an incorrect currency code. Migrating started again 😉
Kind regards, Arjen
Hi Arjen,
Yes, please move forward with the migration process. If you have any other issue, please get back to us here.
Regards,
Ubertheme team