Service Operations
Run this SQL in Production:
select IB_OPERATIONNAME||VERSIONNAME
from PSOPRVERDFN where active_flag = 'A';
from PSOPRVERDFN where active_flag = 'A';
Use the output of this query in the environment impacted by your PUM ## image:
select * from PSOPRVERDFN where active_flag = 'I' AND IB_OPERATIONNAME||VERSIONNAME IN ('GETFACETNODESV1'
,'COMPETENCY_FULLSYNC3VERSION_1'
,'DOORACLEFACETSEARCHV1'...**output from sql above***)
The rows returned will show you the Service Operations that were turned off by your PUM Image.
Handlers
Run this SQL in Production
SELECT IB_OPERATIONNAME||HANDLERNAME
FROM PSOPRHDLR WHERE ACTIVE_FLAG = 'A';
Use the output of this query in the environment impacted by your PUM ## image:
SELECT IB_OPERATIONNAME||HANDLERNAME FROM PSOPRHDLR
WHERE IB_OPERATIONNAME||HANDLERNAME IN ('PTFP_GETFEEDREQUESTHDLR'
,'PTFP_GETFEEDLISTREQUESTHDLR'
,'PTFP_GETPREPUBFEEDREQUESTHDLR''...**output from sql above***)
AND ACTIVE_FLAG = 'I';
The rows returned will show you the Handlers that were turned off by your PUM Image.
Routings
Run this SQL in Production
SELECT ROUTINGDEFNNAME
FROM PSIBRTNGDEFN WHERE AND EFF_STATUS = 'A';
Use the output of this query in the environment impacted by your PUM ## image:
SELECT * FROM PSIBRTNGDEFN
WHERE ROUTINGDEFNNAME IN (
'~GENERATED~23086336'
,'~GENERATED~23110751'
,'~GENERATED~23132114'...**output from sql above***)
AND EFF_STATUS = 'I';
The rows returned will show you the Routings that were turned off by your PUM Image.
This post is not intended to replace compare reports, but this SQL can used to spot check your work.
No comments:
Post a Comment