Is there any BOI bug anyone knows of (Sage 100 Premium 2014, possibly introduced with SP6) with the order date field on sales orders entered through BOI? I have a VB dotnet app bringing in web store orders and all the orders since 7/30 have been coming into Sage with a 7/30 order date, even though the source has the correct date. I cannot replicate the issue on my test system. Code snippet:
If IsDate(dr.GetValue(dr.GetOrdinal(""date_purchased""))) Then
dtVal = CDate(dr.GetValue(dr.GetOrdinal(""date_purchased"")))
Else
dtVal = Today
End If
oSOOrder.nSetValue(""OrderDate"", dtVal)
Any ideas?