Skip to main content

Posts

Showing posts with the label bom

How to find BOM Unit and Inventory Unit for item in Ax 2012

To find BOM Unit and Inventory Unit for item you can get idea from below code sample.This code you can try in your job code editor in axapta. InventTable inventTable; InventUnitId inventoryUnit,BOMUnit; BOM bom; ItemId curItem; ; while select BOM order by itemid where BOM.BOMQty { if(curItem != BOM.ItemId) { curItem = BOM.ItemId; inventTable = InventTable::find(bom.ItemId); inventoryUnit = inventTable.InventUnitId(); BOMUnit = bom.UnitId; if(!UnitOfMeasureConverter::canBeConverted(UnitOfMeasure::findBySymbol(inventoryUnit).RecId, UnitOfMeasure::findBySymbol(BOMUnit).RecId, inventTable.Product)) { if(inventoryUnit != BOMUnit) { info(strFmt("item %1 has bom unit %2, inventory unit %3",inventTable.itemId,BOMUnit,inventoryUnit)); } } }

set up Planed Transfer Order in Axapta

If you want to set up Planed Transfer Order, the system you recommended material to be prepared on the basis of the production plan and work orders in MS Dynamics AX 2009 you can read following help to do this. simply create a buffer warehouse for production and make it as your default warehouse in BOM lines , based on that the buffer warehouse should be refilled from the RM MWH , and you can define it in item coverage setting which mean (if the RM1 is required in production order so it should be picked from the buffer warehouse and if the buffer warehouse have no balance so it should be refilled from MWH) so once you explode or run Master Scheduling the planned transfer order have to be created from MW to Buffer Warehouse

Item Types in axapta

Item Types in axapta The first of the four required fields on the Item form is Item Type. There are three possible item types in Axapta: • Item: These are purchased items that are inventoried and either resold or used as part of a bill of materials (BOM). By default, when entering a new item in Axapta, the type is set to Item • Service: Service items are generally something that is nonphysical, such as consulting services (billed per hour), or something that is used for internal consumption, such as office supplies. • BOM: Bill of material items contain other items (of type Item, Service, or BOM) in addition to a route that enables these combinations of items to be produced or packaged as another good or piece of another good