You are on page 1of 51

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

Future Advisor Webcasts


Day, Date, 2004 time p.m. ET VOICE STREAMING ENABLED Teleconference Access:
North America: xxxx Teleconference Access: International: xxxx US & Canada: (866) 627-3315 Password: Advisor
Toll Number: +1-706-758-7972 Global Toll-Free: 1148600.1 Password: Oracle EAM

OPM Webcast Calendar/Archive Doc ID 1064676.1 Oracle Webcast Schedule/Archive Doc Id: 740966.1

What WIP/FLOW advisor webcast topics do YOU want to see presented in 2013? Click here to let us know.
Copyright 2013, Oracle and/or its affiliates. All rights reserved. 2

<Insert Picture Here>

Outside Processing Business Flow in Discrete Manufacturing


Emanuela Preda Principal Technical Support Engineer

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 decision. The development, release, and timing of any features or functionality described for Oracles products remains at the sole discretion of Oracle.

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

<Insert Picture Here>

Outside Processing Business Flow in Discrete Manufacturing


Emanuela Preda Principal Technical Support Engineer

Objective

This session is intended to provide with few technical details that can be used to understand and debug Outside Processing process

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

Agenda

General info Setup Steps: parameters, items setup, resource setup Business Flow: move transactions, purchase requisition , purchase

order, receiving, resource transaction Troubleshooting

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

<Insert Picture Here>

General information

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

General information

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

SETUP - parameters

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

10

SETUP profile option


Outside Processing Shop Floor Status for PO Move Resources Requisition Creation Time Production Scheduler Shipping Manager Propagate Job Changes to Purchasing Days Early Days Late Required? Optional Optional Optional Optional Required Required Required Default Value Null At OSP operation Null Null Automatic 1000 1000

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

11

SETUP OSP item

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

12

SETUP OSP resource

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

13

SETUP Assign OSP resource to Department

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

14

SETUP Assembly Routing

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

15

SETUP Assembly Routing

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

16

Creating Discrete Job

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

17

WIP to PO

WIP to PO flow :
1. Purchase Requisitions (PR) are automatically generated (at job release or at operation as per WIP Parameter)

PO_REQUISITIONS_INTERFACE_ALL table. WIP_ENTITY_ID INTERFACE_SOURCE_CODE is WIP

2. PR can be manually created using Purchase Requisitions form .

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

18

Creating the Purchase Requisition

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

19

Creating the Purchase Requisition

If records remain in error in the requisition interface you have possibility to see the errors using Requisition Import Exception Report Or, you can use following SQLs: select * from PO_REQUISITIONS_INTERFACE_All where reference_num = '&wip_entity_name'; select * from PO_INTERFACE_ERRORS where interface_transaction_id in (select transaction_id from PO_REQUISITIONS_INTERFACE_All where reference_num='&wip_entity_name');

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

20

Creating the Purchase Requisition

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

21

View Purchase Requisition

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

22

OSP Purchase Requisition

To see data in the PR you can use the PR form or use following SQL:

select * from PO_REQUISITION_LINES_ALL where wip_entity_id in (select wip_entity_id from wip_entities where wip_entity_name=&job_Name');

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

23

JOB STATUS quantities

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

24

JOB STATUS move transactions

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

25

JOB STATUS resource transactions

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

26

Creating Purchase Order

1. Automatically Generating Purchase Orders from Requisitions link with the job will be inherited automatically)

2. Manually Creating Purchase Orders and Lines - directly via Purchase Orders form job number/op MUST be manually linked.

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

27

Creating Purchase Order

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

28

View Purchase Order

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

29

View Purchase Order

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

30

Perform Receiving

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

31

PO to WIP

Receiving transaction will trigger the resource transaction:

Front END Pending resource Transactions View Resource Transactions View Resource Transactions, button Distribution

Back END WIP_COST_TXN_INTERFACE WIP_TRANSACTIONS WIP_TRANSACTION_ACCOUNTS

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

32

OSP Resource Transaction

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

33

Pending/Erred Resource Transactions

Until it is costed, we can find it in WIP_COST_TXN_INTERFACE (process_status=1 meaning pending, process_status=3 meaning error) select * from WIP_COST_TXN_INTERFACE where wip_entity_id in (select wip_entity_id from wip_entities where wip_entity_name=&job_Name'); and the error is visible in: select * from wip_txn_interface_errors where TRANSACTION_ID in (select TRANSACTION_ID from WIP_COST_TXN_INTERFACE where process_status=3 and wip_entity_id in (select wip_entity_id from wip_entities where wip_entity_name=&job_Name'));

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

34

OSP and Non-stock Direct Material


After costing process ended sucessfully , we find it in select * from WIP_TRANSACTIONS where wip_entity_id in (select wip_entity_id from wip_entities where wip_entity_name=&job_Name'); And the distribution is visible in

select * from WIP_TRANSACTION_ACCOUNTS where TRANSACTION_ID in (select TRANSACTION_ID from WIP_TRANSACTIONS where wip_entity_id in (select wip_entity_id from wip_entities where wip_entity_name=&job_Name'))

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

35

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

36

Move Transactions

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

37

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

38

Processing the Move Transactions

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

39

View Move Transactions

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

40

View Completion Transactions

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

41

Job status Complete

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

42

<Insert Picture Here>

Debugging

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

43

Debugging References
- Outside Processing (OSP) Frequently Asked Questions (FAQ) (Doc ID -

1282909.1) WIP_MOVE_TXN_INTERFACE Common Errors In Pending Move Transactions With Possible Causes And Action Plan To Process Them (Doc ID 457066.1) WIP_COST_TXN_INTERFACE Possible Causes for Pending/ Err when Performing Resource Transactions (Doc ID 462657.1) How to Close Outside Processing (OSP) Discrete Jobs (Doc ID 1279878.1) Making Purchase Requisition Record to Remain in Interface Until Requisition Import Program is Launched Manually (Doc ID 1460246.1)

- Application Diagnostic > Application Short Name=WIP > Data

Collection > i.e. Work Order

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

44

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

45

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. Questions can also be asked on the My Oracle Support Communities

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

46

Visit My Oracle Communities


Collaborate with a large network of your industry peers, support professionals, and Oracle experts to exchange information, ask questions & get answers. Find out how your peers are using Oracle technologies and services to better meet their support and business needs. Exchange Knowledge Resolve Issues Gain Expertise

Visit the My Oracle Support Community now!! 1. 2. 3. 4. Log into My Oracle Support. Select the Community tab. Select the Enter Here button. Select the Community Name link under the E-Business Suite section of the My Communities Menu on the left side of the window.

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

47

Work In Process & Flow Manufacturing Advisor Webcast Calendar And Archive (Doc ID 1319827.1)

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

48

April 7-11, 2013


Denver, CO http://collaborate.oaug.org
Over five exciting days, trade ideas with more than 5,000 like-minded attendees, network with Oracle Corporation and more than 250 top third-party providers in the Exhibitor Showcase and choose from nearly 1,000 educational sessions to attend. COLLABORATE provides the best opportunity to explore how you can get the most out of your existing products and learn about others that you can integrate into your environment. Date/Time
Sun. Apr. 7 2:30 pm - 3:30 pm Sun. Apr. 7 3:45 pm - 4:45 pm Mon. Apr. 8 11:00 am - 12:00 pm Mon. Apr. 8 5:00 pm - 6:00 pm Tue. Apr. 9 2:00 pm - 3:00 pm Wed. Apr. 10 8:15 am - 9:15 am Wed. Apr. 10 3:00 pm - 4:00 pm

Session
12975 12978

Session Details
Oracle E-Business: Take Control of Workflow with Workflow Analyzer! EBS Upgrades: Save time and money on your upgrade from 11.5.10 to 12.1.3 Get Proactive: Best Practices for a Faster, Smoother Oracle EBusiness Suite Period Close EBS Meet the Experts: Bring your questions, we will have experts, answers and resources to help you. EVERYTHING EBS PATCHING! Oracle E-Business: Oracle Payables: Have a smoother accounting period close 432.1 Get Proactive: Finding answers faster through MOS and communities.

Track
Financial Modules Application Strategy and Services Financial Modules

12969

12976 12973 12974 12972

Financial Modules Application Strategy and Services Oracle E-Business Suite Financial Modules

Not an OAUG member? Register today at www.oaug.org


Copyright 2013, Oracle and/or its affiliates. All rights reserved. 49

THANK YOU

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

50

Are You Ready To Get Proactive?


Discover more about Get Proactive
https://support.oracle.com/CSP/main/article?cmd=show &type=ATT&id=1385165.1:DISCOVER

Avoid the unexpected Dont leave value on the table Lower overall organizational costs through preventative maintenance Reduce risks and maximize uptime Achieve resolution faster Streamline and simplify your daily operations Get even more through connection

ACT Get Proactive


Access proactive capabilities available for your products by visiting the product pages at My Oracle Support; Article ID 432.1

Contact the Get Proactive team


today for help getting started
get-proactive_ww@oracle.com

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

51

You might also like