SlideShare a Scribd company logo
QuestDirect.org
Inventory Pegging
Mary Gallitano
Application Development Manager – Berlin Packaging
Mary.Gallitano@Berlinpackaging.com
Steve Canter
Director, Global Service Delivery – Smart ERP Solutions
Steve.C@SmartERP.com
QuestDirect.org 2
Agenda
• Pegging Definitions
• Notifications
• Using Pegging Workbench
• Viewing Pegging Information
• Berlin Packaging Case Study
QuestDirect.org 3
What is Pegging?
• Pegging links demand to incoming supply.
• Demand can be either of the following:
• Sales Order
• Interunit Transfer going out
• Supply can be any of the following:
• Purchase Order
• Production ID
• Interunit Transfer coming in
• A Peg prevents the incoming supply from being
reserved to another Demand Line
QuestDirect.org 4
Hard Pegging
• A hard peg is created when a the Demand
creates a purchase order or PID to fulfill it.
• Direct Ship and Configured Sales Orders
are automatically Hard Pegged.
• Hard Pegs can also be created through
Alternative Sources of Supply in OM
• When hard pegged demand is changed or
canceled, the supply transaction is changed
(when allowed).
QuestDirect.org 5
Changes in Demand with Hard Pegs
• DS SO change allowed if PO is not Dispatched
or if Due Date has not passed (configuration)
• Configured SO change allowed if there is no
Production Pick Plan, material has not been
issued, and there is no Subcontract PO
• Changes in Quantity, Date, and Status
(cancelation) are automatically made to the
supply.
• If the transaction is past the point where the
change in supply is allowed, then the change is
not allowed in the demand.
• Changes to supply are not automatically made
in the demand.
QuestDirect.org 6
Soft Pegging
• A Soft Peg links an existing Demand Line to a
quantity of existing Supply.
• Example: A Sales Order for 100 units is
entered. There is already an open PO with
2,000 units due into the warehouse. The SO
can be soft-pegged to the PO to consume 100
pieces of the total that are coming in.
• Changes in soft-pegged demand have no
impact on the supply.
• Soft Pegging is done through Pegging
Workbench.
QuestDirect.org 7
Communicating Changes
• Changes to Pegged Supply or Demand
automatically generate notifications to the
appropriate person.
• OM messages sent to the Order Owner
• PO messages sent to the Buyer
• PID and IBU messages sent to the
designated person(s) for the Business
Unit
• Notifications are sent to the person’s
Worklist, available on the Home Page, or to
email.
QuestDirect.org 8
Viewing Notifications
QuestDirect.org 9
Notification Detail
QuestDirect.org 1
Using Pegging Workbench
QuestDirect.org 1
Peg SO to PO
QuestDirect.org 1
See Results
QuestDirect.org 1
View Pegging Information
• From the Sales Order Line, you can see the
PO or PID that is Pegged
• From the PO Schedule, you can see the
Sales Order that is Pegged.
• From PID Maintenance, you can see the
Sales Order that is Pegged.
• From the Stock Request Inquiry, you can
see the Pegging Information.
• From the Pegging Inquiry screens, you can
also directly transfer to the other
transaction.
QuestDirect.org 1
Pegging Inquiry in OM
QuestDirect.org 1
Pegging Inquiry in PID
QuestDirect.org 1
Pegging Inquiry in PO
QuestDirect.org
A Look Under the Covers
1
QuestDirect.org 1
Pegging XLATS
QuestDirect.org 1
Viewing Peg Status
SELECT PEG_STATUS, BUSINESS_UNIT, ORDER_NO, ORDER_INT_LINE_NO FROM
PS_IN_DEMAND WHERE BUSINESS_UNIT = '00049‘ AND ORDER_NO = '0430044923'
10 00049 0430044923 1
QuestDirect.org 2
Viewing Peg Status
SELECT PEG_STATUS, BUSINESS_UNIT, ORDER_NO, ORDER_INT_LINE_NO FROM
PS_IN_DEMAND WHERE BUSINESS_UNIT = '00049‘ AND ORDER_NO = '0430042421'
40 00049 0430042421 1
QuestDirect.org 2
Demand Hash Table
SELECT HASH_KEY, BUSINESS_UNIT, DEMAND_SOURCE,
SOURCE_BUS_UNIT, ORDER_NO, ORDER_INT_LINE_NO, SCHED_LINE_NBR,
INV_ITEM_ID, DEMAND_LINE_NO
FROM PS_IN_DEMAND_HASH
WHERE ORDER_NO = '0430044923'
85ReFbrcWlcr2yrB8em1VOzTOic= 00049 OM 43 0430044923 1 1 GLC-01056 2
QuestDirect.org 2
Supply Hash Tables
QuestDirect.org 2
Putting it Together
QuestDirect.org
Berlin Packaging
Case Study in Pegging
QuestDirect.org
Berlin Packaging
• Hybrid Packaging Supplier of Containers and
Closures
• Privately held company, headquartered in Chicago
• Over 30 locations nationwide
• PeopleSoft Financials and SCM Version 9.1
• PeopleTools 8.51
• Over 500 Active users of PeopleSoft
• Annual sales in excess of $700,000,000
• Live on PeopleSoft since 2001
• 9.1 upgrade completed in May, 2012
QuestDirect.org
Berlin Products
QuestDirect.org
• Drop Ship Purchase Orders
• Product Configurator
• Pegging Workbench (will eventually replace
Product Configurator completely)
Pegging At Berlin
QuestDirect.org
Drop Ship Process
• All Drop Ship order lines are automatically placed on
a Drop Ship line Hold
• Drop Ship Lines are manually removed from Drop
Ship Hold when the Purchase Order is Vouched and
Matched
• In 8.8 – the PO Information was stored in
ORD_SCHEDULE and the Order Information was
stored in PO_LINE_SHIP
• This relationship went away with the implementation
of Pegging
• We created a custom view – BP_ORD_SCHED_VW
– which uses the hash tables to have an easy way to
see the relationship between the order and Purchase
Order.
QuestDirect.org
Drop Ship Challenges
• User cancels Hard Pegged Drop Ship Purchase
Order, and then the Sales Order can’t be cancelled.
• NOTE – we train the users that the Demand should
be cancelled before the supply and they receive an
error message, but that doesn’t always stop the
problem from occurring.
• Resolution – SQL script to update the pegging status
QuestDirect.org 30
--replace C.ORDER_NO with B.PO_ID and get the same result.
-- Peg Status 10 = Open, 20 = Completed, 30 = Cancelled, 40 = Not
Pegged
SELECT B.BUSINESS_UNIT, B.PO_ID, B.LINE_NBR, B.SCHED_NBR,
C.BUSINESS_UNIT, C.ORDER_NO, C.ORDER_INT_LINE_NO,
C.SCHED_LINE_NBR, A.PEG_STATUS, A.SUPPLY_HASH,
A.DEMAND_HASH,A.HARD_PEG
FROM PS_IN_PEGGING A, PS_PO_HASH B, PS_IN_DEMAND_HASH C
WHERE C.ORDER_NO in ('xxxxxxxxx' )
--WHERE B.PO_ID = 'xxxxxxxxx'
AND B.HASH_KEY = A.SUPPLY_HASH
AND C.HASH_KEY = A.DEMAND_HASH
AND A.SUP_ORDER_TYPE = '010'
AND A.PEG_STATUS = 10
SQL for Drop Ships
QuestDirect.org
Product Configurator
• Berlin has customized Order Management to
automatically run the Create Production Request
Process when a configured item is ordered.
• The Subcontract PO Process is scheduled to run
every 10 minutes
• Our items are not truly “configured” as much as they
are “build on demand”
• We have a combination of Subcontract PIDs and In-
house Production
QuestDirect.org
• Supply is Hard Pegged for Configured items.
• Cannot be changed once the Subcontract PO is
created.
• This resulted in effectively preventing the field
from making changes to configured sales order
lines outside of a very tight window.
• Product Configurator will be going away with
future releases
Configurator Challenges
QuestDirect.org 33
• We are gradually eliminating the use of
Configured items.
• Sales order is created
• PID is then created
• Pegging Workbench is used to tie the 2 together
• It then becomes much easier to make changes
since the PID is now Soft Pegged to the Sales
Order.
Configurator
QuestDirect.org 34
• Sales Order Linked to a PID could be cancelled
without any warning
• Quantity decrease on a Sales Order caused the
peg to be changed from Hard to Soft
• Subcontract Streamline did not work with
Configured PID
• Changes made to configured Sales Orders had
unexpected results
• These are all bugs that have been resolved
with assistance from Oracle Support
Other Pegging Issues
QuestDirect.org
• We continue to utilize Pegging with Drop Ship
sales orders with very few problems.
• We have eliminated the majority of our
configured subcontracted items and utilize
pegging workbench to manage the relationships.
• Our Production Team has gotten more
comfortable with the pros and cons of utilizing
Pegging and the workarounds when things go
awry.
• Reviewing Use of Alternate Sources of Supply
Where are we today?
QuestDirect.org 36
• Pegging as delivered in 9.1 has a lot of bugs
• It does take some time for the business to
understand how Pegging works.
• BUT – it can add a great deal of value to the
business once you get past the training and
the initial bugs.
Conclusion
QuestDirect.org
APRIL 7-11, 2014
Sands Expo and Convention
Center
Las Vegas, Nevada
QuestDirect.org/COLLABORATE
COLLABORATE 14- Quest Forum is THE source for PeopleSoft roadmaps & news.
It matters where you register! All PeopleSoft education and events run through Quest
QuestDirect.org 3
Any Questions?

More Related Content

What's hot

Processos de Produção
Processos de ProduçãoProcessos de Produção
Processos de Produção
Mauro Enrique
 
Aula 1 - Planejamento e Controle da Produção II
Aula 1 - Planejamento e Controle da Produção IIAula 1 - Planejamento e Controle da Produção II
Aula 1 - Planejamento e Controle da Produção II
Unidade Acedêmica de Engenharia de Produção
 
Apostila completa administração de recursos materiais e patrimoniais
Apostila completa   administração de recursos materiais e patrimoniaisApostila completa   administração de recursos materiais e patrimoniais
Apostila completa administração de recursos materiais e patrimoniaisCarolina Rangel Coelho Iack
 
Business Process Re-engineering/ JIT/ERP
Business Process Re-engineering/ JIT/ERPBusiness Process Re-engineering/ JIT/ERP
Business Process Re-engineering/ JIT/ERP
Vikram Dey
 
Gestão da produção e materiais
Gestão da produção e materiaisGestão da produção e materiais
Gestão da produção e materiais
Mateus Oliveira
 
U1S2 - PPCP e sistemas de produção.pdf
U1S2 - PPCP e sistemas de produção.pdfU1S2 - PPCP e sistemas de produção.pdf
U1S2 - PPCP e sistemas de produção.pdf
CelsoCiamponi1
 
Questionário sobre o filme a meta
Questionário sobre o filme a metaQuestionário sobre o filme a meta
Questionário sobre o filme a metaDaniel Moura
 
Exercício gestão da qualidade pdca
Exercício gestão da qualidade   pdcaExercício gestão da qualidade   pdca
Exercício gestão da qualidade pdca
Joice Fuzari
 
Modelagem de Processos com BPM
Modelagem de Processos com BPMModelagem de Processos com BPM
Modelagem de Processos com BPM
Cláudio Leopoldino
 
Seleção, Avaliação e Qualificação de Fornecedores
Seleção, Avaliação e Qualificação de Fornecedores Seleção, Avaliação e Qualificação de Fornecedores
Seleção, Avaliação e Qualificação de Fornecedores
Eduardo Isatto
 
Aula10 problema-transporte
Aula10 problema-transporteAula10 problema-transporte
Aula10 problema-transporte
Lorran Mol
 
Indicadores performancecadeiadesuprimentos
Indicadores performancecadeiadesuprimentosIndicadores performancecadeiadesuprimentos
Indicadores performancecadeiadesuprimentosDora Machado Consultoria
 
Como elaborar uma RFP
Como elaborar uma RFPComo elaborar uma RFP
Como elaborar uma RFP
Eduardo Fagundes
 
Plano Safra 2023.pdf
Plano Safra 2023.pdfPlano Safra 2023.pdf
Plano Safra 2023.pdf
PauloSantos194674
 
EXCEL PARA GESTORES DE NEGÓCIOS E CRIAÇÃO DE DASHBOARD
EXCEL PARA GESTORES DE NEGÓCIOS E CRIAÇÃO DE DASHBOARDEXCEL PARA GESTORES DE NEGÓCIOS E CRIAÇÃO DE DASHBOARD
EXCEL PARA GESTORES DE NEGÓCIOS E CRIAÇÃO DE DASHBOARD
Lauro Jorge Prado
 
Mapeamento de processos e riscos
Mapeamento de processos e riscosMapeamento de processos e riscos
Mapeamento de processos e riscos
Fabíola Rocha
 
Processesamento de pedidos
Processesamento de pedidosProcessesamento de pedidos
Processesamento de pedidos
Caique Souza
 
SCM - Supply Chain Management (Gestão da cadeia de suprimentos)
SCM - Supply Chain Management (Gestão da cadeia de suprimentos)SCM - Supply Chain Management (Gestão da cadeia de suprimentos)
SCM - Supply Chain Management (Gestão da cadeia de suprimentos)
Mauricio Mota da Silva
 
Logística Empresarial Estoques
Logística Empresarial EstoquesLogística Empresarial Estoques
Logística Empresarial Estoques
WeNova Consulting
 

What's hot (20)

Processos de Produção
Processos de ProduçãoProcessos de Produção
Processos de Produção
 
Aula 1 - Planejamento e Controle da Produção II
Aula 1 - Planejamento e Controle da Produção IIAula 1 - Planejamento e Controle da Produção II
Aula 1 - Planejamento e Controle da Produção II
 
Apostila completa administração de recursos materiais e patrimoniais
Apostila completa   administração de recursos materiais e patrimoniaisApostila completa   administração de recursos materiais e patrimoniais
Apostila completa administração de recursos materiais e patrimoniais
 
Business Process Re-engineering/ JIT/ERP
Business Process Re-engineering/ JIT/ERPBusiness Process Re-engineering/ JIT/ERP
Business Process Re-engineering/ JIT/ERP
 
Gestão da produção e materiais
Gestão da produção e materiaisGestão da produção e materiais
Gestão da produção e materiais
 
U1S2 - PPCP e sistemas de produção.pdf
U1S2 - PPCP e sistemas de produção.pdfU1S2 - PPCP e sistemas de produção.pdf
U1S2 - PPCP e sistemas de produção.pdf
 
Questionário sobre o filme a meta
Questionário sobre o filme a metaQuestionário sobre o filme a meta
Questionário sobre o filme a meta
 
Exercício gestão da qualidade pdca
Exercício gestão da qualidade   pdcaExercício gestão da qualidade   pdca
Exercício gestão da qualidade pdca
 
2 aula produtividade
2 aula produtividade2 aula produtividade
2 aula produtividade
 
Modelagem de Processos com BPM
Modelagem de Processos com BPMModelagem de Processos com BPM
Modelagem de Processos com BPM
 
Seleção, Avaliação e Qualificação de Fornecedores
Seleção, Avaliação e Qualificação de Fornecedores Seleção, Avaliação e Qualificação de Fornecedores
Seleção, Avaliação e Qualificação de Fornecedores
 
Aula10 problema-transporte
Aula10 problema-transporteAula10 problema-transporte
Aula10 problema-transporte
 
Indicadores performancecadeiadesuprimentos
Indicadores performancecadeiadesuprimentosIndicadores performancecadeiadesuprimentos
Indicadores performancecadeiadesuprimentos
 
Como elaborar uma RFP
Como elaborar uma RFPComo elaborar uma RFP
Como elaborar uma RFP
 
Plano Safra 2023.pdf
Plano Safra 2023.pdfPlano Safra 2023.pdf
Plano Safra 2023.pdf
 
EXCEL PARA GESTORES DE NEGÓCIOS E CRIAÇÃO DE DASHBOARD
EXCEL PARA GESTORES DE NEGÓCIOS E CRIAÇÃO DE DASHBOARDEXCEL PARA GESTORES DE NEGÓCIOS E CRIAÇÃO DE DASHBOARD
EXCEL PARA GESTORES DE NEGÓCIOS E CRIAÇÃO DE DASHBOARD
 
Mapeamento de processos e riscos
Mapeamento de processos e riscosMapeamento de processos e riscos
Mapeamento de processos e riscos
 
Processesamento de pedidos
Processesamento de pedidosProcessesamento de pedidos
Processesamento de pedidos
 
SCM - Supply Chain Management (Gestão da cadeia de suprimentos)
SCM - Supply Chain Management (Gestão da cadeia de suprimentos)SCM - Supply Chain Management (Gestão da cadeia de suprimentos)
SCM - Supply Chain Management (Gestão da cadeia de suprimentos)
 
Logística Empresarial Estoques
Logística Empresarial EstoquesLogística Empresarial Estoques
Logística Empresarial Estoques
 

Viewers also liked

Peoplesoft Inventory Costing Version 1.1
Peoplesoft Inventory   Costing Version 1.1Peoplesoft Inventory   Costing Version 1.1
Peoplesoft Inventory Costing Version 1.1
Rockon0017i5
 
SDLC Peoplesoft Inventory - Surgery Implementation
SDLC  Peoplesoft Inventory - Surgery ImplementationSDLC  Peoplesoft Inventory - Surgery Implementation
SDLC Peoplesoft Inventory - Surgery Implementation
jsamples25
 
Order to cash flow cycle in order management
Order to cash flow cycle in order managementOrder to cash flow cycle in order management
Order to cash flow cycle in order management
venkatesh gurusamy
 
Enterprise Resource Planning
Enterprise Resource PlanningEnterprise Resource Planning
Enterprise Resource Planning
Joveria Beg
 
Basics of Oracle Order Management
Basics of Oracle Order ManagementBasics of Oracle Order Management
Basics of Oracle Order Management
shravan kumar chelika
 
Inventory Management
Inventory ManagementInventory Management
Inventory Management
anoos
 
Order Management Overview
Order Management OverviewOrder Management Overview
Order Management OverviewRobert Ransom
 
Inventory Management - a ppt for PGDM/MBA
Inventory Management - a ppt for PGDM/MBAInventory Management - a ppt for PGDM/MBA
Inventory Management - a ppt for PGDM/MBA
AJ Raina
 

Viewers also liked (8)

Peoplesoft Inventory Costing Version 1.1
Peoplesoft Inventory   Costing Version 1.1Peoplesoft Inventory   Costing Version 1.1
Peoplesoft Inventory Costing Version 1.1
 
SDLC Peoplesoft Inventory - Surgery Implementation
SDLC  Peoplesoft Inventory - Surgery ImplementationSDLC  Peoplesoft Inventory - Surgery Implementation
SDLC Peoplesoft Inventory - Surgery Implementation
 
Order to cash flow cycle in order management
Order to cash flow cycle in order managementOrder to cash flow cycle in order management
Order to cash flow cycle in order management
 
Enterprise Resource Planning
Enterprise Resource PlanningEnterprise Resource Planning
Enterprise Resource Planning
 
Basics of Oracle Order Management
Basics of Oracle Order ManagementBasics of Oracle Order Management
Basics of Oracle Order Management
 
Inventory Management
Inventory ManagementInventory Management
Inventory Management
 
Order Management Overview
Order Management OverviewOrder Management Overview
Order Management Overview
 
Inventory Management - a ppt for PGDM/MBA
Inventory Management - a ppt for PGDM/MBAInventory Management - a ppt for PGDM/MBA
Inventory Management - a ppt for PGDM/MBA
 

Similar to Inventory Pegging in PeopleSoft Financials Supply Chain

Order Review Solution Application (Version 2.0)
Order Review Solution Application (Version 2.0)Order Review Solution Application (Version 2.0)
Order Review Solution Application (Version 2.0)
Nag Arvind Gudiseva
 
EP_LE_E2611_Debagging Process And Differences for Debagging WH
EP_LE_E2611_Debagging Process And Differences for Debagging  WHEP_LE_E2611_Debagging Process And Differences for Debagging  WH
EP_LE_E2611_Debagging Process And Differences for Debagging WHRonen Madar
 
Purchase plus
Purchase plusPurchase plus
Purchase plus
Nitin Sharma
 
SAP-ECM and PPPI Integration-Solution
SAP-ECM and PPPI Integration-SolutionSAP-ECM and PPPI Integration-Solution
SAP-ECM and PPPI Integration-Solution
Vijay Pisipaty
 
FactoryMation Streamlines with NetSuite & OzLINK
FactoryMation Streamlines with NetSuite & OzLINKFactoryMation Streamlines with NetSuite & OzLINK
FactoryMation Streamlines with NetSuite & OzLINK
Oz Development
 
Production planningmisc
Production planningmiscProduction planningmisc
Production planningmisc
Muhammad Afzal
 
Inforln.com Baan 4 to LN Differences Training - Warehousing & Inventory Control
Inforln.com Baan 4 to LN Differences Training - Warehousing & Inventory ControlInforln.com Baan 4 to LN Differences Training - Warehousing & Inventory Control
Inforln.com Baan 4 to LN Differences Training - Warehousing & Inventory Control
Dan Aldridge, ERP Software Evangelist, LION
 
Oracle Application Differences & Drop Ship Sales Orders
Oracle Application Differences & Drop Ship Sales OrdersOracle Application Differences & Drop Ship Sales Orders
Oracle Application Differences & Drop Ship Sales Orders
iWare Logic Technologies Pvt. Ltd.
 
Oracel inventory and purchasing exam guide
Oracel inventory and purchasing exam guideOracel inventory and purchasing exam guide
Oracel inventory and purchasing exam guide
Adil Arshad
 
Manufacturing - User Manual v1
Manufacturing - User Manual v1Manufacturing - User Manual v1
Manufacturing - User Manual v1Rohan Thushara
 
Capacity hunt program reveals huge hidden capacity
Capacity hunt program reveals huge hidden capacityCapacity hunt program reveals huge hidden capacity
Capacity hunt program reveals huge hidden capacity
Shridhar Lolla
 
3DConsulting_Presentation
3DConsulting_Presentation3DConsulting_Presentation
3DConsulting_PresentationJoseph Baca
 
Smart DataCenters
Smart DataCentersSmart DataCenters
Smart DataCenters
Subbaram Gowra
 
New features in r12.0.6
New features in r12.0.6New features in r12.0.6
New features in r12.0.6Kuldeep Verma
 
New features in oracle
New features in oracleNew features in oracle
New features in oracleKuldeep Verma
 
New features in r12.1.2 including r12.1.1
New features in r12.1.2 including r12.1.1New features in r12.1.2 including r12.1.1
New features in r12.1.2 including r12.1.1
Kuldeep Verma
 
New features in r12.2.2
New features in r12.2.2New features in r12.2.2
New features in r12.2.2Kuldeep Verma
 
CBI D2ALX20139
CBI D2ALX20139CBI D2ALX20139
CBI D2ALX20139
savomir
 

Similar to Inventory Pegging in PeopleSoft Financials Supply Chain (20)

Order Review Solution Application (Version 2.0)
Order Review Solution Application (Version 2.0)Order Review Solution Application (Version 2.0)
Order Review Solution Application (Version 2.0)
 
EP_LE_E2611_Debagging Process And Differences for Debagging WH
EP_LE_E2611_Debagging Process And Differences for Debagging  WHEP_LE_E2611_Debagging Process And Differences for Debagging  WH
EP_LE_E2611_Debagging Process And Differences for Debagging WH
 
Purchase plus
Purchase plusPurchase plus
Purchase plus
 
SAP-ECM and PPPI Integration-Solution
SAP-ECM and PPPI Integration-SolutionSAP-ECM and PPPI Integration-Solution
SAP-ECM and PPPI Integration-Solution
 
FactoryMation Streamlines with NetSuite & OzLINK
FactoryMation Streamlines with NetSuite & OzLINKFactoryMation Streamlines with NetSuite & OzLINK
FactoryMation Streamlines with NetSuite & OzLINK
 
Production planningmisc
Production planningmiscProduction planningmisc
Production planningmisc
 
Inforln.com Baan 4 to LN Differences Training - Warehousing & Inventory Control
Inforln.com Baan 4 to LN Differences Training - Warehousing & Inventory ControlInforln.com Baan 4 to LN Differences Training - Warehousing & Inventory Control
Inforln.com Baan 4 to LN Differences Training - Warehousing & Inventory Control
 
Oracle Application Differences & Drop Ship Sales Orders
Oracle Application Differences & Drop Ship Sales OrdersOracle Application Differences & Drop Ship Sales Orders
Oracle Application Differences & Drop Ship Sales Orders
 
Oracel inventory and purchasing exam guide
Oracel inventory and purchasing exam guideOracel inventory and purchasing exam guide
Oracel inventory and purchasing exam guide
 
Manufacturing - User Manual v1
Manufacturing - User Manual v1Manufacturing - User Manual v1
Manufacturing - User Manual v1
 
Capacity hunt program reveals huge hidden capacity
Capacity hunt program reveals huge hidden capacityCapacity hunt program reveals huge hidden capacity
Capacity hunt program reveals huge hidden capacity
 
3DConsulting_Presentation
3DConsulting_Presentation3DConsulting_Presentation
3DConsulting_Presentation
 
Smart DataCenters
Smart DataCentersSmart DataCenters
Smart DataCenters
 
New features in r12
New features in r12New features in r12
New features in r12
 
New features in r12.0.6
New features in r12.0.6New features in r12.0.6
New features in r12.0.6
 
New features in oracle
New features in oracleNew features in oracle
New features in oracle
 
New features in r12.1.2 including r12.1.1
New features in r12.1.2 including r12.1.1New features in r12.1.2 including r12.1.1
New features in r12.1.2 including r12.1.1
 
New features in r12.2.2
New features in r12.2.2New features in r12.2.2
New features in r12.2.2
 
New features in r
New features in rNew features in r
New features in r
 
CBI D2ALX20139
CBI D2ALX20139CBI D2ALX20139
CBI D2ALX20139
 

More from Smart ERP Solutions, Inc.

Navigating HCM Compliance Through Managed Services Part 2
Navigating HCM Compliance Through Managed Services Part 2Navigating HCM Compliance Through Managed Services Part 2
Navigating HCM Compliance Through Managed Services Part 2
Smart ERP Solutions, Inc.
 
Transforming Financial Insights with Oracle EPM
Transforming Financial Insights with Oracle EPMTransforming Financial Insights with Oracle EPM
Transforming Financial Insights with Oracle EPM
Smart ERP Solutions, Inc.
 
Maximize your Oracle Cloud Investment and Drive Innovation
 Maximize your Oracle Cloud Investment and Drive Innovation Maximize your Oracle Cloud Investment and Drive Innovation
Maximize your Oracle Cloud Investment and Drive Innovation
Smart ERP Solutions, Inc.
 
SmartERP PeopleSoft Security
SmartERP PeopleSoft  Security SmartERP PeopleSoft  Security
SmartERP PeopleSoft Security
Smart ERP Solutions, Inc.
 
SmartERP Oracle Capabilities 2023.pptx
SmartERP Oracle Capabilities 2023.pptxSmartERP Oracle Capabilities 2023.pptx
SmartERP Oracle Capabilities 2023.pptx
Smart ERP Solutions, Inc.
 
Best Practices to Modernizing your Oracle Applications
Best Practices to Modernizing your Oracle ApplicationsBest Practices to Modernizing your Oracle Applications
Best Practices to Modernizing your Oracle Applications
Smart ERP Solutions, Inc.
 
Manufactures whats keeping you up
Manufactures   whats keeping you upManufactures   whats keeping you up
Manufactures whats keeping you up
Smart ERP Solutions, Inc.
 
The Fully Automated Enterprise (RPA)
The Fully Automated Enterprise (RPA)The Fully Automated Enterprise (RPA)
The Fully Automated Enterprise (RPA)
Smart ERP Solutions, Inc.
 
Smart erp solutions oracle cloud services overview - 2021 - 2022
Smart erp solutions   oracle cloud services overview - 2021 - 2022Smart erp solutions   oracle cloud services overview - 2021 - 2022
Smart erp solutions oracle cloud services overview - 2021 - 2022
Smart ERP Solutions, Inc.
 
PeopleSoft Webinar - Configure vs. Customize Page and Field Configurator
PeopleSoft Webinar - Configure vs. Customize Page and Field ConfiguratorPeopleSoft Webinar - Configure vs. Customize Page and Field Configurator
PeopleSoft Webinar - Configure vs. Customize Page and Field Configurator
Smart ERP Solutions, Inc.
 
Alert framework2021
Alert framework2021Alert framework2021
Alert framework2021
Smart ERP Solutions, Inc.
 
No One Size Fits All - Form I-9 and E-Verify presentation from the DHS
No One Size Fits All - Form I-9 and E-Verify presentation from the DHSNo One Size Fits All - Form I-9 and E-Verify presentation from the DHS
No One Size Fits All - Form I-9 and E-Verify presentation from the DHS
Smart ERP Solutions, Inc.
 
E-Verify for PeopleSoft - Streamline and automate your Employment Authorizati...
E-Verify for PeopleSoft - Streamline and automate your Employment Authorizati...E-Verify for PeopleSoft - Streamline and automate your Employment Authorizati...
E-Verify for PeopleSoft - Streamline and automate your Employment Authorizati...
Smart ERP Solutions, Inc.
 
Pre-board Your New Hires for PeopleSoft - Streamline and automate your pre-bo...
Pre-board Your New Hires for PeopleSoft - Streamline and automate your pre-bo...Pre-board Your New Hires for PeopleSoft - Streamline and automate your pre-bo...
Pre-board Your New Hires for PeopleSoft - Streamline and automate your pre-bo...
Smart ERP Solutions, Inc.
 
Configure Versus Customize: Using PeopleSoft Page and Field Configurator
Configure Versus Customize: Using PeopleSoft Page and Field ConfiguratorConfigure Versus Customize: Using PeopleSoft Page and Field Configurator
Configure Versus Customize: Using PeopleSoft Page and Field Configurator
Smart ERP Solutions, Inc.
 
Managed Services - Small, Medium, or Large - what's the best fit for your org...
Managed Services - Small, Medium, or Large - what's the best fit for your org...Managed Services - Small, Medium, or Large - what's the best fit for your org...
Managed Services - Small, Medium, or Large - what's the best fit for your org...
Smart ERP Solutions, Inc.
 
Convert manual paper-based business processes into automated paperless
Convert manual paper-based business processes into automated paperlessConvert manual paper-based business processes into automated paperless
Convert manual paper-based business processes into automated paperless
Smart ERP Solutions, Inc.
 
3 steps to successfully analyzing your PeopleSoft Security for Segregation of...
3 steps to successfully analyzing your PeopleSoft Security for Segregation of...3 steps to successfully analyzing your PeopleSoft Security for Segregation of...
3 steps to successfully analyzing your PeopleSoft Security for Segregation of...
Smart ERP Solutions, Inc.
 
Alert Framework - Alert your organization to errors, changes, and stalled tra...
Alert Framework - Alert your organization to errors, changes, and stalled tra...Alert Framework - Alert your organization to errors, changes, and stalled tra...
Alert Framework - Alert your organization to errors, changes, and stalled tra...
Smart ERP Solutions, Inc.
 
The 6 Biggest Trends for AP Leaders in 2021
The 6 Biggest Trends for AP Leaders in 2021The 6 Biggest Trends for AP Leaders in 2021
The 6 Biggest Trends for AP Leaders in 2021
Smart ERP Solutions, Inc.
 

More from Smart ERP Solutions, Inc. (20)

Navigating HCM Compliance Through Managed Services Part 2
Navigating HCM Compliance Through Managed Services Part 2Navigating HCM Compliance Through Managed Services Part 2
Navigating HCM Compliance Through Managed Services Part 2
 
Transforming Financial Insights with Oracle EPM
Transforming Financial Insights with Oracle EPMTransforming Financial Insights with Oracle EPM
Transforming Financial Insights with Oracle EPM
 
Maximize your Oracle Cloud Investment and Drive Innovation
 Maximize your Oracle Cloud Investment and Drive Innovation Maximize your Oracle Cloud Investment and Drive Innovation
Maximize your Oracle Cloud Investment and Drive Innovation
 
SmartERP PeopleSoft Security
SmartERP PeopleSoft  Security SmartERP PeopleSoft  Security
SmartERP PeopleSoft Security
 
SmartERP Oracle Capabilities 2023.pptx
SmartERP Oracle Capabilities 2023.pptxSmartERP Oracle Capabilities 2023.pptx
SmartERP Oracle Capabilities 2023.pptx
 
Best Practices to Modernizing your Oracle Applications
Best Practices to Modernizing your Oracle ApplicationsBest Practices to Modernizing your Oracle Applications
Best Practices to Modernizing your Oracle Applications
 
Manufactures whats keeping you up
Manufactures   whats keeping you upManufactures   whats keeping you up
Manufactures whats keeping you up
 
The Fully Automated Enterprise (RPA)
The Fully Automated Enterprise (RPA)The Fully Automated Enterprise (RPA)
The Fully Automated Enterprise (RPA)
 
Smart erp solutions oracle cloud services overview - 2021 - 2022
Smart erp solutions   oracle cloud services overview - 2021 - 2022Smart erp solutions   oracle cloud services overview - 2021 - 2022
Smart erp solutions oracle cloud services overview - 2021 - 2022
 
PeopleSoft Webinar - Configure vs. Customize Page and Field Configurator
PeopleSoft Webinar - Configure vs. Customize Page and Field ConfiguratorPeopleSoft Webinar - Configure vs. Customize Page and Field Configurator
PeopleSoft Webinar - Configure vs. Customize Page and Field Configurator
 
Alert framework2021
Alert framework2021Alert framework2021
Alert framework2021
 
No One Size Fits All - Form I-9 and E-Verify presentation from the DHS
No One Size Fits All - Form I-9 and E-Verify presentation from the DHSNo One Size Fits All - Form I-9 and E-Verify presentation from the DHS
No One Size Fits All - Form I-9 and E-Verify presentation from the DHS
 
E-Verify for PeopleSoft - Streamline and automate your Employment Authorizati...
E-Verify for PeopleSoft - Streamline and automate your Employment Authorizati...E-Verify for PeopleSoft - Streamline and automate your Employment Authorizati...
E-Verify for PeopleSoft - Streamline and automate your Employment Authorizati...
 
Pre-board Your New Hires for PeopleSoft - Streamline and automate your pre-bo...
Pre-board Your New Hires for PeopleSoft - Streamline and automate your pre-bo...Pre-board Your New Hires for PeopleSoft - Streamline and automate your pre-bo...
Pre-board Your New Hires for PeopleSoft - Streamline and automate your pre-bo...
 
Configure Versus Customize: Using PeopleSoft Page and Field Configurator
Configure Versus Customize: Using PeopleSoft Page and Field ConfiguratorConfigure Versus Customize: Using PeopleSoft Page and Field Configurator
Configure Versus Customize: Using PeopleSoft Page and Field Configurator
 
Managed Services - Small, Medium, or Large - what's the best fit for your org...
Managed Services - Small, Medium, or Large - what's the best fit for your org...Managed Services - Small, Medium, or Large - what's the best fit for your org...
Managed Services - Small, Medium, or Large - what's the best fit for your org...
 
Convert manual paper-based business processes into automated paperless
Convert manual paper-based business processes into automated paperlessConvert manual paper-based business processes into automated paperless
Convert manual paper-based business processes into automated paperless
 
3 steps to successfully analyzing your PeopleSoft Security for Segregation of...
3 steps to successfully analyzing your PeopleSoft Security for Segregation of...3 steps to successfully analyzing your PeopleSoft Security for Segregation of...
3 steps to successfully analyzing your PeopleSoft Security for Segregation of...
 
Alert Framework - Alert your organization to errors, changes, and stalled tra...
Alert Framework - Alert your organization to errors, changes, and stalled tra...Alert Framework - Alert your organization to errors, changes, and stalled tra...
Alert Framework - Alert your organization to errors, changes, and stalled tra...
 
The 6 Biggest Trends for AP Leaders in 2021
The 6 Biggest Trends for AP Leaders in 2021The 6 Biggest Trends for AP Leaders in 2021
The 6 Biggest Trends for AP Leaders in 2021
 

Recently uploaded

When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...
Elena Simperl
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
Product School
 
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Jeffrey Haguewood
 
JMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaJMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and Grafana
RTTS
 
Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
KatiaHIMEUR1
 
Key Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdfKey Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdf
Cheryl Hung
 
DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
Kari Kakkonen
 
Generating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using SmithyGenerating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using Smithy
g2nightmarescribd
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
James Anderson
 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
ThousandEyes
 
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Product School
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
Jemma Hussein Allen
 
Connector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a buttonConnector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a button
DianaGray10
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
Alan Dix
 
UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3
DianaGray10
 
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Product School
 
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance
 
Knowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and backKnowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and back
Elena Simperl
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
BookNet Canada
 

Recently uploaded (20)

When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
 
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
 
JMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaJMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and Grafana
 
Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
 
Key Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdfKey Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdf
 
DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
 
Generating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using SmithyGenerating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using Smithy
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
 
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
 
Connector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a buttonConnector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a button
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
 
UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3
 
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
 
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
 
Knowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and backKnowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and back
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
 

Inventory Pegging in PeopleSoft Financials Supply Chain

  • 1. QuestDirect.org Inventory Pegging Mary Gallitano Application Development Manager – Berlin Packaging Mary.Gallitano@Berlinpackaging.com Steve Canter Director, Global Service Delivery – Smart ERP Solutions Steve.C@SmartERP.com
  • 2. QuestDirect.org 2 Agenda • Pegging Definitions • Notifications • Using Pegging Workbench • Viewing Pegging Information • Berlin Packaging Case Study
  • 3. QuestDirect.org 3 What is Pegging? • Pegging links demand to incoming supply. • Demand can be either of the following: • Sales Order • Interunit Transfer going out • Supply can be any of the following: • Purchase Order • Production ID • Interunit Transfer coming in • A Peg prevents the incoming supply from being reserved to another Demand Line
  • 4. QuestDirect.org 4 Hard Pegging • A hard peg is created when a the Demand creates a purchase order or PID to fulfill it. • Direct Ship and Configured Sales Orders are automatically Hard Pegged. • Hard Pegs can also be created through Alternative Sources of Supply in OM • When hard pegged demand is changed or canceled, the supply transaction is changed (when allowed).
  • 5. QuestDirect.org 5 Changes in Demand with Hard Pegs • DS SO change allowed if PO is not Dispatched or if Due Date has not passed (configuration) • Configured SO change allowed if there is no Production Pick Plan, material has not been issued, and there is no Subcontract PO • Changes in Quantity, Date, and Status (cancelation) are automatically made to the supply. • If the transaction is past the point where the change in supply is allowed, then the change is not allowed in the demand. • Changes to supply are not automatically made in the demand.
  • 6. QuestDirect.org 6 Soft Pegging • A Soft Peg links an existing Demand Line to a quantity of existing Supply. • Example: A Sales Order for 100 units is entered. There is already an open PO with 2,000 units due into the warehouse. The SO can be soft-pegged to the PO to consume 100 pieces of the total that are coming in. • Changes in soft-pegged demand have no impact on the supply. • Soft Pegging is done through Pegging Workbench.
  • 7. QuestDirect.org 7 Communicating Changes • Changes to Pegged Supply or Demand automatically generate notifications to the appropriate person. • OM messages sent to the Order Owner • PO messages sent to the Buyer • PID and IBU messages sent to the designated person(s) for the Business Unit • Notifications are sent to the person’s Worklist, available on the Home Page, or to email.
  • 13. QuestDirect.org 1 View Pegging Information • From the Sales Order Line, you can see the PO or PID that is Pegged • From the PO Schedule, you can see the Sales Order that is Pegged. • From PID Maintenance, you can see the Sales Order that is Pegged. • From the Stock Request Inquiry, you can see the Pegging Information. • From the Pegging Inquiry screens, you can also directly transfer to the other transaction.
  • 19. QuestDirect.org 1 Viewing Peg Status SELECT PEG_STATUS, BUSINESS_UNIT, ORDER_NO, ORDER_INT_LINE_NO FROM PS_IN_DEMAND WHERE BUSINESS_UNIT = '00049‘ AND ORDER_NO = '0430044923' 10 00049 0430044923 1
  • 20. QuestDirect.org 2 Viewing Peg Status SELECT PEG_STATUS, BUSINESS_UNIT, ORDER_NO, ORDER_INT_LINE_NO FROM PS_IN_DEMAND WHERE BUSINESS_UNIT = '00049‘ AND ORDER_NO = '0430042421' 40 00049 0430042421 1
  • 21. QuestDirect.org 2 Demand Hash Table SELECT HASH_KEY, BUSINESS_UNIT, DEMAND_SOURCE, SOURCE_BUS_UNIT, ORDER_NO, ORDER_INT_LINE_NO, SCHED_LINE_NBR, INV_ITEM_ID, DEMAND_LINE_NO FROM PS_IN_DEMAND_HASH WHERE ORDER_NO = '0430044923' 85ReFbrcWlcr2yrB8em1VOzTOic= 00049 OM 43 0430044923 1 1 GLC-01056 2
  • 25. QuestDirect.org Berlin Packaging • Hybrid Packaging Supplier of Containers and Closures • Privately held company, headquartered in Chicago • Over 30 locations nationwide • PeopleSoft Financials and SCM Version 9.1 • PeopleTools 8.51 • Over 500 Active users of PeopleSoft • Annual sales in excess of $700,000,000 • Live on PeopleSoft since 2001 • 9.1 upgrade completed in May, 2012
  • 27. QuestDirect.org • Drop Ship Purchase Orders • Product Configurator • Pegging Workbench (will eventually replace Product Configurator completely) Pegging At Berlin
  • 28. QuestDirect.org Drop Ship Process • All Drop Ship order lines are automatically placed on a Drop Ship line Hold • Drop Ship Lines are manually removed from Drop Ship Hold when the Purchase Order is Vouched and Matched • In 8.8 – the PO Information was stored in ORD_SCHEDULE and the Order Information was stored in PO_LINE_SHIP • This relationship went away with the implementation of Pegging • We created a custom view – BP_ORD_SCHED_VW – which uses the hash tables to have an easy way to see the relationship between the order and Purchase Order.
  • 29. QuestDirect.org Drop Ship Challenges • User cancels Hard Pegged Drop Ship Purchase Order, and then the Sales Order can’t be cancelled. • NOTE – we train the users that the Demand should be cancelled before the supply and they receive an error message, but that doesn’t always stop the problem from occurring. • Resolution – SQL script to update the pegging status
  • 30. QuestDirect.org 30 --replace C.ORDER_NO with B.PO_ID and get the same result. -- Peg Status 10 = Open, 20 = Completed, 30 = Cancelled, 40 = Not Pegged SELECT B.BUSINESS_UNIT, B.PO_ID, B.LINE_NBR, B.SCHED_NBR, C.BUSINESS_UNIT, C.ORDER_NO, C.ORDER_INT_LINE_NO, C.SCHED_LINE_NBR, A.PEG_STATUS, A.SUPPLY_HASH, A.DEMAND_HASH,A.HARD_PEG FROM PS_IN_PEGGING A, PS_PO_HASH B, PS_IN_DEMAND_HASH C WHERE C.ORDER_NO in ('xxxxxxxxx' ) --WHERE B.PO_ID = 'xxxxxxxxx' AND B.HASH_KEY = A.SUPPLY_HASH AND C.HASH_KEY = A.DEMAND_HASH AND A.SUP_ORDER_TYPE = '010' AND A.PEG_STATUS = 10 SQL for Drop Ships
  • 31. QuestDirect.org Product Configurator • Berlin has customized Order Management to automatically run the Create Production Request Process when a configured item is ordered. • The Subcontract PO Process is scheduled to run every 10 minutes • Our items are not truly “configured” as much as they are “build on demand” • We have a combination of Subcontract PIDs and In- house Production
  • 32. QuestDirect.org • Supply is Hard Pegged for Configured items. • Cannot be changed once the Subcontract PO is created. • This resulted in effectively preventing the field from making changes to configured sales order lines outside of a very tight window. • Product Configurator will be going away with future releases Configurator Challenges
  • 33. QuestDirect.org 33 • We are gradually eliminating the use of Configured items. • Sales order is created • PID is then created • Pegging Workbench is used to tie the 2 together • It then becomes much easier to make changes since the PID is now Soft Pegged to the Sales Order. Configurator
  • 34. QuestDirect.org 34 • Sales Order Linked to a PID could be cancelled without any warning • Quantity decrease on a Sales Order caused the peg to be changed from Hard to Soft • Subcontract Streamline did not work with Configured PID • Changes made to configured Sales Orders had unexpected results • These are all bugs that have been resolved with assistance from Oracle Support Other Pegging Issues
  • 35. QuestDirect.org • We continue to utilize Pegging with Drop Ship sales orders with very few problems. • We have eliminated the majority of our configured subcontracted items and utilize pegging workbench to manage the relationships. • Our Production Team has gotten more comfortable with the pros and cons of utilizing Pegging and the workarounds when things go awry. • Reviewing Use of Alternate Sources of Supply Where are we today?
  • 36. QuestDirect.org 36 • Pegging as delivered in 9.1 has a lot of bugs • It does take some time for the business to understand how Pegging works. • BUT – it can add a great deal of value to the business once you get past the training and the initial bugs. Conclusion
  • 37. QuestDirect.org APRIL 7-11, 2014 Sands Expo and Convention Center Las Vegas, Nevada QuestDirect.org/COLLABORATE COLLABORATE 14- Quest Forum is THE source for PeopleSoft roadmaps & news. It matters where you register! All PeopleSoft education and events run through Quest