Store Inventory Management (MOSC)

MOSC Banner

Non sellable item is assigned with wrong UOM

edited Mar 31, 2014 12:00PM in Store Inventory Management (MOSC) 1 commentAnswered

Hi,


SIM base behaviour for non_sellable items UOM is changed from UNITS to CASES while creating Store to Store Transfers.

Below is the base code snippets where the changes are done:

Integer defaultType = SimConfig.getDefaultUom();

if (defaultType != null) {

      uomType = UOMMode.toType(defaultType);

}

if (!stockItem.isSellable() && !stockItem.isSimple()) {

      uomType = UOMMode.CASES;

}

is there any significance of doing so? or is it bug?

Regards,

Meeran.

Howdy, Stranger!

Log In

To view full details, sign in to My Oracle Support Community.

Register

Don't have a My Oracle Support Community account? Click here to get started.

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center