Apply entries for Item with "AVERAGE" costing method
aps_mbs
Member Posts: 141
Hi all,
I am not able to view the applied entries for a Item having costing method as "AVERAGE".
Is it, that the apllication will work for costing method other than "AVERAGE".....?
Waiting for reply...
regards,
APS
I am not able to view the applied entries for a Item having costing method as "AVERAGE".
Is it, that the apllication will work for costing method other than "AVERAGE".....?
Waiting for reply...
regards,
APS
0
Comments
-
what about your NAV version ?0
-
I am working on NAV2009....0
-
You cant see the applied entries in standard form for that when using costing method average. But navision does the application still in the background with fifo method.
This means you can trace the actual application when you search in table item application entries directly.0 -
if you trace the code in from the form that opens applies to entry, you'll notice that it set a filter on item application "Costing Application" to true,
if you comment this line, you'll see the application for average cost. entries.
I usually do that for customers who want to see the application, but it's not costing application.0 -
Hi Rasheed,
I am also facing the same Problem.
Can i know in which form i need to trace the code ?
Is it Item card or Applied Entries form?
Please let me knowlally0 -
Modify Codeunit 5801 Show Applied Entries
IF Positive THEN BEGIN ItemApplnEntry.RESET; ItemApplnEntry.SETCURRENTKEY("Inbound Item Entry No.","Outbound Item Entry No.","Cost Application"); ItemApplnEntry.SETRANGE("Inbound Item Entry No.","Entry No."); ItemApplnEntry.SETFILTER("Outbound Item Entry No.",'<>%1',0); //ItemApplnEntry.SETRANGE("Cost Application",TRUE); //comment out this line IF ItemApplnEntry.FIND('-') THEN REPEAT InsertTempEntry(ItemApplnEntry."Outbound Item Entry No.",ItemApplnEntry.Quantity); UNTIL ItemApplnEntry.NEXT = 0; END ELSE BEGIN ItemApplnEntry.RESET; ItemApplnEntry.SETCURRENTKEY("Outbound Item Entry No.","Item Ledger Entry No.","Cost Application"); ItemApplnEntry.SETRANGE("Outbound Item Entry No.","Entry No."); ItemApplnEntry.SETRANGE("Item Ledger Entry No.","Entry No."); //ItemApplnEntry.SETRANGE("Cost Application",TRUE); //comment out this line IF ItemApplnEntry.FIND('-') THEN0 -
The application process relates to costing. In case of average cost, there's no "costing tier" involved, all the transactions are based on the average cost.
I suspect removing the code as ara3n stated, might land you more questions from the customer.
I highly recommend you talk to your client about why no apply entries is displayed for average costing items.Confessions of a Dynamics NAV Consultant = my blog
AP Commerce, Inc. = where I work
Getting Started with Dynamics NAV 2013 Application Development = my book
Implementing Microsoft Dynamics NAV - 3rd Edition = my 2nd book0
Categories
- All Categories
- 75 General
- 75 Announcements
- 66.7K Microsoft Dynamics NAV
- 18.8K NAV Three Tier
- 38.4K NAV/Navision Classic Client
- 3.6K Navision Attain
- 2.4K Navision Financials
- 116 Navision DOS
- 851 Navision e-Commerce
- 1K NAV Tips & Tricks
- 772 NAV Dutch speaking only
- 610 NAV Courses, Exams & Certification
- 1.9K Microsoft Dynamics-Other
- 1.5K Dynamics AX
- 251 Dynamics CRM
- 103 Dynamics GP
- 6 Dynamics SL
- 1.5K Other
- 991 SQL General
- 383 SQL Performance
- 34 SQL Tips & Tricks
- 28 Design Patterns (General & Best Practices)
- Architectural Patterns
- 9 Design Patterns
- 4 Implementation Patterns
- 53 3rd Party Products, Services & Events
- 1.6K General
- 1K General Chat
- 1.6K Website
- 77 Testing
- 1.2K Download section
- 23 How Tos section
- 249 Feedback
- 12 NAV TechDays 2013 Sessions
- 13 NAV TechDays 2012 Sessions
