Hello everybody, when I try to create a reservation hierarchy and I move the license plate above the location and system give me error which coming from the class below while the implementation guide allows to set this.
Anyone know why?
Warning Message (04:12:22 pm) Location must be above License plate in the hierarchy.
Warning Message (04:12:22 pm) There cannot be any dimension between wMSLocationId and LicensePlateId in the reservation hierarchy.
Error Message (04:12:22 pm) The reservation hierarchy cannot be created.
Class WHSRESERVATIONHIERARCHYCREATOR
Method checkHierarchyList
while (reservationHierarchyListEnumerator.moveNext())
{
fieldId = reservationHierarchyListEnumerator.current();
if ( lastFieldId == fieldNum(InventDim, WMSLocationId)
&& fieldId != fieldNum(InventDim, LicensePlateId))
{
ret = checkFailed(strFmt("@SYS4160059",
fieldId2name(tableNum(InventDim), fieldNum(InventDim, WMSLocationId)),
fieldId2name(tableNum(InventDim), fieldNum(InventDim, LicensePlateId))));
}
*This post is locked for comments