Monday, November 5, 2018

How to fetch variant wise Item price from costing using X++

public static Price getSTDCostItemPrice(ItemId             _itemId,

                                            TransDate       _activationDate,

                                            InventDimId     _inventDimId)

    {

        InventDim       inventDimLoc;

        InventItemPrice inventItemPrice;

   

        inventDimLoc    = InventDim::find(_inventDimId);

        inventItemPrice = InventItemPrice::findCurrent( _itemId,

                                                        CostingVersionPriceType::Purch,

                                                        _inventDimId,

                                                        _activationDate,

                                                        inventDimLoc.InventSiteId,

                                                        InventItemCostingType::Standard);



        return inventItemPrice.Price;

    }

No comments:

Post a Comment

How to enable the dimension fields based on the Item selected on the form.

[Form] public class KMTShipFromWarehouses extends FormRun {     InventDimCtrl_Frm_EditDimensions        inventDimFormSetup;     /// &l...