Hello there,
It seems to me that standard Axapta (3.0 SP3) does not consider
InventTable.InventLocationId, when you are adding a new BOM line.
Extract from the code:
inventDim.configId = inventTable.standardConfigId;
inventDim.InventSizeId = inventTable.StandardInventSizeId;
inventDim.InventColorId = inventTable.StandardInventColorId;
// My addition BEGIN
inventDim.InventLocationId =
inventTableModule::find(this.ItemId,ModuleInventPurchSales::Invent).InventLo
cationId;
// My addition END
this.InventDimId =
inventDim::findOrCreate(inventDim).inventDimId;
Axapta will find the correct InventDimId (shown by
box::info(this.inventdimId); ), but it is not displayed in the form.
What am I missing ?
Thanks in advance !!
Best Regards,
Jens
Yahoo! Groups Links
- To visit your group on the web, go to:
http://groups.yahoo.com/group/development-axapta/
- To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
- Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

