SlideShare ist ein Scribd-Unternehmen logo
1 von 50
Downloaden Sie, um offline zu lesen
Oracle Applications User Group
Discrete MFG SIG – Cost Group
April 27th 2010
Release 11i & 12:
Major Tables & Relationships for Costing, Session I
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 2
Background
ī° Explore the Discrete Cost Applications
ī° Look behind the forms and reports and see the
underlying tables and data structures
ī° The goal is to provide a better understanding for how the
Applications work
ī° Session I focuses on item cost basics; Session II focuses
on Cost Rollup, Update and Mass Edits
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 3
Agenda – Session I
ī° Introduction for the next two sessions
ī‚§ Session I – Basic Item Costing and Organization Definition
ī‚§ Session II – Cost Rollup and Cost Transactions
ī° Costing Overview
ī‚§ Cost Structure Overview
ī‚§ Organization Overview
ī° Cost Setup
ī‚§ Define Cost Types
ī‚§ Define Material Sub-elements
ī‚§ Define Material Overhead Sub-elements
ī‚§ Define Overheads
ī‚§ Define Resources
ī‚§ Define Material Overhead Defaults
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 4
Agenda – Session I (continued)
ī° Item Costing
ī‚§ Buy Items
ī‚§ Item Cost Summary Table
ī‚§ Item Cost Details Table
ī‚§ Item Cost Views & Inquiries
ī° Wrap Up – How Did We Do?
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 5
Agenda – Session II
ī° Cost Setup
ī‚§ Define Resources
ī‚§ Define Overheads
ī‚§ Define Departments
ī‚§ Supply Chain / Sourcing Rules Setup
ī° Rollup And Item Cost Review
ī‚§ Rollup and Rollup Cost Review Overview
ī‚§ Define BOMs and Routings
ī‚§ Make Item Costing
ī° Copying, Editing, and Purging Costs
ī‚§ Copy Costs Between Cost Types and Between Inventory Organizations
ī‚§ Mass Editing Cost Information
ī‚§ Mass Editing Item Accounts
ī‚§ Purging Cost Information
ī° Update Standard Costs
ī‚§ Update Standard Costs
ī‚§ Update Average Costs
ī‚§ Cost History
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 6
Introduction to Session I – Costing Overview
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 7
Organization Overview
FG
Subinventory
STORES
Subinventory
MRB
Subinventory
Global
Organization
(Item Master)
Inventory
Organization
Inventory
Location
General Ledger
Operating Unit
The Global Org can be
across OUs
Legal Entity
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 8
Item Costing Setup Overview
Cost
Types
Sub-
Elements
Sub-Element
Defaults
Item Costing
Cost Mass
Edits
Cost
Rollup
Org
Setup
Session II
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 9
Organization Setup in Cost, HRMS or Inventory
ī° Cost Mgmt => Setup => Account Assignments => Organization
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 10
Organization Setup for Accounting Information
ī° Click on the “Others” button and you get these choices:
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 11
Organization Setup for Accounting Information
ī° Associate your organization with Ledger, LE and OU
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 12
Organization Tables – What Did You Just Use?
ī° HR_ORGANIZATION_INFORMATION
ī‚§ Holds basic information for organizations
ī‚§ Simultaneously holds the LE, OU, Ledger and Inventory ids
ī‚§ Specify the org_information_context = 'Accounting Information‘
SELECT hoi.organization_id inv_organization_id,
hoi.org_information_id unique_key,
hoi.org_information_context type_of_data,
hoi.org_information1 ledger_id, -- set_of_books_id in R11i
hoi.org_information2 LE_ID,
hoi.org_information3 OU_ID
FROM hr.HR_ORGANIZATION_INFORMATION hoi
WHERE hoi.org_information_context = 'Accounting Information';
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 13
Define your Inventory Organization
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 14
Define Your Inventory Organization
ī° MTL_PARAMETERS
ī‚§ Defines your basic inventory organization controls
â€ĸ Costing Method
â€ĸ Valuation accounts (Average Costing), default valuation accounts (Std)
â€ĸ Purchase price, invoice price variance, inventory A/P accrual accounts
â€ĸ Negative quantities allowed (yes or no)
â€ĸ Enabled products: EAM, Project MFG, WMS, Process, etc.
â€ĸ And many, many more attributes
SELECTorganization_code,
organization_id,
primary_costing_method -- 1 = STD, 2 = AVG costing
FROM inv.MTL_PARAMETERS;
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 15
Define your Costing Method
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 16
Shipping Network Defaults
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 17
Cost Account Defaults
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 18
More Organization Tables
ī° HR_ALL_ORGANIZATION_UNITS
ī‚§ Holds the names for your different types of organizations
ī‚§ Here is a combined query to get your inventory org information:
SELECT gl.name “Ledger”,
haou2.name "Operating Unit",
haou.name “Inventory Org”
mp.organization_code "Org Code“
FROM inv.mtl_parameters mp,
hr.hr_organization_information hoi,
hr.hr_all_organization_units haou,
hr.hr_all_organization_units haou2,
gl.gl_ledgers gl
WHERE hoi.org_information_context = 'Accounting Information'
AND hoi.organization_id = mp.organization_id
AND hoi.organization_id = haou.organization_id -- inventory organization name
AND haou2.organization_id = to_number(hoi.org_information3) -- operating unit id
AND gl.ledger_id = to_number(hoi.org_information1) -- ledger_id (R11i set of books)
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 19
Organization Views to Help You
ī° Here are useful organization views
ī‚§ ORG_ORGANIZATION_DEFINITIONS
ī‚§ CST_ORGANIZATION_DEFINITIONS
ī‚§ HR_OPERATING_UNITS_ALL
ī° For performance on custom reports I advocate storing the following
information in MTL_PARAMETERS using ATTRIBUTE columns:
ī‚§ OPERATING_UNIT_ID
ī‚§ LEGAL_ENTITY_ID
ī‚§ BUSINESS_GROUP_ID
ī‚§ LEDGER_ID
ī‚§ CURRENCY_CODE
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 20
Cost Groups
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 21
Cost Groups
ī° Defaulted for Discrete Costing, one Cost Group per Organization
ī° Can have multiple CGs for Project MFG & Warehouse Mgmt (WMS)
ī° Project MFG allows multiple item costs by project or project group
ī° For WMS, per the reference manual:
ī‚§ First, for all costing methods, accounts are determined by the cost group,
not by the subinventory or the organization parameters. The cost groups
allow items in the same subinventory to be held in different accounts.
ī‚§ For actual costing, such as Average, FIFO, and LIFO, organizations, item
costs are held by the cost groups. When cost groups are assigned by item
status, the cost groups hold different item costs for items of different
status. In FIFO and LIFO organizations, the layer cost is maintained with
the cost group.
ī‚§ In a Standard cost organization, a single Standard Cost is maintained for
each item. All inventory of that item, regardless of Cost Group, carries the
same Standard Cost.
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 22
Which Tables for Cost Groups?
ī° CST_COST_GROUPS
ī‚§ COST_GROUP_ID
ī‚§ COST_GROUP
ī‚§ ORGANIZATION_ID
ī° CST_COST_GROUP_ACCOUNTS
ī‚§ COST_GROUP_ID
ī‚§ MATERIAL_ACCOUNT
ī‚§ MATERIAL_OVERHEAD_ACCOUNT
ī‚§ RESOURCE_ACCOUNT
ī‚§ OVERHEAD_ACCOUNT
ī‚§ OUTSIDE_PROCESSING_ACCOUNT
ī° CST_COST_GROUP_ASSIGNMENTS
ī‚§ COST_GROUP_ID
ī‚§ ORGANIZATION_ID
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 23
Change Gears to Item Costing Setup
ī° Cost Type Definition
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 24
What Did You Just Use for Cost Types?
ī° CST_COST_TYPES
ī‚§ COST_TYPE_ID
ī‚§ COST_TYPE
ī‚§ ORGANIZATION_ID (only used if multi-org is unchecked)
ī‚§ COSTING_METHOD_TYPE
ī° Reserved Cost Types
COST TYPE COST_TYPE_ID COSTING-
METHOD_
TYPE
FROZEN (Standard) 1 1
AVERAGE 2 2
PENDING 3 1
FIFO 5 5
LIFO 6 6
CTO 7 1
SELECTcost_type,
cost_type_id,
organization_id
FROM bom.CST_COST_TYPES;
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 25
Change Gears to Item Cost Setup
ī° Seeded Cost Elements – No Form to Access This
ī‚§ COST_ELEMENT_ID
ī‚§ COST_ELEMENT
COST_ELEMENT COST_ELEMENT_ID
Material 1
Material Overhead 2
Resource 3
Outside Processing 4
Overhead 5
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 26
On to Subelements
ī° Material Subelements
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 27
Subelements (Continued)
ī° Overheads – Material Overheads
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 28
Subelements (Continued)
Overheads – Production Overheads
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 29
Subelements (Continued)
ī° Resources
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 30
Subelements (Continued)
ī° OSP
Resources
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 31
Where Are These Subelements?
ī° BOM_RESOURCES
ī‚§ RESOURCE_ID
ī‚§ RESOURCE_CODE
ī‚§ ORGANIZATION_ID
ī‚§ COST_ELEMENT_ID
ī‚§ PURCHASE_ITEM_ID (for OSP Resources)
ī‚§ FUNCTIONAL_CURRENCY_FLAG
ī‚§ UNIT_OF_MEASURE
ī‚§ RESOURCE_TYPE
ī‚§ AUTOCHARGE_TYPE
ī‚§ STANDARD_RATE_FLAG (1 or 2)
ī‚§ DEFAULT_BASIS_TYPE
ī‚§ ABSORPTION_ACCOUNT
ī‚§ RATE_VARIANCE_ACCOUNT
ī‚§ ALLOW_COSTS_FLAG (1 or 2)
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 32
Resource Charging Concepts
Autocharge
Type
AUTOCHARGE
_ TYPE
WIP move 1
Manual 2
PO receipt 3
PO Move 4
Default Basis
Type
DEFAULT_
BASIS_TYPE
Typically
used for:
Item 1 All costs
Lot 2 All Costs
Resource Units 3 Prod.
Ovhds
Resource Value 4 Prod.
Ovhds
Total Value 5 Mat’l
Ovhds
Activity 6 Activity
Based
Costs
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 33
Item Cost Defaults
ī° Material Overhead Defaults
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 34
Where Are the Material Overhead Defaults?
ī° CST_ITEM_OVERHEAD_DEFAULTS
ī‚§ ORGANIZATION_ID
ī‚§ ITEM_TYPE
ī‚§ CATEGORY_SET_ID
ī‚§ CATEGORY_ID
ī‚§ MATERIAL_OVERHEAD_ID
ī‚§ BASIS_TYPE
ī‚§ USAGE_RATE_OR_AMOUNT
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 35
Item Costing
ī° Start with the Find Window
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 36
Buy Item Summary Cost Information
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 37
Item Cost Settings by Cost Type
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 38
Where are These Cost Settings?
ī° CST_ITEM_COSTS
ī‚§ ORGANIZATION_ID
ī‚§ COST_TYPE_ID
ī‚§ INVENTORY_ITEM_ID
ī‚§ INVENTORY_ASSET_FLAG
ī‚§ LOT_SIZE
ī‚§ SHRINKAGE_RATE
ī‚§ COST_UPDATE_ID
ī‚§ ROLLUP_ID
ī‚§ ASSIGNMENT_SET_ID
ī‚§ “Who Columns”
ī‚§ Only items with an INVENTORY_ASSET_FLAG of ‘1’ (Yes)
can have a cost record
ī‚§ The item costs in your Costing Method Cost Type (Standard,
Average, etc.) are controlled by the forms and programs
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 39
Where are These Summary Costs?
ī° CST_ITEM_COSTS
ī‚§ ORGANIZATION_ID
ī‚§ COST_TYPE_ID
ī‚§ INVENTORY_ITEM_ID
ī‚§ INVENTORY_ASSET_FLAG
ī‚§ LOT_SIZE
ī‚§ SHRINKAGE_RATE
ī‚§ COST_UPDATE_ID
ī‚§ ROLLUP_ID
ī‚§ ASSIGNMENT_SET_ID
ī‚§ MATERIAL_COST
ī‚§ MATERIAL_OVERHEAD_COST
ī‚§ RESOURCE_COST
ī‚§ OUTSIDE_PROCESSING_COST
ī‚§ OVERHEAD_COST
ī‚§ ITEM_COST
ī‚§ UNBURDENED_COST
ī‚§ BURDEN_COST
ī‚§ PL_ITEM_COST
ī‚§ TL_ITEM_COST
ī‚§ PL_MATERIAL
ī‚§ PL_MATERIAL_OVERHEAD
ī‚§ PL_RESOURCE_COST
ī‚§ PL_OUTSIDE_PROCESSING
ī‚§ PL_OVERHEAD_COST
ī‚§ TL_MATERIAL
ī‚§ TL_MATERIAL_OVERHEAD
ī‚§ TL_RESOURCE_COST
ī‚§ TL_OUTSIDE_PROCESSING
ī‚§ TL_OVERHEAD_COST
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 40
Summary Cost Relationships
ī° CST_ITEM_COSTS– General formulas
ī‚§ TL Cost + PL Cost = ITEM_COST
ī‚§ UNBURDENED_COST + BURDENED_COST = ITEM_COST
ī‚§ ∑ Cost Elements = ITEM_COST
COLUMN Value
MATERIAL_COST 0.13
MATERIAL_OVERHEAD_COST 0
RESOURCE_COST 0
OUTSIDE_PROCESSING_COST 0
OVERHEAD_COST 0
ITEM_COST 0.13
MATERIAL_COST +
MATERIAL_OVERHEAD_COST +
RESOURCE_COST +
OUTSIDE_PROCESSING_COST +
OVERHEAD_COST
ITEM_COST
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 41
Detailed Cost Information – Buy Items
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 42
Where are These Detailed Costs – Buy Items?
ī° CST_ITEM_COST_DETAILS
ī‚§ ORGANIZATION_ID
ī‚§ COST_TYPE_ID
ī‚§ INVENTORY_ITEM_ID
ī‚§ RESOURCE_ID
ī‚§ COST_ELEMENT_ID
ī‚§ ROLLUP_SOURCE_TYPE
ī‚§ LEVEL_TYPE
ī‚§ SOURCE_ORGANIZATION_ID
ī‚§ ALLOCATION_PERCENT
ī‚§ ITEM_COST
ī‚§ RESOURCE_RATE X
ī‚§ USAGE_RATE_OR_AMOUNT X
ī‚§ BASIS_FACTOR X
ī‚§ NET_YIELD_OR_SHRINKAGE_RATE
ī‚§ ITEM_COST
ī‚§ Newly defined items might not have any cost details
RESOURCE_RATE: 1 X
USAGE_RATE_OR_AMOUNT: 0.13 X
BASIS_FACTOR: 1 X
NET_YIELD_OR_SHRINKAGE_RATE: 1 X
ITEM_COST: 0.13
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 43
Cost Relationships: Summary and Detail
ī° General Concepts
ī‚§ ∑ CST_ITEM_COST_DETAILS = ∑ CST_ITEM_COSTS
ī‚§ True by COST_ELEMENT_ID, LEVEL_TYPE or in total
ī‚§ When you run a Cost Mass Edit it automatically corrects the
Summary Cost table to equal ∑ CST_ITEM_COST_DETAILS
ī‚§ If not equal the Standard Cost Update will fail
ī‚§ If not equal the ∑ (Qty X Unit Costs) ≠ ∑ accounting entries
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 44
What About Cost Views?
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 45
Pre-Built or Seeded Cost View Choices
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 46
Element by sub-element Example
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 47
Cost Details for Buy Items
ī° CST_ITEM_COST_DETAILS
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 48
Extensible Cost Views
ī° You can build your own item cost views
ī‚§ These views are registered in CST_INQUIRY_TYPES
ī‚§ This table drives the Cost View Inquiry screens
â€ĸ UNIQUE_ID
â€ĸ INQUIRY_NAME
â€ĸ DESCRIPTION
â€ĸ USER_DEFINED
â€ĸ GUI_TEMPLATE_TYPE
â€ĸ VIEW_NAME
â€ĸ COLUMN1_HEADING
â€ĸ COLUMN2_HEADING
â€ĸ INVENTORY_FLAG
â€ĸ DISABLE_DATE
â€ĸ â€Ļvarious prompt columns
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 49
End of Session I
ī° How Did We Do?
ī‚§ Looking for feedback
ī‚§ Is this useful?
ī‚§ Want less detail? More Detail?
ī‚§ More technical information? Or less technical information?
OAUG Discrete MFG SIG – Cost Group
April 27, 2010
Helping people using Oracle Applications since 1990 Slide 50

Weitere ähnliche Inhalte

Ähnlich wie Oracle discrete MFG costing.pdf

Chapter 14 - Operations, Quality, and Productivity
Chapter 14 - Operations, Quality, and ProductivityChapter 14 - Operations, Quality, and Productivity
Chapter 14 - Operations, Quality, and Productivitydpd
 
Production System Essay
Production System EssayProduction System Essay
Production System EssayJill Baldwin
 
Running head CASE STUDY QUESTIONS 1CASE STUDY QUESTIONS7.docx
Running head CASE STUDY QUESTIONS 1CASE STUDY QUESTIONS7.docxRunning head CASE STUDY QUESTIONS 1CASE STUDY QUESTIONS7.docx
Running head CASE STUDY QUESTIONS 1CASE STUDY QUESTIONS7.docxhealdkathaleen
 
DIGITAL TWIN FRAMEWORK FOR SUPPLYCHAIN PROCESS
DIGITAL TWIN FRAMEWORK FOR SUPPLYCHAIN PROCESSDIGITAL TWIN FRAMEWORK FOR SUPPLYCHAIN PROCESS
DIGITAL TWIN FRAMEWORK FOR SUPPLYCHAIN PROCESSIRJET Journal
 
Monitoring and Measuring SharePoint to Guarantee Your ROI
Monitoring and Measuring SharePoint to Guarantee Your ROIMonitoring and Measuring SharePoint to Guarantee Your ROI
Monitoring and Measuring SharePoint to Guarantee Your ROIChristian Buckley
 
Product Safety Assessments for Cosmetic Products, the EU Recast
Product Safety Assessments for Cosmetic Products, the EU RecastProduct Safety Assessments for Cosmetic Products, the EU Recast
Product Safety Assessments for Cosmetic Products, the EU Recast63galaxie
 
Data Severance Using Machine Learning for Marketing Strategies
Data Severance Using Machine Learning for Marketing StrategiesData Severance Using Machine Learning for Marketing Strategies
Data Severance Using Machine Learning for Marketing StrategiesIRJET Journal
 
IRJET- Efficient Student Faculty Management System
IRJET- Efficient Student Faculty Management SystemIRJET- Efficient Student Faculty Management System
IRJET- Efficient Student Faculty Management SystemIRJET Journal
 
Case Study U.S. Strollers
Case Study U.S. StrollersCase Study U.S. Strollers
Case Study U.S. StrollersTiffany Graham
 
Visual and analytical mining of sales transaction data for production plannin...
Visual and analytical mining of sales transaction data for production plannin...Visual and analytical mining of sales transaction data for production plannin...
Visual and analytical mining of sales transaction data for production plannin...Gurdal Ertek
 
Supply Chain Management with Eco System
Supply Chain Management with Eco SystemSupply Chain Management with Eco System
Supply Chain Management with Eco SystemIRJET Journal
 
Trough External Service Management Improve Quality & Productivity
Trough External Service Management Improve Quality & ProductivityTrough External Service Management Improve Quality & Productivity
Trough External Service Management Improve Quality & ProductivityIJMER
 
Innovate2014 ea 1833
Innovate2014 ea 1833Innovate2014 ea 1833
Innovate2014 ea 1833Paulo Lacerda
 
INF 220 RANK Introduction Education--inf220rank.com
INF 220 RANK Introduction Education--inf220rank.comINF 220 RANK Introduction Education--inf220rank.com
INF 220 RANK Introduction Education--inf220rank.comagathachristie277
 
RECENT TRAINDS IN ADVANCED MANUFACTURING SYSTEM
RECENT TRAINDS IN ADVANCED MANUFACTURING SYSTEMRECENT TRAINDS IN ADVANCED MANUFACTURING SYSTEM
RECENT TRAINDS IN ADVANCED MANUFACTURING SYSTEMakshay ghanwat
 
Mi0036 business intelligence & tools...
Mi0036  business intelligence & tools...Mi0036  business intelligence & tools...
Mi0036 business intelligence & tools...smumbahelp
 
Mi0036 business intelligence & tools...
Mi0036  business intelligence & tools...Mi0036  business intelligence & tools...
Mi0036 business intelligence & tools...smumbahelp
 
Apqcbusinessimprovement 100602214353-phpapp02
Apqcbusinessimprovement 100602214353-phpapp02Apqcbusinessimprovement 100602214353-phpapp02
Apqcbusinessimprovement 100602214353-phpapp02NATHAN Consulting
 
Pcf 5x
Pcf 5xPcf 5x
Pcf 5xbaco2371
 

Ähnlich wie Oracle discrete MFG costing.pdf (20)

Chapter 14 - Operations, Quality, and Productivity
Chapter 14 - Operations, Quality, and ProductivityChapter 14 - Operations, Quality, and Productivity
Chapter 14 - Operations, Quality, and Productivity
 
Production System Essay
Production System EssayProduction System Essay
Production System Essay
 
Running head CASE STUDY QUESTIONS 1CASE STUDY QUESTIONS7.docx
Running head CASE STUDY QUESTIONS 1CASE STUDY QUESTIONS7.docxRunning head CASE STUDY QUESTIONS 1CASE STUDY QUESTIONS7.docx
Running head CASE STUDY QUESTIONS 1CASE STUDY QUESTIONS7.docx
 
DIGITAL TWIN FRAMEWORK FOR SUPPLYCHAIN PROCESS
DIGITAL TWIN FRAMEWORK FOR SUPPLYCHAIN PROCESSDIGITAL TWIN FRAMEWORK FOR SUPPLYCHAIN PROCESS
DIGITAL TWIN FRAMEWORK FOR SUPPLYCHAIN PROCESS
 
Monitoring and Measuring SharePoint to Guarantee Your ROI
Monitoring and Measuring SharePoint to Guarantee Your ROIMonitoring and Measuring SharePoint to Guarantee Your ROI
Monitoring and Measuring SharePoint to Guarantee Your ROI
 
Product Safety Assessments for Cosmetic Products, the EU Recast
Product Safety Assessments for Cosmetic Products, the EU RecastProduct Safety Assessments for Cosmetic Products, the EU Recast
Product Safety Assessments for Cosmetic Products, the EU Recast
 
Toyota
ToyotaToyota
Toyota
 
Data Severance Using Machine Learning for Marketing Strategies
Data Severance Using Machine Learning for Marketing StrategiesData Severance Using Machine Learning for Marketing Strategies
Data Severance Using Machine Learning for Marketing Strategies
 
IRJET- Efficient Student Faculty Management System
IRJET- Efficient Student Faculty Management SystemIRJET- Efficient Student Faculty Management System
IRJET- Efficient Student Faculty Management System
 
Case Study U.S. Strollers
Case Study U.S. StrollersCase Study U.S. Strollers
Case Study U.S. Strollers
 
Visual and analytical mining of sales transaction data for production plannin...
Visual and analytical mining of sales transaction data for production plannin...Visual and analytical mining of sales transaction data for production plannin...
Visual and analytical mining of sales transaction data for production plannin...
 
Supply Chain Management with Eco System
Supply Chain Management with Eco SystemSupply Chain Management with Eco System
Supply Chain Management with Eco System
 
Trough External Service Management Improve Quality & Productivity
Trough External Service Management Improve Quality & ProductivityTrough External Service Management Improve Quality & Productivity
Trough External Service Management Improve Quality & Productivity
 
Innovate2014 ea 1833
Innovate2014 ea 1833Innovate2014 ea 1833
Innovate2014 ea 1833
 
INF 220 RANK Introduction Education--inf220rank.com
INF 220 RANK Introduction Education--inf220rank.comINF 220 RANK Introduction Education--inf220rank.com
INF 220 RANK Introduction Education--inf220rank.com
 
RECENT TRAINDS IN ADVANCED MANUFACTURING SYSTEM
RECENT TRAINDS IN ADVANCED MANUFACTURING SYSTEMRECENT TRAINDS IN ADVANCED MANUFACTURING SYSTEM
RECENT TRAINDS IN ADVANCED MANUFACTURING SYSTEM
 
Mi0036 business intelligence & tools...
Mi0036  business intelligence & tools...Mi0036  business intelligence & tools...
Mi0036 business intelligence & tools...
 
Mi0036 business intelligence & tools...
Mi0036  business intelligence & tools...Mi0036  business intelligence & tools...
Mi0036 business intelligence & tools...
 
Apqcbusinessimprovement 100602214353-phpapp02
Apqcbusinessimprovement 100602214353-phpapp02Apqcbusinessimprovement 100602214353-phpapp02
Apqcbusinessimprovement 100602214353-phpapp02
 
Pcf 5x
Pcf 5xPcf 5x
Pcf 5x
 

KÃŧrzlich hochgeladen

Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajanpragatimahajan3
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpinRaunakKeshri1
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Dr. Mazin Mohamed alkathiri
 
Russian Call Girls in Andheri Airport Mumbai WhatsApp 9167673311 💞 Full Nigh...
Russian Call Girls in Andheri Airport Mumbai WhatsApp  9167673311 💞 Full Nigh...Russian Call Girls in Andheri Airport Mumbai WhatsApp  9167673311 💞 Full Nigh...
Russian Call Girls in Andheri Airport Mumbai WhatsApp 9167673311 💞 Full Nigh...Pooja Nehwal
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Disha Kariya
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...Sapna Thakur
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfchloefrazer622
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...anjaliyadav012327
 

KÃŧrzlich hochgeladen (20)

Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajan
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpin
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
Russian Call Girls in Andheri Airport Mumbai WhatsApp 9167673311 💞 Full Nigh...
Russian Call Girls in Andheri Airport Mumbai WhatsApp  9167673311 💞 Full Nigh...Russian Call Girls in Andheri Airport Mumbai WhatsApp  9167673311 💞 Full Nigh...
Russian Call Girls in Andheri Airport Mumbai WhatsApp 9167673311 💞 Full Nigh...
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdf
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
 

Oracle discrete MFG costing.pdf

  • 1. Oracle Applications User Group Discrete MFG SIG – Cost Group April 27th 2010 Release 11i & 12: Major Tables & Relationships for Costing, Session I
  • 2. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 2 Background ī° Explore the Discrete Cost Applications ī° Look behind the forms and reports and see the underlying tables and data structures ī° The goal is to provide a better understanding for how the Applications work ī° Session I focuses on item cost basics; Session II focuses on Cost Rollup, Update and Mass Edits
  • 3. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 3 Agenda – Session I ī° Introduction for the next two sessions ī‚§ Session I – Basic Item Costing and Organization Definition ī‚§ Session II – Cost Rollup and Cost Transactions ī° Costing Overview ī‚§ Cost Structure Overview ī‚§ Organization Overview ī° Cost Setup ī‚§ Define Cost Types ī‚§ Define Material Sub-elements ī‚§ Define Material Overhead Sub-elements ī‚§ Define Overheads ī‚§ Define Resources ī‚§ Define Material Overhead Defaults
  • 4. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 4 Agenda – Session I (continued) ī° Item Costing ī‚§ Buy Items ī‚§ Item Cost Summary Table ī‚§ Item Cost Details Table ī‚§ Item Cost Views & Inquiries ī° Wrap Up – How Did We Do?
  • 5. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 5 Agenda – Session II ī° Cost Setup ī‚§ Define Resources ī‚§ Define Overheads ī‚§ Define Departments ī‚§ Supply Chain / Sourcing Rules Setup ī° Rollup And Item Cost Review ī‚§ Rollup and Rollup Cost Review Overview ī‚§ Define BOMs and Routings ī‚§ Make Item Costing ī° Copying, Editing, and Purging Costs ī‚§ Copy Costs Between Cost Types and Between Inventory Organizations ī‚§ Mass Editing Cost Information ī‚§ Mass Editing Item Accounts ī‚§ Purging Cost Information ī° Update Standard Costs ī‚§ Update Standard Costs ī‚§ Update Average Costs ī‚§ Cost History
  • 6. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 6 Introduction to Session I – Costing Overview
  • 7. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 7 Organization Overview FG Subinventory STORES Subinventory MRB Subinventory Global Organization (Item Master) Inventory Organization Inventory Location General Ledger Operating Unit The Global Org can be across OUs Legal Entity
  • 8. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 8 Item Costing Setup Overview Cost Types Sub- Elements Sub-Element Defaults Item Costing Cost Mass Edits Cost Rollup Org Setup Session II
  • 9. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 9 Organization Setup in Cost, HRMS or Inventory ī° Cost Mgmt => Setup => Account Assignments => Organization
  • 10. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 10 Organization Setup for Accounting Information ī° Click on the “Others” button and you get these choices:
  • 11. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 11 Organization Setup for Accounting Information ī° Associate your organization with Ledger, LE and OU
  • 12. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 12 Organization Tables – What Did You Just Use? ī° HR_ORGANIZATION_INFORMATION ī‚§ Holds basic information for organizations ī‚§ Simultaneously holds the LE, OU, Ledger and Inventory ids ī‚§ Specify the org_information_context = 'Accounting Information‘ SELECT hoi.organization_id inv_organization_id, hoi.org_information_id unique_key, hoi.org_information_context type_of_data, hoi.org_information1 ledger_id, -- set_of_books_id in R11i hoi.org_information2 LE_ID, hoi.org_information3 OU_ID FROM hr.HR_ORGANIZATION_INFORMATION hoi WHERE hoi.org_information_context = 'Accounting Information';
  • 13. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 13 Define your Inventory Organization
  • 14. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 14 Define Your Inventory Organization ī° MTL_PARAMETERS ī‚§ Defines your basic inventory organization controls â€ĸ Costing Method â€ĸ Valuation accounts (Average Costing), default valuation accounts (Std) â€ĸ Purchase price, invoice price variance, inventory A/P accrual accounts â€ĸ Negative quantities allowed (yes or no) â€ĸ Enabled products: EAM, Project MFG, WMS, Process, etc. â€ĸ And many, many more attributes SELECTorganization_code, organization_id, primary_costing_method -- 1 = STD, 2 = AVG costing FROM inv.MTL_PARAMETERS;
  • 15. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 15 Define your Costing Method
  • 16. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 16 Shipping Network Defaults
  • 17. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 17 Cost Account Defaults
  • 18. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 18 More Organization Tables ī° HR_ALL_ORGANIZATION_UNITS ī‚§ Holds the names for your different types of organizations ī‚§ Here is a combined query to get your inventory org information: SELECT gl.name “Ledger”, haou2.name "Operating Unit", haou.name “Inventory Org” mp.organization_code "Org Code“ FROM inv.mtl_parameters mp, hr.hr_organization_information hoi, hr.hr_all_organization_units haou, hr.hr_all_organization_units haou2, gl.gl_ledgers gl WHERE hoi.org_information_context = 'Accounting Information' AND hoi.organization_id = mp.organization_id AND hoi.organization_id = haou.organization_id -- inventory organization name AND haou2.organization_id = to_number(hoi.org_information3) -- operating unit id AND gl.ledger_id = to_number(hoi.org_information1) -- ledger_id (R11i set of books)
  • 19. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 19 Organization Views to Help You ī° Here are useful organization views ī‚§ ORG_ORGANIZATION_DEFINITIONS ī‚§ CST_ORGANIZATION_DEFINITIONS ī‚§ HR_OPERATING_UNITS_ALL ī° For performance on custom reports I advocate storing the following information in MTL_PARAMETERS using ATTRIBUTE columns: ī‚§ OPERATING_UNIT_ID ī‚§ LEGAL_ENTITY_ID ī‚§ BUSINESS_GROUP_ID ī‚§ LEDGER_ID ī‚§ CURRENCY_CODE
  • 20. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 20 Cost Groups
  • 21. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 21 Cost Groups ī° Defaulted for Discrete Costing, one Cost Group per Organization ī° Can have multiple CGs for Project MFG & Warehouse Mgmt (WMS) ī° Project MFG allows multiple item costs by project or project group ī° For WMS, per the reference manual: ī‚§ First, for all costing methods, accounts are determined by the cost group, not by the subinventory or the organization parameters. The cost groups allow items in the same subinventory to be held in different accounts. ī‚§ For actual costing, such as Average, FIFO, and LIFO, organizations, item costs are held by the cost groups. When cost groups are assigned by item status, the cost groups hold different item costs for items of different status. In FIFO and LIFO organizations, the layer cost is maintained with the cost group. ī‚§ In a Standard cost organization, a single Standard Cost is maintained for each item. All inventory of that item, regardless of Cost Group, carries the same Standard Cost.
  • 22. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 22 Which Tables for Cost Groups? ī° CST_COST_GROUPS ī‚§ COST_GROUP_ID ī‚§ COST_GROUP ī‚§ ORGANIZATION_ID ī° CST_COST_GROUP_ACCOUNTS ī‚§ COST_GROUP_ID ī‚§ MATERIAL_ACCOUNT ī‚§ MATERIAL_OVERHEAD_ACCOUNT ī‚§ RESOURCE_ACCOUNT ī‚§ OVERHEAD_ACCOUNT ī‚§ OUTSIDE_PROCESSING_ACCOUNT ī° CST_COST_GROUP_ASSIGNMENTS ī‚§ COST_GROUP_ID ī‚§ ORGANIZATION_ID
  • 23. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 23 Change Gears to Item Costing Setup ī° Cost Type Definition
  • 24. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 24 What Did You Just Use for Cost Types? ī° CST_COST_TYPES ī‚§ COST_TYPE_ID ī‚§ COST_TYPE ī‚§ ORGANIZATION_ID (only used if multi-org is unchecked) ī‚§ COSTING_METHOD_TYPE ī° Reserved Cost Types COST TYPE COST_TYPE_ID COSTING- METHOD_ TYPE FROZEN (Standard) 1 1 AVERAGE 2 2 PENDING 3 1 FIFO 5 5 LIFO 6 6 CTO 7 1 SELECTcost_type, cost_type_id, organization_id FROM bom.CST_COST_TYPES;
  • 25. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 25 Change Gears to Item Cost Setup ī° Seeded Cost Elements – No Form to Access This ī‚§ COST_ELEMENT_ID ī‚§ COST_ELEMENT COST_ELEMENT COST_ELEMENT_ID Material 1 Material Overhead 2 Resource 3 Outside Processing 4 Overhead 5
  • 26. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 26 On to Subelements ī° Material Subelements
  • 27. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 27 Subelements (Continued) ī° Overheads – Material Overheads
  • 28. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 28 Subelements (Continued) Overheads – Production Overheads
  • 29. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 29 Subelements (Continued) ī° Resources
  • 30. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 30 Subelements (Continued) ī° OSP Resources
  • 31. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 31 Where Are These Subelements? ī° BOM_RESOURCES ī‚§ RESOURCE_ID ī‚§ RESOURCE_CODE ī‚§ ORGANIZATION_ID ī‚§ COST_ELEMENT_ID ī‚§ PURCHASE_ITEM_ID (for OSP Resources) ī‚§ FUNCTIONAL_CURRENCY_FLAG ī‚§ UNIT_OF_MEASURE ī‚§ RESOURCE_TYPE ī‚§ AUTOCHARGE_TYPE ī‚§ STANDARD_RATE_FLAG (1 or 2) ī‚§ DEFAULT_BASIS_TYPE ī‚§ ABSORPTION_ACCOUNT ī‚§ RATE_VARIANCE_ACCOUNT ī‚§ ALLOW_COSTS_FLAG (1 or 2)
  • 32. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 32 Resource Charging Concepts Autocharge Type AUTOCHARGE _ TYPE WIP move 1 Manual 2 PO receipt 3 PO Move 4 Default Basis Type DEFAULT_ BASIS_TYPE Typically used for: Item 1 All costs Lot 2 All Costs Resource Units 3 Prod. Ovhds Resource Value 4 Prod. Ovhds Total Value 5 Mat’l Ovhds Activity 6 Activity Based Costs
  • 33. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 33 Item Cost Defaults ī° Material Overhead Defaults
  • 34. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 34 Where Are the Material Overhead Defaults? ī° CST_ITEM_OVERHEAD_DEFAULTS ī‚§ ORGANIZATION_ID ī‚§ ITEM_TYPE ī‚§ CATEGORY_SET_ID ī‚§ CATEGORY_ID ī‚§ MATERIAL_OVERHEAD_ID ī‚§ BASIS_TYPE ī‚§ USAGE_RATE_OR_AMOUNT
  • 35. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 35 Item Costing ī° Start with the Find Window
  • 36. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 36 Buy Item Summary Cost Information
  • 37. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 37 Item Cost Settings by Cost Type
  • 38. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 38 Where are These Cost Settings? ī° CST_ITEM_COSTS ī‚§ ORGANIZATION_ID ī‚§ COST_TYPE_ID ī‚§ INVENTORY_ITEM_ID ī‚§ INVENTORY_ASSET_FLAG ī‚§ LOT_SIZE ī‚§ SHRINKAGE_RATE ī‚§ COST_UPDATE_ID ī‚§ ROLLUP_ID ī‚§ ASSIGNMENT_SET_ID ī‚§ “Who Columns” ī‚§ Only items with an INVENTORY_ASSET_FLAG of ‘1’ (Yes) can have a cost record ī‚§ The item costs in your Costing Method Cost Type (Standard, Average, etc.) are controlled by the forms and programs
  • 39. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 39 Where are These Summary Costs? ī° CST_ITEM_COSTS ī‚§ ORGANIZATION_ID ī‚§ COST_TYPE_ID ī‚§ INVENTORY_ITEM_ID ī‚§ INVENTORY_ASSET_FLAG ī‚§ LOT_SIZE ī‚§ SHRINKAGE_RATE ī‚§ COST_UPDATE_ID ī‚§ ROLLUP_ID ī‚§ ASSIGNMENT_SET_ID ī‚§ MATERIAL_COST ī‚§ MATERIAL_OVERHEAD_COST ī‚§ RESOURCE_COST ī‚§ OUTSIDE_PROCESSING_COST ī‚§ OVERHEAD_COST ī‚§ ITEM_COST ī‚§ UNBURDENED_COST ī‚§ BURDEN_COST ī‚§ PL_ITEM_COST ī‚§ TL_ITEM_COST ī‚§ PL_MATERIAL ī‚§ PL_MATERIAL_OVERHEAD ī‚§ PL_RESOURCE_COST ī‚§ PL_OUTSIDE_PROCESSING ī‚§ PL_OVERHEAD_COST ī‚§ TL_MATERIAL ī‚§ TL_MATERIAL_OVERHEAD ī‚§ TL_RESOURCE_COST ī‚§ TL_OUTSIDE_PROCESSING ī‚§ TL_OVERHEAD_COST
  • 40. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 40 Summary Cost Relationships ī° CST_ITEM_COSTS– General formulas ī‚§ TL Cost + PL Cost = ITEM_COST ī‚§ UNBURDENED_COST + BURDENED_COST = ITEM_COST ī‚§ ∑ Cost Elements = ITEM_COST COLUMN Value MATERIAL_COST 0.13 MATERIAL_OVERHEAD_COST 0 RESOURCE_COST 0 OUTSIDE_PROCESSING_COST 0 OVERHEAD_COST 0 ITEM_COST 0.13 MATERIAL_COST + MATERIAL_OVERHEAD_COST + RESOURCE_COST + OUTSIDE_PROCESSING_COST + OVERHEAD_COST ITEM_COST
  • 41. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 41 Detailed Cost Information – Buy Items
  • 42. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 42 Where are These Detailed Costs – Buy Items? ī° CST_ITEM_COST_DETAILS ī‚§ ORGANIZATION_ID ī‚§ COST_TYPE_ID ī‚§ INVENTORY_ITEM_ID ī‚§ RESOURCE_ID ī‚§ COST_ELEMENT_ID ī‚§ ROLLUP_SOURCE_TYPE ī‚§ LEVEL_TYPE ī‚§ SOURCE_ORGANIZATION_ID ī‚§ ALLOCATION_PERCENT ī‚§ ITEM_COST ī‚§ RESOURCE_RATE X ī‚§ USAGE_RATE_OR_AMOUNT X ī‚§ BASIS_FACTOR X ī‚§ NET_YIELD_OR_SHRINKAGE_RATE ī‚§ ITEM_COST ī‚§ Newly defined items might not have any cost details RESOURCE_RATE: 1 X USAGE_RATE_OR_AMOUNT: 0.13 X BASIS_FACTOR: 1 X NET_YIELD_OR_SHRINKAGE_RATE: 1 X ITEM_COST: 0.13
  • 43. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 43 Cost Relationships: Summary and Detail ī° General Concepts ī‚§ ∑ CST_ITEM_COST_DETAILS = ∑ CST_ITEM_COSTS ī‚§ True by COST_ELEMENT_ID, LEVEL_TYPE or in total ī‚§ When you run a Cost Mass Edit it automatically corrects the Summary Cost table to equal ∑ CST_ITEM_COST_DETAILS ī‚§ If not equal the Standard Cost Update will fail ī‚§ If not equal the ∑ (Qty X Unit Costs) ≠ ∑ accounting entries
  • 44. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 44 What About Cost Views?
  • 45. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 45 Pre-Built or Seeded Cost View Choices
  • 46. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 46 Element by sub-element Example
  • 47. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 47 Cost Details for Buy Items ī° CST_ITEM_COST_DETAILS
  • 48. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 48 Extensible Cost Views ī° You can build your own item cost views ī‚§ These views are registered in CST_INQUIRY_TYPES ī‚§ This table drives the Cost View Inquiry screens â€ĸ UNIQUE_ID â€ĸ INQUIRY_NAME â€ĸ DESCRIPTION â€ĸ USER_DEFINED â€ĸ GUI_TEMPLATE_TYPE â€ĸ VIEW_NAME â€ĸ COLUMN1_HEADING â€ĸ COLUMN2_HEADING â€ĸ INVENTORY_FLAG â€ĸ DISABLE_DATE â€ĸ â€Ļvarious prompt columns
  • 49. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 49 End of Session I ī° How Did We Do? ī‚§ Looking for feedback ī‚§ Is this useful? ī‚§ Want less detail? More Detail? ī‚§ More technical information? Or less technical information?
  • 50. OAUG Discrete MFG SIG – Cost Group April 27, 2010 Helping people using Oracle Applications since 1990 Slide 50