Landed Costing

The purpose of this page is to help you learn, configure and use Landed Costs with either Average Invoice or Standard Costing => Costing Methods.

Before you Get Started

Landed Costing Introduction

Landed Costing Summary

Landed Costing Summary Picture

Landed Costing Difference Between Average and Standard

Landed Costing Example - Simple

Landed Costing Example - PO Over Estimated

Landed Costing Example - PO Under Estimated

This example is important because it also demonstrates what would happen if you did no estimation. Said another way, when if you estimated the landed cost at 0. This concept is important because someone organization do not want to estimate at all. They just want to land all costs and know that the final cost represents the real cost.

Landed Costing Example - Ship Product Before Landed

Landed Costing Example - New Cost Element

Landed Costing Average Invoice Concerns

Landed Costing  Standard Cost Overview

2014-10-21 Landed Costing Review and Standard Costing

Landed Costing - Standard Cost - Query to find Average

Via code, you can turn off the landed costing accounting effects. As a result, you can use the above processes and the existing Vendor Invoice to land costs against Products using Standard Costing. Below is a query that gives you landed cost statistics (average, std dev, max, min, count) for a given product and cost element (landed cost type).
select m_product_id, m_costelement_id, avg(amt/qty) as average_cost_comp, count(amt) as count, max(amt/qty) as max, min(amt/qty)as min, stddev(amt/qty) as stddev
from C_LandedCostAllocation
where qty > 0
group by m_product_id, m_costelement_id
Notes: