Modifying ac_Orders 'OrderDate'
Posted: Thu Apr 08, 2010 5:08 pm
Hi there..
we are manually keying in a few entries between our data import and time to cut over and I forgot to set the new servers time back to last month so the transactions would be in the right month..
I was taking a look at ac_Orders selecting OrderDate where OrderId was > = to the order number I started entering.
So the question(s)..
1. Is it ok if I simply do an update on these OrderDate times or will it mess things up somewhere else
Select OrderId,OrderDate
FROM ac_Orders
WHERE OrderId >
2. I Noticed the time is to the either to the clock tick or 1/10000 os a sec "2010-04-08 00:05:00.320"
will it mess things up if multiple orders are the same time / value?
3. Is the same true that it's ok to Edit the ac_Payment field PaymentDate
Select OrderId,PaymentDate
FROM ac_Payments
WHERE OrderId > =
I've read that editing ac_OrderShipments field ShipDate was ok but I'm not sure about these other two dates
Thank you
Luke
we are manually keying in a few entries between our data import and time to cut over and I forgot to set the new servers time back to last month so the transactions would be in the right month..
I was taking a look at ac_Orders selecting OrderDate where OrderId was > = to the order number I started entering.
So the question(s)..
1. Is it ok if I simply do an update on these OrderDate times or will it mess things up somewhere else
Select OrderId,OrderDate
FROM ac_Orders
WHERE OrderId >
2. I Noticed the time is to the either to the clock tick or 1/10000 os a sec "2010-04-08 00:05:00.320"
will it mess things up if multiple orders are the same time / value?
3. Is the same true that it's ok to Edit the ac_Payment field PaymentDate
Select OrderId,PaymentDate
FROM ac_Payments
WHERE OrderId > =
I've read that editing ac_OrderShipments field ShipDate was ok but I'm not sure about these other two dates
Thank you
Luke