Skip to main content

Setting up Item's price based on Unit of Measure in NAV

 Question:

What if we have an item that we sell in two different units of measure? What to set up so that system should automatically pick the Unit price related to the unit of measure given in sales line?

Pre-Requisite:

Required units should present in our Unit of Measure table.



Steps:

1. Go to Sales Price Worksheet and put these two items on two different lines along with Unit of Measure and Unit Price.

2. Select the action Implement Price Change



3. To verify this Create a Sales Order and then create two lines of same item but with different unit of measure.



Comments

Popular posts from this blog

New functionality: Control Database Isolation level on individual reads on a record instance

  Hi, We are familiar with the Record.LockTable property that we use to explicitly lock the table against write transactions that can conflict. By default, Business Central automatically determines the isolation levels used when querying database. AL developers can now explicitly control the database isolation level on individual reads on a record instance. With Business Central v.22, a new ReadIsolation method has been introduced on the record data type.  Its syntax is as: Rec.ReadIsolation := IsolationLevel::<enum value> IsolationLevel can have following values: Default, ReadCommitted, ReadUncommitted, RepeatableRead and UpdLock Example: To understand the concept, we use two simple procedures. One procedure will get customer 10000 and modifies Name while other procedure gets the same customer 10000 and shows the Name. Add these functions to actions on any page, I added them on Customer card using Page Extension. We will call these functions concurrently and one after the other