web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :

Code to get average cost price Item wise without dimension or blank dimension in Axapta

SANTOSH KUMAR SINGH Profile Picture SANTOSH KUMAR SINGH 1,224
Below is the Code to get average cost price Item wise without dimension or blank dimension in Axapta. Mostly we not able to get cost price item wise because in on hand form its available inventory dimension wise so below code will help you to get cost price item wise.

Try this code and enjoy daxing...


 display CostPriceAverage averageCostPriceUnit_New()  
{
CostPriceAverage costprice;
InventDim inventDimCriteria;
ItemId itemId;
InventDimParm inventDimParm;
date perDate =systemDateGet();
InventOnHand inventOnHand;
;
itemId = this.ItemId;
inventDimCriteria.inventBatchId = '';
inventDimParm.initFromInventDim(inventDimCriteria);
inventOnHand = InventOnhand::newParameters(itemId, inventDimCriteria, inventDimParm);
costprice= inventOnHand.costPricePcs(false, perDate);
return costprice;
}


This was originally posted here.

Comments

*This post is locked for comments