Sunteți pe pagina 1din 35

ATTENTION AUDIO Options

Option 1: Voice Streaming Audio Broadcast Option 2: Teleconference (Dial In)


No need to dial in on a telephone Requires telephone to dial in
Questions can be asked over the phone or in the
Questions can be asked via WebEx Chat box WebEx Chat
Details
If you are listening via voice streaming and it Conference ID: Complete your ID here
stops, go to Communicate -> Audio Broadcast to Password: Logistics
restart the streaming audio International dial in: +1 706 501 7826
US Free call: 1877 368 7516
Current Webcast: Consignment New Features For List with national toll free numbers is available
R12.2 in Doc ID: 1148600.1
View anytime during the conference using
Communicate > Teleconference > Join
Teleconference from your WebEx menu

Copyright 2016, Oracle and/or its affiliates. All rights reserved. | 1


Upcoming Advisor Webcast Schedule
Check out Document ID 740966.1

Select your area of interest

Scan through the list of Current Topics

Register for the session of your interest

Access the Manufacturing , Logistics Webcasts


directly via <Doc ID 1455888.1 >

For Logistics Advisor Webcasts & archived


recordings, you can also see Document ID
1290983.1

Next Webcast: Inventory Standard Datafixes for Most Common Data Issues - Sep 21st, 2016

Copyright 2016, Oracle and/or its affiliates. All rights reserved. | 2


Oracle Advisor Webcast
Consignment New Features For R12.2
(Doc ID 1938948.1)
Sean Smotrilla, Jim Phipps
August 17th, 2016

Copyright 2016, Oracle and/or its affiliates. All rights reserved. | 3


Safe Harbor Statement
The following is intended to outline our general product direction. It is intended for
information purposes only, and may not be incorporated into any contract. It is not a
commitment to deliver any material, code, or functionality, and should not be relied upon
in making purchasing decisions. The development, release, and timing of any features or
functionality described for Oracles products remains at the sole discretion of Oracle.

Copyright 2016, Oracle and/or its affiliates. All rights reserved. | 4


Oracle Advisor Webcast
Consignment New Features For R12.2
(Doc ID 1938948.1)
Sean Smotrilla, Jim Phipps
August 17th, 2016

Copyright 2016, Oracle and/or its affiliates. All rights reserved. | 5


Agenda
1 Business need
2 Consignment R12.2 new feature
3 Setups
4 Demonstration
5 Frequent questions

Copyright 2016, Oracle and/or its affiliates. All rights reserved. | 6


Goals and Objectives
Discuss the Business needs
Review R12.2 new consignment features
Demonstrate new features

Copyright 2016, Oracle and/or its affiliates. All rights reserved. |


Business Need
Increased manufacturing costs due to overpayment of unused material
Complicated Process For Unused Material
Prevented customers from fully using consignment
Transfer back to consigned easily
Process Manufacturing flexible material requirements
Complicated Workarounds:
Customizations or business processes to work around the problem.
Additional problems due to workarounds.

Copyright 2016, Oracle and/or its affiliates. All rights reserved. | 8


Consignment is

Copyright 2016, Oracle and/or its affiliates. All rights reserved. | 9


Implicit vs. Explicit
Transfer to Regular: Transaction generated whenever consumption takes
place.
Implicit:
1) Happens automatically when you issue material. Sales Order issues, WIP issues.
Inter-organization transfers, Miscellaneous issues.

2) Setup rules to transfer like subinventory transfer.

Explicit: Manually performing a transfer to regular via the consignment form.

Copyright 2016, Oracle and/or its affiliates. All rights reserved. | 10


Implicit vs. Explicit (Continued)

Implicit Supplier
(Auto-Consume) Regular
Owned

Explicit Supplier
Owned
Transfer to
Regular
Regular

Copyright 2016, Oracle and/or its affiliates. All rights reserved. | 11


New feature

Copyright 2016, Oracle and/or its affiliates. All rights reserved. | 12


Original Design
Manual transfer to regular (Explicit), then could transfer to consigned.
Customers had many extra steps in order to get this to work.
Could not transfer to consigned for any implicit consumption
Implicit is the most common, high volume of consumption.
Any misc. issue, sales order issue, wip issue, or rule-based subinventory trasnfer
would consume material that could not be given back.
Datafix
Some used an unsupported datafix to update the source code on transactions to
EXPLICIT.
Others needed bugs to cancel consigned.

Copyright 2016, Oracle and/or its affiliates. All rights reserved. | 13


New Design
1) Return implicit consumption
Option to transfer implicit consumption back to consigned.

2) Automatic WIP Can return components


Option for component return back to consigned without any extra steps.

Copyright 2016, Oracle and/or its affiliates. All rights reserved. | 14


Additional Setup Required
1) Return implicit consumption
No additional setup

2) Automatic WIP Can return components


Custom Hook: INV_CONSIGNED_PUB.auto_consigned_return

Copyright 2016, Oracle and/or its affiliates. All rights reserved. | 15


Automatic WIP Return Example
CREATE OR REPLACE PACKAGE BODY INV_CONSIGNED_PUB AS
/* $Header: INVCSRPB.pls 120.0.12020000.1_CUSTOM_MODIFIED $ */

FUNCTION auto_consigned_return(p_org_id IN NUMBER,


p_item_id IN NUMBER)
RETURN VARCHAR2 IS
BEGIN
IF p_org_id = 207 THEN return 'Y';
ELSE return 'N';
END IF;
END auto_consigned_return;
END INV_CONSIGNED_PUB;
/

Copyright 2016, Oracle and/or its affiliates. All rights reserved. | 16


Analyzing Results - History
SELECT
a.TRANSACTION_ID,
a.CONSUMPTION_PROCESSED_FLAG,
b.transaction_type_id,
b.transaction_source_type_id,
b.transaction_source_id,
b.transaction_quantity,
a.Net_qty,
a.batch_id,
NVL(b.source_code, 'Blank- IMPLICIT'),
b.OWNING_ORGANIZATION_ID,
b.OWNING_TP_TYPE
FROM mtl_consumption_transactions a,
mtl_material_transactions b
WHERE a.transaction_id = b.transaction_id
AND a.creation_date > sysdate - 1;

Copyright 2016, Oracle and/or its affiliates. All rights reserved. | 17


Analyzing Results - Onhand
SELECT
c.inventory_item_id,
c.organization_id,
c.is_consigned,
c.owning_organization_id,
c.transaction_quantity
FROM mtl_onhand_quantities_detail c
WHERE c.inventory_item_id =
(select distinct inventory_item_id from mtl_system_items_b where
segment1 = NVL('&enterItemNumber', 'Your Consigned'))
ORDER BY last_update_date;

Copyright 2016, Oracle and/or its affiliates. All rights reserved. | 18


Demonstration: Consigned Inventory

Copyright 2016, Oracle and/or its affiliates. All rights reserved. | 19


Frequent Questions: 12.1.3 Customers
Use the original process and workarounds
Discuss on the community idea #11806:
https://community.oracle.com/ideas/11806

Copyright 2016, Oracle and/or its affiliates. All rights reserved. | 20


Frequent Questions: Inter-Org Transfer
Limitations remain for inter-org transfers.
Cannot transfer material consigned, nor transfer back
Discuss on the community idea #2073:
https://community.oracle.com/ideas/2073

Copyright 2016, Oracle and/or its affiliates. All rights reserved. | 21


Frequent Questions: Commingling
Commingling is a situation where consigned and regular stock reside
together in the same location.
See Note 1346145.1 - How To Sort Out Consignment Commingling

Supplier Subinventory Regular


Owned

Copyright 2016, Oracle and/or its affiliates. All rights reserved. | 22


Frequent Questions: Model
Model impact of new feature.
See Note 1093731.1 Consignment Flow

Copyright 2016, Oracle and/or its affiliates. All rights reserved. | 23


References
Note 406390.1 - FAQ: Using Consigned Inventory / Consumption Advise / Vendor Managed Inventory
Note 1938948.1 - New Feature: Consumption To Consigned For Implicit Consumption
Note 1063493.1 - Common Inventory Ideas and Enhancement Requests (ERs)
Note 2048039.1 - EBS Inventory Consignment Analyzer
R12.1.3 Idea #11806: https://community.oracle.com/ideas/11806
Inter-Org Idea #2073: https://community.oracle.com/ideas/2073

Copyright 2016, Oracle and/or its affiliates. All rights reserved. | 24


Summary
What we covered today

Business need
Consignment R12.2 new feature
Setups
Demonstration
Frequent Questions

Copyright 2016, Oracle and/or its affiliates. All rights reserved. |


Q&A
To ask a question on the phone
line, select *1 on your phone.
To ask a question online, use the
Q&A area at the top.
Your question will be read aloud in
the order received.
Question can also be asked on the
My Oracle Support Communities

Copyright 2016, Oracle and/or its affiliates. All rights reserved. | 26


Top Articles and Community Links
Document for this webcast: (Doc ID
1938948.1)

Oracle Inventory, Product Information


Management and Warehouse Management
Teams Informational Webcasts (Doc ID
1290983.1)

Oracle Advisor Webcast Schedule/Archive


[ID 740966.1]

Copyright 2016, Oracle and/or its affiliates. All rights reserved. | 27


Session Related Community Links

Questions? For follow up questions on topics


covered in this webcast connect via this
Logistics Community thread:

https://community.oracle.com/thread/3961828

Copyright 2016, Oracle and/or its affiliates. All rights reserved. | 28


Q&A
To ask a question on the phone
line, select *1 on your phone.
To ask a question online, use the
Q&A area at the top.
Your question will be read aloud in
the order received.
Question can also be asked on the
My Oracle Support Communities

Copyright 2016, Oracle and/or its affiliates. All rights reserved. | 29


THANK YOU

Copyright 2016, Oracle and/or its affiliates. All rights reserved. | 30


Oracle Advisor Webcast Series
Locating Current Schedule & Archived Recordings

Review the current schedule


and archived recording for your
product from Doc 740966.1

Select your Product Area

Copyright 2016, Oracle and/or its affiliates. All rights reserved. | 31


Oracle Advisor Webcast Program
Locating Current Schedule & Archived Recordings

Check out Document ID


740966.1

Drill down to your area of


interest

Access the Logistics Webcasts


directly via <Doc ID 1455888.1 >

For Logistics Advisor Webcasts &


archived recordings, you can also
see Document ID 1290983.1

Copyright 2016, Oracle and/or its affiliates. All rights reserved. | 32


Learn More - Resources and References on Support Portals

Help Documentation Oracle Support My Oracle Support Oracle Support


at your fingertips Essentials Webcasts How To Series Accreditation
learning
My Oracle Support and Live instruction, Q&A on Detailed training videos,
Cloud Support Portal how to best use the documentation. Latest Leverage the Oracle
documentation. Find it Support Portals. The How how-to content, Support Accreditation
from the Help link in the To Series covers content webcasts, self-paced portfolio of portal and
top right corner of most similar to Help in a step- replay. Select a feature or product accreditations.
pages in both portals. by-step approach. Doc role to get started. Doc Get accredited today.
553747.1 603505.1 Doc 1583898.1

Copyright 2016, Oracle and/or its affiliates. All rights reserved. | 33


Learn More - Resources and References to Get Proactive
Get Proactive Portfolio for your products
Check out the Get Proactive Portfolio for your products. Get familiar with the top
proactive tools. Doc 432.1
Ask the Get Proactive Team get-proactive_ww@oracle.com

Get Proactive Events Calendar


Automatically updated to include latest Advisor Webcasts, MOS Essentials
trainings, user group sessions, and more

Stay Informed about Upcoming Events. Doc 125716.1

Copyright 2016, Oracle and/or its affiliates. All rights reserved. | 34


Copyright 2016, Oracle and/or its affiliates. All rights reserved. | 35

S-ar putea să vă placă și