Epicor 10.2.600 Bugs

Hello Users,
we just upgrade from 10.1.500 to 10.2.600. below is the bugs we found compared with 10.1

  1. Copy to Excel from dashboard, if the data contains “,”, the excel will shift the columns. it was ok in 10.1
  2. Business object, when we read the data field in the dataset initially, the UD fields not includes until we create GetNew. it was ok in 10.1

Regards,

Eddy

Can you clarify what you mean by this? How are you reading the fields before hand? Are you talking about the DataSet itself? If so that makes sense since the business object data set that is “shipped” with epicor is the base dataset, and any additions are added by you / your company they won’t be reflected until the business object interrogates the server.

when you create dataset itself, such as QuoteDataSet ds = new QuoteDataSet();
DataTable abc = ds.Tables[“QuoteDtl”] as DataTable.

in 10.1, the UD fields is populated. but in 10.2 only when we call GetNew function and UD fields populated.

you can try it to see. at beginning i don’t believe that. after I tested and compare 10.1 and 10.2, 10.2 changed the way.

Regards,

Eddy

Also, for Copy to Excel, we found Char(13) is the problem. if contents such as PartDescription includes Char(13), the column got shift in 10.2. it is not the case in 10.1

Regards,

Eddy