Hi experts,
We have extended EcoResReleasedProductV2Entity and made customized Data Entity to upload Items based on defined Item Group in Data Entity. As 'ItemNumber' is a mandatory field, we have to provide some distinct values in 'ItemNumber' column in data entity.
We have added custom code in 'postGetStagingData()' to manipulate the records and updating 'Item Numbers' based on given groups before inserting to target table.
Issue-
If we have next value for 'RM' (Raw Materials) item group as RM0001 and we are uploading below items along with other details -
| ITEMNUMBER |
INVENTORYUNITSYMBOL |
|
PRODUCTDESCRIPTION |
| Item-6 |
Pcs. |
RM |
Item-6 |
| Item-7 |
Kg |
RM |
Item-7 |
| Item-8 |
Pcs. |
RM |
Item-8 |
| Item-9 |
Kg |
RM |
Item-9 |
| Item-10 |
Kg |
RM |
Item-10 |
While importing the data in dev environment and Testing01 (Tier 2) environment, our result is coming as expected -
| ITEMNUMBER |
INVENTORYUNITSYMBOL |
ITEMMODELGROUPID |
PRODUCTDESCRIPTION |
| RM0001 |
Pcs. |
RM |
Item-6 |
| RM0002 |
Kg |
RM |
Item-7 |
| RM0003 |
Pcs. |
RM |
Item-8 |
| RM0004 |
Kg |
RM |
Item-9 |
| RM0005 |
Kg |
RM |
Item-10 |
but when importing data in UAT (Tier2) environment, the results are coming as -
| ITEMNUMBER |
INVENTORYUNITSYMBOL |
ITEMMODELGROUPID |
PRODUCTDESCRIPTION |
| RM0001 |
Pcs. |
RM |
Item-10 |
| RM0002 |
Kg |
RM |
Item-6 |
| RM0003 |
Pcs. |
RM |
Item-7 |
| RM0004 |
Kg |
RM |
Item-8 |
| RM0005 |
Kg |
RM |
Item-9 |
Requesting the help / opinion / advice on why in certain environment Item-10 is being considered at first then others and assigned first number sequence whereas it should be Item-6 as RM0001.
- No sorting applied on data.
- Product version and platform version and code is same across all the platforms. Product version: 10.0.30, Platform version: Update54
- Using same MS Office version to import to all environment.