Patchsets SH
Patchsets SH
Andrew ftp_site $
TOOL_VERSION="4.52"
export TOOL_VERSION
LAST_MODIFIED="MAY 05, 2011"
export LAST_MODIFIED
#############################################################################
## patchsets.sh - used to compare applptch.txt to patchset listings from ARU.
## - Curently Supports 10.7 - 11.5.10, R12.0.0
## - Added R12 Support 2/12/07
##
## Usage: patchsets.sh connect=apps_login/pw
## [ad_bug_date="DD-MON-YY"] (11i/R12 only)
##
## REPORT NAME AND FORMAT
## ######################
## [htmlout=file_name] [applptch=applptch_file.txt]
## [htmlout11i=file_name]
## [htmloutR12=file_name]
## [report_name=[/path/]file_name]- moves/renames report
## Note: Use htmloutXX or report_name (stays text)
##
## [nca=y] (for 10.7NCA Middle-tier)
## [silent=y] default is n [available=metalink]
##
## connect=apps/apps@connection (11i/R12 only)
## [ad_bug_date="DD-MON-YY"] (11i/R12 only)
## [patch_list=ad_applied_patches|your_file.csv]
## default is to use: ad_bugs table
## It is alot faster to go against ad_applied_patches
## but this only works if you are NOT using admrgpch to
## merge patchsets. Also, if providing your_file.csv
## the format is:
## short_name, possible_patchset_number
## (The short_name is not used but a value is required)
## available=metalink - defaults to all patchsets even
## if not available for download from metalink.
##
## Optionally only run some sql Reports:
## =====================================================
## Applied Patches:
## connect=apps/apps@connection report=applied_patches
## Merged Patches:
## connect=apps/apps@connection report=merged_patches
## [bug=patch#]|[product={short_name}]|
## [applied_date=DD-MON-YY]
## Last Updated Patchset Data:
## report=last_updated
## i.e. Sample Usage:
#############################################################################
## $ patchsets.sh connect=apps/apps
## $ patchsets.sh connect=apps/apps patch_list=ad_applied_patches
## $ patchsets.sh connect=apps/apps@VIS1157 ad_bug_date="01-FEB-02"
## default for 11.5.5-11.5.9=01-JAN-02 11.5.10=01-OCT-03
## $ patchsets.sh
## $ patchsets.sh applptch=/tmp/applptch.txt
## $ patchsets.sh connect=apps/apps debug=y
## $ patchsts.sh connect=apps/apps available=metalink
## (Limits Available Listing)
##
## Reports:
## $ patchsets.sh connect=apps/apps report=applied_patches
## $ patchsets.sh connect=apps/apps report=merged_patches bug=2344175
## $ patchsets.sh report=last_updated
##
## $ patchsets.sh -h|?|help (for Help)
##
## NEW FEATURE TO AUTOMATICALLY UPDATE THE PROGRAM:
## $ patchsets.sh upgrade=. or upgrade=/tmp (puts in tmp)
##
## WARNING:
## If you use it be careful to first BACKUP your $HOME/.netrc
## The program should not touch that file, as long as you are not
## running from the $HOME directory.
##
## FEEDBACK WELCOME!!! - [email protected]
##
## if problems: Please run with debug=y appended and email me
## debug.txt
##
## Note1: The connect string is required if > 11.5.4 or the latest AD
## patch has been applied. (See README.txt on ftp site)
##
## Note2: The applptch= is not required if your APPL_TOP is set. The
## program will find it based on the standard locations.
## If you use the htmlout= option, the program will generate an
## html file format that can be redirected to a web location so
## that the tool can easily make the report available to your
## Enterprise.
##
## Note3: Optional CUST_TEMP variable can be used to set the TEMP out
## directory where temp files are created as the program runs.
##
## Note4: Product HZ not currently showing in the report. If you want it
## you can add: HZ to the APPLFULL or APPLSHAR env. variables before
## running the program. - Should have a table fixed for this...
##
## Note5: If having a "Arg list too long" problem on AIX, try: aix=y option
## This will run slower, but should eliminate the
## ./patchsets.sh: line 1136: /bin/grep: cannot execute [Arg list
## too long]
##
## Note6: Generally should work on any platform with ksh or sh. Recently fixed
## a PSEUDO products sh problem. 4.23 No other known issues currently
## with shells.
##
###############################################################################
## CHANGE LOG / HISTORY:
###############################################################################
## 4/10/00- Intial Release by Steve Andrew
## 8/07/00- Added 11i Support, Base Patchsets (11.5.1) still a bit confused
## appears that several patchsets "A" are applied by the 11.5.1
## upgrade
## 1/11/01- Modified significantly from ckpatch.sh used with the web
## only version. This is used as a standalone script or can
## be built from a web front-end to add the dynmamic data
## to it from ARU. A cron generates this info. via sqlplus
## 3/23/01- Adding htmlout=file option to build the output in html format
## if desired. Also added silent=y
## 5/09/01- Martin Fitzgerald from Consulting contributed the Report_11i.txt
## report which is more detailed for 11i.
## Also limited the General report(Report.txt) to only show the
## APPLFULL and APPLSHAR products IF these variables are set.
## Also updated the Header to reflect IF APPLFULL was used to
## Limit the Product Patchset listing.
## 5/31/01- Removed Martin Fitzgerald Name from Report_11i.txt per request.
## 6/26/01- Added support for 11.5.4 including the 1154_Base.txt file which
## includes the baseline listing of all the patchsets from the README.
## Version: 2.0
## 10/3/01- Adding support for 11.5.5 or latest AD patch where patches have
## been moved into the RDBMS in tables AD_BUGS etc...
## Version: 2.1
## 10/24/01 Checking for presents of typeset command in the shell and
## warning if not present. This command is used in the Report_11i.txt
## but does not cause the report.txt report to fail.
## - Not fixed yet, but run
## ksh on Solaris and it will work.
## 10/25/01 - Fixed by removing typeset -l and using tr to force
## APPLFULL/APPLSHAR products to all lower case.
## Version: 2.2
## 11/2/01 - Found problem with some Versions in Header of applptch.txt
## added some traps to skip if version has 11.x.x\r\n
## - case statement 11.x.x*) fix.
## Version: 2.3
## AIX had a grep buffer overrun when > 2k size a fix was to put the
## string in quotes before calling a grep see: AIX
## 1) Install X11.dt.rte on AIX (this gave me /usr/dt/bin/dtksh
## version 93 of ksh)
## 2) I modified your script (just a little)
## add: #!/usr/dt/bin/dtksh (as the first line of the script)
## 3) Running the script then no longer had the
## ./patchsets.sh[57]: 0403-029
## Tip: To check the current shell version: Esc Cntrl-V
## Version: 2.4
## Added some MKS specific error dif. commands who am i vs. whoami
## andtput fails to work. Also checking for the /tmp directory
## and making sending message to create if not present
## - on current drive when running on NT.
## Also worked out the sqlplus connection issues on NT via MSK for
## the new AD_BUGS. Documentation added to help on how to run it
## under NT/MKS. (Env sourcing etc..)
## Version: 2.5
## Added a feature to be able to run against 10.7 NCA (nca=y)
## Fixed a problem running against 10sc files.
## Version: 2.6
## Added support for 11.5.6 which only shows up on Oracle Internal
## OHS Systems because fnd_product_groups does not get updated when
## the 11.5.6 ERP or CRM Patch is applied. The 11.5.6 Patchsets
## Baseline is created as /tmp/1156_Base.txt
## Also secured the sqlplus password from ps snoops
## Version: 2.7
## Added ability for 11i installs using the database to store patch
## history to search just the patches applied(ad_applied_patches)
## instead of all included bugs(ad_bugs) see: option patch_list=
## Version: 2.8
## Updated to handle the new AD_BUGS structure that is no longer using
## APPLICATION_SHORT_NAME . Found problem with a customer doing a 10.7
## upgrade to 11i. The existing apps installs seem to still have the
## table, but it would no longer be up-dated either.
## Version: 2.9
## Updated to handle the new 11.5.7 Maintainence Pack or patchsets
## Version: 3.0
## Fixed 8.05 sqlplus background connection with a space in front of here
now.
## Fixed DOMAIN error when on NT no /etc/resolv... file.
## Found a way that some aru's without actions were not showing the patch
in patch.csv
## when using the applptch.txt file. Fixed by appending an grep begin aru"
## Version: 3.1
## Added tool version to Report Header, Help, etc.
## Version: 3.2
## Apparently introduced a problem in the Generation of the Patch.csv in
the 3.0
## revision when customers are using applptch.txt.
## Has to do with appending: grep "begin aru bug" $applptch .. not just
"begin bug"
## Currently investigating further..
## Fix: Needed to remove a space in the Patch.csv output Short,Bug not
Short, Bug
## Version: 3.3
## Added more patchsets to the ARU generated 11i_patchsets.txt file so
that to fix a
## problem in the "Installed Version" and possibly "Running Version" of
the Report_11i.txt
## Also changed the header from: "Installed Version" to "Baseline Version"
to make it clearer.
## Version: 3.4
## Added the Family Packs listing as a separate section to the Report.txt
report. Also enhanced
## the explanation on the report about patchsets included in Family packs
and the Distribution
## of such.
## Version: 3.5
## Added 11.5.8 Support, ie. uses: /tmp/1158_Base.txt to establish the
baseline for 11.5.8
## Also need to fix the APPLFULL and APPLSHAR to come from the database
once AUTOCONFIG
## is enabled since the env variables are not set any more...once
AUTOCONFIG is setup.
## => KNOWN ... issue, not fixed yet. Workaround, set them yourself!
APPLFULL and APPLSHAR
## select fav.application_short_name Short, fpi.status Status
## from fnd_application_vl fav, fnd_product_installations fpi
## where fav.application_id = fpi.application_id and
## fav.application_short_name NOT like 'SYSADMIN' and
## fpi.status != 'N'
## order by 2,1;
## Version: 3.6
## Added new 11.5.7 Baseline and fixed APPLFULL and APPSHAR for autoconfig
cusomters
## ie. The program builds and sets the APPLFULL and APPLSHAR env from
database tables.
## see: Set_APPLFULL_APPLSHAR_from_DB
## Also enhanced Report.txt to use the FULL Baseline patchsets listing as
the
## Report_11i.txt does. This limits the person from having to look at the
Basline
## release patchsets to build their true baseline.
## Appended the 11.5.7 patchsets not included in ad_bugs but in the
## fnd_installed_products table to the 1157_Base.txt file. This is a merge
of
## the html Release Notes and that tables listing. Still appears some
products
## proper true baselines are missing. ie. ad is not in either location.
## Speeded up the Report.txt file using a diff -c ... may cause problems
on some
## Unixs if that option isn't present. If so use old way or: new_compare=n
option
## Version: 3.7
## Modified the Patch.csv list to include ad_applied_patches as well as
ad_bugs.
## Also limit the ad_bugs part of the listing for 11.5.7 and 11.5.8 to
only bugs added
## after 01-JAN-2002. This solved an NT bug that ran out of memory. This
also
## solved the extremely LONG running problem due to ad_bugs being ~40k
records
## when released with 11.5.7 and 11.5.8 (bugs logged on this).
## This is still showing ~26000 bugs with 11.5.8, and they end ~Oct
29,2002 if I
## want to change the sql to exclude them to make the query faster. The
only
## advantage is that is may show some patchset history ... but not really
required
## since I have merged the 1158_Base.txt with html release note and
## fnd_product_installations patchset listings.
## Cleaned up some of the format issues on the Report_11i report as it
goes to screen
## and file. Have not tested changes for NT which ignores these screen
output attr.
## Version: 3.8
## Added option for CUST_TEMP variable to point at the OUT_DIR or temp
files
## directory. If not set, the program still defaults to /tmp. Also purged
some tmp files
## that were not being removed. The only files that should be left at this
point would
## be the reports that get created in the current directory and any
supporting ARU
## data files. ie. /tmp/11i_patchsets.txt & /tmp/115X_Base.txt files.
## Also cleanup the files not used for their install: 10.7, 11.0, or 115X
in OUT_DIR.
## Still leave all the 115X_Base if an 11i install. They are used.
## Version: 3.9
## Fixed OFA => FA when using fnd_applications_vl, and added a date >
option for ad_bugs
## as a work-around for an NT customer have variable limits with MKS
## Date: 1/30/2003
## Version: 4.0
## 1) New Option: override_appsversion=11.5.[x] where customer can overide
the default
## Lookup of their core apps version(FND_PRODUCT_GROUPS) used for the
baselines.
## 2) Included Patches Applied from: ad_patch_driver_minipks, translated
but numbers from
## ARU listing 11i_patchsets.txt, then append to the Patch.csv as part of
customer applied.
## Date: 2/3/2003
## Version: 4.1 - see bug: 2743473, Issue - 4. (Issues - 1 unix env doesn't match
prod tables.,
## Issue - 3 (OFA=>FA) Not-a-bug)
## 4.02) was not showing up in the Report_11i.txt report, only the
Report.txt report.
## FIXED. Has to do with examples like: Family Pack: 11i.FIN_PF.C(2380068)
which
## included 11i.AP.J (2375849) which only shows up in
ad_patch_dirver_minipks.
## Bug: Left out a comma when appending the patchsets from:
Applied_Ad_Minipks.csv
## to Patch.csv - Note: The date format is dif. in field one as a way to
tell them
## appart.
## Bug 2743473, Issue - 2 - HZ product not showing up. Fixed with a Work-
Around by
## setting the UNIX env either APPLFULL or APPLSHAR to have HZ in them.
This will
## merge it into the list created from the database tables.
FND_APPLICATION_TL etc.
## OPEN ISSUE: Should not the HZ "Trading Partners" patchsets be part of
AR since
## their objects appear to be owned by AR. - Check with: MineOdok
(internal AIM..)
## Date: 2/7/2003
## Version: 4.2
## still relates to bug: 2743473, Issue - 4.
## (Issues - 1 unix env doesn't match prod tables.,
## Had a code logic problem in checking for "HZ " vs "HZ" in the grep
## - so adding HZ only worked if it had a space at the end. Fixed!
##
## Date: 2/10/2003
## Version: 4.3
## Relates to bug: 2743473, Issue - 4.
## (Issues - 1 unix env doesn't match prod tables.,
## Changed to HARD-CODE "HZ" into the APPLFULL listing
## until we get this fixed internally. Philippe G. has the bug...
## - Means it will just show up in the Products FULL listings reports.
## - No need to Add it to the unix applfull or applshar before running.
##
## Date: 2/10/2003
## Version: 4.4
## The SHARED FULL Products where not showing up with
## a system that had sqlplus settings odd. Fixed by
## changing the SQL to make SHORT_NAME STATUS be on one line.
## Date: 7/22/2003
## Version: 4.5
## Added support for 11.5.9
##
## Date: 9/29/2003
## Version: 4.6
## Added support for AIX "Arg list too long" problem
## Work-Around: aix=y on command line and writes array to file
## instead of using the faster in-memory way.
##
## Date: 9/29/2003
## Version: 4.7
## Financials Family Pack 11i.FIN_PF.D 2629235 was released
## with 11.5.9 and is not showing up. This was because DEV
## removed it from ARU database and it no longer shows up in
## the 11i_patchsets.txt nightly output. It is in the 1159_Base.txt
## SOLUTION: Append a record to the 11i_patchsets.txt as
## follows:
## fin_pf 11i.FIN_PF.D 2629235 14-MAY-01 Patchset Closed Not_Distributed
## I did this in the ARU Data sql, not in my code. No change in this code.
##
## Date: 1/06/2004
## Version: 4.8
## Financials Family Pack 11i.FIN_PF.D 2629235 NOT showing up
## This is because the report_11i.txt did a grep -v Closed on the
## Family Packs _pf. Hope this doesnt show Family Packs with Higher
## value that WONT be available. Put in fix, removed the grep -v Closed
##
## Date: 05/10/2004
## Version: 4.9
## Had another AIX issue where the new shell still didnt fix
## the memory problem noted in the help. Added a work-around with
## the aix=y option in the Run_SQL procedure.
## $ EscCnrl-V -> Generates the version:
## $ Version M-11/16/88i
##
## Date: 06/17/2004
## Version: 4.10
## 11.0.X runs the Report_11i.txt and shows errors Sun/Hp at least
## < if [ "${R11i:=YES}" = "YES" ]; then
## --- > Changed and added in the database section R11i=YES
## > if [ "${R11i}" = "YES" ]; then
##
## Date: 10/20/2004
## Version: 4.11
## Modified Report.txt and Report_11i.txt to only show Metalink
## available patchsets in the "Latest Available" category, this
## means that if they dont have "By_Metalink" in the distribution
## column, they will only be used to get baselines, and check applied
## but will not show up on the Latest Available areas of the reports.
## This was reported as a problem when lots of 11.5.10 patchsets
## were being created but not on metalink, just before 11.5.10 rel.
## Once 11.5.10 is out, most of those patchsets will have a dist.
## of Metalink, but currently caused some confusion on the report.
## For code change locations see: FIX LATEST AVAILABLE
##
## Date: 11/29/2004
## Version: 4.12
## Removed support for: 10sc, 10.7 and 10.7NCA.
## PS: Plan to add: 11.5.10 support soon in 4.13
##
## Date: 01/03/2005
## Version: 4.13
## Added back support for: 10.7 and 10.7NCA.
## Added: 11.5.10 support as planned.
##
## Date: 03/03/2005
## Version: 4.14
## 1) Found problem with connect=apps/xxx when an applptch.txt file
## is present. It was using the applptch.txt file. Setup_Env()
## 2) Added option to show only LATEST AVAILABLE: on metalink
## (see: 4.11 change), with: latest=metalink else it now shows
## the latest available followed by the status REL-SOURCE.
## 3) Also added: Pseudo Products to the Reports which are products
## not in the FND_ tables.
## 4) Added fix for AIX Memory issue which doesnt require the
## aix=y flag any more. Send Variable data for file instead
##
## Date: 03/24/2005
## Version: 4.15
## 1) Found problem with PSEUDO products in if someone
## sets a dif. default OUTPUT directory than /tmp.
## ie. CUST_TEMP=/myhome assumed /tmp/11i_patchsets.txt
##
## Date: 03/29/2005
## Version: 4.16
## ADDED OAM so to PSEUDO PRODUCT Listing
##
## Date: 03/31/2005
## Version: 4.17
## 4.16 didnt work as expected and changed it AND TESTED
## the change this time. OAM showed up in the PSEUDO PRODUCTS
## list on the Report.txt and OAM.G showed as applied.
##
## Date: 04/07/2005
## Version: 4.18
## Still had an awk variable problem with AIX and some
## hard coded references to /tmp have been removed so that
## CUST_TEMP can be used at command line or set first.
##
## Date: 04/18/2005
## Version: 4.19
## If not passing connect= on command line R11i=YES wasnt
## getting set. Problem happend from a code change above.
##
## Date: 04/19/2005
## Version: 4.20
## Added Test upgrade=. or upgrade=/tmp to update from ftp
## site automatically.
##
## Date: 07/27/2005
## Version: 4.21
## Fixed NT memory problems shell cant fit large variable
## strings with MKS like AIX see aix fixes.
##
## Date: 09/26/2005
## Version: 4.22
## Back Fixed the 10.7 data files not showing up.
##
## Date: 12/20/2005
## Version: 4.23
## Had a /bin/sh vs /bin/ksh problem on Solaris with
## PSEUDO Products not working. Added: tmpPSEUDOBack tmp
## file to fix loop export variable shell issu.
## (ARU Changed data structure which effected short name
## during this same time frame)
##
## Date: 01/03/2006
## Version: 4.24
## Thanks to [email protected] added code changes
## that dramatically increased the speed of the application.
## PS: Have continuted to put off database version that
## runs in seconds because OAM has in the past said there
## version would include patch history. Still considering!
## Email me if this is a priority for you. Would use xml
## dataload, then select patchxml_list minus
## select your applied query. Runs very fast.
##
## Date: 02/23/2006
## Version: 4.25
## Added DNA to FULL Products for SHARED to show correctly
##
## Date: 10/30/2006
## Version: 4.26
## Updated to point to new ftp site and updated the auto
## upgrade to: ftp.oracle.com
##
## Date: 11/14/2006
## Version: 4.27
## Change suggested by: [email protected]
## dif. syntax for uname on Cygwin, workaround see OS1
##
## Date: 11/15/2006
## Version: 4.28
## Found problem with uname -o syntax on Sun from above
## Reworked and added fix for CUST_TEMP being null on cygwin
## and corrected DOMAIN instead of workgroup on NT
##
## Date: 11/17/2006
## Version: 4.29
## Added support for htmlout11i=Path for the Report_11i.txt to
## be output to html as well as htmlout for Report.txt.
## Also fixed another problem with CUST_TEMP
##
## Date: 02/12/07
## Version: 4.31
## Started working on R12 support and broke something and needed
## to move OUT_FILE variable above moved Get_DB_Apps_Version.
##
## Date: 02/12/07
## Version: 4.32
## First working version of R12. May need some changes.
##
## Date: 02/14/07
## Version: 4.33
## Added to R11i section, after moving it above in 4.32
## to support R12, missed for 11i and caused no APPLFULL and
## APPLSHAR variables to be set for 11i
## Set_APPLFULL_APPLSHAR_from_DB
##
## Date: 05/09/07
## Version: 4.34
## BASELINE.txt file ended up with more than just the baseline
## so some people wanted to use the BASELINE.txt file for other
## purposes. fix created a BASELINE.tmp for the purposes my code
## needed it.
##
## Date: 06/04/07
## Version: 4.35
## Added Applied_Patches reports: Applied_Patches_11i.txt or
## Applied_Patches_R12.txt in on R12 - They get created by
## default and put in the same directory as the patchset
## reports.
##
## Date: 11/27/07
## Version: 4.37
## Problem when 11i.ADX.F 3453499 has been applied, but the
## 11i.ADX.E.1 patch showed as the active because it has a higher
## bug number. Odd situation, so I just hard coded a fix.
## Date: 11/28/07
## Version: 4.38
## Added message: {product} has no patchsets!
## for Products like IZU that have not released patchsets.
##
## Date: 01/07/08
## Version: 4.39
## Trapping ORACLE_HOME not set in Run_SQL to be easier for people
## that have not setup the env. instead of bunch errors to the screen.
##
## Date: 02/06/08
## Version: 4.40
## Fixed odd error when applptch.txt file is missing for 10.7/11.0.X
## like a fresh install. fix: add on command line:
## patchsets.sh version=10.7.0|11.0.1(2,3) and it will not prompt for
## database user password. Use to assume if no applptch.txt, its 11i/R12.
## Also, Debug function was failing if OUT_DIR was not set, so default
## to current directory "." before checking for CUST_TEMP env. setting.
##
## Date: 02/06/08
## Version: 4.41
## Had a bad sql column in Applied Patches report for 11.5.10.2
##
## Date: 06/02/09
## Version: 4.42
## Added support for R12.1.1 release by adding 1211_Base.txt file
## when the release is 12.1.1 as the base listing of applied.
## see: R1211_PATCHES variable in program to better understand.
##
## Date: 06/03/09
## Version: 4.43
## Missed a change to support the R12.1.1 patchsets baseline and
## limited the Patch.csv report size and update R12 Report.
##
## Date: 06/09/09
## Version: 4.44
## Fixed syntax on R12.sql report and added Test merge R12 report
##
## Date: 06/10/09
## Version: 4.45
## TOOL_VERSION was only working and showing on report if run from
## same directory because it greped directly on patchsets.sh.
## Hard coded instead. New R12 merge report isn't quite working
## so removing until further investigation. Adding only as a
## standalone report. report=merged
##
## Date: 06/24/09
## Version: 4.46
## Just added optional rename or move report at the end to support
## people running against multiple instances from same location or
## cron.
## ie. patchsets.sh connect=apps/apps \
## report_name=${TWO_TASK}_Report_R12.txt
##
## Date: 07/08/09
## Version: 4.47
## Changed output format spacing on columns so it is easier to
## import report_xx.txt into Excel, columns line up better per
## User request.
##
## Date: 03/03/10
## Version: 4.48
## Just minor changes on a few spellings and LAST_MODIFIED was
## added as a variable to make it easier to show consistently.
##
## Date: 02/09/11
## Version: 4.49
## Modified R12 SQL Report to include in ('SQLAP', 'SQLGL' )
##
## Date: 02/22/11
## Version: 4.50
## Modified R12 SQL Report changed substring to substr
##
## Date: 03/11/11
## Version: 4.51
## Changed status from Che-Released to Patch-Released on Reports
## Report_11i.txt and Report_R12.txt
##
## Date: 05/05/11
## Version: 4.52
## Adding 1212_Base.txt and 1213_Base.txt baseline support for
## R12.1.2 and R12.1.3 releases.
#############################################################################
Setup_Env ()
{
## Procedure: Setup_Env ()
## Called to setup all the env variables ...
#############################################################################
## Variables Used to Process this script:
#############################################################################
if [ ! -r "$ORACLE_HOME" ];then
echo "ERROR: cannot read ORACLE_HOME or not set."
echo "SOLUTION: Set ORACLE_HOME and retry. "
echo " ie. ORACLE_HOME=/u/ohome;export ORACLE_HOME"
exit
fi
#
# ALLOW Customizied OUT_DIR option if env variable: CUST_TEMP is set,
# else use: /tmp.
#
if [ -r ${CUST_TEMP:=X} ];then
OUT_DIR=$CUST_TEMP; export OUT_DIR
echo "OUT_DIR using CUST_TEMP for temp files. Set to: $CUST_TEMP"
elif [ -r /tmp ]; then
OUT_DIR=/tmp; export OUT_DIR
echo "OUT_DIR set to: $OUT_DIR by default (set CUST_TEMP if you want to customize
this)"
else
echo "There is no /tmp directory on this drive/partition. Please create it and
re-run."
echo "Neither OUT_DIR ( $OUT_DIR ) nor (CUST_TEMP ) were set. "
echo "Default is /tmp if cannot read CUST_TEMP."
echo "SOLUTION - Either create /tmp and make it writable or set CUST_TEMP
variable to "
echo "point at a writable directory."
exit
fi
##
## OUT_DIR and OUT_FILE
## - moved OUT_FILE before any RunSQL Calls - V 4.31 fix.
##
OUT_FILE=junk$$; export OUT_FILE
MACHINE=`uname -a`
export MACHINE
########################################################
# BaseLine Patchset Listings for 11i
# ... Shared Settings Report.txt and Report_11i.txt
########################################################
R1151_PATCHES=${OUT_DIR}/1151_Base.txt
R1152_PATCHES=${OUT_DIR}/1152_Base.txt
R1153_PATCHES=${OUT_DIR}/1153_Base.txt
R1154_PATCHES=${OUT_DIR}/1154_Base.txt
R1155_PATCHES=${OUT_DIR}/1155_Base.txt
R1156_PATCHES=${OUT_DIR}/1156_Base.txt
R1157_PATCHES=${OUT_DIR}/1157_Base.txt
R1158_PATCHES=${OUT_DIR}/1158_Base.txt
R1159_PATCHES=${OUT_DIR}/1159_Base.txt
R11510_PATCHES=${OUT_DIR}/11510_Base.txt
R1200_PATCHES=${OUT_DIR}/1200_Base.txt
R1211_PATCHES=${OUT_DIR}/1211_Base.txt
R1212_PATCHES=${OUT_DIR}/1212_Base.txt
R1213_PATCHES=${OUT_DIR}/1213_Base.txt
else
Need_Database_Patch_List=True; export Need_Database_Patch_List
echo "Connecting to database with parameters passed using tool version:
$TOOL_VERSION"
Debug "CONNECTION: $connect"
fi
#####################################
# Clearing Report File from Last Run
#####################################
echo > $REPORT
LOG=$OUT_DIR/log.txt
LOG_COUNT=$OUT_DIR/log_count.txt
if [ -r /usr/ucb/whoami ]; then
# SUN is here usually all other /usr/bin/whoami
USER=`/usr/ucb/whoami`; export USER
elif [ -r /usr/bin/whoami ]; then
USER=`/usr/bin/whoami`; export USER
# For NT and MKS to work
else
USER=`who am i`
fi
##
## NOTE: Need to call this before PSEUDO PRODUCT WORK
## to get at the XXX_pathcsets.txt files
##
Build_Patchset_Lists
ALL_PSEUDO_PRODUCTS="$FULL $SHAR"
export ALL_PSEUDO_PRODUCTS
fi
while read i
do
if [ "${i}" != "" ];then
FOUND=`echo $ALL_PSEUDO_PRODUCTS | grep "${i}"`
if [ "${FOUND}" = "" ];then
# echo "Could not find: $i"
PSEUDO="$PSEUDO $i"
# echo "Not found: $i"
echo "$PSEUDO" > $OUT_DIR/tmpPSEUDO$$
fi
fi
done < ${OUT_DIR}/allprods.txt
if [ -r ${OUT_DIR}/tmpPSEUDO$$ ];then
PSEUDO=`cat $OUT_DIR/tmpPSEUDO$$`
export PSEUDO
rm ${OUT_DIR}/tmpPSEUDO$$
fi
if [ -r ${OUT_DIR}/allprods.txt ];then
rm ${OUT_DIR}/allprods.txt
Debug "Pseudo Products: $PSEUDO"
else
Debug "ERROR finding Pseudo Products if on 11.5.X else 11.0 or 10.7 ignore
message."
fi
export PSEUDO
fi
Get_Arguments ()
{
## Procedure: Get_Arguments ()
## Parses the command line and sets the name=value pairs as unix varialbes.
#############################################################################
## Variables Used to Process this script:
#############################################################################
##
## Procedure Get_Arguments also checks for help Display Full Help if Needed...
##
if [ "$Args" = "help" -o "$Args" = "?" -o "$Args" = "-h" -o "$Args" = "-?" ]; then
Full_Help
exit
fi
##
## Parse command line option pairs and assign
## Currently Not Exporting the variables..
## program db=FND_CON allows for if $db not null do x
##
for CurArg in `echo "$Args"`
do
# echo "Current: $CurArg"
NameVar=`echo "$CurArg" | awk -F"=" '{print $1}'`
ValueVar=`echo "$CurArg" | awk -F"=" '{print $2}'`
eval `echo "$NameVar=$ValueVar"`
Debug "GetArguments Command Line: $NameVar=$ValueVar"
done
#
# Runs and Exits :
# Usage: upgrade=./patchsets.sh or upgrade="/tmp/patchsets.sh"
#
if [ "${upgrade}" != "" ];then
Get_Latest_Patchsets
fi
Last_Updated_Report ()
{
##
## Gets Last Updated Dates for Patchset Releases ie. 12.x, 11.5, 11.0
## - sets variables: RELRxx_DATE
##
Set_Patchset_Dates
clear
echo "
Check Applied Patchsets Tool - patchsets.sh
#############################################################################
## Name: patchsets.sh Version: $TOOL_VERSION
## By: [email protected] Last Modified: $LAST_MODIFIED
#############################################################################
}
Full_Help ()
{
## Procedure Name: Full_Help
################################################################
## Provides on-line help with the right options. ? help as
## parameters passed.
## Note: Exits program after being called.
################################################################
##
##
## Added to setup Dates for Last Patchset Data from SQL
##
Set_Patchset_Dates
clear
echo "
Check Applied Patchsets Tool - patchsets.sh
#############################################################################
## Name: patchsets.sh Version: $TOOL_VERSION
## By: [email protected] Last Modified: $LAST_MODIFIED
#############################################################################
##
## Setup: Source \$APPL_TOP/APPSORA.env or env file for specific release
## or make sure sqlplus is setup to connect to your EBS database
## so the tool can connect with sqlplus and \$TWO_TASK.
##
## Usage: patchsets.sh connect=Apps_login/pw
## [ad_bug_date="DD-MON-YY"] (11i/R12 only)
##
## REPORT NAME AND FORMAT
## ######################
## [htmlout=file_name] [applptch=applptch_file.txt]
## [htmlout11i=file_name]
## [htmloutR12=file_name]
## [report_name=[/path/]file_name]- moves/renames report
## Note: Use htmloutXX or report_name (stays text)
##
## [applptch=applptch_file.txt]
## [silent=y] default is n
##
## connect=apps/apps@connection (11i/R12 only)
## [ad_bug_date="DD-MON-YY"] (11i/R12 only)
##
## [patch_list=ad_applied_patches|your_file.csv]
## default is to use: ad_bugs table
## It is alot faster to go against ad_applied_patches
## but this only works if you are NOT using admrgpch to
## merge patchsets. Also, if providing your_file.csv
## the format is: short_name, possible_patchset_number
## The short_name is not used but a value is required.
##
## Report Applied Patches Only:
## $ ./patchsets.sh connect=apps/apps report=applied_patches
## Report Last Updated Patchsets Dates
## $ ./patchsets.sh report=last_updated
## Note: This one gets generated automatically during normal runs as well.
##
## Optionally only run some sql Reports:
## =========================================================================
## Applied Patches:
## $ ./patchsets.sh connect=apps/apps@connection report=applied_patches
## Merged Patches:
## $ ./patchsets.sh connect=apps/apps@connection report=merged_patches
## [bug=patch#] | [product={short_name}] | [applied_date=DD-MON-YY]
##
## patchsets.sh -h|?|help (for Help)
##
## Additional Parms:
## If 11i and latest AD Patchset E or F
## or > 11.5.4
## connect=apps/apps@connection
## [patch_list=ad_applied_patches|your_file.csv]
## default is to use: ad_bugs table
#############################################################################
$ ./patchsets.sh connect=apps/apps
$ ./patchsets.sh connect=apps/apps patch_list=ad_applied_patches
$ ./patchsets.sh connect=apps/apps@VIS1157 ad_bug_date="01-FEB-02"
$ ./patchsets.sh connect=apps/apps report_name=VIS12_Report_R12.txt
$ ./patchsets.sh
$ ./patchsets.sh applptch=/tmp/applptch.txt
$ ./patchsets.sh connect=apps/apps debug=y (email steve this if problem )
$ ./patchsets.sh connect=apps/apps available=metalink
(Restrict to Metalink Available patchsets)
$ ./patchsets.sh applptch=/tmp/my_applptch.txt
#################
# New Test Feature: (Feedback welcome = [email protected])
# - ftp itself for you with latest version)
# - be sure to backup your \$HOME/.netrc before testing this option.
# $ patchsets.sh upgrade=. or upgrade=/tmp
##################
IF AIX GIVES: [Arg list too long], try Work-Around in V. 4.6 release:
## Date: 9/29/2003
1) patchsets.sh aix=y [then normal arguments...]
NOTE: Removed the need for aix=y V. 4.14.
AIX Summary: You will very likely need the aix=y option and the new shell.
V. 4.14 - Fixed so that it should work without the new shell or the aix=y
option.
Note: Family packs are generally used to bundle many patchsets today and
this is the way that you can get the latest available patchsets. There
are also new Consolidated Updates (CU) that have recently been created.
~2/2005
There is a Consolidated Update for all the products:
####################################################################
3240000 - 11.5.10 ORACLE E-BUSINESS SUITE CONSOLIDATED UPDATE 1 AND
There is a one for the ATG product family:
4017300 - 11.5.10 Consolidated Update (CU1) for ATG Product Family.
3460000 - 11.5.10 Oracle E-Business Suite Consolidated Update 2 (CU2)
see Note: 316366.1, includes other CU2 patches: 4125550 ATG_PF,
4328839 AD, 4325353 ADX, 4268805 CRM, 4247648 FIN_PF, 4306532 HR_PF
If you have any questions on this, please log a SR.
- For more information on this program, get the latest version, Note: 139684.1
or download the latest copy from the following link:
ftp://ftp.oracle.com/support/outgoing/PATCHSET_COMPARE_TOOL/ (External)
" | more
exit
}
Debug ()
{
#
# Debug output to file and screen
# $1 = Message or set DebugMessage=, then call Debug
#
# echo "USING: $OUT_DIR"
TIMESTAMP=`date | sed 's/ /_/g'`
if [ "$DebugMode" = "y" -o "${debug}" = "y" ]; then
# echo "------------------Debug RUN: `date`" >> $OUT_DIR/Debug_patchsets$$.log
if [ "$DebugMessage" != "" ]; then
echo "DEBUG, ${TIMESTAMP} ==> $DebugMessage" | tee -a
$OUT_DIR/Debug_patchsets$$.txt
fi
if [ "$1" != "" ]; then
echo "DEBUG ${TIMESTAMP} ==> $1" | tee -a $OUT_DIR/Debug_patchsets$$.txt
fi
fi
}
Get_Latest_Patchsets ()
{
#
# Usage: upgrade=. or upgrade="/tmp"
#
##
## OCTOBER: 30, 2006
## Moved FROM: oracle-ftp.oracle.com/apps/patchsets/PATCHSET_COMPARE_TOOL
## TO: ftp://ftp.oracle.com/support/outgoing/PATCHSET_COMPARE_TOOL
##
ftp ftp.oracle.com << ZZ
cd /support/outgoing/PATCHSET_COMPARE_TOOL
get patchsets.sh $OUT_DIR/patchsets.sh
bye
ZZ
exit
Get_DB_Apps_Version ()
{
## Added Special OverRide_AppsVersion= for a customer who had upgraded to
## 11.5.7 but system still showed 11.5.3 --
if [ "${override_appsversion}" != "" ];then
AppsVer=$override_appsversion
else
SQL="
set head off
set feedback off
select release_name from fnd_product_groups"
Run_SQL
#
# Returns: ie. 11.5.4
#
AppsVer=`cat $OUT_DIR/$OUT_FILE.txt | egrep '11|12' | sed 's/ //g'`
fi
Build_Applied_Patches_Report ()
{
#
# Requested Report to show applied patches
###############################################
SQL="
REM
REM Applied_Patches_R12.sql - used to create R12 Applied_Patches_R12.txt
REM
set feedback off
set linesize 80
set pagesize 9000
SELECT 'R12 Applied Patches Report by Date ran on: '|| sysdate Report FROM dual;
prompt
prompt Current Maintenance Packs by Date
prompt
prompt Current Product Family Code Levels and Base Line
select abbreviation, name, codelevel, baseline
from ad_trackable_entities where type = 'product_family'
order by type desc, 1;
prompt
prompt Current Product Code Levels and Base Line
Run_SQL
echo " ... Running Applied_Patches_Report.sql R12 sql: Applied_Patches_R12.sql"
echo "${SQL};" > Applied_Patches_R12.sql
if [ -r $OUT_DIR/$OUT_FILE.txt ];then
cp $OUT_DIR/$OUT_FILE.txt Applied_Patches_R12.txt
echo " ... Created Patches Applied Report: Applied_Patches_R12.txt"
fi
else
SQL="
REM
REM Applied_Patches_11i.sql - used to create 11i Applied_Patches_Report.txt
REM
set feedback off
set linesize 80
set pagesize 9000
prompt
prompt 11i Applied Patches by Most Recently Applied Date
SQL2="
REM
REM Applied_Patches_11i.sql - used to create 11i Applied_Patches_Report.txt
REM
set feedback off
set linesize 80
set pagesize 9000
prompt
prompt 11i Applied Patches by Most Recently Applied Date
Run_SQL
fi
Build_Merged_Patches_Report ()
{
#
# Requested Report to show applied patches
###############################################
SQL="
REM
REM Merged_Patches_R12.sql - used to create R12 Merged_Patches_R12.txt
REM
set feedback off
set linesize 160
set pagesize 50000
SELECT 'R12 Merged Patches Report by Date ran on: '|| sysdate Report FROM dual;
prompt
prompt R12 Merged Patches Report
prompt Limited by
prompt Applied Patch Name like '${bug}%'
prompt Merged Product like '${product}%'
prompt Applied Date > '$applied_date'
Run_SQL
if [ -r $OUT_DIR/$OUT_FILE.txt ];then
cp $OUT_DIR/$OUT_FILE.txt Merged_Patches_R12.txt
echo " ... Created Merged Patches Report: Merged_Patches_R12.txt"
fi
else
SQL="
REM
REM Merged_Patches_11i.sql - used to create 11i Merged_Patches_Report.txt
REM
set feedback off
set linesize 80
set pagesize 20000
SELECT '11i Merged Patches Report by Date ran on: '|| sysdate Report FROM dual;
prompt
prompt 11i Merged Patches by Applied Date
prompt Limited by
prompt Applied Patch Name like '${bug}%'
prompt Merged Product like '${product}%'
prompt Applied Date > '$applied_date'
if [ -r $OUT_DIR/$OUT_FILE.txt ];then
cp $OUT_DIR/$OUT_FILE.txt Merged_Patches_11i.txt
echo " ... Created Merged Patches Report: Merged_Patches_11i.txt"
fi
fi
Get_AD_Patch_Minipks ()
{
#
# Pulls distinct list of Applied Patchsets from AD_PATCH_DRIVER_MINIPKS
# - then compares to patchsets in 11i_patchsets.txt and gets the bug number
# - that matches this and puts in file.
#
# Creates file: Applied_Ad_Minipks.csv
# 06-JAN-03, 11i.AP.J, 2375849
# 06-JAN-03, 11i.CE.G, 2243908
#
# NOTE: These dates are not as important because this file doesnt get big
# unlike the patch.csv files...
#########################################################################
mini_date="01-JAN-07"
echo " ... R12.0.X limiting mini-packs to after 01-JAN-07"
SQL="
set head off
set feedback off
set pagesize 9000
select distinct max(creation_date) || ', ' || replace(patch_level, '11i', 'R12')
from ad_patch_driver_minipks
where last_update_date > '${mini_date}'
and ( patch_level like 'R12%' or patch_level like '11i%' )
group by patch_level"
Run_SQL
# THIS would be for 12.1.1 based on above covering all 12.0.X releases,
# may need update later
elif [ "${R12}" = "YES" ];then
mini_date="01-JAN-07"
echo " ... R12.1.1 or higher so limiting mini-packs to after 01-JAN-07"
SQL="
set head off
set feedback off
set pagesize 9000
select distinct max(creation_date) || ', ' || replace(patch_level, '11i', 'R12')
from ad_patch_driver_minipks
where last_update_date > '${mini_date}'
and ( patch_level like 'R12%' or patch_level like '11i%' )
group by patch_level"
Run_SQL
else
SQL="
set head off
set feedback off
set pagesize 9000
select distinct max(creation_date) || ', ' || patch_level
from ad_patch_driver_minipks group by patch_level"
Run_SQL
fi
if [ -r $OUT_DIR/$OUT_FILE.txt ];then
cp $OUT_DIR/$OUT_FILE.txt Applied_Minipks.csv
COUNT=`wc Applied_Minipks.csv | awk '{print $1}'`
echo " ... FOUND: $COUNT patchset in AD_PATCH_DRIVER_MINIPKS see:
Applied_Ad_Minipks.csv"
echo " ... Converting Patch Names to Patch Numbers. (using XX_patchsets.txt)"
if [ -r Applied_Minipks.csv ];then
rm Applied_Minipks.csv
fi
fi
}
Get_DB_Patch_List ()
{
###############################################################################
# Called to generate the complete Applied Patches list from the Database
# TABLE USED: AD_BUGS joined to AD_APPLIED_PATCHES
#
# NOTE: Limits the list to only ad_applied_patches IF command-line option
# patch_list="ad_applied_patches" else uses logic below for date
# limits on ad_bugs so its not too big.
# Also takes ad_bug_date command line into account if the customer
# wants to narrow ad_bugs to more recent time frame that defaults.
# All ad_applied_patches are included even if ad_bug_date is set!
#
# Create Applied_Minipks.csv - Applied Patchsets
# (ad_patch_driver_minipks is updated ~> 11.5.6)
###############################################################################
Build_Applied_Patches_Report
SQL="
set head off
set pagesize 50000
prompt Product, Bug
select distinct patch_name || ', ' || bug_number
from ad_bugs a, ad_applied_patches
where
bug_number = patch_name"
Run_SQL
cp $OUT_DIR/$OUT_FILE.txt Patch.csv
if [ -r ${patch_list} ]; then
cp $patch_list Patch.csv
else
echo "ERROR: Could not read your specified Patch List file: $patch_list"
fi
Debug "Using custom patch_list=$patch_list instead of ad_bugs."
else
## FOR R12.X, using all ad_applied_patches because the list is not that big.
##
if [ "${R12}" = "YES" ];then
SQL="
set head off
set pagesize 50000
prompt Product, Bug
select to_char(last_update_date , 'DD-MON-YYYY.HH:MI:SS')|| ', ' ||patch_name
ptc_name
from ad_applied_patches
union
select to_char(last_update_date , 'DD-MON-YYYY.HH:MI:SS')|| ', ' ||bug_number
ptc_name
from ad_bugs
where last_update_date > '${ad_bug_date}'
"
###################################################################################
#################################
# I just Picked a DATE that Minimized the old ad_bugs list from 150k to ~75k that
are the most recent ~years patches
# ie. 11.5.10 was released ~Dec. of 04
# if someone wants to get more or less, just run with the ad_bug_date=01-JAN-
04 flag.
###################################################################################
#################################
if [ "${BaseAppsVer}" = "11.5.10" ]; then
ad_bug_date="01-OCT-03"
fi
SQL="
set head off
set pagesize 50000
prompt Product, Bug
select to_char(last_update_date , 'DD-MON-YYYY.HH:MI:SS')|| ', ' ||patch_name
from ad_applied_patches
union
select to_char(last_update_date , 'DD-MON-YYYY.HH:MI:SS')|| ', ' ||bug_number
from ad_bugs
where last_update_date > '${ad_bug_date}'
"
fi
# Must be 11.5.1-11.5.6
if [ -r Applied_Ad_Minipks.csv ];then
echo " ... Appending Minipks bug numbers to Patch.csv from
ad_patch_driver_minipks table"
awk -F"," '{print $1", "$3}' Applied_Ad_Minipks.csv >> Patch.csv
fi
Debug "Building Patch.csv from ad_bugs directly should have the same COUNT as
Patch.csv"
fi
#
# Returns: ie. PROD, BUG_NUMBER in Patch.csv with Applied_Ad_Minipks.csv $1 $3
appended.
#
}
Set_APPLFULL_APPLSHAR_from_DB ()
{
###############################################################################
# Sets APPLFULL and APPLSHAR env variables since they have been removed
# with the setup of AUTOCONFIG and this program still needs them.
#
# TABLE USED: fnd_application_vl fnd_product_installations
#
###############################################################################
SQL="
set head off
set pagesize 50000
select fav.application_short_name || ' ' || fpi.status
from fnd_application_vl fav, fnd_product_installations fpi
where fav.application_id = fpi.application_id and
fav.application_short_name NOT like 'SYSADMIN' and
fpi.status != 'N'
order by application_short_name || ' ' || fpi.status"
Run_SQL
# REMOVE the SQLGL and SQLAP to just GL and AP for the matching patchsets
APPLSHAR=`cat $OUT_DIR/$OUT_FILE.txt | sed 's/OFA/FA/g' | grep -v SHORT | sed
's/SQL//g' | sort -u | awk '$2 ~ /S/ {printf $1" " }'`
APPLFULL=`cat $OUT_DIR/$OUT_FILE.txt | sed 's/OFA/FA/g' | grep -v SHORT | sed
's/SQL//g' | sort -u | awk '$2 ~ /I/ {printf $1" " }'`
export APPLSHAR APPLFULL
if [ -r $OUT_DIR/$OUT_FILE.txt ];then
rm $OUT_DIR/$OUT_FILE.txt
fi
Debug " Inside: Set_APPLFULL_APPLSHAR_from_DB() APPLSHAR=$APPLSHAR"
Debug " Inside: Set_APPLFULL_APPLSHAR_from_DB() APPLFULL=$APPLFULL"
Purge_Outfile ()
{
# CLEAN UP from OUT_DIR - only leave in Current Directory.
if [ -r $OUT_DIR/$OUT_FILE.txt ];then
rm $OUT_DIR/$OUT_FILE.txt
fi
}
Get_Version ()
{
###############################################################################
## Procedure: Get_Version ()
## Called to Extract the Version of Oracle Applications Patch File
#############################################################################
## Variables Used Figure out what data file for patchsets comparison
#############################################################################
echo " ... Extracting from AD_BUGS & AD_APPLIED_PATCHES into: Patch.csv"
Get_DB_Patch_List
BUG_COUNT_RETURNED=$RECORDS_RETURNED_COUNT; export BUG_COUNT_RETURNED
SC_YES=""
SC_YES=`head $applptch | grep "Applied"`
else
fi
############################################################################
## All NON-10sc Applptch.txt files get version and BaseAppsVersion HERE:
############################################################################
elif [ "${SC_YES}" = "" ]; then
12.1*) PatchsetDate=$RELR12_DATE
rm $OUT_DIR/107*_Base.txt $OUT_DIR/107*_patchsets.txt
rm $OUT_DIR/110*_Base.txt $OUT_DIR/110_patchsets.txt
rm $OUT_DIR/115*_Base.txt $OUT_DIR/11i_patchsets.txt
PatchsetList=$RELR12
Patched="`cat $PatchsetList | grep "R12" | awk '{print $3}' | sort -u`"
case "$AppsVer" in
12.1.1*) BasePatchsetList=${OUT_DIR}/1211_Base.txt;;
12.1.2*) BasePatchsetList=${OUT_DIR}/1212_Base.txt;;
12.1.3*) BasePatchsetList=${OUT_DIR}/1213_Base.txt ;;
*) echo
echo "Failed to get Apps Version, please email:
[email protected] with message below:"
echo
"==============================================================================="
echo "ERROR - Could not match the database Oracle Applications
Release Version"
echo " ...NO Match Case AppsVer: AppsVer=$AppsVer
BasePatchsetList=$BasePatchsetList done."
echo " ...expecting valid values of: 12.1.1-12.1.3"
echo " ...this is figured out based on either:
fnd_product_installations or applptch.txt"
echo
"==============================================================================="
echo "UNAME -a to get OS INFO"
uname -a
echo "KEY ENV SETTINGS FOR CONNECTING: "
env | egrep 'ORACLE|TWO|TNS_ADMIN|APPL_|SHELL'
echo
echo "TNSPING of the TWO_TASK"
tnsping $TWO_TASK
;;
esac
;;
12.0*) PatchsetDate=$RELR12_DATE
rm $OUT_DIR/107*_Base.txt $OUT_DIR/107*_patchsets.txt
rm $OUT_DIR/110*_Base.txt $OUT_DIR/110_patchsets.txt
rm $OUT_DIR/115*_Base.txt $OUT_DIR/11i_patchsets.txt
PatchsetList=$RELR12
Patched="`cat $PatchsetList | grep "R12" | awk '{print $3}' | sort -u`"
BasePatchsetList=${OUT_DIR}/1200_Base.txt
echo "Inside R12: AppsVer=$AppsVer BasePatchsetList=$BasePatchsetList
done."
;;
11.5*) PatchsetDate=$REL115_DATE
rm $OUT_DIR/12*_Base.txt $OUT_DIR/R12_patchsets.txt
rm $OUT_DIR/110*_Base.txt $OUT_DIR/110_patchsets.txt
rm $OUT_DIR/107*_Base.txt $OUT_DIR/107*_patchsets.txt
PatchsetList=$REL115
Patched="`cat $PatchsetList | grep "11i" | awk '{print $3}' | sort -u`"
# I dont think i even use this file...??? any more
# cat $PatchsetList | grep "11i" | awk '{print $3}' | sort -u >
$OUT_DIR/11i_list.txt$$
case "$AppsVer" in
11.5.1) BasePatchsetList=${OUT_DIR}/1151_Base.txt;;
11.5.2*) BasePatchsetList=${OUT_DIR}/1152_Base.txt;;
11.5.3*|11.5.0) BasePatchsetList=${OUT_DIR}/1153_Base.txt ;;
11.5.4*) BasePatchsetList=${OUT_DIR}/1154_Base.txt ;;
11.5.5*) BasePatchsetList=${OUT_DIR}/1155_Base.txt ;;
11.5.6*) BasePatchsetList=${OUT_DIR}/1156_Base.txt ;;
11.5.7*) BasePatchsetList=${OUT_DIR}/1157_Base.txt
Debug "Inside 11.5.7 Case Match: AppsVer=$AppsVer
BasePatchsetList=$BasePatchsetList done."
;;
11.5.8*) BasePatchsetList=${OUT_DIR}/1158_Base.txt ;;
11.5.9*) BasePatchsetList=${OUT_DIR}/1159_Base.txt ;;
11.5.10*) BasePatchsetList=${OUT_DIR}/11510_Base.txt ;;
*) echo
echo "Failed to get Apps Version, please email:
[email protected] with message below:"
echo
"==============================================================================="
echo "ERROR - Could not match the database Oracle Applications
Release Version"
echo " ...NO Match Case AppsVer: AppsVer=$AppsVer
BasePatchsetList=$BasePatchsetList done."
echo " ...expecting valid values of: 11.5.0-11.5.10"
echo " ...this is figured out based on either:
fnd_product_installations or applptch.txt"
echo
"==============================================================================="
echo "UNAME -a to get OS INFO"
uname -a
echo "KEY ENV SETTINGS FOR CONNECTING: "
env | egrep 'ORACLE|TWO|TNS_ADMIN|APPL_|SHELL'
echo
echo "TNSPING of the TWO_TASK"
tnsping $TWO_TASK
;;
esac
;;
11.0*) PatchsetDate=$REL110_DATE
rm $OUT_DIR/12*_Base.txt $OUT_DIR/R12_patchsets.txt
rm $OUT_DIR/107*_Base.txt $OUT_DIR/107*_patchsets.txt
rm $OUT_DIR/115*_Base.txt $OUT_DIR/11i_patchsets.txt
PatchsetList=$REL110
Patched=`cat $PatchsetList | grep "11.0" | awk '{print $3}' | sort -u`
case "$AppsVer" in
11.0.1*) BasePatchsetList=${OUT_DIR}/1101_Base.txt
;;
11.0.2*) BasePatchsetList=${OUT_DIR}/1102_Base.txt
;;
11.0.3*) BasePatchsetList=${OUT_DIR}/1103_Base.txt ;;
esac
;;
10.7.0) PatchsetDate=$REL107_DATE
rm $OUT_DIR/12*_Base.txt $OUT_DIR/R12_patchsets.txt
rm $OUT_DIR/110*_Base.txt $OUT_DIR/110_patchsets.txt
rm $OUT_DIR/115*_Base.txt $OUT_DIR/11i_patchsets.txt
rm $OUT_DIR/110*_Base.txt $OUT_DIR/110_patchsets.txt
# rm $OUT_DIR/107*_Base.txt $OUT_DIR/107*_patchsets.txt
$OUT_DIR/16_patchsets.txt
rm $OUT_DIR/107*_Base.txt $OUT_DIR/107*_patchsets.txt
rm $OUT_DIR/115*_Base.txt $OUT_DIR/11i_patchsets.txt
PatchsetList=$REL161
Patched=`cat $PatchsetList | grep "16" | awk '{print $3}' | sort -u`
BasePatchsetList=${OUT_DIR}/107_Base.txt
# echo "IN LOG:Case: SC_YES = $SC_YES BaseAppsVer=$BaseAppsVer" >> $LOG
# echo "IN LOG: Patched Listing: $Patched" >> $LOG
;;
*) echo "Could not determine Applptch.txt Format" >> $REPORT
;;
esac
Add_Report_Header ()
{
###############################################################################
## Usage:
## Add_Report_Header $FILE
##
## $1 APPEND to file name
## $2 Written BY String
###############################################################################
echo
"=============================================================================" >>
$1
echo " Report Generated: `date` Tool Version:
$TOOL_VERSION" >> $1
echo " Patchsets List Updated: $PatchsetDate" >> $1
echo " Machine/OS: $MACHINE" >> $1
echo " Domain: $DOMAIN" >> $1
# echo "Patchset Comparison File: $PatchsetList" >> $1
echo " applptch Source: $applptch" >> $1
echo " Version from APPLPTCH: $AppsVer" >> $1
# echo " Base: $BaseAppsVer" >> $1
}
Compare_Patches_title () {
###############################################################################
# Just the Title for Reports
###############################################################################
# OLDFORMAT:
# echo "
# $*
# Product Baseline Version Running Version Latest Available,Status
# ------- ----------------- --------------- -----------------------"|
# tee -a $DIFF_OUTi
Compare_Patches_11i () {
###############################################################################
# 11i Only Report - see Compare_Patches_R12 or 12.x reporting
###############################################################################
DIFF_OUT=Report_11i.txt
rm -f $DIFF_OUT
#######
# Builds and returns a list of all files into: FILES with cumulative patchsets
for each release
# ... assumes: 11.5.3 patchsets are in 11.5.4 and 11.5.4 are in 11.5.5
# ... also sets up: BASE_PATCH_LIST which is array of full listing of all
baseline patchsets (bug#s)
#######
# COULD CALL BELOW same as Compare does... but have not tested yet! see
Setup_BaseLines
# Setup_BaseLines
case "$BaseAppsVer" in
11.5.10*)FILES="$R1151_PATCHES $R1152_PATCHES $R1153_PATCHES $R1154_PATCHES
$R1155_PATCHES $R1156_PATCHES $R1157_PATCHES $R1158_PATCHES $R1159_PATCHES
$R11510_PATCHES";;
11.5.9*)FILES="$R1151_PATCHES $R1152_PATCHES $R1153_PATCHES $R1154_PATCHES
$R1155_PATCHES $R1156_PATCHES $R1157_PATCHES $R1158_PATCHES $R1159_PATCHES";;
11.5.8*)FILES="$R1151_PATCHES $R1152_PATCHES $R1153_PATCHES $R1154_PATCHES
$R1155_PATCHES $R1156_PATCHES $R1157_PATCHES $R1158_PATCHES";;
11.5.7*)FILES="$R1151_PATCHES $R1152_PATCHES $R1153_PATCHES $R1154_PATCHES
$R1155_PATCHES $R1156_PATCHES $R1157_PATCHES";;
11.5.6*)FILES="$R1151_PATCHES $R1152_PATCHES $R1153_PATCHES $R1154_PATCHES
$R1155_PATCHES $R1156_PATCHES";;
11.5.5*)FILES="$R1151_PATCHES $R1152_PATCHES $R1153_PATCHES $R1154_PATCHES
$R1155_PATCHES";;
11.5.4*)FILES="$R1151_PATCHES $R1152_PATCHES $R1153_PATCHES $R1154_PATCHES";;
11.5.3*)FILES="$R1151_PATCHES $R1152_PATCHES $R1153_PATCHES";;
11.5.2*)FILES="$R1151_PATCHES $R1152_PATCHES";;
11.5.1)FILES="$R1151_PATCHES";;
11.5.0*)FILES="$R1151_PATCHES";;
* ) R11i=NO;;
esac
export FILES
if [ $FULL = NO ];then
if [ `echo " $APPLFULL "|grep -i " $product "|wc -w` -gt 0 ];then
Compare_Patches_title "FULLY INSTALLED PRODUCTS";FULL=YES;
fi
fi
if [ $SHAR = NO ];then
if [ `echo " $APPLSHAR "|grep -i " $product "|wc -w` -gt 0 ]; then
Compare_Patches_title "SHARED INSTALL PRODUCTS";SHAR=YES;
fi
fi
if [ $PSEUDO_TITLE = NO ];then
if [ `echo " $PSEUDO "|grep -i " $product "|wc -w` -gt 0 ];then
Compare_Patches_title "PSEUDO PRODUCTS";PSEUDO_TITLE=YES;
fi
fi
## ISSUE: 11/29/07
## REPORT IS SHOWING A PSEUDO PRODUCT BASE IS NOT THE LATEST:
## adx 11i.ADX.E.1(3817226) 11i.ADX.F(3453499), Rel-By_Metal
###################################################################################
## PROBLEM IS THAT I SORT BY PATCH ORDER AND ASSUME HIGHEST NUMBER IS LATEST
PATCH:
###################################################################################
## adx 11i.ADX.F 3453499 14-OCT-05 Checkin Released
By_Metalink
## adx 11i.ADX.E.1 3817226 10-AUG-04 Checkin Released
By_Metalink
# This list of patch numbers is used later when egrepping the BASLINE &
CURRENT patch lists
patch_num="`echo $patch | awk -F'^' '{print $2}'`"
patch_num_all="${patch_num_all}${patch_num}|"
## FIX LATEST AVAILABLE (NEW LATEST AVAILABLE OPTIONAL) available=metalink
# Example Data in PATCHSET_LIST
# 1 2 3 4 5 6 7
# 1 2 3 4 <- Current
For AWK
# wsm 11i.WSM.H 2691993 10-JUN-03 Patchset Superseded By_Dev
# wsm 11i.WSM.I 2770100 17-SEP-04 Patchset Released
Not_Distributed
# xdo 11i.XDO.H 3263588 04-NOV-04 Patchset Released By_Metalink
# veh 11i.VEH.A 1354697 07-OCT-00 Patchset Obsoleted By_Metalink
if [ -z "${latest_patch}" ]; then
latest_patch="${patch}"
fi
patch_ver=`echo "${latest_patch}" | awk -F'^' '{print $1}'`
patch_num=`echo "${latest_patch}" | awk -F'^' '{print $2}'`
if [ "${patch_num}" = "" ];then
LATEST="${patch_ver}${product} has no patchsets!"
else
LATEST="${patch_ver}(${patch_num})"
fi
##############################################################################
## since ordered list already - fails with ADX.E.1 ADX.F case above - RARE!
##############################################################################
## adx 11i.ADX.F 3453499 14-OCT-05 Checkin Released By_Metalink
## adx 11i.ADX.E.1 3817226 10-AUG-04 Checkin Released By_Metalink
## since ordered list already - fails with ADX.E.1 ADX.F case above - RARE!
##############################################################################
if [ -n "${patch_num_all}" ];then
# strip off the trailing "|" else HP-UX will complain ...
patch_num_all=`echo "$patch_num_all"|sed s/"|$"//`
if [ "${aix}" = "y" -o "${OS}" = 'AIX' -o "${OS}" = "Windows_NT" ];then
BASE=`egrep -e "$patch_num_all" ${OUT_DIR}/BASE_PATCH_LIST | tail -1`
CURRENT=`egrep -e "$patch_num_all" ${OUT_DIR}/PATCHES_APPLIED | tail -1`
CURRENT=`echo $CURRENT | tr " " "\n" | tail -1`
else
BASE=`echo "${BASE_PATCH_LIST}" | egrep -e "$patch_num_all" | tail -1`
CURRENT=`echo "${PATCHES_APPLIED}" | egrep -e "$patch_num_all" | tail -1`
fi
CURRENT=`echo $CURRENT`; # Trims extra spaces!
if [ -n "${CURRENT}" -a -n "${BASE}" ];then
# echo "ABOUT TO TEST CURRENT -lt BASE or $CURRENT -lt $BASE "
if [ "${CURRENT}" -lt "${BASE}" ]; then
CURRENT="${BASE}"
fi
fi
fi
if [ -n "${BASE}" ]; then
patch_ver=`grep $BASE $PATCHSET_LIST | awk '{print $2}'`
BASE="${patch_ver}(${BASE})"
fi
if [ -n "${CURRENT}" ]; then
patch_ver=`grep $CURRENT $PATCHSET_LIST | awk '{print $2}'`
CURRENT="${patch_ver}(${CURRENT})"
fi
BASE=${BASE:=" "}
CURRENT=${CURRENT:=$BASE}
# SSA - added the spaces to PAD entries to 8, then removed the tab in output
PRODUCT=`echo "${product} " |cut -b 1-8`
CURRENT1=`echo "${CURRENT} " |cut -b 1-24`
###########################################################################
## FINAL REPORT LINE:
###########################################################################
#echo "${PRODUCT}${BASE} ${CURRENT1}${LATEST}, ${status}-${dist}">>$DIFF_OUT
printf "%-10s %-25s %-25s %-25s %-25s\n" "${PRODUCT}" "${BASE}" "${CURRENT1}"
"${LATEST}" "${status}-${dist}" >> ${DIFF_OUT}
echo "
Please check Metalink for final patchset availability questions and Distribution
Status issues:
Note1:
Latest Available: This may be Distributed via Metalink as standalone or only by
a Family Pack.
Until release 3.3 of this script, the Installed Version only included Standalone
release patchesets
and not any of the patchsets included in Family Packs.
Note3:
TXK patches are delivered by 11i.ATG_PF. RUPxyz and no longer as
patchsets, but as one off rollups. ie. Only TXK.A and TXK.B were
delivered as patchsets.
By_Dev often means only available by a Family Pack and no one off patchsets
available.
Not_Dist typically means only available by a Family Pack or not released yet.
By_Metal patches can be downloaded by Metalink or by ftp to updates.oracle.com
Compare_Patches_R12 () {
###############################################################################
# R12 Only Report - see Compare_Patches_11i or 11i reporting
###############################################################################
DIFF_OUT=Report_R12.txt
if [ -r $DIFF_OUT ];then
rm -f $DIFF_OUT
fi
#######
# Builds and returns a list of all files into: FILES with cumulative patchsets
for each release
# ... assumes: 12.1 patchsets are in 12.2 and 12.3 are in 12.4
# ... also sets up: BASE_PATCH_LIST which is array of full listing of all
baseline patchsets (bug#s)
# ... appears we skipped 12.1.0, so logic for 12.1* should be fine adding in
R1211_PATCHES
#######
case "$BaseAppsVer" in
12.1.3*) FILES="$R1200_PATCHES $R1211_PATCHES $R1212_PATCHES $R1213_PATCHES" ;;
12.1.2*) FILES="$R1200_PATCHES $R1211_PATCHES $R1212_PATCHES" ;;
12.1*) FILES="$R1200_PATCHES $R1211_PATCHES" ;;
12.0*) FILES="$R1200_PATCHES" ;;
* ) R12=NO;;
esac
export FILES
cat $FILES | awk '{print $1}' | sort -un > ${OUT_DIR}/BASE_PATCH_LIST
if [ ! "${aix}" = "y" ];then
BASE_PATCH_LIST=`cat ${OUT_DIR}/BASE_PATCH_LIST`
fi
export BASE_PATCH_LIST
fi
if [ $FULL = NO ];then
if [ `echo " $APPLFULL "|grep -i " $product "|wc -w` -gt 0 ];then
Compare_Patches_title "FULLY INSTALLED PRODUCTS";FULL=YES;
fi
fi
if [ $SHAR = NO ];then
if [ `echo " $APPLSHAR "|grep -i " $product "|wc -w` -gt 0 ]; then
Compare_Patches_title "SHARED INSTALL PRODUCTS";SHAR=YES;
fi
fi
if [ $PSEUDO_TITLE = NO ];then
if [ `echo " $PSEUDO "|grep -i " $product "|wc -w` -gt 0 ];then
Compare_Patches_title "PSEUDO PRODUCTS";PSEUDO_TITLE=YES;
fi
fi
# This list of patch numbers is used later when egrepping the BASLINE &
CURRENT patch lists
patch_num="`echo $patch | awk -F'^' '{print $2}'`"
patch_num_all="${patch_num_all}${patch_num}|"
## Ends up with BASE line, if present, and CURRENT (Highest of each...) since
ordered list already
if [ -n "${patch_num_all}" ];then
# strip off the trailing "|" else HP-UX will complain ...
patch_num_all=`echo "$patch_num_all"|sed s/"|$"//`
if [ "${aix}" = "y" -o "${OS}" = 'AIX' -o "${OS}" = "Windows_NT" ];then
BASE=`egrep -e "$patch_num_all" ${OUT_DIR}/BASE_PATCH_LIST | tail -1`
CURRENT=`egrep -e "$patch_num_all" ${OUT_DIR}/PATCHES_APPLIED | tail -1`
CURRENT=`echo $CURRENT | tr " " "\n" | tail -1`
else
BASE=`echo "${BASE_PATCH_LIST}" | egrep -e "$patch_num_all" | tail -1`
CURRENT=`echo "${PATCHES_APPLIED}" | egrep -e "$patch_num_all" | tail -1`
fi
CURRENT=`echo $CURRENT`; # Trims extra spaces!
if [ -n "${CURRENT}" -a -n "${BASE}" ];then
if [ "${CURRENT}" -lt "${BASE}" ]; then
CURRENT="${BASE}"
fi
fi
fi
if [ -n "${BASE}" ]; then
patch_ver=`grep $BASE $PATCHSET_LIST | awk '{print $2}'`
BASE="${patch_ver}(${BASE})"
fi
if [ -n "${CURRENT}" ]; then
patch_ver=`grep $CURRENT $PATCHSET_LIST | awk '{print $2}'`
CURRENT="${patch_ver}(${CURRENT})"
fi
BASE=${BASE:=" "}
CURRENT=${CURRENT:=$BASE}
# SSA - added the spaces to PAD all entries to 8, then removed the tab in
output
PRODUCT=`echo "${product} " |cut -b 1-8`
CURRENT1=`echo "${CURRENT} " |cut -b 1-24`
done
################################
## R12 Footer added to REPORT ##
################################
echo "
they are not standalone and you cannot get them as one offs.
See the new Status field in the Latest Available column. or check
/tmp/R12_patchsets.txt.
Also note: Patch.csv is not a complete list of all the patches, but only those
applied after the 01-JAN-07 release date and if on 12.1.1 or higher 01-JAN-09.
Please check Metalink for final patchset availability questions and Distribution
Status issues:
Note1:
Latest Available: This may be Distributed via Metalink as standalone or only by
a Family Pack.
Until release 3.3 of this script, the Installed Version only included Standalone
release patchesets
and not any of the patchsets included in Family Packs.
By_Dev often means only available by a Family Pack and no one off patchsets
available.
Not_Dist typically means only available by a Family Pack or not released yet.
By_Metal patches can be downloaded by Metalink or by ftp to updates.oracle.com
Setup_Baselines ()
{
###############################################################################
# Procedure: Setup_BaseLines
#
# Builds and returns a list of all files into: FILES with cumulative patchsets for
each release
# ... assumes: 11.5.3 patchsets are in 11.5.4 and 11.5.4 are in 11.5.5
###############################################################################
FILES=""
case "$BaseAppsVer" in
esac
export FILES
if [ -r BASELINE.txt ];then
rm -f BASELINE.txt
fi
Compare_Patches ()
{
###############################################################################
# Procedure: Compare_Patches ()
# Called to Extract the Version of Oracle Applications Patch File
#
# Variables Used Figure out what data file for patchsets comparison
#############################################################################
# First Setup the VARIABLE: PATCHES_APPLIED with all the patches to make
# the check faster than a GREP from File each time..
else
# Complete list of products patched.
# echo "Complete list of all products patched." >> $LOG
echo "Patch Listing (unique) Ordered by Product" > $PATCH_LIST
echo "================" >> $PATCH_LIST
echo "Product, Bug" >> $PATCH_LIST
if [ "${SC_YES}" = "" ]; then
grep "begin bug " $applptch | grep -v mrg | awk '{print $3","$4}' > $OUT_DIR/$
{PATCH_LIST}.$$
# sort -u just in case they applied one a couple of times...
for i in `grep "begin aru bug" $applptch | awk '{print $3}' |sed 's/_/ /g' |
sed 's/bug //g' | sort -u`
do
Debug "Verbose list arus with no active action but still bugs. : $i"
# Needed this to get the short name when working with applptch.txt file.
grep ${i} $applptch | grep "^#" | grep "bug " | awk '{print $3","$4}' | sort
-u >> $OUT_DIR/${PATCH_LIST}.$$
done
# SORT the resulting list and append to the Header part of PATCH_LIST file
created above.
sort -u $OUT_DIR/${PATCH_LIST}.$$ >> $PATCH_LIST
# CLean up the temp Patch.csv file
if [ -r $OUT_DIR/${PATCH_LIST}.$$ ];then
rm $OUT_DIR/${PATCH_LIST}.$$
fi
# Note: This list has CR's and some blank lines and a Bug string... but not a
problem.
if [ "${aix}" = "y" ];then
cat $PATCH_LIST |awk -F"," '{print $2}' > ${OUT_DIR}/PATCHES_APPLIED.txt
else
PATCHES_APPLIED=`awk -F"," '{print $2}' $PATCH_LIST`
fi
else
grep "Applied" $applptch | awk '{print $2}' | tr "B" " " | tr ":" " " | sort -
u >> $PATCH_LIST
if [ "${aix}" = "y" ];then
cat $PATCH_LIST |awk -F"," '{print $0}' > ${OUT_DIR}/PATCHES_APPLIED.txt
else
PATCHES_APPLIED=`awk -F"," '{print $0}' $PATCH_LIST`
fi
fi
# End Patch.csv build
fi
##
## PatchsetList could be REL115 or RELR12
## - and puts in Current_ARU_dblist.txt
##
if [ "${R12}" = "YES" ];then
PatchsetList=$RELR12
cat $PatchsetList | grep "R12" | awk '{print $3}' | sed 's/ //g' | sort -u >
Current_ARU_dblist.txt
else
PatchsetList=$REL115
cat $PatchsetList | grep "11i" | awk '{print $3}' | sed 's/ //g' | sort -u >
Current_ARU_dblist.txt
fi
#####################
# Setups all the BASELINE.txt file needs for Cumulative Baselines
# ie. 11.5.4 = 11.5.3+11.5.3+11.5.1 list then sort -u
#####################
# ie. 1200_Base.txt patches currently only for R12, added 1211_Base.txt if
version 12.1.1
Setup_Baselines
##
## Fixing Issue: Currently appending all patches applied to BASELINE.txt
##
awk -F"," '{print $2}' Patch.csv > all.txt
# OLD
# cat all.txt | sed 's/ //g' >> BASELINE.txt
# sort -u BASELINE.txt | sed 's/ //g' > all.txt
# NEW:
cp BASELINE.txt BASELINE.tmp
cat all.txt | sed 's/ //g' >> BASELINE.tmp
sort -u BASELINE.tmp | sed 's/ //g' > all.txt
rm BASELINE.tmp
##
## Typical Unix Compare on Current_ARU_dblist.txt (patchests), to all.txt
customer
## - note: all.txt includes Patch.csv and BASELINE.txt patches.
##
diff -c all.txt Current_ARU_dblist.txt | egrep -v "!|\+|\-|\*" | sort -u >
APPLIED_RAW.txt
# Clean up the tmp files used to build the BASELINE.txt and APPLIED_RAW.txt
files.
if [ -r all.txt ];then
rm -f all.txt
fi
if [ -r Current_ARU_dblist.txt ];then
rm -f Current_ARU_dblist.txt
fi
##
## Grep matching Bug from above DIFF from complete ARU original SQL with full
line
##
for i in `cat APPLIED_RAW.txt`
do
grep "${i}" $PatchsetList >> $OUT_DIR/patchsets$$
done
MATCHED=`wc $OUT_DIR/patchsets$$ | awk '{print $1}'`
echo "Done matching $MATCHED patchsets(aru) to patchlist($applptch)"
if [ -r APPLIED_RAW.txt ];then
rm APPLIED_RAW.txt
fi
else
for i in $Patched
do
# YES=`grep $i $applptch | awk '{print $2}'`
if [ ${aix} = "y" ];then
YES=`cat ${OUT_DIR}/PATCHES_APPLIED.txt |grep "${i}"`
else
YES=`echo "${PATCHES_APPLIED}" | grep "${i}"`
fi
# echo "YES=$YES"
fi
for i in $Patched
do
# YES=`grep "begin bug" $applptch | grep "${i}" | awk '{print $4}'`
YES=`echo "${PATCHES_APPLIED}" | grep "${i}"`
if [ "$YES" != "" ];then
grep $i $PatchsetList >> $OUT_DIR/patchsets$$
# echo "IN: XX=$XX YES=$YES FROM:$REL110 APPLIED=$Applied" >> $REPORT
fi
done
else
############################
## If 10sc Patch Format ####
############################
for i in $Patched
do
YES=`grep "Applied" $applptch | grep "$i"`
fi
;;
esac
## ak 11.0.AK.B 733964 13-NOV-98 Patchset Superseded
# APPLIED_PATCHSETS.txt
# Add the Header
# grep "Product" $OUT_DIR/Full_Released.txt | head -1 >> $REPORT
else
diff APPLIED_PATCHSETS.txt FULL_RELEASED.txt | grep ">" | cut -c3- >
$OUT_DIR/patchset_tmp$$
echo >> $REPORT
echo "The Most Recent Release Family Packs ${Msg1}(Not Included Above) are: " >>
$REPORT
echo
"==================================================================================
=====" >> $REPORT
grep "_PF" $OUT_DIR/patchset_tmp$$ >> $REPORT
echo >> $REPORT
echo "The Most Recent Release Patchsets ${Msg1}(Not Included Above) are: " >>
$REPORT
echo
"==================================================================================
=====" >> $REPORT
echo "Base Patchset List for $AppsVer included below: " >> $REPORT
echo
"=============================================================================" >>
$REPORT
cat $BasePatchsetList >> $REPORT
Run_SQL ()
{
##
## Procedure Name: Run_SQL
##
## Usage:
## SQL="sql statement"; Run_SQL
##
## Parameters:
## SQL="sql statement"
## SQL_Login_Password=[login{apps}/pw{apps}[@connect_string]]
## SetOption="set xyz value"
##
## Example:
## SQL="select * from v\$latchholder"
## Run_SQL
## echo "Below is from: V\$LATCHHOLDER Table" > $OUT_DIR/${PRD}_vlatchholder.txt
## cat $OUT_DIR/$OUT_FILE.txt >> $OUT_DIR/${PRD}_vlatchholder.txt
##
## Returns:
## $OUT_DIR/$OUT_FILE.txt with the spooled sql output
## RECORDS_RETURNED_COUNT - number of records returned from SQL
##
## Note: If the x row(s) selected. is not desired in the output
## add: set feedback off; at the top of your SQL=
##
## ie. Just for this SQL
## SQL="set feedback off
## select username from fnd_user"
## or
## ie. To Globally change the default
## SetOption="set feedback off"
## SQL="select username from fnd_user"
##
## Current Defaults:
## set arraysize 4
## set pagesize 1000
## set pause off
## set linesize 80
## set feedback on
##
## Note: The SetOption allows you to set ANY "set" commands globally.
##
if [ -r $ORACLE_HOME/bin/plus80.exe ]; then
SQLPLUS=plus80.exe
else
SQLPLUS=sqlplus.exe
fi
else
SQLPLUS=sqlplus
fi
if [ ! -r "$ORACLE_HOME/bin/$SQLPLUS" ];then
echo "ERROR: Cannot read sqlplus, sqlplus in $ORACLE_HOME/bin/$SQLPLUS"
echo "SOLUTION: Confirm/set ORACLE_HOME: Currently set to: $ORACLE_HOME"
exit
fi
else
$ORACLE_HOME/bin/$SQLPLUS -s << Zen | grep NoThING
$connect
set arraysize 4
set pagesize 100000
set pause off
set linesize 80
set feedback on
$SetOption
column object_name format a35
column owner format a20
spool $OUT_DIR/$OUT_FILE.txt
$SQL $Where ;
spool off
exit
Zen
fi
RECORDS_RETURNED_COUNT=""
RECORDS_RETURNED_COUNT=`grep " selected." $OUT_DIR/$OUT_FILE.txt | awk '{print
$1}'`
if [ "${RECORDS_RETURNED_COUNT}" = "" ];then
RECORDS_RETURNED_COUNT=0;
fi
export RECORDS_RETURNED_COUNT
Send_Results ()
{
## Procedure: Send_Results ()
## Emails or Outputs the results in txt or html
#############################################################################
##
#############################################################################
if [ "$SendMail" = "y" ];then
mailx -s "Patchset Report for $BaseAppsVer" $Email < $REPORT
fi
fi
Set_Patchset_Dates ()
{
##
## Dates used for last build of patchsets data taken from sql output files, used in
help
##
YEAR=2011
RELR12_DATE="Jul 7 22:30 ${YEAR}"
REL115_DATE="Jul 7 22:30 ${YEAR}"
REL110_DATE="Dec 15 2005"
REL107_DATE="Dec 15 2005"
export RELR12_DATE REL115_DATE REL110_DATE REL107_DATE
}
Build_Patchset_Lists ()
{
## Procedure: Build_Patchset_Lists ()
## Called to create the Patchset DataFile Listing used to do the compare
#############################################################################
## This is built on the fly ... because the data must come from aru..
#############################################################################
##
## R12 SUPPORT
##
RELR12_DATE="Jul 7 22:30"
echo "
Patchset
echo "
4502962 - R12.AD.A ad 18-JAN-07 Checkin Released By_Metalink
4510344 - R12.AHL.A ahl 18-JAN-07 Checkin Released Not_Distributed
4496642 - R12.AK.A ak 18-JAN-07 Checkin Released Not_Distributed
4496584 - R12.ALR.A alr 18-JAN-07 Checkin Released Not_Distributed
5348050 - R12.AME.A ame 18-JAN-07 Checkin Released Not_Distributed
4460087 - R12.AML.A aml 18-JAN-07 Checkin Released Not_Distributed
4460205 - R12.AMS.A ams 18-JAN-07 Checkin Released Not_Distributed
4460199 - R12.AMV.A amv 18-JAN-07 Checkin Released Not_Distributed
4442821 - R12.AMW.A amw 18-JAN-07 Checkin Released Not_Distributed
4442842 - R12.AP.A ap 18-JAN-07 Checkin Released Not_Distributed
4442853 - R12.AR.A ar 18-JAN-07 Checkin Released Not_Distributed
4455992 - R12.AS.A as 18-JAN-07 Checkin Released Not_Distributed
4455993 - R12.ASF.A asf 18-JAN-07 Checkin Released Not_Distributed
4510091 - R12.ASG.A asg 18-JAN-07 Checkin Released Not_Distributed
4460146 - R12.ASL.A asl 18-JAN-07 Checkin Released Not_Distributed
4459008 - R12.ASN.A asn 18-JAN-07 Checkin Released Not_Distributed
4459029 - R12.ASO.A aso 18-JAN-07 Checkin Released Not_Distributed
4460134 - R12.ASP.A asp 18-JAN-07 Checkin Released Not_Distributed
4455994 - R12.AST.A ast 18-JAN-07 Checkin Released Not_Distributed
4461237 - R12.ATG_PF.A atg_pf 18-JAN-07 Checkin Released Not_Distributed
4497507 - R12.AZ.A az 18-JAN-07 Checkin Released Not_Distributed
5348063 - R12.BEN.A ben 18-JAN-07 Checkin Released Not_Distributed
4442855 - R12.BIC.A bic 18-JAN-07 Checkin Released Not_Distributed
4455996 - R12.BIL.A bil 18-JAN-07 Checkin Released Not_Distributed
4460115 - R12.BIM.A bim 18-JAN-07 Checkin Released Not_Distributed
4458508 - R12.BIS.A bis 18-JAN-07 Checkin Released Not_Distributed
4458359 - R12.BIS_PF.A bis_pf 18-JAN-07 Checkin Released Not_Distributed
4510016 - R12.BIV.A biv 18-JAN-07 Checkin Released Not_Distributed
4510443 - R12.BIX.A bix 18-JAN-07 Checkin Released Not_Distributed
4494583 - R12.BNE.A bne 18-JAN-07 Checkin Released Not_Distributed
4510279 - R12.BOM.A bom 18-JAN-07 Checkin Released Not_Distributed
4442859 - R12.BPA.A bpa 18-JAN-07 Checkin Released Not_Distributed
4458509 - R12.BSC.A bsc 18-JAN-07 Checkin Released Not_Distributed
4462883 - R12.CAC.A cac 18-JAN-07 Checkin Released Not_Distributed
4464346 - R12.CCT.A cct 18-JAN-07 Checkin Released Not_Distributed
4464624 - R12.CC_PF.A cc_pf 18-JAN-07 Checkin Released Not_Distributed
4442863 - R12.CE.A ce 18-JAN-07 Checkin Released Not_Distributed
4445643 - R12.CHV.A chv 18-JAN-07 Checkin Released Not_Distributed
4510808 - R12.CLN.A cln 18-JAN-07 Checkin Released Not_Distributed
4455995 - R12.CN.A cn 18-JAN-07 Checkin Released Not_Distributed
4510314 - R12.CRP.A crp 18-JAN-07 Checkin Released Not_Distributed
4463905 - R12.CS.A cs 18-JAN-07 Checkin Released Not_Distributed
4464378 - R12.CSC.A csc 18-JAN-07 Checkin Released Not_Distributed
4510341 - R12.CSD.A csd 18-JAN-07 Checkin Released Not_Distributed
4510340 - R12.CSE.A cse 18-JAN-07 Checkin Released Not_Distributed
4510038 - R12.CSF.A csf 18-JAN-07 Checkin Released Not_Distributed
4510338 - R12.CSI.A csi 18-JAN-07 Checkin Released Not_Distributed
4521348 - R12.CSK.A csk 18-JAN-07 Checkin Released Not_Distributed
4510087 - R12.CSL.A csl 18-JAN-07 Checkin Released Not_Distributed
4510068 - R12.CSM.A csm 18-JAN-07 Checkin Released Not_Distributed
4510058 - R12.CSP.A csp 18-JAN-07 Checkin Released Not_Distributed
4510064 - R12.CSR.A csr 18-JAN-07 Checkin Released Not_Distributed
4521359 - R12.CSZ.A csz 18-JAN-07 Checkin Released Not_Distributed
4518049 - R12.CUG.A cug 18-JAN-07 Checkin Released Not_Distributed
4510814 - R12.CZ.A cz 18-JAN-07 Checkin Released Not_Distributed
4508270 - R12.DDD.A ddd 18-JAN-07 Checkin Released Not_Distributed
4510290 - R12.DMF_PF.A dmf_pf 18-JAN-07 Checkin Released Not_Distributed
4508276 - R12.DNA.A dna 18-JAN-07 Checkin Released Not_Distributed
4508279 - R12.DOM.A dom 18-JAN-07 Checkin Released Not_Distributed
5348620 - R12.DT.A dt 18-JAN-07 Checkin Released Not_Distributed
4508561 - R12.EAM.A eam 18-JAN-07 Checkin Released Not_Distributed
4496609 - R12.EC.A ec 18-JAN-07 Checkin Released Not_Distributed
5353037 - R12.ECX.A ecx 18-JAN-07 Checkin Released Not_Distributed
4510792 - R12.EDR.A edr 18-JAN-07 Checkin Released Not_Distributed
4459919 - R12.EDW.A edw 18-JAN-07 Checkin Released Not_Distributed
4508283 - R12.EGO.A ego 18-JAN-07 Checkin Released Not_Distributed
4508286 - R12.ENG.A eng 18-JAN-07 Checkin Released Not_Distributed
4508291 - R12.ENI.A eni 18-JAN-07 Checkin Released Not_Distributed
4459926 - R12.EWS.A ews 18-JAN-07 Checkin Released Not_Distributed
4442870 - R12.FA.A fa 18-JAN-07 Checkin Released Not_Distributed
4448709 - R12.FEM.A fem 18-JAN-07 Checkin Released Not_Distributed
5348095 - R12.FF.A ff 18-JAN-07 Checkin Released Not_Distributed
4442874 - R12.FII.A fii 18-JAN-07 Checkin Released Not_Distributed
4175000 - R12.FIN_PF.A fin_pf 18-JAN-07 Checkin Released Not_Distributed
4510252 - R12.FLM.A flm 18-JAN-07 Checkin Released Not_Distributed
4494236 - R12.FND.A fnd 18-JAN-07 Checkin Released Not_Distributed
4420079 - R12.FPA.A fpa 18-JAN-07 Checkin Released Not_Distributed
4494603 - R12.FRM.A frm 18-JAN-07 Checkin Released Not_Distributed
4510431 - R12.FTE.A fte 18-JAN-07 Checkin Released Not_Distributed
4448724 - R12.FTP.A ftp 18-JAN-07 Checkin Released Not_Distributed
4442881 - R12.FUN.A fun 18-JAN-07 Checkin Released Not_Distributed
4442888 - R12.FV.A fv 18-JAN-07 Checkin Released Not_Distributed
4494343 - R12.FWK.A fwk 18-JAN-07 Checkin Released Not_Distributed
4448737 - R12.GCS.A gcs 18-JAN-07 Checkin Released Not_Distributed
5348561 - R12.GHR.A ghr 18-JAN-07 Checkin Released Not_Distributed
4442895 - R12.GL.A gl 18-JAN-07 Checkin Released Not_Distributed
4510696 - R12.GMA.A gma 18-JAN-07 Checkin Released Not_Distributed
4510710 - R12.GMD.A gmd 18-JAN-07 Checkin Released Not_Distributed
4510757 - R12.GME.A gme 18-JAN-07 Checkin Released Not_Distributed
4510764 - R12.GMF.A gmf 18-JAN-07 Checkin Released Not_Distributed
4510766 - R12.GMI.A gmi 18-JAN-07 Checkin Released Not_Distributed
4510781 - R12.GML.A gml 18-JAN-07 Checkin Released Not_Distributed
4510787 - R12.GMO.A gmo 18-JAN-07 Checkin Released Not_Distributed
4510783 - R12.GMP.A gmp 18-JAN-07 Checkin Released Not_Distributed
4420082 - R12.GMS.A gms 18-JAN-07 Checkin Released Not_Distributed
4510789 - R12.GR.A gr 18-JAN-07 Checkin Released Not_Distributed
5348566 - R12.HRI.A hri 18-JAN-07 Checkin Released Not_Distributed
4719824 - R12.HR_PF.A hr_pf 18-JAN-07 Checkin Released Not_Distributed
5348569 - R12.HXT.A hxt 18-JAN-07 Checkin Released Not_Distributed
4442901 - R12.HZ.A hz 18-JAN-07 Checkin Released Not_Distributed
4442905 - R12.IA.A ia 18-JAN-07 Checkin Released Not_Distributed
4460191 - R12.IBC.A ibc 18-JAN-07 Checkin Released Not_Distributed
4460184 - R12.IBE.A ibe 18-JAN-07 Checkin Released Not_Distributed
4464392 - R12.IBU.A ibu 18-JAN-07 Checkin Released Not_Distributed
4507963 - R12.IBW.A ibw 18-JAN-07 Checkin Released Not_Distributed
4442908 - R12.IBY.A iby 18-JAN-07 Checkin Released Not_Distributed
4445654 - R12.ICX.A icx 18-JAN-07 Checkin Released Not_Distributed
4464353 - R12.IEB.A ieb 18-JAN-07 Checkin Released Not_Distributed
4464537 - R12.IEC.A iec 18-JAN-07 Checkin Released Not_Distributed
4464416 - R12.IEM.A iem 18-JAN-07 Checkin Released Not_Distributed
4464327 - R12.IEO.A ieo 18-JAN-07 Checkin Released Not_Distributed
4464550 - R12.IES.A ies 18-JAN-07 Checkin Released Not_Distributed
4464309 - R12.IEU.A ieu 18-JAN-07 Checkin Released Not_Distributed
4411250 - R12.IEX.A iex 18-JAN-07 Checkin Released Not_Distributed
4442916 - R12.IGI.A igi 18-JAN-07 Checkin Released Not_Distributed
4775831 - R12.IGP.A igp 18-JAN-07 Checkin Released Not_Distributed
4775824 - R12.IGR.A igr 18-JAN-07 Checkin Released Not_Distributed
4467166 - R12.IGS.A igs 18-JAN-07 Checkin Released Not_Distributed
4442921 - R12.IGW.A igw 18-JAN-07 Checkin Released Not_Distributed
4442924 - R12.IMC.A imc 18-JAN-07 Checkin Released Not_Distributed
2563006 - R12.INV.A inv 18-JAN-07 Checkin Released Not_Distributed
4452058 - R12.IPA.A ipa 18-JAN-07 Checkin Released Not_Distributed
5348577 - R12.IRC.A irc 18-JAN-07 Checkin Released Not_Distributed
4510494 - R12.ISC.A isc 18-JAN-07 Checkin Released Not_Distributed
4442960 - R12.ITA.A ita 18-JAN-07 Checkin Released Not_Distributed
4510822 - R12.ITG.A itg 18-JAN-07 Checkin Released Not_Distributed
4508292 - R12.ITM.A itm 18-JAN-07 Checkin Released Not_Distributed
4442852 - R12.JA.A ja 18-JAN-07 Checkin Released Not_Distributed
4516469 - R12.JAI.A jai 18-JAN-07 Checkin Released Not_Distributed
4442858 - R12.JE.A je 18-JAN-07 Checkin Released Not_Distributed
4442865 - R12.JG.A jg 18-JAN-07 Checkin Released Not_Distributed
4442869 - R12.JL.A jl 18-JAN-07 Checkin Released Not_Distributed
4510258 - R12.JMF.A jmf 18-JAN-07 Checkin Released Not_Distributed
4497250 - R12.JTA.A jta 18-JAN-07 Checkin Released Not_Distributed
4464555 - R12.JTH.A jth 18-JAN-07 Checkin Released Not_Distributed
4510080 - R12.JTM.A jtm 18-JAN-07 Checkin Released Not_Distributed
4464552 - R12.JTO.A jto 18-JAN-07 Checkin Released Not_Distributed
4495182 - R12.JTT.A jtt 18-JAN-07 Checkin Released Not_Distributed
4455999 - R12.JTY.A jty 18-JAN-07 Checkin Released Not_Distributed
4442878 - R12.LNS.A lns 18-JAN-07 Checkin Released Not_Distributed
4456002 - R12.MAS_PF.A mas_pf 18-JAN-07 Checkin Released Not_Distributed
4510255 - R12.MFG.A mfg 18-JAN-07 Checkin Released Not_Distributed
4510298 - R12.MRP.A mrp 18-JAN-07 Checkin Released Not_Distributed
4510453 - R12.MSC.A msc 18-JAN-07 Checkin Released Not_Distributed
4510458 - R12.MSD.A msd 18-JAN-07 Checkin Released Not_Distributed
4510465 - R12.MSE.A mse 18-JAN-07 Checkin Released Not_Distributed
4510476 - R12.MSO.A mso 18-JAN-07 Checkin Released Not_Distributed
4510484 - R12.MSR.A msr 18-JAN-07 Checkin Released Not_Distributed
4510214 - R12.MST.A mst 18-JAN-07 Checkin Released Not_Distributed
4508557 - R12.MWA.A mwa 18-JAN-07 Checkin Released Not_Distributed
4494347 - R12.OAM.A oam 18-JAN-07 Checkin Released Not_Distributed
4442885 - R12.OCM.A ocm 18-JAN-07 Checkin Released Not_Distributed
4472588 - R12.OE.A oe 18-JAN-07 Checkin Released Not_Distributed
4442891 - R12.OIE.A oie 18-JAN-07 Checkin Released Not_Distributed
4442900 - R12.OIR.A oir 18-JAN-07 Checkin Released Not_Distributed
4510204 - R12.OKC.A okc 18-JAN-07 Checkin Released Not_Distributed
4510206 - R12.OKE.A oke 18-JAN-07 Checkin Released Not_Distributed
4510209 - R12.OKI.A oki 18-JAN-07 Checkin Released Not_Distributed
4442911 - R12.OKL.A okl 18-JAN-07 Checkin Released Not_Distributed
4510212 - R12.OKS.A oks 18-JAN-07 Checkin Released Not_Distributed
4510213 - R12.OKX.A okx 18-JAN-07 Checkin Released Not_Distributed
4510215 - R12.OK_PF.A ok_pf 18-JAN-07 Checkin Released Not_Distributed
4464619 - R12.OM_PF.A om_pf 18-JAN-07 Checkin Released Not_Distributed
4467708 - R12.ONT.A ont 18-JAN-07 Checkin Released Not_Distributed
4510326 - R12.OPI.A opi 18-JAN-07 Checkin Released Not_Distributed
4510794 - R12.OPM_PF.A opm_pf 18-JAN-07 Checkin Released Not_Distributed
5348582 - R12.OTA.A ota 18-JAN-07 Checkin Released Not_Distributed
4494407 - R12.OWF.A owf 18-JAN-07 Checkin Released Not_Distributed
4460152 - R12.OZF.A ozf 18-JAN-07 Checkin Released Not_Distributed
4420088 - R12.PA.A pa 18-JAN-07 Checkin Released Not_Distributed
5348547 - R12.PAY.A pay 18-JAN-07 Checkin Released Not_Distributed
5348553 - R12.PER.A per 18-JAN-07 Checkin Released Not_Distributed
4455850 - R12.PFT.A pft 18-JAN-07 Checkin Released Not_Distributed
4550222 - R12.PJI.A pji 18-JAN-07 Checkin Released Not_Distributed
4508559 - R12.PJM.A pjm 18-JAN-07 Checkin Released Not_Distributed
4508296 - R12.PLM_PF.A plm_pf 18-JAN-07 Checkin Released Not_Distributed
4510825 - R12.PMI.A pmi 18-JAN-07 Checkin Released Not_Distributed
4420096 - R12.PN.A pn 18-JAN-07 Checkin Released Not_Distributed
4445657 - R12.PO.A po 18-JAN-07 Checkin Released Not_Distributed
4445660 - R12.POA.A poa 18-JAN-07 Checkin Released Not_Distributed
5368966 - R12.POM.A pom 18-JAN-07 Checkin Released Not_Distributed
4445663 - R12.PON.A pon 18-JAN-07 Checkin Released Not_Distributed
4445667 - R12.POS.A pos 18-JAN-07 Checkin Released Not_Distributed
5348603 - R12.PQH.A pqh 18-JAN-07 Checkin Released Not_Distributed
5348600 - R12.PQP.A pqp 18-JAN-07 Checkin Released Not_Distributed
4172000 - R12.PRC_PF.A prc_pf 18-JAN-07 Checkin Released Not_Distributed
4459013 - R12.PRP.A prp 18-JAN-07 Checkin Released Not_Distributed
4442922 - R12.PSA.A psa 18-JAN-07 Checkin Released Not_Distributed
4442925 - R12.PSB.A psb 18-JAN-07 Checkin Released Not_Distributed
5348607 - R12.PSP.A psp 18-JAN-07 Checkin Released Not_Distributed
4460179 - R12.PV.A pv 18-JAN-07 Checkin Released Not_Distributed
4510295 - R12.QA.A qa 18-JAN-07 Checkin Released Not_Distributed
4459034 - R12.QOT.A qot 18-JAN-07 Checkin Released Not_Distributed
4464363 - R12.QP.A qp 18-JAN-07 Checkin Released Not_Distributed
4442928 - R12.QRM.A qrm 18-JAN-07 Checkin Released Not_Distributed
5369053 - R12.RCI.A rci 18-JAN-07 Checkin Released Not_Distributed
4442934 - R12.RG.A rg 18-JAN-07 Checkin Released Not_Distributed
4510427 - R12.RLM.A rlm 18-JAN-07 Checkin Released Not_Distributed
4514188 - R12.SCM_PF.A scm_pf 18-JAN-07 Checkin Released Not_Distributed
4510600 - R12.SCP_PF.A scp_pf 18-JAN-07 Checkin Released Not_Distributed
4455884 - R12.SEM_PF.A sem_pf 18-JAN-07 Checkin Released Not_Distributed
4510611 - R12.SHT.A sht 18-JAN-07 Checkin Released Not_Distributed
4464549 - R12.SRV_PF.A srv_pf 18-JAN-07 Checkin Released Not_Distributed
5348615 - R12.SSP.A ssp 18-JAN-07 Checkin Released Not_Distributed
4494373 - R12.TXK.A txk 18-JAN-07 Checkin Released Not_Distributed
4495281 - R12.UMX.A umx 18-JAN-07 Checkin Released Not_Distributed
4956355 - R12.UNV_PF.A unv_pf 18-JAN-07 Checkin Released Not_Distributed
4510810 - R12.VEA.A vea 18-JAN-07 Checkin Released Not_Distributed
4510245 - R12.WIP.A wip 18-JAN-07 Checkin Released Not_Distributed
4508552 - R12.WMS.A wms 18-JAN-07 Checkin Released Not_Distributed
4510248 - R12.WPS.A wps 18-JAN-07 Checkin Released Not_Distributed
4510435 - R12.WSH.A wsh 18-JAN-07 Checkin Released Not_Distributed
4510320 - R12.WSM.A wsm 18-JAN-07 Checkin Released Not_Distributed
4495174 - R12.XDO.A xdo 18-JAN-07 Checkin Released Not_Distributed
4464408 - R12.XDP.A xdp 18-JAN-07 Checkin Released Not_Distributed
4442938 - R12.XLA.A xla 18-JAN-07 Checkin Released Not_Distributed
4442940 - R12.XLE.A xle 18-JAN-07 Checkin Released Not_Distributed
4464401 - R12.XNB.A xnb 18-JAN-07 Checkin Released Not_Distributed
4464509 - R12.XNP.A xnp 18-JAN-07 Checkin Released Not_Distributed
4442946 - R12.XTR.A xtr 18-JAN-07 Checkin Released Not_Distributed
4448752 - R12.ZPB.A zpb 18-JAN-07 Checkin Released Not_Distributed
4442948 - R12.ZX.A zx 18-JAN-07 Checkin Released Not_Distributed
" > ${OUT_DIR}/1200_Base.txt
echo "
7461070 - R12.AD.B.1 ad 10-APR-09 Checkin Released By_Metalink
6665350 - R12.AD.B ad 13-AUG-08 Checkin Released Not_Distributed
7458155 - R12.AD.B.1 ad 08-APR-09 Checkin Released Not_Distributed
4565490 - R12.FIN_PF.B fin_pf 13-AUG-08 Checkin Released Not_Distributed
4538335 - R12.CE.B ce 11-AUG-08 Checkin Released Not_Distributed
4539979 - R12.XTR.B xtr 11-AUG-08 Checkin Released Not_Distributed
4565226 - R12.AMW.B amw 11-AUG-08 Checkin Released Not_Distributed
4565227 - R12.IBY.B iby 11-AUG-08 Checkin Released Not_Distributed
4565241 - R12.IEX.B iex 11-AUG-08 Checkin Released Not_Distributed
4565254 - R12.ITA.B ita 11-AUG-08 Checkin Released Not_Distributed
4565257 - R12.AP.B ap 11-AUG-08 Checkin Released Not_Distributed
4565259 - R12.JA.B ja 12-AUG-08 Checkin Released Not_Distributed
4565260 - R12.JG.B jg 11-AUG-08 Checkin Released Not_Distributed
4565264 - R12.JL.B jl 11-AUG-08 Checkin Released Not_Distributed
4565266 - R12.AR.B ar 12-AUG-08 Checkin Released Not_Distributed
4565269 - R12.LNS.B lns 11-AUG-08 Checkin Released Not_Distributed
4565274 - R12.OCM.B ocm 11-AUG-08 Checkin Released Not_Distributed
4565278 - R12.OIE.B oie 12-AUG-08 Checkin Released Not_Distributed
4565280 - R12.FA.B fa 11-AUG-08 Checkin Released Not_Distributed
4565284 - R12.OIR.B oir 12-AUG-08 Checkin Released Not_Distributed
4565291 - R12.JAI.B jai 11-AUG-08 Checkin Released Not_Distributed
4565292 - R12.FII.B fii 11-AUG-08 Checkin Released Not_Distributed
4565296 - R12.FUN.B fun 11-AUG-08 Checkin Released Not_Distributed
4565298 - R12.FV.B fv 11-AUG-08 Checkin Released Not_Distributed
4565307 - R12.GL.B gl 11-AUG-08 Checkin Released Not_Distributed
4565320 - R12.IA.B ia 11-AUG-08 Checkin Released Not_Distributed
4565332 - R12.BPA.B bpa 11-AUG-08 Checkin Released Not_Distributed
4565333 - R12.PSA.B psa 12-AUG-08 Checkin Released Not_Distributed
4565336 - R12.PSB.B psb 12-AUG-08 Checkin Released Not_Distributed
4565348 - R12.QRM.B qrm 11-AUG-08 Checkin Released Not_Distributed
4565349 - R12.XLA.B xla 11-AUG-08 Checkin Released Not_Distributed
4565354 - R12.XLE.B xle 12-AUG-08 Checkin Released Not_Distributed
4565356 - R12.ZX.B zx 12-AUG-08 Checkin Released Not_Distributed
4565419 - R12.RG.B rg 11-AUG-08 Checkin Released Not_Distributed
4565524 - R12.SEM_PF.B sem_pf 12-AUG-08 Checkin Released Not_Distributed
4688798 - R12.IGW.B igw 11-AUG-08 Checkin Released Not_Distributed
4688801 - R12.IGI.B igi 12-AUG-08 Checkin Released Not_Distributed
4713717 - R12.JE.B je 12-AUG-08 Checkin Released Not_Distributed
4728614 - R12.OKL.B okl 11-AUG-08 Checkin Released Not_Distributed
6651710 - R12.RCI.B rci 11-AUG-08 Checkin Released Not_Distributed
4565514 - R12.PRC_PF.B prc_pf 13-AUG-08 Checkin Released Not_Distributed
4565358 - R12.POS.B pos 11-AUG-08 Checkin Released Not_Distributed
4565362 - R12.PON.B pon 11-AUG-08 Checkin Released Not_Distributed
4565365 - R12.PO.B po 12-AUG-08 Checkin Released Not_Distributed
4565368 - R12.ICX.B icx 11-AUG-08 Checkin Released Not_Distributed
4565370 - R12.CHV.B chv 11-AUG-08 Checkin Released Not_Distributed
4577103 - R12.POA.B poa 11-AUG-08 Checkin Released Not_Distributed
6652362 - R12.POM.B pom 11-AUG-08 Checkin Released Not_Distributed
5915303 - R12.BIS_PF.B bis_pf 13-AUG-08 Checkin Released Not_Distributed
6664110 - R12.BIS.B bis 11-AUG-08 Checkin Released Not_Distributed
6664204 - R12.BSC.B bsc 11-AUG-08 Checkin Released Not_Distributed
6664239 - R12.EDW.B edw 11-AUG-08 Checkin Released Not_Distributed
6664244 - R12.EWS.B ews 11-AUG-08 Checkin Released Not_Distributed
6430106 - R12.ATG_PF.B atg_pf 12-AUG-08 Checkin Released Not_Distributed
6430051 - R12.AK.B ak 11-AUG-08 Checkin Released Not_Distributed
6430052 - R12.ALR.B alr 11-AUG-08 Checkin Released Not_Distributed
6430059 - R12.AZ.B az 11-AUG-08 Checkin Released Not_Distributed
6430060 - R12.BNE.B bne 11-AUG-08 Checkin Released Not_Distributed
6430064 - R12.EC.B ec 11-AUG-08 Checkin Released Not_Distributed
6430070 - R12.FND.B fnd 11-AUG-08 Checkin Released Not_Distributed
6430094 - R12.JTA.B jta 11-AUG-08 Checkin Released Not_Distributed
6430095 - R12.FRM.B frm 11-AUG-08 Checkin Released Not_Distributed
6430099 - R12.UMX.B umx 11-AUG-08 Checkin Released Not_Distributed
6430101 - R12.JTF.B jtf 11-AUG-08 Checkin Released Not_Distributed
6430103 - R12.XDO.B xdo 11-AUG-08 Checkin Released Not_Distributed
6430145 - R12.TXK.B txk 11-AUG-08 Checkin Released Not_Distributed
6603330 - R12.HR_PF.B hr_pf 13-AUG-08 Checkin Released Not_Distributed
6633693 - R12.IZU.B izu 12-AUG-08 Checkin Released Not_Distributed
6658964 - R12.SCM_PF.B scm_pf 13-AUG-08 Checkin Released Not_Distributed
6663753 - R12.CC_PF.B cc_pf 13-AUG-08 Checkin Released Not_Distributed
6664666 - R12.PJ_PF.B pj_pf 13-AUG-08 Checkin Released Not_Distributed
7307198 - R12.ATG_PF.B.1 atg_pf 07-APR-09 Checkin Released Not_Distributed
7307224 - R12.FND.B.1 fnd 07-APR-09 Checkin Released Not_Distributed
7307331 - R12.AK.B.1 ak 07-APR-09 Checkin Released Not_Distributed
7310220 - R12.ALR.B.1 alr 07-APR-09 Checkin Released Not_Distributed
7310223 - R12.AZ.B.1 az 07-APR-09 Checkin Released Not_Distributed
7310227 - R12.BNE.B.1 bne 07-APR-09 Checkin Released Not_Distributed
7310236 - R12.EC.B.1 ec 07-APR-09 Checkin Released Not_Distributed
7310261 - R12.JTA.B.1 jta 07-APR-09 Checkin Released Not_Distributed
7310264 - R12.FRM.B.1 frm 07-APR-09 Checkin Released Not_Distributed
7310266 - R12.UMX.B.1 umx 07-APR-09 Checkin Released Not_Distributed
7310271 - R12.JTF.B.1 jtf 07-APR-09 Checkin Released Not_Distributed
7310274 - R12.XDO.B.1 xdo 07-APR-09 Checkin Released Not_Distributed
7310275 - R12.TXK.B.1 txk 07-APR-09 Checkin Released Not_Distributed
7389432 - R12.CC_PF.B.1 cc_pf 09-APR-09 Checkin Released Not_Distributed
7387725 - R12.MAS_PF.B.1 mas_pf 08-APR-09 Checkin Released Not_Distributed
7389406 - R12.HZ.B.1 hz 08-APR-09 Checkin Released Not_Distributed
7443557 - R12.IMC.B.1 imc 07-APR-09 Checkin Released Not_Distributed
7443558 - R12.CCT.B.1 cct 07-APR-09 Checkin Released Not_Distributed
7443559 - R12.JTH.B.1 jth 08-APR-09 Checkin Released Not_Distributed
7443560 - R12.JTO.B.1 jto 08-APR-09 Checkin Released Not_Distributed
7443561 - R12.BIX.B.1 bix 08-APR-09 Checkin Released Not_Distributed
7443562 - R12.BIC.B.1 bic 08-APR-09 Checkin Released Not_Distributed
7443563 - R12.IES.B.1 ies 07-APR-09 Checkin Released Not_Distributed
7443564 - R12.IEU.B.1 ieu 07-APR-09 Checkin Released Not_Distributed
7443565 - R12.IEO.B.1 ieo 07-APR-09 Checkin Released Not_Distributed
7443566 - R12.IEM.B.1 iem 07-APR-09 Checkin Released Not_Distributed
7443567 - R12.IEC.B.1 iec 07-APR-09 Checkin Released Not_Distributed
7443568 - R12.IEB.B.1 ieb 07-APR-09 Checkin Released Not_Distributed
7446042 - R12.SRV_PF.B.1 srv_pf 08-APR-09 Checkin Released Not_Distributed
7430737 - R12.IZU.B.1 izu 07-APR-09 Checkin Released Not_Distributed
7446767 - R12.HR_PF.B.1 hr_pf 09-APR-09 Checkin Released Not_Distributed
7457039 - R12.DT.B.1 dt 08-APR-09 Checkin Released Not_Distributed
7457041 - R12.PQH.B.1 pqh 08-APR-09 Checkin Released Not_Distributed
7457042 - R12.PAY.B.1 pay 08-APR-09 Checkin Released Not_Distributed
7457043 - R12.PER.B.1 per 08-APR-09 Checkin Released Not_Distributed
7457044 - R12.HXT.B.1 hxt 08-APR-09 Checkin Released Not_Distributed
7457045 - R12.BEN.B.1 ben 08-APR-09 Checkin Released Not_Distributed
7457046 - R12.SSP.B.1 ssp 08-APR-09 Checkin Released Not_Distributed
7457047 - R12.FF.B.1 ff 08-APR-09 Checkin Released Not_Distributed
7457049 - R12.AME.B.1 ame 08-APR-09 Checkin Released Not_Distributed
7457050 - R12.IRC.B.1 irc 08-APR-09 Checkin Released Not_Distributed
7457051 - R12.PQP.B.1 pqp 08-APR-09 Checkin Released Not_Distributed
7457052 - R12.HRI.B.1 hri 08-APR-09 Checkin Released Not_Distributed
7457053 - R12.PSP.B.1 psp 08-APR-09 Checkin Released Not_Distributed
7457054 - R12.OTA.B.1 ota 08-APR-09 Checkin Released Not_Distributed
7457056 - R12.GHR.B.1 ghr 08-APR-09 Checkin Released Not_Distributed
7456310 - R12.SCM_PF.B.1 scm_pf 09-APR-09 Checkin Released Not_Distributed
7455684 - R12.RRS.B.1 rrs 08-APR-09 Checkin Released Not_Distributed
7456322 - R12.DMF_PF.B.1 dmf_pf 09-APR-09 Checkin Released Not_Distributed
7456494 - R12.CLN.C.1 cln 08-APR-09 Checkin Released Not_Distributed
7456499 - R12.ITG.B.1 itg 08-APR-09 Checkin Released Not_Distributed
7456505 - R12.CZ.B.1 cz 08-APR-09 Checkin Released Not_Distributed
7456509 - R12.PMI.B.1 pmi 08-APR-09 Checkin Released Not_Distributed
7456535 - R12.CSI.B.1 csi 08-APR-09 Checkin Released Not_Distributed
7456539 - R12.CSE.B.1 cse 08-APR-09 Checkin Released Not_Distributed
7456753 - R12.OPM_PF.B.1 opm_pf 09-APR-09 Checkin Released Not_Distributed
7456815 - R12.OM_PF.B.1 om_pf 09-APR-09 Checkin Released Not_Distributed
7458382 - R12.AHL.B.1 ahl 08-APR-09 Checkin Released Not_Distributed
7458383 - R12.CSD.B.1 csd 08-APR-09 Checkin Released Not_Distributed
7458396 - R12.OK_PF.B.1 ok_pf 09-APR-09 Checkin Released Not_Distributed
7458412 - R12.SHT.B.1 sht 08-APR-09 Checkin Released Not_Distributed
7458416 - R12.SCP_PF.B.1 scp_pf 09-APR-09 Checkin Released Not_Distributed
7459212 - R12.WSH.B.1 wsh 08-APR-09 Checkin Released Not_Distributed
7459476 - R12.INL.B.1 inl 08-APR-09 Checkin Released Not_Distributed
7459516 - R12.RLM.B.1 rlm 08-APR-09 Checkin Released Not_Distributed
7459533 - R12.VEA.B.1 vea 08-APR-09 Checkin Released Not_Distributed
7459535 - R12.PLM_PF.B.1 plm_pf 09-APR-09 Checkin Released Not_Distributed
7456340 - R12.PJ_PF.B.1 pj_pf 08-APR-09 Checkin Released Not_Distributed
7456248 - R12.PA.B.1 pa 08-APR-09 Checkin Released Not_Distributed
7456251 - R12.PJI.B.1 pji 08-APR-09 Checkin Released Not_Distributed
7456254 - R12.GMS.B.1 gms 08-APR-09 Checkin Released Not_Distributed
7456260 - R12.FPA.B.1 fpa 08-APR-09 Checkin Released Not_Distributed
7456265 - R12.PJF.B.1 pjf 08-APR-09 Checkin Released Not_Distributed
7456273 - R12.IPA.B.1 ipa 08-APR-09 Checkin Released Not_Distributed
7456280 - R12.PN.B.1 pn 08-APR-09 Checkin Released Not_Distributed
7456295 - R12.PJB.B.1 pjb 08-APR-09 Checkin Released Not_Distributed
7456302 - R12.PJR.B.1 pjr 08-APR-09 Checkin Released Not_Distributed
7456315 - R12.PJC.B.1 pjc 08-APR-09 Checkin Released Not_Distributed
7456321 - R12.PJT.B.1 pjt 08-APR-09 Checkin Released Not_Distributed
7457316 - R12.PJL.B.1 pjl 08-APR-09 Checkin Released Not_Distributed
7456813 - R12.PRC_PF.B.1 prc_pf 09-APR-09 Checkin Released Not_Distributed
7443550 - R12.ICX.B.1 icx 08-APR-09 Checkin Released Not_Distributed
7443551 - R12.CHV.B.1 chv 08-APR-09 Checkin Released Not_Distributed
7443553 - R12.POS.B.1 pos 08-APR-09 Checkin Released Not_Distributed
7443554 - R12.POM.B.1 pom 08-APR-09 Checkin Released Not_Distributed
7443555 - R12.PON.B.1 pon 08-APR-09 Checkin Released Not_Distributed
7443556 - R12.PO.B.1 po 08-APR-09 Checkin Released Not_Distributed
7456722 - R12.POA.B.1 poa 08-APR-09 Checkin Released Not_Distributed
7457000 - R12.FIN_PF.B.1 fin_pf 08-APR-09 Checkin Released Not_Distributed
7456466 - R12.AMW.B.1 amw 08-APR-09 Checkin Released Not_Distributed
7456542 - R12.BPA.B.1 bpa 08-APR-09 Checkin Released Not_Distributed
7456544 - R12.AP.B.1 ap 08-APR-09 Checkin Released Not_Distributed
7456560 - R12.CE.B.1 ce 08-APR-09 Checkin Released Not_Distributed
7456573 - R12.FII.B.1 fii 08-APR-09 Checkin Released Not_Distributed
7456581 - R12.IBY.B.1 iby 08-APR-09 Checkin Released Not_Distributed
7456596 - R12.IGW.B.1 igw 08-APR-09 Checkin Released Not_Distributed
7456621 - R12.JG.B.1 jg 08-APR-09 Checkin Released Not_Distributed
7456629 - R12.LNS.B.1 lns 08-APR-09 Checkin Released Not_Distributed
7456640 - R12.OKL.B.1 okl 08-APR-09 Checkin Released Not_Distributed
7456650 - R12.QRM.B.1 qrm 08-APR-09 Checkin Released Not_Distributed
7456658 - R12.RCI.B.1 rci 08-APR-09 Checkin Released Not_Distributed
7456661 - R12.ITA.B.1 ita 08-APR-09 Checkin Released Not_Distributed
7456667 - R12.XTR.B.1 xtr 08-APR-09 Checkin Released Not_Distributed
7456676 - R12.SEM_PF.B.1 sem_pf 08-APR-09 Checkin Released Not_Distributed
7456696 - R12.JAI.B.1 jai 08-APR-09 Checkin Released Not_Distributed
7456715 - R12.OCM.B.1 ocm 08-APR-09 Checkin Released Not_Distributed
7456818 - R12.AR.B.1 ar 08-APR-09 Checkin Released Not_Distributed
7456850 - R12.IGI.B.1 igi 08-APR-09 Checkin Released Not_Distributed
7456857 - R12.JA.B.1 ja 08-APR-09 Checkin Released Not_Distributed
7456865 - R12.JE.B.1 je 08-APR-09 Checkin Released Not_Distributed
7456868 - R12.OIE.B.1 oie 08-APR-09 Checkin Released Not_Distributed
7456877 - R12.OIR.B.1 oir 08-APR-09 Checkin Released Not_Distributed
7456884 - R12.PSA.B.1 psa 08-APR-09 Checkin Released Not_Distributed
7456890 - R12.PSB.B.1 psb 08-APR-09 Checkin Released Not_Distributed
7456895 - R12.XLE.B.1 xle 08-APR-09 Checkin Released Not_Distributed
7456901 - R12.ZX.B.1 zx 08-APR-09 Checkin Released Not_Distributed
7456957 - R12.FA.B.1 fa 08-APR-09 Checkin Released Not_Distributed
7456973 - R12.FUN.B.1 fun 08-APR-09 Checkin Released Not_Distributed
7456977 - R12.FV.B.1 fv 08-APR-09 Checkin Released Not_Distributed
7456985 - R12.GL.B.1 gl 08-APR-09 Checkin Released Not_Distributed
7456988 - R12.IA.B.1 ia 08-APR-09 Checkin Released Not_Distributed
7457084 - R12.IEX.B.1 iex 08-APR-09 Checkin Released Not_Distributed
7457095 - R12.RG.B.1 rg 08-APR-09 Checkin Released Not_Distributed
7457096 - R12.XLA.B.1 xla 08-APR-09 Checkin Released Not_Distributed
7458599 - R12.BIS_PF.B.1 bis_pf 08-APR-09 Checkin Released Not_Distributed
7458428 - R12.BIS.B.1 bis 07-APR-09 Checkin Released Not_Distributed
7458474 - R12.BSC.B.1 bsc 07-APR-09 Checkin Released Not_Distributed
7458506 - R12.EDW.B.1 edw 07-APR-09 Checkin Released Not_Distributed
7458569 - R12.EWS.B.1 ews 07-APR-09 Checkin Released Not_Distributed
" > ${OUT_DIR}/1211_Base.txt
echo "
7651091 - R12.ATG_PF.B.2 atg_pf 09/12/16 Checkin Released By_Metalink
7651104 - R12.FND.B.2 fnd 09/12/15 Checkin Released Not_Distributed
7651136 - R12.AK.B.2 ak 09/12/15 Checkin Released Not_Distributed
7651141 - R12.ALR.B.2 alr 09/12/15 Checkin Released Not_Distributed
7651144 - R12.AZ.B.2 az 09/12/15 Checkin Released Not_Distributed
7651146 - R12.BNE.B.2 bne 09/12/15 Checkin Released Not_Distributed
7651149 - R12.EC.B.2 ec 09/12/15 Checkin Released Not_Distributed
7651152 - R12.JTA.B.2 jta 09/12/15 Checkin Released Not_Distributed
7651154 - R12.FRM.B.2 frm 09/12/15 Checkin Released Not_Distributed
7651155 - R12.UMX.B.2 umx 09/12/15 Checkin Released Not_Distributed
7651157 - R12.JTF.B.2 jtf 09/12/15 Checkin Released Not_Distributed
7651160 - R12.XDO.B.2 xdo 09/12/15 Checkin Released Not_Distributed
7651166 - R12.TXK.B.2 txk 09/12/15 Checkin Released By_Metalink
7717707 - R12.IZU.B.2 izu 09/12/16 Checkin Released By_Metalink
8337373 - R12.HR_PF.B.2 hr_pf 09/12/16 Checkin Released By_Metalink
8496461 - R12.DT.B.2 dt 09/12/15 Checkin Released Not_Distributed
8496464 - R12.PQH.B.2 pqh 09/12/15 Checkin Released Not_Distributed
8496466 - R12.PAY.B.2 pay 09/12/15 Checkin Released Not_Distributed
8496467 - R12.PER.B.2 per 09/12/15 Checkin Released Not_Distributed
8496470 - R12.HXT.B.2 hxt 09/12/15 Checkin Released Not_Distributed
8496471 - R12.BEN.B.2 ben 09/12/15 Checkin Released Not_Distributed
8496472 - R12.SSP.B.2 ssp 09/12/15 Checkin Released Not_Distributed
8496473 - R12.FF.B.2 ff 09/12/15 Checkin Released Not_Distributed
8496475 - R12.AME.B.2 ame 09/12/15 Checkin Released Not_Distributed
8496476 - R12.IRC.B.2 irc 09/12/15 Checkin Released Not_Distributed
8496478 - R12.PQP.B.2 pqp 09/12/15 Checkin Released Not_Distributed
8496479 - R12.HRI.B.2 hri 09/12/15 Checkin Released Not_Distributed
8496480 - R12.PSP.B.2 psp 09/12/15 Checkin Released Not_Distributed
8496481 - R12.OTA.B.2 ota 09/12/15 Checkin Released Not_Distributed
8496482 - R12.GHR.B.2 ghr 09/12/15 Checkin Released Not_Distributed
8402900 - R12.FIN_PF.B.2 fin_pf 09/12/16 Checkin Released By_Metalink
8509304 - R12.SEM_PF.B.2 sem_pf 09/12/16 Checkin Released Not_Distributed
8516496 - R12.AP.B.2 ap 09/12/15 Checkin Released Not_Distributed
8516507 - R12.CE.B.2 ce 09/12/15 Checkin Released Not_Distributed
8516509 - R12.IBY.B.2 iby 09/12/15 Checkin Released Not_Distributed
8516511 - R12.IGW.B.2 igw 09/12/15 Checkin Released Not_Distributed
8516512 - R12.JG.B.2 jg 09/12/15 Checkin Released Not_Distributed
8516519 - R12.LNS.B.2 lns 09/12/15 Checkin Released Not_Distributed
8516520 - R12.OKL.B.2 okl 09/12/15 Checkin Released Not_Distributed
8516524 - R12.QRM.B.2 qrm 09/12/15 Checkin Released Not_Distributed
8516528 - R12.RCI.B.2 rci 09/12/15 Checkin Released Not_Distributed
8516533 - R12.XTR.B.2 xtr 09/12/15 Checkin Released Not_Distributed
8516614 - R12.FA.B.2 fa 09/12/15 Checkin Released Not_Distributed
8516707 - R12.FUN.B.2 fun 09/12/15 Checkin Released Not_Distributed
8516714 - R12.FV.B.2 fv 09/12/15 Checkin Released Not_Distributed
8516733 - R12.GL.B.2 gl 09/12/15 Checkin Released Not_Distributed
8516740 - R12.IA.B.2 ia 09/12/15 Checkin Released Not_Distributed
8516753 - R12.IEX.B.2 iex 09/12/15 Checkin Released Not_Distributed
8516761 - R12.RG.B.2 rg 09/12/15 Checkin Released Not_Distributed
8516768 - R12.XLA.B.2 xla 09/12/15 Checkin Released Not_Distributed
8516935 - R12.AMW.B.2 amw 09/12/15 Checkin Released Not_Distributed
8516954 - R12.AR.B.2 ar 09/12/15 Checkin Released Not_Distributed
8516967 - R12.BPA.B.2 bpa 09/12/15 Checkin Released Not_Distributed
8516971 - R12.IGI.B.2 igi 09/12/15 Checkin Released Not_Distributed
8516983 - R12.JA.B.2 ja 09/12/15 Checkin Released Not_Distributed
8516988 - R12.FII.B.2 fii 09/12/15 Checkin Released Not_Distributed
8516994 - R12.JE.B.2 je 09/12/15 Checkin Released Not_Distributed
8517003 - R12.OIE.B.2 oie 09/12/15 Checkin Released Not_Distributed
8517010 - R12.OIR.B.2 oir 09/12/15 Checkin Released Not_Distributed
8517013 - R12.PSA.B.2 psa 09/12/15 Checkin Released Not_Distributed
8517019 - R12.PSB.B.2 psb 09/12/15 Checkin Released Not_Distributed
8517026 - R12.ITA.B.2 ita 09/12/15 Checkin Released Not_Distributed
8517029 - R12.XLE.B.2 xle 09/12/15 Checkin Released Not_Distributed
8517032 - R12.ZX.B.2 zx 09/12/15 Checkin Released Not_Distributed
8517036 - R12.JAI.B.2 jai 09/12/15 Checkin Released Not_Distributed
8517042 - R12.OCM.B.2 ocm 09/12/15 Checkin Released Not_Distributed
8517089 - R12.JL.B.2 jl 09/12/15 Checkin Released Not_Distributed
8504800 - R12.PJ_PF.B.2 pj_pf 09/12/16 Checkin Released By_Metalink
8516727 - R12.PJT.B.2 pjt 09/12/15 Checkin Released Not_Distributed
8516732 - R12.PJC.B.2 pjc 09/12/15 Checkin Released Not_Distributed
8516735 - R12.PJR.B.2 pjr 09/12/15 Checkin Released Not_Distributed
8516742 - R12.PJB.B.2 pjb 09/12/15 Checkin Released Not_Distributed
8516750 - R12.PJL.B.2 pjl 09/12/15 Checkin Released Not_Distributed
8516756 - R12.PN.B.2 pn 09/12/15 Checkin Released Not_Distributed
8516762 - R12.IPA.B.2 ipa 09/12/15 Checkin Released Not_Distributed
8516769 - R12.PJF.B.2 pjf 09/12/15 Checkin Released Not_Distributed
8516782 - R12.FPA.B.2 fpa 09/12/15 Checkin Released Not_Distributed
8516789 - R12.GMS.B.2 gms 09/12/15 Checkin Released Not_Distributed
8516801 - R12.PJI.B.2 pji 09/12/15 Checkin Released Not_Distributed
8516814 - R12.PA.B.2 pa 09/12/15 Checkin Released Not_Distributed
8506830 - R12.SCM_PF.B.2 scm_pf 09/12/16 Checkin Released By_Metalink
8506799 - R12.DMF_PF.B.2 dmf_pf 09/12/16 Checkin Released Not_Distributed
8506818 - R12.RRS.B.2 rrs 09/12/15 Checkin Released Not_Distributed
8507582 - R12.MTH.B.2 mth 09/12/15 Checkin Released Not_Distributed
8507589 - R12.OM_PF.B.2 om_pf 09/12/16 Checkin Released Not_Distributed
8507590 - R12.OK_PF.B.2 ok_pf 09/12/16 Checkin Released Not_Distributed
8507592 - R12.SCP_PF.B.2 scp_pf 09/12/16 Checkin Released By_Metalink
8508441 - R12.AHL.B.2 ahl 09/12/15 Checkin Released Not_Distributed
8508493 - R12.CSD.B.2 csd 09/12/15 Checkin Released Not_Distributed
8508507 - R12.CSE.B.2 cse 09/12/15 Checkin Released Not_Distributed
8508514 - R12.CSI.B.2 csi 09/12/15 Checkin Released Not_Distributed
8508581 - R12.CZ.B.2 cz 09/12/15 Checkin Released Not_Distributed
8508622 - R12.INL.B.2 inl 09/12/15 Checkin Released Not_Distributed
8508633 - R12.RLM.B.2 rlm 09/12/15 Checkin Released Not_Distributed
8508645 - R12.VEA.B.2 vea 09/12/15 Checkin Released Not_Distributed
8508651 - R12.WSH.B.2 wsh 09/12/15 Checkin Released Not_Distributed
8508666 - R12.CLN.C.2 cln 09/12/15 Checkin Released Not_Distributed
8508674 - R12.PMI.B.2 pmi 09/12/15 Checkin Released Not_Distributed
8508707 - R12.ITG.B.2 itg 09/12/15 Checkin Released Not_Distributed
8508716 - R12.OPM_PF.B.2 opm_pf 09/12/16 Checkin Released Not_Distributed
8508938 - R12.PLM_PF.B.2 plm_pf 09/12/16 Checkin Released Not_Distributed
8522000 - R12.CC_PF.B.2 cc_pf 09/12/17 Checkin Released By_Metalink
8508700 - R12.MAS_PF.B.2 mas_pf 09/12/16 Checkin Released Not_Distributed
8509234 - R12.SRV_PF.B.2 srv_pf 09/12/16 Checkin Released Not_Distributed
8521983 - R12.IEB.B.2 ieb 09/12/15 Checkin Released Not_Distributed
8521984 - R12.IEC.B.2 iec 09/12/15 Checkin Released Not_Distributed
8521985 - R12.IEM.B.2 iem 09/12/15 Checkin Released Not_Distributed
8521987 - R12.IEO.B.2 ieo 09/12/15 Checkin Released Not_Distributed
8521988 - R12.IEU.B.2 ieu 09/12/15 Checkin Released Not_Distributed
8521989 - R12.IES.B.2 ies 09/12/15 Checkin Released Not_Distributed
8521990 - R12.BIC.B.2 bic 09/12/15 Checkin Released Not_Distributed
8521991 - R12.BIX.B.2 bix 09/12/15 Checkin Released Not_Distributed
8521992 - R12.JTO.B.2 jto 09/12/15 Checkin Released Not_Distributed
8521993 - R12.JTH.B.2 jth 09/12/15 Checkin Released Not_Distributed
8521994 - R12.CCT.B.2 cct 09/12/15 Checkin Released Not_Distributed
8521995 - R12.IMC.B.2 imc 09/12/15 Checkin Released Not_Distributed
8521996 - R12.HZ.B.2 hz 09/12/15 Checkin Released Not_Distributed
8522002 - R12.PRC_PF.B.2 prc_pf 09/12/17 Checkin Released By_Metalink
8521997 - R12.PO.B.2 po 09/12/15 Checkin Released Not_Distributed
8522001 - R12.PON.B.2 pon 09/12/15 Checkin Released Not_Distributed
8522003 - R12.ICX.B.2 icx 09/12/15 Checkin Released Not_Distributed
8522004 - R12.CHV.B.2 chv 09/12/15 Checkin Released Not_Distributed
8522016 - R12.POM.B.2 pom 09/12/15 Checkin Released Not_Distributed
8522023 - R12.POA.B.2 poa 09/12/15 Checkin Released Not_Distributed
8530556 - R12.POS.B.2 pos 09/12/15 Checkin Released Not_Distributed
8525503 - R12.BIS_PF.B.2 bis_pf 09/12/17 Checkin Released Not_Distributed
8525701 - R12.EDW.B.2 edw 09/12/15 Checkin Released Not_Distributed
8525702 - R12.EWS.B.2 ews 09/12/15 Checkin Released Not_Distributed
8525703 - R12.BIS.B.2 bis 09/12/15 Checkin Released Not_Distributed
8525704 - R12.BSC.B.2 bsc 09/12/15 Checkin Released Not_Distributed
" > ${OUT_DIR}/1212_Base.txt
echo "
7651091 - R12.ATG_PF.B.2 atg_pf 09/12/16 Checkin Released By_Metalink
7717707 - R12.IZU.B.2 izu 09/12/16 Checkin Released By_Metalink
8337373 - R12.HR_PF.B.2 hr_pf 09/12/16 Checkin Released By_Metalink
8402900 - R12.FIN_PF.B.2 fin_pf 09/12/16 Checkin Released By_Metalink
8504800 - R12.PJ_PF.B.2 pj_pf 09/12/16 Checkin Released By_Metalink
8506830 - R12.SCM_PF.B.2 scm_pf 09/12/16 Checkin Released By_Metalink
8522000 - R12.CC_PF.B.2 cc_pf 09/12/17 Checkin Released By_Metalink
8522002 - R12.PRC_PF.B.2 prc_pf 09/12/17 Checkin Released By_Metalink
8525503 - R12.BIS_PF.B.2 bis_pf 09/12/17 Checkin Released Not_Distributed
8919491 - R12.ATG_PF.B.3 atg_pf 10/07/08 Checkin Released By_Metalink
7651091 - R12.ATG_PF.B.2 atg_pf 09/12/16 Checkin Released By_Metalink
8919473 - R12.FND.B.3 fnd 10/07/06 Checkin Released Not_Distributed
8919474 - R12.AK.B.3 ak 10/07/06 Checkin Released Not_Distributed
8919475 - R12.ALR.B.3 alr 10/07/06 Checkin Released Not_Distributed
8919476 - R12.AZ.B.3 az 10/07/06 Checkin Released Not_Distributed
8919478 - R12.BNE.B.3 bne 10/07/06 Checkin Released Not_Distributed
8919479 - R12.EC.B.3 ec 10/07/06 Checkin Released Not_Distributed
8919480 - R12.JTA.B.3 jta 10/07/06 Checkin Released Not_Distributed
8919484 - R12.FRM.B.3 frm 10/07/06 Checkin Released Not_Distributed
8919485 - R12.UMX.B.3 umx 10/07/06 Checkin Released Not_Distributed
8919486 - R12.JTF.B.3 jtf 10/06/07 Checkin Released Not_Distributed
8919488 - R12.XDO.B.3 xdo 10/07/06 Checkin Released Not_Distributed
8919489 - R12.TXK.B.3 txk 10/07/08 Checkin Released By_Metalink
9114911 - R12.HR_PF.B.3 hr_pf 10/07/08 Checkin Released By_Metalink
8337373 - R12.HR_PF.B.2 hr_pf 09/12/16 Checkin Released By_Metalink
9244265 - R12.DT.B.3 dt 10/07/07 Checkin Released Not_Distributed
9244266 - R12.PQH.B.3 pqh 10/07/07 Checkin Released Not_Distributed
9244267 - R12.PAY.B.3 pay 10/07/07 Checkin Released Not_Distributed
9244268 - R12.PER.B.3 per 10/07/07 Checkin Released Not_Distributed
9244269 - R12.HXT.B.3 hxt 10/07/07 Checkin Released Not_Distributed
9244270 - R12.BEN.B.3 ben 10/07/07 Checkin Released Not_Distributed
9244271 - R12.SSP.B.3 ssp 10/07/07 Checkin Released Not_Distributed
9244272 - R12.FF.B.3 ff 10/07/07 Checkin Released Not_Distributed
9244273 - R12.AME.B.3 ame 10/07/07 Checkin Released Not_Distributed
9244274 - R12.IRC.B.3 irc 10/07/07 Checkin Released Not_Distributed
9244276 - R12.PQP.B.3 pqp 10/07/07 Checkin Released Not_Distributed
9244278 - R12.HRI.B.3 hri 10/07/07 Checkin Released Not_Distributed
9244279 - R12.PSP.B.3 psp 10/07/07 Checkin Released Not_Distributed
9244281 - R12.OTA.B.3 ota 10/07/07 Checkin Released Not_Distributed
9244282 - R12.GHR.B.3 ghr 10/07/07 Checkin Released Not_Distributed
9147711 - R12.PJ_PF.B.3 pj_pf 10/08/19 Checkin Released By_Metalink
8504800 - R12.PJ_PF.B.2 pj_pf 09/12/16 Checkin Released By_Metalink
9246511 - R12.PN.B.3 pn 10/08/17 Checkin Released Not_Distributed
9246512 - R12.IPA.B.3 ipa 10/08/17 Checkin Released Not_Distributed
9246513 - R12.PJI.B.3 pji 10/08/17 Checkin Released Not_Distributed
9246515 - R12.PA.B.3 pa 10/08/17 Checkin Released Not_Distributed
9246516 - R12.PJL.B.3 pjl 10/08/17 Checkin Released Not_Distributed
9246517 - R12.FPA.B.3 fpa 10/08/17 Checkin Released Not_Distributed
9246518 - R12.GMS.B.3 gms 10/08/17 Checkin Released Not_Distributed
9246519 - R12.PJB.B.3 pjb 10/08/17 Checkin Released Not_Distributed
9246520 - R12.PJR.B.3 pjr 10/08/17 Checkin Released Not_Distributed
9246521 - R12.PJC.B.3 pjc 10/08/17 Checkin Released Not_Distributed
9246522 - R12.PJT.B.3 pjt 10/08/17 Checkin Released Not_Distributed
9246523 - R12.PJF.B.3 pjf 10/08/17 Checkin Released Not_Distributed
9147733 - R12.FIN_PF.B.3 fin_pf 10/08/18 Checkin Released By_Metalink
8402900 - R12.FIN_PF.B.2 fin_pf 09/12/16 Checkin Released By_Metalink
9244829 - R12.IEX.B.3 iex 10/08/17 Checkin Released Not_Distributed
9244830 - R12.OCM.B.3 ocm 10/08/17 Checkin Released Not_Distributed
9244831 - R12.IGW.B.3 igw 10/08/17 Checkin Released Not_Distributed
9244832 - R12.XTR.B.3 xtr 10/08/17 Checkin Released Not_Distributed
9244833 - R12.OIE.B.3 oie 10/08/17 Checkin Released Not_Distributed
9244834 - R12.QRM.B.3 qrm 10/08/17 Checkin Released Not_Distributed
9244835 - R12.JAI.B.3 jai 10/08/17 Checkin Released Not_Distributed
9244838 - R12.ZX.B.3 zx 10/08/17 Checkin Released Not_Distributed
9244841 - R12.FA.B.3 fa 10/08/17 Checkin Released Not_Distributed
9244842 - R12.FII.B.3 fii 10/08/17 Checkin Released Not_Distributed
9244843 - R12.OKL.B.3 okl 10/08/17 Checkin Released Not_Distributed
9244845 - R12.OIR.B.3 oir 10/08/17 Checkin Released Not_Distributed
9244846 - R12.JA.B.3 ja 10/08/17 Checkin Released Not_Distributed
9244847 - R12.LNS.B.3 lns 10/08/17 Checkin Released Not_Distributed
9244848 - R12.JE.B.3 je 10/08/17 Checkin Released Not_Distributed
9244849 - R12.JG.B.3 jg 10/08/17 Checkin Released Not_Distributed
9244850 - R12.IBY.B.3 iby 10/08/17 Checkin Released Not_Distributed
9244851 - R12.JL.B.3 jl 10/08/17 Checkin Released Not_Distributed
9244853 - R12.FV.B.3 fv 10/08/17 Checkin Released Not_Distributed
9244854 - R12.XLA.B.3 xla 10/08/17 Checkin Released Not_Distributed
9244857 - R12.ITA.B.3 ita 10/08/17 Checkin Released Not_Distributed
9244858 - R12.RCI.B.3 rci 10/08/17 Checkin Released Not_Distributed
9244859 - R12.XLE.B.3 xle 10/08/17 Checkin Released Not_Distributed
9244861 - R12.BPA.B.3 bpa 10/08/17 Checkin Released Not_Distributed
9244862 - R12.CE.B.3 ce 10/08/17 Checkin Released Not_Distributed
9244863 - R12.RG.B.3 rg 10/08/17 Checkin Released Not_Distributed
9244864 - R12.FUN.B.3 fun 10/08/17 Checkin Released Not_Distributed
9244867 - R12.AP.B.3 ap 10/08/17 Checkin Released Not_Distributed
9244869 - R12.IA.B.3 ia 10/08/17 Checkin Released Not_Distributed
9244870 - R12.AR.B.3 ar 10/08/17 Checkin Released Not_Distributed
9244871 - R12.IGI.B.3 igi 10/08/17 Checkin Released Not_Distributed
9244873 - R12.AMW.B.3 amw 10/08/17 Checkin Released Not_Distributed
9244874 - R12.GL.B.3 gl 10/08/17 Checkin Released Not_Distributed
9244875 - R12.PSA.B.3 psa 10/08/17 Checkin Released Not_Distributed
9244876 - R12.PSB.B.3 psb 10/08/17 Checkin Released Not_Distributed
9246396 - R12.SEM_PF.B.3 sem_pf 10/08/18 Checkin Released Not_Distributed
9239092 - R12.IZU.B.3 izu 10/08/17 Checkin Released By_Metalink
7717707 - R12.IZU.B.2 izu 09/12/16 Checkin Released By_Metalink
9245674 - R12.SCM_PF.B.3 scm_pf 10/08/19 Checkin Released By_Metalink
8506830 - R12.SCM_PF.B.2 scm_pf 09/12/16 Checkin Released By_Metalink
9242188 - R12.DMF_PF.B.3 dmf_pf 10/08/19 Checkin Released Not_Distributed
9242231 - R12.RRS.B.3 rrs 10/08/18 Checkin Released Not_Distributed
9242234 - R12.CSI.B.3 csi 10/08/18 Checkin Released Not_Distributed
9242263 - R12.CSE.B.3 cse 10/08/18 Checkin Released Not_Distributed
9244066 - R12.OK_PF.B.3 ok_pf 10/08/19 Checkin Released Not_Distributed
9244153 - R12.CZ.B.3 cz 10/08/18 Checkin Released Not_Distributed
9244158 - R12.OM_PF.B.3 om_pf 10/08/18 Checkin Released Not_Distributed
9244435 - R12.WSH.B.3 wsh 10/08/18 Checkin Released Not_Distributed
9244459 - R12.INL.B.3 inl 10/08/18 Checkin Released Not_Distributed
9244553 - R12.RLM.B.3 rlm 10/08/18 Checkin Released Not_Distributed
9244566 - R12.VEA.B.3 vea 10/08/18 Checkin Released Not_Distributed
9244769 - R12.PLM_PF.B.3 plm_pf 10/08/18 Checkin Released Not_Distributed
9245524 - R12.MTH.B.3 mth 10/08/18 Checkin Released Not_Distributed
9245525 - R12.SCP_PF.B.3 scp_pf 10/08/19 Checkin Released By_Metalink
9245539 - R12.AHL.B.3 ahl 10/08/18 Checkin Released Not_Distributed
9245541 - R12.CSD.B.3 csd 10/08/18 Checkin Released Not_Distributed
9245550 - R12.OPM_PF.B.3 opm_pf 10/08/19 Checkin Released Not_Distributed
9245562 - R12.PMI.B.3 pmi 10/08/18 Checkin Released Not_Distributed
9245563 - R12.CLN.C.3 cln 10/08/18 Checkin Released Not_Distributed
9245564 - R12.ITG.B.3 itg 10/08/18 Checkin Released Not_Distributed
9249345 - R12.CC_PF.B.3 cc_pf 10/08/19 Checkin Released By_Metalink
8522000 - R12.CC_PF.B.2 cc_pf 09/12/17 Checkin Released By_Metalink
9244656 - R12.MAS_PF.B.3 mas_pf 10/08/18 Checkin Released Not_Distributed
9249143 - R12.SRV_PF.B.3 srv_pf 10/08/18 Checkin Released Not_Distributed
9249329 - R12.IEB.B.3 ieb 10/08/18 Checkin Released Not_Distributed
9249330 - R12.IEC.B.3 iec 10/08/18 Checkin Released Not_Distributed
9249331 - R12.IEM.B.3 iem 10/08/18 Checkin Released Not_Distributed
9249332 - R12.IEO.B.3 ieo 10/08/18 Checkin Released Not_Distributed
9249333 - R12.IEU.B.3 ieu 10/08/18 Checkin Released Not_Distributed
9249334 - R12.IES.B.3 ies 10/08/18 Checkin Released Not_Distributed
9249336 - R12.BIC.B.3 bic 10/08/18 Checkin Released Not_Distributed
9249337 - R12.BIX.B.3 bix 10/08/18 Checkin Released Not_Distributed
9249338 - R12.JTO.B.3 jto 10/08/18 Checkin Released Not_Distributed
9249339 - R12.JTH.B.3 jth 10/08/18 Checkin Released Not_Distributed
9249340 - R12.CCT.B.3 cct 10/08/18 Checkin Released Not_Distributed
9249342 - R12.IMC.B.3 imc 10/08/18 Checkin Released Not_Distributed
9249344 - R12.HZ.B.3 hz 10/08/18 Checkin Released Not_Distributed
9249354 - R12.PRC_PF.B.3 prc_pf 10/08/19 Checkin Released By_Metalink
8522002 - R12.PRC_PF.B.2 prc_pf 09/12/17 Checkin Released By_Metalink
9249321 - R12.POS.B.3 pos 10/08/18 Checkin Released Not_Distributed
9249322 - R12.POM.B.3 pom 10/08/18 Checkin Released Not_Distributed
9249324 - R12.CHV.B.3 chv 10/08/18 Checkin Released Not_Distributed
9249326 - R12.ICX.B.3 icx 10/08/18 Checkin Released Not_Distributed
9249327 - R12.PON.B.3 pon 10/08/18 Checkin Released Not_Distributed
9249328 - R12.PO.B.3 po 10/08/18 Checkin Released Not_Distributed
9249380 - R12.POA.B.3 poa 10/08/18 Checkin Released Not_Distributed
9251174 - R12.BIS_PF.B.3 bis_pf 10/08/19 Checkin Released Not_Distributed
8525503 - R12.BIS_PF.B.2 bis_pf 09/12/17 Checkin Released Not_Distributed
9250816 - R12.BIS.B.3 bis 10/08/19 Checkin Released Not_Distributed
9251182 - R12.BSC.B.3 bsc 10/08/19 Checkin Released Not_Distributed
9251192 - R12.EDW.B.3 edw 10/08/19 Checkin Released Not_Distributed
9251197 - R12.EWS.B.3 ews 10/08/19 Checkin Released Not_Distributed
" > ${OUT_DIR}/1213_Base.txt
##
## End R12 Support
##
REL115_DATE="Jul 7 22:30"
echo "
Patchset
REL110_DATE="Dec 15 2005"
echo "
Patchset
####
#### ADDED BACK THE 10.7 Supporting files:
####
REL107_DATE="Dec 15 2005"
echo "
Patchset
REL107NCA_DATE="Dec 15 2005"
echo "
###
## These are the Baselines that are appended at the end of the Reports
###
echo "
Baseline Listing for the 10.7 Patch Sets:
###
## These are the Baselines that are appended at the end of the Reports
###
echo "
The complete list of Mini-Packs that constitute 11.0.2 Maintenance Pack is as
follows.
MINI-PACKS BUG NO
------------ ------
11.0.AD.B 732272
11.0.AK.B 733964
11.0.ALR.A 755917
11.0.AP.B 730174
11.0.AR.B 731338
11.0.AS.B 733304
11.0.AX.B 731655
11.0.AZ.A 732155
11.0.BOM.B 732960
11.0.CE.B 730326
11.0.CHV.B 733151
11.0.CN.B 682700
11.0.CS.B 733153
11.0.EC.B 726287
11.0.ENG.B 732779
11.0.FA.B 733163
11.0.FF.A 727481
11.0.FND.C 733155
11.0.GL.B 728311
11.0.ICX.B 726288
11.0.INV.B 733118
11.0.JA.B 730960
11.0.JE.B 731452
11.0.JG.B 730942
11.0.JL.B 733076
11.0.MRP.B 730718
11.0.OE.B 729768
11.0.OTA.B 727031
11.0.PA.B 728728
11.0.PAY.B 727153
11.0.PER.B 727052
11.0.PJM.B 732735
11.0.PO.B 733403
11.0.QA.B 732413
11.0.RG.B 728312
11.0.RLA.A 673900
11.0.SSP.A 727774
11.0.VEH.A 674152
11.0.WIP.B 733371
" > ${OUT_DIR}/1102_Base.txt
echo "
The complete list of Mini-Packs that constitute 11.0.3 Maintenance Pack is as
follows.
MINI-PACKS BUG NO
---------- ------
11.0.TECH.D 794429
11.0.ALR.A 755917
11.0.AP.C 789454
11.0.AR.C 789457
11.0.AS.C 809836
11.0.AX.C 809273
11.0.AZ.B 809856
11.0.BOM.C 805925
11.0.CE.C 789456
11.0.CHV.C 810486
11.0.CN.B 682700
11.0.CS.B 733153
11.0.EC.C 779201
11.0.ENG.C 801548
11.0.FA.C 811357
11.0.GL.C 794545
11.0.HR.C 794083
11.0.INV.C 802155
11.0.JA.C 810651
11.0.JE.C 808881
11.0.JG.C 808880
11.0.JL.C 810661
11.0.MRP.C 809721
11.0.OE.C 779207
11.0.PA.C 789455
11.0.PJM.C 735154
11.0.PO.C 803606
11.0.QA.C 802157
11.0.RG.C 794546
11.0.RLA.C 779909
11.0.VEH.C 779913
11.0.WIP.C 803439
" > ${OUT_DIR}/1103_Base.txt
echo "
Base patchsets listing for 11.5.1 install not currently available.
- Patchset Listings are typically included in release notes and readme files.
- For more details, see aru.us.oracle.com
" > ${OUT_DIR}/1151_Base.txt
echo "
1354512 - This is 11.5.2 Patchset with all the Included Patches Below
1289413 - PATCH 11i.CE.A
1316500 - Patch 11.5.MWA.A
1329016 - 11.5.AX.A
1330649 - Patch 11.5.CZ.B
1332650 - Consolidated BIS 11.5.BIS.A Patchset
1336609 - Patch 11.5.IEO.B
1336610 - Patch 11.5.IEB.B
1336613 - Patch 11.5.IEU.B
1338332 - Patch 11.5.BIX.B
1338344 - Patch 11.5.BIL.A
1338414 - Patch 11.5.BIM.B
1338602 - CRM 11.5.2 ASF Checkin
1338804 - Oracle Customer Support Core Release 11i v 11.5.2
1338815 - Oracle iSupport Release 11i v 11.5.2 minipack
1338820 - Oracle Support Release 11i v 11.5.2 minipack.
1338891 - Patch 11i.AR.A
1338967 - Patch 11.5.FRM.A
1339127 - Patch 11.5.CN.B
1339203 - ARU for 11.5.AMS.B
1339240 - Patch 11.5.CSR.B
1339243 - Patch 11.5.CSF.B
1339470 - Patch 11.5.CCT.B
1339472 - Patch 11.5.AST.B
1339474 - Patch 11.5.IEM.B
1339478 - Patch 11.5.FPT.A
1339480 - Patch 11.5.IES.B
1339484 - Patch 11.5.IEX.A
1339544 - Patch 11.5.AMV.B
1339577 - Patch 11.5.OKC.B
1339581 - Patch 11.5.OKS.B
1339582 - Patch 11.5.OKX.B
1339658 - Mini-pack 11.5.GL.A
1339668 - Patch 11.5.CSD.B
1339680 - Project Manufacturing 11.5.PJM.A Mini-Pack
1339726 - Patch 11.5.AS.A
1339729 - Patch 11.5.CSP.B
1339837 - Patch 11.5.RG.A
1339847 - Oracle Customer Care Release 11.5.2 minipack
1339886 - Patch 11.5.BIC.B
1340230 - Oracle CRM Gateway for Mobile Devices 11.5.2 minipack
1340244 - Patch 11.5.JTF.B
1340318 - Patch 11.5.IBE.B
1340371 - Patch 11.5.IBY.B
1341007 - PATCH 11i.AP.A
1341602 - Patch 11.5.IBA.B
1342175 - Patch 11i.PN.A
1342177 - Patch 11i.FII.A
1342181 - Patch 11i.XTR.A
1342447 - Patch 11i.XLA.A
1343092 - Patch 11i.BEN.A
1343114 - Patch 11i.DT.A
1343117 - Patch 11i.FF.A
1343144 - Patch 11i.GHR.A
1343148 - Patch 11i.HRI.A
1343155 - Patch 11i.HXT.A
1343442 - Patch 11i.IPA.A
1343447 - Patch 11i.PA.A
1343449 - Patchset 11.5.AK.A
1344139 - Patch 11i.OTA.A
1344140 - Patch 11i.PAY.A
1344328 - Patch 11i.PER.A
1344341 - Patch 11i.PQH.A
1344352 - Patch 11i.SSP.A
1344365 - Patch 11i.PQP.A
1344783 - Patch 11.5.AZ.A
1344802 - Patch 11i.FND.A
1345059 - Patch 11i.JE.A
1345067 - Patch 11i.JG.A
1345427 - Patch 11i.JL.A
1345428 - Patch 11i.JA.A
1345671 - Patch 11i.FA.A
1345691 - Patch 11i.CUA.A
1345781 - Patch 11i.CUN.B
1345789 - Patch 11i.XDP.B
1345792 - Patch 11i.XNP.B
1345796 - Patch 11i.XNC.A
1345813 - Patch 11i.XNS.B
1346047 - Patch 11i.MRP.A
1346054 - Patch 11i.MSD.A
1346146 - Patch 11i.PSP.A
1346739 - Patch 11i.HXC.A
1348277 - Patch 11i.ALR.A
1348543 - Patch 11i.BOM.B
1348546 - Patch 11i.ICX.A
1348548 - Patch 11i.WIP.A
1349836 - Patch 11i.ASO.B (11.5.2)
1350136 - Patch 11i.PO.A
1350331 - Patch 11i.POA.A
1351004 - This is the release 11.5.2 AD Minipack
1351279 - Patch 11i.IGW.A
1351671 - Patch 11i.PSB.B
1351729 - Patch 11i.PSA.A
1352783 - Patch 11i.EC.B
1353483 - Patch 11i.ENG.A
1354026 - Patch 11i.ISC.A
1354041 - Patch 11i.CRP.A
1354044 - Patch 11i.FLM.A
1354051 - Patch 11i.MSC.A
1354054 - Patch 11i.MSO.A
1354061 - Patch 11i.RHX.A
1354103 - Patch 11i.OE.A
1354128 - 11i.B Oracle Order Management Product (11i.ONT.B)
1354693 - Patch 11i.RLA.A
1354697 - Patch 11i.VEH.A
1354701 - Patch 11i.RLM.B
1354704 - Patch 11i.VEA.B
1355645 - Patch 11i.PMI.B
1355660 - Patch 11i.GMA.B
1357262 - Patch 11i.QP.B
1357277 - Patch 11i.WSM.A
1357281 - Patch 11i.WSH.B
1357312 - Patch 11i.INV.B
1357316 - Patch 11i.QA.A
1361180 - Patchset 11i.WPS.A
1375550 - PERFORMANCE ISSUE ON FNDFFUPG
1381968 - PKM1152: QP - DUPLICATE ACTIONS IN THE DB DRIVER
1382072 - CRM 11.5.2:OPS: PKM1152: INV - DUPLICATE ACTIONS IN THE DB DRIVER
1383329 - PKM1152.5: $SRS$.APXAAREP FLEXFIELD FAILS DURING UPGRADE FROM 11.0.3
1386971 - UPG1152: ORA-01403: NO DATA FOUND
1387492 - PKM1152.3: BEN - DUPLICATE ACTIONS IN THE DB DRIVER
1387839 - PKM1152.3: PAY - DUPLICATE ACTIONS IN THE DB DRIVER
1388492 - PKM1152.5: PO - DUPLICATE ACTIONS IN THE DB DRIVER
1389216 - Patch 11i.GMS.B
1390634 - PKM1152: FNDLANG.LDT FAILS DURING UPGRADE FROM 11.0.3
1391240 - PKM1152.6: WMS INVALID OBJECTS IN FRESH DATABASE
1392476 - Patch 11i.SHT.A
1392544 - AXXCMEXC: ERROR HANDLING ENHANCEMENT
1395737 - PKM1152:CRM 11.5.2:OPS: SQL SCRIPT FAILURE
1397442 - UPG1152.1:AUTOPATCH: PERFORMANCE ISSUE - AX57545.SQL RUNNING 3hrs
1398685 - Simulated bug abstract
1399166 - UPG1152:FNDLOAD FAILURE WHEN UPGRADING VISION FROM 11.5.1
1402145 - NEW VERSION OF PERSSHR.DRV REQUIRED FOR PER PATCHSET A
1404149 - PROBLEMS DISPLAYING NON AMERICAN CHARACTERS IN NETSCAPE
1405540 - PKM1152:WFMFLBJT.FMX DID NOT BUILD
1406029 - PKM1152.3: POACMME.SLT NEEDS TO BE RUN BEFORE POACRESP.LDT
1406850 - PKM1152.5: GMF - B1198173.SQL FAILS DURING ADPATCH
1406939 - UPG1152.3:AUTOUPGRADE FAILS RUNNING FNDLOAD FAILS FOR INVCASSN.LCT
1407139 - Removed contents of afhelp.slt; Fixed an iHelp BIDI bug
1407225 - PKM1152.3: SLT FILES LOCATED IN IMPORT SHOULD BE IN IMPORT/US
1407385 - PKM1152.3: AOL LCT FILES SHIPPED IN MSC APPL_TOP-ALSO USED IN PATCH
1408060 - MOVE JDBC111.ZIP TO ALL TIERS
1408082 - PKM1152.3: LDT FILES LOCATED IN IMPORT DIR, THEY SHOULD BE IN US DIR
1408161 - RENAME OWA_INIT PACKAGE TO OWA_CUSTOM FOR WEBDB2.5
1408565 - PKM1152: PSA SHOULD NOT OWN GMS.PL* AND PSAC.PL* IN PSA FILE DRIVERS
1409389 - FND_STATS INVALID STATUS
1410715 - PATCHES TO R11.5.2 FND PATCHSET (11I.FND.A)
1410721 - PKM1152.3: WFT FILES ARE LOCATED IN IMPORT DIR, SHOULD BE IN US DIR
1411854 - REMOVE POA/11.5.0/BIN IN POA FILE DRIVER
1412043 - PKM1152.3: INVALID FILE NAME B813148.MSG
1412365 - WRONG SUB-PHASING OF .JLT FILES
1412366 - WRONG SUB-PHASING OF .JLT FILES
1412368 - WRONG SUB-PHASING OF .JLT FILES
1412370 - WRONG SUB-PHASING OF .JLT FILES
1413236 - PKM1152.3 TRACKING PKM RAISED ISSUES AGAINST ADEVRT DB
1413514 - PKM1152.5:FNDFFVGN CALLS IN 11.5.2 FAILS IN APPS_MRC DATABASE
1413660 - WFLOAD FAILS WITH ORA-1 ON NLS 11.5.1 UPGRADE TO 11.5.2
1414192 - PKM1152.3 CHANGES TO STUB OUT hrbeexpr.pk*
1414681 - DUMMY BUG TO GET UPGRADE FIXES INTO 11.5.2
1416162 - PKM1152.5: MSC - DEPENDENCY ISSUES DURING UPGRADE FROM 11.5.1
1416168 - PKM1152.5: PER - DEPENDENCY ISSUES DURING UPGRADE FROM 11.5.1
1416176 - PKM1152.5: WSM - DEPENDENCY ISSUES DURING UPGRADE FROM 11.5.1
1416180 - PKM1152.5: AZ - DEPENDENCY ISSUES DURING UPGRADE FROM 11.5.1
1417392 - SYNCHRONZE AR MLS TABLE HZ_TIMEZONES_TL
1419960 - PKM1152.5: PQH MLS TABLES NOT BEING SYNC'ED IN PQHNLINS.SQL FILE
1420477 - PKM1152.5: OEFLEX.LDT MISSING IN ADMIN TIER UPGRADE
1420525 - PKM1152.5: INV & WMS FAILURE INCORRECT ARGS TO 'LOAD_ROW'
1420533 - PKM1152.5: FAILURE USING COMBINED DB DRIVER ON 11.5.0 DATABASE
1420584 - PKM1152: ICXNLADD.SQL where clause bind variable not prefixed cor
1420734 - UPG1152.5:INVALID OBJECT (WMS)
1423452 - UPG1152:FNDLOAD FAILURE WHEN UPGRADE VISION FROM 11.5.1
1430301 - PKM1152.6: AP - APXSEQXS.PLS FAILS DURING UPGRADE FROM 11.0.3
1431418 - FNDLOAD FAILURE WHEN UPGRADING VISION FROM 11.5.1
1432790 - PKM1152.6: AK - AKDELLKP.SQL FAILS DURING UPGRADE FROM 11.0.3
1449449 - PKM1152.7: AMV - AMVICCN.SQL FAILS (Extra comma after Index Name)
1449644 - ADD AD FIXES TO REL 11.5.2 MAINTENANCE PACK NOT IN AD 11.5.2 MINI
1455789 - 11.5.2: CS,CSC,IBE,IEB,MWA,QA *.DEP FILES NOT IN FND 11.5.2 SUB FILE
1462755 - R1152: NEED SCRIPT TO RESIZE OR ADD TABLESPACES FOR UPGRADES
" > ${OUT_DIR}/1152_Base.txt
echo "
1301609 - CRM 11.5.1 SCROLL BARS ON RO'S AND RJ'S SEARCH SCREENS LOSE POSITIONS
1306413 - CRM FAMILY PACK 1
1335577 - Patch 11i.FV.A
1338967 - Patch 11.5.FRM.A
1340371 - Patch 11.5.IBY.B
1343092 - Patch 11i.BEN.A
1343114 - Patch 11i.DT.A
1343117 - Patch 11i.FF.A
1343144 - Patch 11i.GHR.A
1343148 - Patch 11i.HRI.A
1343155 - Patch 11i.HXT.A
1344139 - Patch 11i.OTA.A
1344140 - Patch 11i.PAY.A
1344328 - Patch 11i.PER.A
1344341 - Patch 11i.PQH.A
1344352 - Patch 11i.SSP.A
1344365 - Patch 11i.PQP.A
1344783 - Patch 11.5.AZ.A
1346739 - Patch 11i.HXC.A
1350331 - Patch 11i.POA.A
1350478 - UNABLE TO LOG INTO TEST115
1352783 - Patch 11i.EC.B
1355645 - Patch 11i.PMI.B
1356868 - Patch 11i.AX.B
1364051 - IMARKETING 11.5.2 ROLLUP PATCH
1380728 - PATCH 11i.AP.B
1381844 - CRM 11.5.2:OPS: SQL SCRIPT FAILURE (IEB)
1383329 - PKM1152.5: $SRS$.APXAAREP FLEXFIELD FAILS DURING UPGRADE FROM 11.0.3
1387554 - CRM 11.5.2:OPS: INVALID OBJECTS (CCT)
1392476 - Patch 11i.SHT.A
1393884 - Patch 11i.AR.B
1396022 - UPGRADE TO 11.5.2.DROP2 FAILS AT IEOSVRDL.SQL
1397357 - ROLLUP PATCH2 FOR ISTORE
1400635 - Patch 11i.GMA.C
1403768 - CALL CENTER ROLLUP PATCH-2
1405835 - BUG FOR CONSOLIDATED ARU
1406220 - INV PATCH 1357312 ERR RELINK WICDOL EXIT CODE 127 ACC NOT FOUND HP-UX
1407036 - ASO Roll-up Patch 2
1408597 - Patch 11i.PA.B
1411854 - REMOVE POA/11.5.0/BIN IN POA FILE DRIVER
1413300 - V1151: ACTUAL VALUES FOR HRI PERFORMANCE MEASURES NOT POSTING ON PHP
1421319 - 11i.JL.B patchset
1421320 - Patch 11i.JE.B
1421322 - Patch 11i.JG.B
1421326 - Patch 11i.JA.B
1421641 - PATCH 11i.CE.B
1421650 - Patch 11i.FII.B
1421657 - Patch 11i.PN.B
1421670 - Patch 11i.XLA.B
1421673 - Patch 11i.XTR.B
1422989 - Patch 11i.CUA.B
1423378 - Mini-pack 11i.GL.B
1423381 - Patch 11i.RG.B
1425942 - Patch 11i.PO.B
1425974 - Patch 11i.ONT.C
1426000 - Patch 11i.OE.B
1426003 - Patch 11i.RLM.C
1426005 - Patch 11i.VEA.C
1426045 - Patch 11i.ICX.B
1426159 - Patch 11i.WSM.B
1426167 - Patch 11i.MSC.B
1426170 - Patch 11i.FLM.B
1426172 - Patch 11i.MRP.B
1426173 - Patch 11i.MSO.B
1426176 - Patch 11i.MSD.B
1426184 - Patch 11i.BOM.C
1426193 - Project Manufacturing 11i.PJM.B Mini-Pack
1426196 - PKM1153.1: Duplicate calls from the FP1 db driver
1426205 - Patch 11i.QA.B
1426212 - Patch 11i.INV.C
1426213 - Patch 11i.ENG.B
1426215 - Patch 11i.WSH.C
1426225 - Patch 11i.WPS.B
1426235 - Patch 11i.WMS.A
1426249 - Patch 11i.IPA.B
1426250 - Patch 11i.CZ.C
1426271 - Patch 11i.QP.C
1426291 - Patch 11i.WIP.B
1428045 - Patch 11i.MWA.B
1430301 - PKM1152.6: AP - APXSEQXS.PLS FAILS DURING UPGRADE FROM 11.0.3
1448977 - 11.5.3 vision fixes
1449654 - Patch 11i.GMS.C
1449665 - Patch 11i.IGW.B
1449673 - Patch 11i.PSB.C
1449709 - Patch 11i.PSP.B
1454466 - Patch 11i.FND.B
1454857 - 11.5.3 COMMUNICATIONS PRODUCT FAMILY - RUP
1455027 - Patch 11i.AK.B
1455250 - Patch 11i.PSA.B
1455252 - Patchset 11i.BIS.B
1455924 - CONSOLIDATION PATCH FOR 11.5.3 ADDITIONS TO PATCHSET A FOR PAYROLL
1456037 - PER PATCH FOR RELEASE 11.5.3
1457397 - CALL CENTER INTELLIGENCE ARU FOR 11.5.3 PATCHSET H
1457440 - Marketing Intelligence - BIM ARU FOR 11.5.3 PATCHSET H
1457712 - Sales Intelligence - BIL ARU FOR 11.5.3 PATCHSET H
1457950 - Customer Intelligence - BIC ARU FOR 11.5.3 PATCHSET H
1459186 - Patch 11i.ALR.B
1460338 - RELEASE: POTENTIAL UTF8 TABLE REGISTRATION LDT ISSUES
1460403 - OM and OTA integration patch
1463080 - SALES AND MARKETING PATCHSET-H
1469129 - V1153CRM - MERGED PATCH REQUIRED FOR BUG 1455564 AND BUG 1458072
1474395 - RELEASE: dbupg<prod>.txt files for Financials,Project,Global and SEM
1474928 - JTF RUP3 for 11.5.3
1475047 - CRM 11.5.3: SERVICE CONTRIBUTION TO 11.5.3-COPY SERVICE RUP2 10/20/00
1475226 - SALES AND MARKETING PATCHSET-H1
1475253 - MINI PATCH ON TOP OF ASO ROLL-UP PATCH 2
1475426 - AD Release 11.5.3 MiniPack (Patch 11i.AD.C)
1475524 - TO RESOLVE LANGCODE VARIABLE CONFLICT WITH JTF RUP3 PATCH
1476238 - PKM 1153: DATABASE DRIVER HAS INCOMPATIBLE RELEASE.
1476514 - JAVASCRIPT ERROR RETURN WHEN CREATE NEW EXPENSE REPORT IS CALLED
1477136 - Patch 11i.ASL.A
1477185 - PKM1153: ERROR IN COMPILE OF CAMPAIGNSELECTORBASEDSHCRT.JAVA
1477193 - AMS FIXES FOR JAVA COMPILATION ERRORS IN PKM ENVIRONMENT
1477264 - CRM 11.5.3:OPS:JAVA BUILD FAILURE FOR IEO RUP (11.5.3)
1477394 - 11i AKLOAD PRE-REQ PATCH (CHANGES #8)
1477547 - PKM1153: INVISMMX.RDF FAILED TO BUILD
1478499 - PKM1153.1: FAILURES IN PROD.TXT AND FILE.DRV FILES
1478744 - PV BUG : ARU CONTAINING SOME STUB FILES-NEEDED FOR AUTOPATCH PROCESS
1478760 - BUG FOR PKM REQUIREMENTS
1478794 - PUT AN OBSOLETED FMX FILE BACK TO CNFILE.DRV
1478853 - PKM1153.1: CNCOL.ODF FAILS DURING UPGRADE FROM 11.5.2
1479783 - ARU for bug 1479783-modify position of .rdf and .ogd files in driver
1480200 - PRE-REQ ARU FOR ARU # 345437
1480734 - CRM11.5.3: FILE DRIVER CHANGES
1480761 - PKM1153.1: XDP - XDPSCRSP.LDT FAILS DURING UPGRADE
1480857 - PKM1153.1: BIL - BILREV.JLT FAILS DURING UPGRADE
1480900 - PKM1153.1: BIX - BIXRESP.LDT FAILS DURING UPGRADE
1480958 - PKM1153.1: ASG - ASGPUB.SQL FAILS DURING UPGRADE
1481050 - PKM1153.1: CN - MISSING FILES IN 11.5.3
1481342 - PKM1153.1: AK - DUPLICATE DB DRIVER ACTIONS
1481385 - PKM1153.1: CRM-JTF-CS - DUPLICATE DB DRIVER ACTIONS
1481423 - PKM1153.1: CRM-AMS - DUPLICATE DB DRIVER ACTIONS.
1481432 - PKM1153.1: CUN MISSING FILES LISTED IN THE FILE DRIVER
1481441 - PKM1153.1: CRM-JTF - MISSING FILES LISTED IN THE FILE DRIVER
1481449 - PKM1153.1: AST MISSING FILES LISTED IN THE FILE DRIVER
1481455 - PKM1153.1: MISSING FILES LISTED IN THE FILE DRIVER
1481471 - PKM1153.1: CRM-ASO -PL/SQL LIBRARY FOR FORMS FAILS TO BUILD IN 11.5.3
1481474 - PKM1153.1: XNCORDWK.FMX FAILS TO GENERATE IN 11.5.3
1481486 - PKM1153.1: JTF REPORTS PLL JTFBCHBN FAILS TO GENERATE
1481556 - PKM1153.1: INVALID OBJECTS IN 11.5.3
1481583 - PKM1153.1: BEN - DUPLICATE DB DRIVER ACTIONS
1481604 - PKM1153_1: DUPLICATE DB DRIVER ACTIONS
1481642 - PKM1153.1: PAY - DUPLICATE DB DRIVER ACTIONS
1481644 - PKM1153.1: HR - DUPLICATE DB DRIVER ACTIONS
1482261 - PKM1153.1: MISSING FILES LISTED IN THE FILE DRIVER
1482344 - Fix for PKM1153.1: OKS - INVALID OBJECTS IN 11.5.3
1482346 - PKM1153.1: XNC - INVALID OBJECTS IN 11.5.3
1482381 - PKM1153: TCA FILES REQUIRED FOR CRM IN 11.5.3
1482487 - PKM1153_1: DUPLICATE DB DRIVER ACTIONS
1482608 - PKM1153.1: INVALID SYNTAX IN THE 11.5.3 DB DRIVER
1482615 - ARU to correct syntax in driver d1457950.drv
1482618 - PKM1153.1:INCORRECT SYNTAX IN THE DB DRIVER
1482626 - PKM1153.1:INCORRECT SYNTAX IN 11.5.3 DB DRIVER
1482908 - CCFP1QA EMAIL DESKTOP PREVIEW,MARKED MESSAGE,GET JAVA.LANG.EXCEPTION
1483148 - PKM1153.1: INVALID OBJECTS IN 11.5.3
1484104 - 11.5.3: PA_PROJECT_PARTIES.GRANT_ID SHOULD BE NUMBER INSTEAD RAW(16)
1484172 - IBUCONTEXT.GETORGCONTACTS RETURN WRONG RESULT/SOMETIMES THROWS EXCEP
1484280 - SCRIPT TO CHECK IF REPLICATION OBJECTS EXIST OR NOT
1485505 - PKM1153.1: CRM-AMS - DUPLICATE DB DRIVER ACTIONS (REF:1481423).
1485685 - BUG RAISED TO RELEASE THE HRWRKFLOW.SQL AS PART OF 11.5.3
1485972 - PKM1153.1: CS - DUPLICATE DB DRIVER ACTIONS (CALLS TO AK)
1486218 - PKM1153.1: OZFNLADD.SQL FAILS DURING UPGRADE TO 11.5.3
1486568 - PKM1153.1: JTF - DUPLICATE DB DRIVER ACTIONS (CALLS TO AK)
1486594 - PKM1153.1:AMV-DUPLICATE DB DRIVER ACTIONS(AK)ADDED PATCH REQUIRED
1488237 - PKM1153.2:ASO - INCORRECT SYNTAX IN THE 11.5.3 DB DRIVER
1488611 - TRACKING DELIVERY OF 11.5.0 TO 11.5.1 DRIVERS
1489226 - DB DRIVER FIX - CALLS IN 1151.DRV BUT NOT IN 11.5.2
1489449 - This is the database upgrading driver for ICX from 11.5.2 to 11.5.3
1489450 - USED FOR DBUPGCZ.TXT DELIEVERY
1489464 - Distribution Family's products dbupg<prod>.txt for PKM 11.5.3
1489473 - DBUPGENG.TXT DEVELIERY
1489806 - PKM1153.2:AST - FILES NOT LISTED IN THE FILE DRIVER
1489809 - PKM1153.2:JTF - DB DRIVER CALLS UPLOAD_PARTIAL INSTEAD OF UPLOAD
1489811 - PKM1153.2:JTF - NO DATA FOUND
1489823 - PKM1153.2:AS - DUPLICATE DB DRIVER ACTIONS
1489825 - PKM1153.2:ASO - DUPLICATE DB DRIVER ACTIONS
1489827 - PKM1153.2:AZ - DUPLICATE DB DRIVER ACTIONS
1489942 - PKM1153.2:IBA - DUPLICATE DB DRIVER ACTIONS
1489946 - PKM1153.2:IBE - DUPLICATE DB DRIVER ACTIONS
1489947 - PKM1153.2:IBU - DUPLICATE DB DRIVER ACTIONS
1489953 - PKM1153.2:IEM - DUPLICATE DB DRIVER ACTIONS
1489977 - PKM1153.2:IEO/IEU/CCT - DUPLICATE DB DRIVER ACTIONS
1489991 - PKM1153.2:JTF - DUPLICATE DB DRIVER ACTIONS.
1489997 - PKM1153.3: MSC - DUPLICATE DB DRIVER ACTIONS
1489999 - #PKM1153.2:OKC - DUPLICATE DB DRIVER ACTIONS
1490002 - PKM1153.2:OTA - DUPLICATE DB DRIVER ACTIONS
1490054 - PKM1153.2:PAY - DUPLICATE CALLS IN THE 11.5.3 DB DRIVER
1490062 - PKM1153.2:PER - DUPLICATE DB DRIVER ACTIONS
1490626 - PKM1153.2:MRC - AR_REV_REC_QT FAILS DURING UPGRADE OF MRC SCHEMA
1490956 - PKM1153.2: AMS - DUPLICATE DB DRIVER ACTIONS
1491006 - PKM1153.2: PQH - DUPLICATE DB DRIVER ACTIONS
1491255 - PKM1153.2: BIL - BILREV.JLT AND BILPROD.JLT FAILS DURING UPGRADE
1492412 - DRIVER FOR UPGRADES FROM 11.5.0 TO 11.5.1
1492425 - FILE TO UPGRADE FROM 11.5.0 TO 11.5.1
1492492 - DBUPGEC.TXT TO UPGRADE FROM 11.5.0 TO 11.5.1
1492498 - DBUPGECX.TXT TO UPGRADE FROM 11.5.0 TO 11.5.1
1492559 - DBUPGALR.TXT TO UPGRADE ALR FROM 11.5.0 TO 11.5.1
1492635 - PKM1153.2: DUPLICATE CALLS IN DB DRIVER (1306413)
1492716 - PKM 11.5.3.DROP2 :DRIVER FOR 11.5.0 TO 11.5.1 FOR OKC/OKS
1492792 - PKM1153.2: CN - FORM CNSBPS.FMX FAILS TO GENERATE
1492824 - PKM1153.2: AR - DUPLICATE DB DRIVER ACTIONS
1492827 - PKM1153.2: PN - DUPLICATE DB DRIVER ACTIONS
1492856 - CRM 11.5.3:OPS:STUB DRIVERS NEEDED FOR 11.5.0 -> 11.5.1 UPGRADE
1493421 - SAC1152: UPGRADING REL 11.0.3->11.5.2 FNDLOAD FAIL FIND APCONCPG.LDT
1493423 - RELEASE: AP - DUPLICATE DB DRIVER ACTIONS WITH AOL
1493431 - PKM1153.2: AR - DUPLICATE DB DRIVER ACTIONS
1493442 - RELEASE: MODIFY DATABASE DRIVER TO MATCH AOL PHASING
1493504 - FII: 11.5.3 AOL DATABASE DRIVER CHANGES -- CALL TO AFDICT.LDT
1493507 - PN: 11.5.3 AOL DATABASE DRIVER CHANGES -- CALL TO AFDICT.LDT
1493511 - XLA: 11.5.3 AOL DATABASE DRIVER CHANGES -- CALL TO AFDICT.LDT
1493515 - XTR: 11.5.3 AOL DATABASE DRIVER CHANGES -- CALL TO AFDICT.LDT
1493573 - RELEASE: CE - DUPLICATE DB DRIVER ACTIONS WITH AOL
1493596 - CHANGE PATCHSET 'B' DRIVER TO CORRECT SUB-PHASED FOR FND LDT FILES
1493634 - PKM1153.2: CUN - MISSING FILES LISTED IN THE FILE DRIVER
1493978 - PKM1153.2: ASF - MISSING FILES LISTED IN THE FILE DRIVER
1493995 - DUMMY BUG FOR PLANNING CONSOLIDATED DBUPG<PROD>.TXT
1494046 - DUMMY BUG FOR DBUPG<MFG_FAMILY_PROD>.TXT
1494241 - PKM1153.2: JTF - MISSING FILES(jtffmengsamp.sh)LISTED IN FILE DRIVER
1495146 - PKM1153.2: AMV - MISSING 11.5.2 FILES
1495163 - PKM1153.2: ASG - MISSING 11.5.2 FILES
1495168 - PKM1153.2: AST - MISSING 11.5.2 FILES
1495179 - PATCHSET FOR MISSING FILE FROM BUG 1495179
1495189 - PKM1153.2: BIM - MISSING 11.5.2 FILES
1495197 - PKM1153.2: CN - MISSING 11.5.2 FILES
1495202 - PKM1153.2: CS - MISSING 11.5.2 FILES
1495208 - PKM1153.2: CSC - MISSING 11.5.2 FILES
1495215 - PKM1153.2: CSP - MISSING 11.5.2 FILES
1495238 - IBE - MISSING 11.5.2 FILES
1495241 - PKM1153.2: IBU - MISSING 11.5.2 FILES
1495254 - PKM1153.2: JTF - MISSING 11.5.2 FILES
1495263 - PKM1153.2: OKS - MISSING 11.5.2 FILES
1495268 - PKM1153.2: OKX - MISSING 11.5.2 FILES
1495305 - PKM1153.2: XDP - MISSING 11.5.2 FILES
1495310 - PKM1153.2: XNC - MISSING 11.5.2 FILES
1495317 - PKM1153.2: XNP - MISSING 11.5.2 FILES
1495328 - XNS - 11.5.2 files not in 11.5.3 patch
1495545 - PKM1153.2 CS - UPGRADE FROM 1151 TO 1153 FAILS WITH LDT'S
1495552 - PKM1153.2: IBU - UPGRADE FROM 1151 TO 1153 FAILS WITH LDT'S
1495569 - Fixed bug 1495569 by not pre-fetching System AppsEnvironmentStore
1495660 - PKM1153.2: CCT - DUPLICATE DB DRIVER ACTIONS (FND CALLS)
1495671 - PKM1153.2: JTF - DUPLICATE DB DRIVER ACTIONS (FND CALLS)
1495676 - PKM1153.2:JTF - DUPLICATE DB DRIVER ACTIONS (AOL CALLS - FP1)
1495709 - PKM1153.2:CS - DUPLICATE DB DRIVER ACTIONS (FND CALLS)
1495717 - PKM1153.2:IBA - DUPLICATE DB DRIVER ACTIONS (FND CALLS)
1495725 - PKM1153.2:IBE - DUPLICATE DB DRIVER ACTIONS (FND CALLS)
1495820 - PKM1153.2: AMS - MISSING 11.5.2 FILES
1497100 - MODIFY THE DB DRIVER FOR BUG 1489988
1497530 - PKM1153.2:PV - OPSNLS: ISSUES WITH - PVNLADD.SQL
1497881 - PKM1153.2: IEX - MISSING 11.5.2 FILES
1497883 - PKM1153.2: FPT - MISSING 11.5.2 FILES
1497910 - PKM1153.2: AS - MISSING 11.5.2 FILES
1497943 - PKM1153.2: BIL - MISSING 11.5.2 FILES
1498459 - MERGED DRIVER CORRECTIONS FOR D1480946.DRV
1500306 - HZ_ORG_CONTACTS : DEPT, RANK FIELDS DO NOT HAVE LOOKUP VALUES
1500432 - PKM1153.3: AST - FILE IN PATCH NOT LISTED IN THE FILE DRIVER
1501273 - PKM1153.3:IEX- FIX FOR 1497589 REQUIRED IN 11.5.3 (XLATION ISSUE)
1501306 - FPT: THIS BUG REPLACES BUG 1500455
1501333 - PKM1153.3: AS - FILES INCLUDED IN THE PATCH NOT LISTED IN FILE DRIVER
1501627 - PKM1153.3: IEM - DUPLICATE DB DRIVER ACTIONS
1501745 - PKM1153.3: DUPLICATE CALL IN DB DRIVER
1501749 - PKM1153.3: JG - DUPLICATE DB DRIVER ACTIONS
1501758 - PKM1153.3: GMA/PO - DUPLICATE DB DRIVER ACTIONS
1501862 - PKM1153.3: FPT - MISSING FPTJAR.DEP AND FPTIES.JAR
1501870 - BUMMY BUG FOR 1489997
1501871 - UPG1152 FIX FOR CSSEDTT.LDT/LCT FOR OPS
1503641 - PKM1153.3: FPT - MISSING FILES IN 11.5.3 APPL_TOP
1503685 - PKM1153.3: IEX - MISSING FILE IEXINDLS.FMB
1503730 - CUN - MISSING FILES LISTED IN THE FILE DRIVER
1503777 - CRM UPG11.5.2:NLS: ERROR IN SCRIPT FOR MIGRATING TO MLS
1503976 - Patch 11i.SHT.B
1504318 - USER HOOK PRE-PROCESSOR SUPPORT DEFERRED COMPILATION
1504905 - PKM1153.3: JA - DUPLICATE DB DRIVER ACTIONS
1508353 - PKM1153.3: PO - 10.7 UPGRADE FAILS DUE TO POATT04T.SQL, POATT04E.SQL
1508581 - AR - UPDATE DB DRIVER CALLS FOR AD BUG 1324702
1508598 - PN - UPDATE DB DRIVER CALLS FOR AD BUG 1324702
1509000 - FIX FOR DBUPGENG.TXT
1510212 - DUMMY BUG FOR DBUPGWSM.TXT
1510749 - PKM1153.3:AS - FNDLOAD FAILURES ON RE-RUNNING 1153 DB DRIVER
1510894 - PKM1153.3:CST FLEX FIELD COMPILATION FAILS IN UPGRADED 1153 DB
1512391 - PKM1153.3: AMV - 1150 TO 1153 UPGRADE FAILURES
1512393 - PKM1153.3: CCT - 1150 TO 1153 UPGRADE FAILURES
1512395 - PKM1153.3: CN - 1150 TO 1153 UPGRADE FAILURES
1512399 - PKM1153.3: CSC - 1150 TO 1153 UPGRADE FAILURES
1512404 - PKM1153.3: CSF - 1150 TO 1153 UPGRADE FAILURES
1512406 - PKM1153.3: CSP - 1150 TO 1153 UPGRADE FAILURES
1512412 - PKM1153.3: CSR - 1150 TO 1153 UPGRADE FAILURES
1512418 - PKM1153.3: JTF - 1150 TO 1153 UPGRADE FAILURES
1512420 - PKM1153.3: OKC - 1150 TO 1153 UPGRADE FAILURES
1512423 - PKM1153.3: OKS - 1150 TO 1153 UPGRADE FAILURES
1512427 - PKM1153.3: CZ - 1150 TO 1153 UPGRADE FAILURES
1516735 - RELEASE: AP - 11.5.3 DRIVER CALLS FOR AK PRE-REQ
1516919 - AR - UPDATE DB DRIVER CALLS FOR AK
1517051 - BUG# NEEDED TO CREATE ARU FIX FOR AK 1313614 FOR D1475047.DRV DRIVER
1517197 - PKM115.3 : PER BUG 1499832 IS NOT INCLUDED IN THE 11.5.3,
1517259 - RELEASE: MODIFY DATABASE DRIVER TO MATCH AOL SET 0 STANDARD
1517410 - PKM1153.3 ASG-INVALID OBJECT IN 11.5.3
1517459 - BUG FOR PS CANDIDATE CHECKIN DRIVER FOR 11.5.3 (PATCHSET H)
1517692 - PKM1153.3: AMS - 1150 TO 1153 FAILURES
1517695 - PKM1153.3: AMV - 1150 TO 1153 FAILURES
1517696 - PKM1153.3: AR - 1150 TO 1153 FAILURES
1517697 - PKM1153.3: BIC - 1150 TO 1153 FAILURES
1517698 - BIX Call Center Intelligence
1517701 - PKM1153.3: CCT - 1150 TO 1153 FAILURES
1517702 - PKM1153.3: CN - 1150 TO 1153 FAILURES
1517703 - PKM1153.3: CSC - 1150 TO 1153 FAILURES
1517705 - PKM1153.3: CSD - 1150 TO 1153 FAILURES
1517708 - PKM1153.3: CSF - 1150 TO 1153 FAILURES
1517712 - PKM1153.3: CS - 1150 TO 1153 FAILURES
1517717 - PKM1153.3: FPT - 1150 TO 1153 FAILURES
1517723 - PKM1153.3: IEU - 1150 TO 1153 FAILURES
1517724 - PKM1153.3: IEX - 1150 TO 1153 FAILURES
1517728 - PKM1153.3: JTF - 1150 TO 1153 FAILURES
1517731 - PKM1153.3: MSD - 1150 TO 1153 FAILURES
1517733 - PKM1153.3: OKC - 1150 TO 1153 FAILURES
1517734 - PKM1153.3: PA - 1150 TO 1153 FAILURES
1517737 - PKM1153.3: PQH - 1150 TO 1153 FAILURES
1517738 - Updated dbupgqp.txt : change UPLOAD to UPLOAD_PARTIAL
1518408 - PKM1153.3: HR - 1150 TO 1153 FAILURES
1518732 - PKM1153: FND PRE-REQ CORRECTION IN D1474928.DRV
1518875 - PKM1153.3: AS-INVALID OBJECT
1518941 - PKM1153.3: CN-INVALID OBJECT
1518963 - PKM1153.3: OKC-INVALID OBJECT
1519020 - PKM1153.3: AR - 1150 TO 1153 FAILURES
1519021 - BIM Marketing Intelligence
1519301 - PKM1153.3 CHANGES NEEDED ON DRIVER D1475047.DRV
1519305 - PKM1153 CHANGES FOR ON DATABASE DRIVER D1475047.DRV
1519313 - PKM1153 CHANGES NEEDED ON DRIVER D1407036.DRV
1519325 - PKM1153 CHANGES NEEDED ON DATABASE DRIVER D1407036.DRV
1519330 - PKM1153 DATABASE DRIVER CHANGES NEEDED FO D1407036.DRV
1519353 - PKM1153.3:AMV-D1405835.DRV SHOULD HAVE SECTION FOR 1313614
1519369 - PKM1153.3:IBE-D1405835.DRV SHOULD HAVE SECTION FOR 1313614
1520477 - PKM1153.3: ASF-INVALID OBJECT
1520670 - PKM1153.3: CS - CHANGES TO D1475047.DRV
1520746 - Patch 11i.FA.B
1521170 - CRM11.5.1:ECOM43 CLICKING CHECK INVENTORY BUTTON LEADS TO JSP ERROR
1521391 - PKM1153.3: (JBIS) JTFBISCF.LDT CAUSING LOADER ERRORS
1521714 - PKM1153.3: PQH - 1150 TO 1153 FAILURES
1523057 - PKM1153.3-FP1 DB DRIVER CHANGES
1523289 - VIS1153CRM:OMO/FULFILLMENT: CANNOT UPLOAD MASTER DOCUMENTS
1524274 - 11i AKLOAD PRE-REQ PATCH (CHANGES #9)
1524596 - PKM1153.3: GMI-INVALID OBJECT
1524619 - PKM1153.3: GMI-INVALID OBJECT
1524692 - CRM 11.5.3: MODIFY THE BIXFILE.DRV. IN 1457440
1524698 - BIM Marketing Intelligence
1524793 - PKM1153.3: 7 GRAPHICS FILES FAIL GENERATION VIA ADADMIN. BILPH011..
1525010 - BUG # NEEDED TO PROVIDE ARU FOR BUG 1519016
1525233 - PKM1153.3NLS: FAILING DURING UPGRADE TO 11.5.3 AT FILE ICXSRC.LDT
1525759 - PKM1153.3 NLS: CSKBCTXP.SQL FAILS DURING UPGRADE TO 11.5.3
1526182 - INCLUDE CHANGES TO SUPPORT JTF RUP 3
1527355 - PKM 1153: DATABASE DRIVER HAS INCOMPATIBLE RELEASE.
1528399 - FINAL 11.5.3 APPSWEB.CFG
1529369 - VIS1153:OPM CANNOT OPEN THE INVENTORY QUANTITY FORM
1529433 - VIS1153:OM:NOTHING IN LOV FOR ORDEREDITEMS ON ORDER LINE AFTER UPG..
1529607 - UNABLE TO SAVE A DEBRIEF LINE IN FIELD SERVICE REPORT
1529925 - ARU for bug 1529925 - cleanup scripts for menus & reports for 11.5.3.
1529927 - VIS1153 PURCH: MISSING SET UP SUB MENU FOR E-CATALOG ADMIN
1530264 - VIS1153CRM:<SCRIPTING>:BLANK SCREEN WHEN ATTEMPTING TO EXECUTE SCRIPT
1531453 - INFORMATION TEMPLATE CAN NOT BE SEEN IN CORE APP FROM SPP5.0
1531826 - Static generation of ATTRIBUTE MAPPING (BUILD_CONTEXTS)
1531844 - MISSING MENU OPTIONS AFTER APPLYING PATCHSET B PROJECTS 11I(11.5.1)
1531920 - Fix Quick Find Search in the menu bar for iSupport
1531968 - VIS1153 IPROC CANNOT START WORKFLOW GENERATOR FOR ACCOUNT
1532006 - PKM1153.3: UTF8 CONVERSION ISSUES AMS PL/SQL CODE AMS_SOURCECODE_PVT
1532130 - PKM1153.3: UTF8 CONVERSION FOR CE SEEDDATA FND_FLEX_VALIDATION_TABLES
1535655 - PKM1153.3: PA PRODUCT, WFT FILES ARE LOCATED IN IMPORT DIR, US DIR
1537380 - TCA: TCA FILES REQUIRED FOR CRM IN 11.5.3
1538244 - DELIVERY OF CORRECT PYVENDOR.ZIP FOR 11.5.3
1539130 - VIS1153CRM: HTML GENERATED BY POSTING CAUSES ISTORE HOME PAGE TO ...
1540310 - PKM1153.4: LIBCZ.SO FAILS TO RELINK
1540525 - PKM1153.3:AS - DIFFERING
1540654 - Errors WHEN CREATING CONTRACT FROM QUOTE
1540870 - PKM1153.3:CS - DIFFERING
1540876 - PKM1153.3:CS - DIFFERING
1540896 - PKM1153.3:IEO CHANGES REQUIRED IN D1403768.DRV
1541558 - BUG FIX FOR BELGIAN LOCALIZATION
1541754 - ARHCPREL -CANNOT INSERT NULL INTO HZ_PARTY_RELATIONSHIPS.PARTY_...
1541767 - PKM11.5.3 : FIXES ON DATABASE DRIVER D1475047.DRV
1541941 - UNABLE TO SEND MESSAGE, ORA-24039 QUEUE XNP_OUT_MSG_Q NOT MULTI ...
1542006 - P1 BUG BY PKM RELATED TO PHASE IN PMI 11.5.3 DRIVER
1542077 - FOR PKM'S 11.5.3 ENVIRONMENT, INSERTING FROM KNOWLEDGE BASE TAB...
1542244 - CLICKING ON GO BUTTON IN CREATE RETURN IS NOT WORKING
1542384 - iSupport: Fix Quick Find Search and permission error, View ...
1542665 - NEED DEMO IMAGE FILES IN 11.5.3
1542751 - CRM 11.5.1 : ASO_I_ORDER_LINES_V IS RETURNING DUPLICATE ROWS
1544031 - 11.5.3 MAINTENANCE PACK ONLINE HELP
1544301 - PKM1153.3:CS - DIFFERING
1544362 - PKM1153.3:IEO - DIFFERING
1544371 - PKM1153.3:AMV - DIFFERING
1544400 - PKM1153.3:CN - GRAPHICS FILES(OGD) LISTED IN WRONG TIER IN CNFILE.DRV
1544666 - BUG FIX FOR THE PKM BUG - DIFFERING "BEGIN BUG-END BUG" CONTENTS
1545868 - V1151CRM:REPLACEMENT PATCH REQUIRE BACKGROUND COLOR FOR TABS MENU...
1545922 - JBIS: PATCH FOR THE ADS (DEMO)
1545952 - PKM1153.3:JTF-AR MIGRATION SCRIPT STUB OUT
1546001 - PKM1153.3:IBE INCORRECT DRIVER SYNTAX-D1397357.DRV-LOWERCASE-FNDLOAD
1546216 - PKM1153.4: WMS - FORM WMSSTSOF.FMX FAILS TO GENERATE
1546332 - BUG FOR CREATING PKM ARU WITHOUT DRIVER FILE TO REPLACE OLD ONE
1530013 - NOT SURE whats here
1548428 - PKM115.3 RAISED TO RELEASE PYUSNGB1.SQL, PYUSNGB2.SQL AND 'ZEROED'..
1548850 - JBIS 11.5.3: Added missing files for wireless/bibeans in the driver.
1549028 - PKM1153.4: INV DESCRIPTIVE FLEXFIELD $SRS$.INCFIF COMPILATION FAILS
1549062 - PKM1153.4: AMV - 11.5.3 DB DRIVER FAILURE
1549074 - PKM1153.4: CS - 11.5.3 DB DRIVER FAILURE
1549227 - PKM1153.4: IEX -- IEXINDLS.FMX FAILS TO GENERATE
1549229 - PKM1153.4: HR - 11.5.3 UPGRADE SQL ERRORS
1549456 - UPG1153D3:PEUPGJOB.SQL FAILS WITH ORA-02296: CANNOT ENABLE (HR.)-NULL
1550453 - PKM1153.4: CS - 11.5.3 DB DRIVER FAILURE - BUG TO CREATE CHECKIN
1550461 - PKM1153.4:AMV: JOINED LINES IN D1397357.DRV
1550788 - PKM1153.2:CRM-OKS - INVALID OBJECTS IN 11.5.3
1551231 - PKM1153.4: MSC INCORRECT SYNTAX IN THE DBUPGMSC.TXT
1551235 - DUMMY BUG FOR DBUPGOPI.TXT
1552061 - DBUPGVEH.TXT ARU Check-in
1552229 - TRACKING BUG FOR DBUPG<PROD>.TXT
1554146 - PKM1153.3: CCT - 1150 TO 1153 UPGRADE FAILURES
1554317 - PKM1153.5:JTF-EXIT STATEMENT MISSING IN FILES JTFWATTS.PLS AND JTF..
1554346 - PKM1153.5: XNP - XNPDRCRQ.SQL FAILS DURING 11.5.1 TO 11.5.3 UPGRADE
1563204 - PKM1153.5: OKC - 1150 TO 1153 UPGRADE FAILURES
1563407 - PKM1153.5: HR 11.5.0 UPGRADE FAILS DUE TO DEPENDENCY
1563411 - PKM1153.5: JTF DEPENDENCY FAILURE 11.5.0 UPGRADE
1563413 - PKM1153.5: XDP UPGRADE FROM 11.5.0 DEPENDENCY FAILURES
1563416 - PKM1153.5: AZ UPGRADE FAILURE IN 11.5.0 DATABASE
1567699 - PKM1153.5:CRM Family Pack 1 Driver changes required for 11.5.3
1569590 - MODIFY THE SCRIPT ONT00007.SQL TO DELETE ONLY SEEDED DATA
1570973 - PKM1153.5: AD - AFPLNS01.SQL FAILS DURING 10.7 TO 1153 UPGRADE
1576467 - PKM1153.5: AMV - 1150 TO 1153 FAILURES
1577515 - TCA: ADDITIONAL TCA FILES REQUIRED FOR 11.5.3
1577521 - ARHCPREL -CANNOT INSERT NULL INTO HZ_PARTY_RELATIONSHIPS.PARTY_RE..
1577766 - ARU FIX FOR BUG 1563204 - PKM1153.5: OKC MULTIPLE FAILURE UPGRADI..
1579900 - PKM1153.5:CSXSEDSC.FMB OBSOLETE IN 11I BUT OKXFILE.DRV MENTIONS IT
1581189 - PKM1153.5: MSC - ISSUE WITH DBUPGMSC.TXT
1581504 - FILES FOR CREATING ARU FOR BIS 11.5.3 RELEASE
1581765 - PKM1153.5: APPSWEB.CFG FILE CONT.. PROMPTS TO DOWNLOAD OAJINIT.EXE
1586890 - PKM1153.5: MSC - ISSUE WITH DBUPGMSC.TXT
1587705 - BUG TO UPDATE THE MERGED DRIVER FILE FOR PKM1153
1588195 - PKM1153.5 : JAR FILE INCONSISTENCY
" > ${OUT_DIR}/1153_Base.txt
echo "
1627493 - AD MiniPack D Applications Installation Utilities
1553747 - AK MiniPack C Common Modules
1575525 - ALR MiniPack C Alert
1615230 - AMV MiniPack D Marketing Encyclopedia System
1476751 - AP MiniPack C Payables
1403734 - AR MiniPack C Receivables
1647480 - AS MiniPack C Sales
1580949 - ASG MiniPack D CRM Gateway for Mobile Devices
1612644 - ASL MiniPack B Field Sales/Laptop
1615185 - ASO MiniPack D Order Capture
1480962 - AX MiniPack C Global Accounting Engine
1569738 - AZ MiniPack B Implementation Wizard
1566786 - BEN MiniPack C Advanced Benefits
1612182 - BIC MiniPack I Customer Intelligence
1612601 - BIL MiniPack I Sales Intelligence
1610593 - BIM MiniPack I Marketing Intelligence
1573079 - BIS MiniPack C Business Intelligence
1610902 - BIX MiniPack I Call Center Intelligence
1538064 - BOM MiniPack D Bills of Material
1563322 - CCT MiniPack E Telephony Manager
1476747 - CE MiniPack C Cash Management
1581141 - CS MiniPack C Service
1581135 - CSC MiniPack C Customer Care
1580944 - CSD MiniPack C Depot Repair
1634215 - CSF MiniPack D Field Service
1580960 - CSP MiniPack C Spares Management
1634221 - CSR MiniPack D Scheduler
1338820 - CSS MiniPack B Support
1656580 - CUE MiniPack A Billing Connect
1581102 - CUN MiniPack C Network Logistics
1538246 - CZ MiniPack D Configurator
1553933 - EC MiniPack C e-Commerce Gateway
1538273 - ENG MiniPack C Engineering
1584277 - FA MiniPack E Assets
1571062 - FII MiniPack C Financials Intelligence
1538271 - FLM MiniPack C Flow Manufacturing
1553256 - FND MiniPack C Applications Object Library
1566176 - FPT MiniPack B Banking Center
1512530 - FRM MiniPack B Report Manager
1558776 - FV MiniPack B US Federal General Ledger
1483299 - GHR MiniPack B US Federal Human Resources
1561690 - GL Mini-pack C General Ledger
1559588 - GMA MiniPack E OPM Systems
1555262 - GMD MiniPack E OPM Product Development
1552818 - GME MiniPack E OPM Process Execution
1555222 - GMF MiniPack E OPM Financials
1555187 - GMI MiniPack E OPM Inventory
1555150 - GML MiniPack E OPM Logistics
1555186 - GMP MiniPack E OPM Process Planning
1571096 - GMS MiniPack D Grants Accounting
1555158 - GR MiniPack E OPM Regulatory Management
1566836 - HRI MiniPack B HR Intelligence
1483168 - HXT MiniPack B Time Management
1581138 - HZ MiniPack A Trading Community
1491331 - IBA MiniPack C iMarketing
1613014 - IBE MiniPack E iStore
1581146 - IBU MiniPack C iSuppport
1593795 - IBY MiniPack D iPayment
1538792 - icx MiniPack C Internet Procurement
1563319 - IEB MiniPack E Interaction Blending
1563325 - IEM MiniPack E eMail Center
1563315 - IEO MiniPack E Call Center Technology
1563320 - IES MiniPack E Scripting
1563317 - IEU MiniPack E Universal Work Queue
1577476 - IEX MiniPack B Collections
1582449 - IGI MiniPack D Public Sector Financials (International)
1555586 - IGS MiniPack B Student Information System
1449665 - IGW MiniPack B Grants Proposal
1538130 - INV MiniPack D Inventory
1571138 - IPA MiniPack C Capital Resource Logistics
1475098 - JA MiniPack C Financials for Asia/Pacific
1476832 - JE MiniPack C Financials for EMEA
1505787 - JG MiniPack D Financials Common Country
1499761 - JL MiniPack D Financials for the Americas
1558976 - JTF MiniPack C CRM Foundation
1538254 - MRP MiniPack C Master Scheduling/MRP
1538250 - MSC MiniPack C Advanced Supply Chain Planning
1426176 - MSD MiniPack B Demand Planning
1538256 - MSO MiniPack C Constraint Based Optimization
1428045 - MWA MiniPack B Mobile Applications
1586479 - OIE MiniPack A Internet Expenses
1605866 - OIT MiniPack A Internet Time
1663469 - OKX MiniPack D Contracts Integration
1538204 - ONT MiniPack D Order Management
1566806 - OTA MiniPack C Training Administration
1618069 - PA MiniPack D Projects
1566770 - PAY MiniPack C Payroll
1566759 - PER MiniPack C Human Resources
1426193 - PJM MiniPack B Project Manufacturing
1511520 - PMI MiniPack C Process Manufacturing Intelligence
1548838 - PN MiniPack C Property Manager
1538571 - po MiniPack C Purchasing
1350331 - poa MiniPack A Purchasing Intelligence
1455250 - PSA MiniPack B Public Sector Advanced Features
1549308 - PSB MiniPack D Public Sector Budgeting
1569137 - PSP MiniPack C Labor Distribution
1538366 - QA MiniPack C Quality
1538197 - QP MiniPack D Advanced Pricing
1423381 - RG MiniPack B Report Generator
1538692 - RLM MiniPack D Release Management
1344352 - SSP MiniPack A UK Human Resources (Statutory Sick Pay)
1538704 - VEA MiniPack D Automotive Integration Kit
1538276 - WIP MiniPack C Work in Process
1426235 - WMS MiniPack A Warehouse Management System
1426225 - WPS MiniPack B Manufacturing Scheduling
1538358 - WSH MiniPack D Shipping Execution Common
1538292 - WSM MiniPack C Shop Floor Management
1580975 - XDP MiniPack C SDP Provisioning
1571112 - XLA MiniPack C Common Accounting Modules
1590648 - XNC MiniPack B Sales for Communications
1580986 - XNP MiniPack C SDP Number Portability
1592420 - XNS MiniPack D Service for Communications
1565561 - XTR MiniPack C Treasury
1551167 - Family Pack D Discrete Manufacturing Suite
1614311 - Family Pack E Process Manufacturing Suite
1552650 - Family Pack D Supply Chain Planning Suite
1554100 - Family Pack D Procurement Suite
1550583 - Family Pack D Order Management Suite
" > ${OUT_DIR}/1154_Base.txt
echo "
1612182 - bic Customer Intelligence, Minipack I
1610593 - bim Marketing Intelligence, Minipack H
1612601 - bil Sales Intelligence, Minipack I
1791967 - bix Call Center Intelligence, Minipack K
1491331 - iba iMarketing, Minipack C
1810206 - iby iPayment, iPayment consolidated patch
1715488 - ibe iStore, Minipack G
1753403 - ibu iSupport, Minipack F
1615230 - amv Marketing Encyclopedia System, Minipack D
1716551 - aso Order Capture, Minipack F
1612644 - asl Field Sales/Laptop, Minipack B
1793487 - asl Field Sales/Laptop, Field Sales/Laptop consolidated patch
1647480 - as Sales, Minipack C
1809318 - as Sales, Sales and Marketing family patch (11.5.4.07A)
1761133 - okx Contracts Integration, Minipack E (Contracts Family Pack)
1581135 - csc Customer Care, Minipack C
1581141 - cs Service, Minipack C
1809709 - cs Service, Service consolidated patch (minipatch #21)
1580944 - csd Depot Repair, Minipack C
1802211 - csd Depot Repair, Depot Repair consolidated patch
1634215 - csf Field Service, Minipack D
1634221 - csr Scheduler, Minipack D
1580960 - csp Spares Management, Minipack C
1771573 - ieb Interaction Blending, Minipack I
1771450 - ieo Call Center Technology, Minipack I
1770998 - cct Telephony Manager, Minipack I
1769679 - ies Scripting, Minipack I
1770207 - ieu Universal Work Queue, Minipack I
1769721 - iem eMail Center, Minipack I
1810202 - xdp SDP Provisioning, SDP Provisioning consolidated patch
1809893 - xnp SDP Number Portability, SDP Number Portability consolidated patch
echo "
1810489 - fii Financial Intelligence, minipack D
1571138 - ipa CRL Financials Projects, minipack C
1682122 - pn Property Manager, minipack D
1797013 - ax Global Accounting Engine, minipack D
1810485 - xla Common Accounting Modules, minipack D
1505785 - je European Localizations, minipack D
1781750 - jg Regional Localizations, minipack F
1834628 - oie Internet Expenses, minipack D
1900156 - gl General Ledger, minipack E
1801262 - rg Application Report Generator, minipack C
1807809 - family Financials Suite, Family Pack A
1816560 - ap Payables, minipack F
1794240 - fa Assets, minipack F
1763786 - ar Receivables, minipack F
1711366 - xtr Treasury, minipack D
1675976 - oit Internet Time, minipack B
1931773 - frm Report Manager, minipack C
1773953 - jl Latin America Localizations, minipack G
1527618 - ce Cash Management, minipack D
1565772 - ja Asia/Pacific Localizations, minipack D
1921951 - hz Trading Community, minipack F
2019789 - pa Projects, minipack G
1896962 - prm Project Resource Management, minipack B
1844177 - family Process Manufacturing Suite, Family Pack G
1891480 - family Discrete Manufacturing Suite, Family Pack F
1922595 - family Supply Chain Planning Suite, Family Pack F
1891381 - family Procurement Suite, Family Pack F
1942144 - family Order Management Suite, Family Pack F
1566836 - hri Human Resources Intelligence, minipack B
1849555 - ben Advanced Benefits, minipack E
1849550 - pay Payroll, minipack E
1849547 - per Human Resources Personnel, minipack F
1483168 - hxt Time Management, minipack B
1663230 - ota Training, minipack D
1950474 - eaa SEM Exchange, minipack B
1865844 - bis Business Intelligence System, minipack D
1880500 - bsc Balanced Scorecard, minipack C
1931844 - ak Common Modules, minipack D
1931904 - ec e-Commerce Gateway, minipack D
1931404 - alr Alert, minipack D
1960477 - ecx XML Gateway, minipack A
1935117 - az Application Implementation, minipack C
1856104 - igi Public Sector Financials International, minipack G
1804365 - psp Labor Distribution, minipack D
1949658 - igs Student System, minipack E
1905293 - psa Public Sector Applications, minipack E
1932032 - psb Public Sector Budgeting, minipack F
1937576 - gms Grants Accounting, minipack G
1449665 - igw Grants Proposal, minipack B
1483299 - ghr Government HR, minipack B
1837509 - fv Federal Financials, minipack D
" > ${OUT_DIR}/1156_Base.txt
echo "
1883175 - jtt CRM Technology Foundation, Minipack A
2065484 - jta CRM Application Foundation, Minipack A
2197077 - jts CRM Self Service Administration, Minipack B
2080734 - asg CRM Gateway for Mobile Devices, Minipack K
2197656 - ahm Hosting Manager, Minipack B
2201671 - imc Customers Online, Minipack A
2209985 - bic Customer Intelligence, Consolidated patch
2015819 - imt iMeeting, Consolidated patch
2168901 - ibe iStore, Consolidated patch
2173029 - iby iPayment, Minipack K
2145439 - ibu iSupport, Consolidated patch
2128846 - css Support, Consolidated patch
2174843 - aso Order Capture, Consolidated patch
2145346 - ams Marketing, Consolidated patch
1832818 - amv Marketing Encyclopedia System, Minipack E
2196876 - bim Marketing Intelligence, Consolidated patch
2189271 - pv Partner Relationship Management, Consolidated patch
2221190 - Sales Suite, Family pack C
2180833 - Contracts Suite, Family pack B
2208036 - Call Center Suite, Family pack A
2036253 - Communications Suite, Family pack A
2139173 - xnc Sales for Communications, Minipack K
2192849 - Service Suite, Family pack B
2207715 - csf Field Service, Consolidated patch
2153415 - rg Application Report Generator, Minipack D
2117740 - fa Assets, Minipack I
1571138 - ipa CRL Financials Projects, Minipack C
1907478 - ce Cash Management, Minipack E
1810485 - xla Common Accounting Modules, Minipack D
1810489 - fii Financial Intelligence, Minipack D
1807809 - Financials Suite, Family pack A
2153419 - gl General Ledger, Minipack F
2092219 - ax Global Accounting Engine, Minipack E
1834628 - oie Internet Expenses, Minipack D
1707487 - oit Internet Time, Minipack C
2065564 - oir iReceivables, Minipack A
1986982 - ap Payables, Minipack G
2149380 - pn Property Manager, Minipack F
1991140 - ar Receivables, Minipack H
1931773 - frm Report Manager, Minipack C
2111967 - hz Trading Community, Minipack G
1952883 - xtr Treasury, Minipack F
1565772 - ja Asia/Pacific Localizations, Minipack D
1794254 - je European Localizations, Minipack E
1919833 - jl Latin America Localizations, Minipack H
1961403 - jg Regional Localizations, Minipack G
2028970 - pa Projects, Minipack H
2069413 - oke Project Contracts, Minipack G
2034194 - pjr Project Resource Management, Minipack C
2133107 - Discrete Manufacturing Suite, Family pack G
2220884 - Process Manufacturing Suite, Family pack H
2143725 - Supply Chain Planning Suite, Family pack G
2141229 - Procurement Suite, Family pack G
2118482 - Order Management Suite, Family pack G
1663218 - hri Human Resources Intelligence, Minipack C
2115771 - Human Resources Suite, Family pack A
1483168 - hxt Time Management, Minipack B
1346739 - hxc Time Capture, Minipack A
2004082 - ota Training, Minipack E
2021911 - abm Activity Based Management, Minipack F
1865844 - bis Business Intelligence System, Minipack D
1863365 - edw Enterprise Data Warehouse, Minipack A
1950474 - eaa SEM Exchange, Minipack B
1880500 - bsc Balanced Scorecard, Minipack C
1931404 - alr Alert, Minipack D
1935117 - az Application Implementation, Minipack C
2154367 - fnd Application Object Library, Minipack E
1931844 - ak Common Modules, Minipack D
1931904 - ec e-Commerce Gateway, Minipack D
1960477 - ecx XML Gateway, Minipack A
1984680 - gms Grants Accounting, Minipack H
1814546 - igw Grants Proposal, Minipack C
2014950 - psp Labor Distribution, Minipack E
1905293 - psa Public Sector Applications, Minipack E
2079200 - psb Public Sector Budgeting, Minipack G
1949153 - igi Public Sector Financials International, Minipack H
1949658 - igs Student System, Minipack E
1947442 - fv Federal Financials, Minipack E
2206559 - as, 11i.AS.F 11-FEB-02 Patchset Superseded By_Dev
2156736 - ben, 11i.BEN.G 21-FEB-02 Patchset Superseded Not_Distributed
2065003 - bom, 11i.BOM.G 30-JAN-02 Patchset Superseded Not_Distributed
2205314 - cn, 11i.CN.E 11-FEB-02 Patchset Superseded By_Dev
2075371 - crp, 11i.CRP.C 30-JAN-02 Patchset Superseded Not_Distributed
2139888 - cs, 11i.CS.H 31-JAN-02 Patchset Superseded By_Dev
2112122 - cz, 11i.CZ.G 29-JAN-02 Patchset Superseded By_Metalink
2156866 - dt, 11i.DT.D 21-FEB-02 Patchset Superseded Not_Distributed
2065670 - eng, 11i.ENG.F 29-JAN-02 Patchset Superseded Not_Distributed
2156864 - ff, 11i.FF.D 21-FEB-02 Patchset Superseded Not_Distributed
2004922 - inv, 11i.INV.G 30-JAN-02 Patchset Superseded By_Metalink
2075266 - mrp, 11i.MRP.F 30-JAN-02 Patchset Superseded Not_Distributed
2156706 - pay, 11i.PAY.G 21-FEB-02 Patchset Superseded Not_Distributed
2155076 - per, 11i.PER.H 22-FEB-02 Patchset Superseded Not_Distributed
2102542 - po, 11i.PO.F 31-JAN-02 Patchset Superseded Not_Distributed
2064811 - qa, 11i.QA.F 30-JAN-02 Patchset Superseded Not_Distributed
2156872 - ssp, 11i.SSP.D 21-FEB-02 Patchset Superseded Not_Distributed
2064997 - wip, 11i.WIP.F 29-JAN-02 Patchset Superseded Not_Distributed
2103370 - chv, 11i.CHV.C 30-JAN-02 Patchset Superseded Not_Distributed
2096654 - icx, 11i.ICX.F 31-JAN-02 Patchset Superseded Not_Distributed
2075306 - flm, 11i.FLM.F 30-JAN-02 Patchset Superseded Not_Distributed
2156846 - ghr, 11i.GHR.D 21-FEB-02 Patchset Superseded Not_Distributed
2106703 - msc, 11i.MSC.F 30-JAN-02 Patchset Superseded Not_Distributed
2012959 - pjm, 11i.PJM.E 29-JAN-02 Patchset Superseded Not_Distributed
2160934 - cct, 11i.CCT.M 31-DEC-01 Patchset Superseded By_Dev
1838218 - amv, 11i.AMV.E 02-NOV-01 Patchset Superseded By_Dev
2209019 - asf, 11i.ASF.E 11-FEB-02 Patchset Superseded By_Dev
1970707 - aso, 11i.ASO.I 02-NOV-01 Patchset Superseded By_Metalink
2210188 - ast, 11i.AST.E 11-FEB-02 Patchset Superseded By_Dev
2022211 - bic, 11i.BIC.O 06-OCT-01 Patchset Superseded By_Dev
2206086 - bil, 11i.BIL.L 11-FEB-02 Patchset Superseded By_Dev
1610593 - bim, 11i.BIM.H 27-FEB-01 Patchset Superseded By_Metalink
2163294 - bix, 11i.BIX.O 28-DEC-01 Patchset Superseded By_Dev
2141380 - csc, 11i.CSC.H 01-FEB-02 Patchset Superseded By_Dev
2139165 - csd, 11i.CSD.I 31-JAN-02 Patchset Superseded By_Dev
2139908 - csf, 11i.CSF.L 01-FEB-02 Patchset Superseded By_Dev
2139921 - csp, 11i.CSP.I 31-JAN-02 Patchset Superseded By_Dev
1917552 - css, 11i.CSS.E 02-NOV-01 Patchset Superseded By_Dev
2136960 - cun, 11i.CUN.J 01-FEB-02 Patchset Released By_Dev
1979212 - gma, 11i.GMA.H 11-JAN-02 Patchset Superseded Not_Distributed
1979534 - gmd, 11i.GMD.H 12-JAN-02 Patchset Superseded Not_Distributed
1979540 - gme, 11i.GME.H 12-JAN-02 Patchset Superseded Not_Distributed
1979547 - gmf, 11i.GMF.H 11-JAN-02 Patchset Superseded Not_Distributed
1979552 - gmi, 11i.GMI.H 12-JAN-02 Patchset Superseded Not_Distributed
1979561 - gml, 11i.GML.H 11-JAN-02 Patchset Superseded Not_Distributed
1979568 - gmp, 11i.GMP.H 11-JAN-02 Patchset Superseded Not_Distributed
1979575 - gr, 11i.GR.H 11-JAN-02 Patchset Superseded Not_Distributed
1306459 - iba, 11i.IBA.A 21-JUN-00 Patchset Superseded Not_Distributed
2009497 - ibu, 11i.IBU.H 02-NOV-01 Patchset Superseded By_Dev
2135496 - iem, 11i.IEM.M 28-DEC-01 Patchset Superseded By_Dev
2145418 - ieo, 11i.IEO.M 31-DEC-01 Patchset Superseded By_Dev
2162202 - ies, 11i.IES.M 27-DEC-01 Patchset Superseded By_Dev
2161777 - ieu, 11i.IEU.M 29-DEC-01 Patchset Superseded By_Dev
1746626 - jtf, 11i.JTF.D 04-JUN-01 Patchset Released By_Metalink
2112188 - mso, 11i.MSO.F 30-JAN-02 Patchset Superseded Not_Distributed
2176825 - okc, 11i.OKC.F 22-JAN-02 Patchset Superseded By_Dev
2176874 - oks, 11i.OKS.G 22-JAN-02 Patchset Superseded By_Dev
2176883 - okx, 11i.OKX.G 22-JAN-02 Patchset Superseded By_Dev
2112226 - ont, 11i.ONT.G 31-JAN-02 Patchset Superseded Not_Distributed
1986248 - pmi, 11i.PMI.D 11-SEP-01 Patchset Superseded By_Dev
1711292 - poa, 11i.POA.B 02-MAY-01 Patchset Released Not_Distributed
2112249 - qp, 11i.QP.G 31-JAN-02 Patchset Superseded Not_Distributed
2112239 - rlm, 11i.RLM.G 31-JAN-02 Patchset Superseded Not_Distributed
2112243 - vea, 11i.VEA.G 31-JAN-02 Patchset Superseded Not_Distributed
2064994 - wms, 11i.WMS.D 30-JAN-02 Patchset Superseded Not_Distributed
2065005 - wps, 11i.WPS.E 30-JAN-02 Patchset Superseded Not_Distributed
2113104 - wsh, 11i.WSH.G 31-JAN-02 Patchset Superseded Not_Distributed
2139204 - xdp, 11i.XDP.O 31-JAN-02 Patchset Superseded By_Dev
2139213 - xnp, 11i.XNP.O 31-JAN-02 Patchset Superseded By_Dev
2022232 - xns, 11i.XNS.K 06-OCT-01 Patchset Superseded By_Dev
2064974 - wsm, 11i.WSM.F 29-JAN-02 Patchset Superseded Not_Distributed
2139913 - csr, 11i.CSR.J 31-JAN-02 Patchset Released By_Dev
2161778 - ieb, 11i.IEB.M 28-DEC-01 Patchset Superseded By_Dev
2075438 - msd, 11i.MSD.F 30-JAN-02 Patchset Superseded Not_Distributed
2069426 - mwa, 11i.MWA.E 29-JAN-02 Patchset Superseded Not_Distributed
2156867 - pqh, 11i.PQH.D 21-FEB-02 Patchset Superseded Not_Distributed
2156869 - pqp, 11i.PQP.D 21-FEB-02 Patchset Superseded Not_Distributed
2089495 - pv, 11i.PV.D 04-NOV-01 Patchset Superseded By_Dev
2128902 - eam, 11i.EAM.G 01-FEB-02 Patchset Superseded By_Dev
2176833 - okr, 11i.OKR.D 22-JAN-02 Patchset Superseded By_Dev
2075445 - msr, 11i.MSR.D 30-JAN-02 Patchset Superseded Not_Distributed
2103103 - pos, 11i.POS.B 31-JAN-02 Patchset Superseded Not_Distributed
2139162 - biv, 11i.BIV.I 01-FEB-02 Patchset Superseded By_Dev
2136956 - csi, 11i.CSI.G 01-FEB-02 Patchset Superseded By_Dev
1969332 - csl, 11i.CSL.A 05-OCT-01 Patchset Superseded By_Dev
2139170 - cug, 11i.CUG.G 01-FEB-02 Patchset Superseded By_Dev
2176891 - oki, 11i.OKI.B 22-JAN-02 Patchset Superseded By_Dev
2151089 - iec, 11i.IEC.B 29-DEC-01 Patchset Superseded By_Dev
2136959 - cse, 11i.CSE.G 01-FEB-02 Patchset Superseded By_Dev
2176888 - oko, 11i.OKO.B 22-JAN-02 Patchset Superseded By_Dev
2173447 - ahl, 11i.AHL.K 01-FEB-02 Patchset Superseded By_Dev
2139216 - xni, 11i.XNI.B 31-JAN-02 Patchset Superseded By_Dev
" > ${OUT_DIR}/1157_Base.txt
echo "
2276388 - jtt CRM Technology Foundation ,Minipack C
2368042 - jta CRM Applications Foundation ,Minipack D
2386712 - jts CRM Self Service Administration ,Minipack E
2501175 - asg CRM Gateway for Mobile Services ,Minipack P
2384215 - ahm Hosting Manager ,Minipack D
2396751 - imc Customers Online ,Minipack B
2022211 - bic Customer Intelligence ,Minipack O
2395116 - bil Sales Intelligence ,Minipack M
2387256 - bix Interaction Center Intelligence ,Minipack Q
2400949 - ibe iStore ,Minipack M
2527157 - iby iPayment ,Minipack M
2505350 - ibu iSupport ,Minipack L
2139225 - css Support ,Minipack F
2374852 - aso Order Capture ,Minipack K
2459266 - Marketing Suite ,Family Pack A
2375183 - ams Marketing ,Minipack G
2383307 - pv Partner Relationship Management ,Minipack F
2395526 - amf Fulfillment Services ,Minipack A
2417049 - ibc iContent ,Minipack A
2440207 - amv Marketing Encyclopedia System ,Minipack G
2454061 - bim Marketing Intelligence ,Minipack M
2435494 - Sales Suite ,Family Pack F
2404253 - as Sales ,Minipack G
2404440 - asf Sales Online ,Minipack F
2384176 - cn Sales Compensation ,Minipack F
2405522 - ast TeleSales ,Minipack F
2402713 - iex Collections ,Minipack D
2380531 - qot Quoting ,Minipack B
2509464 - asl Sales Offline ,Minipack G
2440054 - Contracts Suite ,Family Pack H
2420911 - okl Lease Management ,Minipack D
2477294 - Service Suite ,Family Pack H
2507613 - csi Install Base ,Minipack N
2507689 - csl Field Service/Laptop ,Minipack I
2508309 - csm Field Service/Handheld ,Minipack B
2374818 - Interaction Center Suite ,Family Pack C
2384304 - ieo Interaction Center Technology ,Minipack O
2242802 - cct Telephony Manager ,Minipack O
2288033 - iec Advanced Outbound ,Minipack D
2383615 - ieb Interaction Blending ,Minipack O
2348942 - ies Scripting ,Minipack N
2383611 - ieu Universal Work Queue ,Minipack O
2387043 - iem eMail Center ,Minipack O
2190434 - fii Financial Intelligence ,Minipack E
2380068 - Financials Suite ,Family Pack C
2322330 - rg Application Report Generator ,Minipack E
2398923 - fa Assets ,Minipack K
1617586 - ipa CRL Financials Projects ,Minipack D
2243908 - ce Cash Management ,Minipack G
2182672 - xla Common Accounting Modules ,Minipack E
2336010 - gl General Ledger ,Minipack G
1960506 - oie Internet Expenses ,Minipack E
2375849 - ap Payables ,Minipack J
2239222 - hz Trading Community ,Minipack I
2223523 - xtr Treasury ,Minipack G
2352122 - qrm Risk Management ,Minipack A
2265646 - psa Public Sector Applications ,Minipack F
2079200 - psb Public Sector Budgeting ,Minipack G
2128662 - igi Public Sector Financials International ,Minipack I
2219341 - fv Federal Financials ,Minipack F
1749145 - ja Asia/Pacific Localizations ,Minipack E
2009602 - je European Localizations ,Minipack F
2123121 - jl Latin America Localizations ,Minipack I
1961403 - jg Regional Localizations ,Minipack G
2381317 - Projects Suite ,Family Pack J
1707487 - oit Internet Time ,Minipack C
2212661 - oke Project Contracts ,Minipack H
2034194 - pjr Project Resource Management ,Minipack C
2248408 - Discrete Manufacturing Suite ,Family Pack H
2216258 - Process Manufacturing Suite ,Family Pack I
2250401 - eam Enterprise Asset Management ,Minipack H
2364726 - pmi OPM Intelligence ,Minipack E
2250399 - Supply Chain Planning Suite ,Family Pack H
2320032 - Procurement Suite ,Family Pack H
2360814 - pon Sourcing ,Minipack H
2250333 - Order Management Suite ,Family Pack H
2502761 - Human Resources Suite ,Family Pack C.1
2373387 - hri Human Resources Intelligence ,Minipack D
2398780 - hxt Time Management ,Minipack D
2296468 - ota Training Administration ,Minipack F
2385730 - irc iRecruitment ,Minipack A
1950474 - eaa SEM Exchange ,Minipack B
2182833 - ews Enterprise Warehouse Source ,Minipack B
2182987 - edw Enterprise Data Warehouse ,Minipack B
2188903 - bis Business Intelligence System ,Minipack E
2176458 - bsc Balanced Scorecard ,Minipack D
2282494 - abm Activity Based Management ,Minipack G.1
2404398 - alr Alert ,Minipack E
2414932 - az Application Implementation ,Minipack D
2404698 - fnd Application Object Library ,Minipack F
2404795 - ak Common Modules ,Minipack E
2408170 - ec e-Commerce Gateway ,Minipack E
2440710 - ecx XML Gateway ,Minipack C
2319620 - igs Student System ,Minipack H
2295469 - psp Labor Distribution ,Minipack F
2166451 - gms Grants Accounting ,Minipack I
2295451 - igw Grants Proposal ,Minipack D
2443697 - bne Web Applications Desktop Integrator ,Minipack A
2450020 - frm Report Manager ,Minipack D
2397665 - ax, 11i.AX.F 16-AUG-02 Patchset Released By_Dev
2410052 - per, 11i.PER.J 02-AUG-02 Patchset Superseded Not_Distributed
2410054 - pay, 11i.PAY.I 02-AUG-02 Patchset Superseded Not_Distributed
2268446 - ff, 11i.FF.E 09-MAY-02 Patchset Superseded Not_Distributed
2156866 - dt, 11i.DT.D 21-FEB-02 Patchset Superseded Not_Distributed
2410065 - ssp, 11i.SSP.F 02-AUG-02 Patchset Superseded Not_Distributed
2410055 - ben, 11i.BEN.I 02-AUG-02 Patchset Superseded Not_Distributed
2248481 - qa, 11i.QA.G 27-JUN-02 Patchset Released By_Dev
2319967 - icx, 11i.ICX.G 15-AUG-02 Patchset Released Not_Distributed
2398753 - pn, 11i.PN.H 16-AUG-02 Patchset Released By_Dev
2410056 - ghr, 11i.GHR.F 02-AUG-02 Patchset Superseded Not_Distributed
2410057 - pqh, 11i.PQH.F 02-AUG-02 Patchset Superseded Not_Distributed
2410074 - pqp, 11i.PQP.F 02-AUG-02 Patchset Superseded Not_Distributed
1346739 - hxc, 11i.HXC.A 07-OCT-00 Patchset Superseded By_Metalink
2250322 - rlm, 11i.RLM.H 27-JUN-02 Patchset Released By_Dev
2250329 - vea, 11i.VEA.H 27-JUN-02 Patchset Released By_Dev
2396506 - ar, 11i.AR.K 16-AUG-02 Patchset Released By_Dev
1733032 - oe, 11i.OE.C 03-MAY-01 Patchset Released Not_Distributed
2381316 - pa, 11i.PA.J 30-AUG-02 Patchset Released Not_Distributed
2248490 - inv, 11i.INV.H 16-AUG-02 Patchset Released By_Metalink
2235892 - po, 11i.PO.G 15-AUG-02 Patchset Released Not_Distributed
2236039 - chv, 11i.CHV.D 15-AUG-02 Patchset Released Not_Distributed
2248494 - bom, 11i.BOM.H 27-JUN-02 Patchset Released Not_Distributed
2248518 - eng, 11i.ENG.G 27-JUN-02 Patchset Released By_Dev
2248430 - mrp, 11i.MRP.G 27-JUN-02 Patchset Released Not_Distributed
2248435 - crp, 11i.CRP.D 27-JUN-02 Patchset Released By_Dev
2212393 - wip, 11i.WIP.G 27-JUN-02 Patchset Released By_Dev
2250291 - cz, 11i.CZ.H 09-AUG-02 Patchset Released By_Metalink
2212672 - pjm, 11i.PJM.F 27-JUN-02 Patchset Released By_Dev
2248440 - flm, 11i.FLM.G 27-JUN-02 Patchset Released By_Dev
2250385 - msc, 11i.MSC.G 27-JUN-02 Patchset Released By_Dev
2139888 - cs, 11i.CS.H 31-JAN-02 Patchset Superseded By_Dev
2192881 - gma, 11i.GMA.I 02-JUL-02 Patchset Superseded Not_Distributed
2192885 - gmd, 11i.GMD.I 03-JUL-02 Patchset Superseded Not_Distributed
2192904 - gme, 11i.GME.I 03-JUL-02 Patchset Superseded Not_Distributed
2192909 - gmf, 11i.GMF.I 02-JUL-02 Patchset Superseded Not_Distributed
2192912 - gmi, 11i.GMI.I 03-JUL-02 Patchset Superseded Not_Distributed
2192913 - gml, 11i.GML.I 03-JUL-02 Patchset Superseded Not_Distributed
2192921 - gmp, 11i.GMP.I 03-JUL-02 Patchset Superseded Not_Distributed
2192926 - gr, 11i.GR.I 03-JUL-02 Patchset Superseded Not_Distributed
2136960 - cun, 11i.CUN.J 01-FEB-02 Patchset Released By_Dev
1746626 - jtf, 11i.JTF.D 04-JUN-01 Patchset Released By_Metalink
2440018 - okc, 11i.OKC.L 13-SEP-02 Patchset Released By_Dev
2440051 - oks, 11i.OKS.M 13-SEP-02 Patchset Released By_Dev
2141380 - csc, 11i.CSC.H 01-FEB-02 Patchset Superseded By_Dev
2485133 - csd, 11i.CSD.P 31-JUL-02 Patchset Superseded By_Dev
2139908 - csf, 11i.CSF.L 01-FEB-02 Patchset Superseded By_Dev
2318279 - xnp, 11i.XNP.R 01-MAY-02 Patchset Superseded By_Dev
2318266 - xdp, 11i.XDP.R 01-MAY-02 Patchset Superseded By_Dev
2490454 - xnc, 11i.XNC.M 16-OCT-02 Patchset Released By_Dev
2485213 - xns, 11i.XNS.S 31-JUL-02 Patchset Superseded By_Dev
2456473 - fpt, 11i.FPT.D 11-OCT-02 Patchset Released By_Dev
1306459 - iba, 11i.IBA.A 21-JUN-00 Patchset Superseded Not_Distributed
2173029 - iby, 11i.IBY.K 01-FEB-02 Patchset Superseded By_Metalink
1711292 - poa, 11i.POA.B 02-MAY-01 Patchset Released Not_Distributed
2250387 - mso, 11i.MSO.G 27-JUN-02 Patchset Released By_Dev
2250301 - ont, 11i.ONT.H 27-JUN-02 Patchset Released By_Dev
2250316 - qp, 11i.QP.H 27-JUN-02 Patchset Released By_Dev
2250313 - wsh, 11i.WSH.H 27-JUN-02 Patchset Released By_Dev
2250395 - msd, 11i.MSD.G 27-JUN-02 Patchset Released By_Dev
2212391 - wms, 11i.WMS.E 27-JUN-02 Patchset Released By_Dev
2212395 - wps, 11i.WPS.F 27-JUN-02 Patchset Released By_Dev
2440048 - okx, 11i.OKX.L 13-SEP-02 Patchset Released By_Dev
2139921 - csp, 11i.CSP.I 31-JAN-02 Patchset Superseded By_Dev
2139913 - csr, 11i.CSR.J 31-JAN-02 Patchset Superseded By_Dev
2248506 - wsm, 11i.WSM.G 27-JUN-02 Patchset Released By_Dev
2212671 - mwa, 11i.MWA.F 27-JUN-02 Patchset Released By_Dev
2254397 - fte, 11i.FTE.D 27-JUN-02 Patchset Released By_Dev
2250391 - msr, 11i.MSR.E 27-JUN-02 Patchset Released By_Dev
2440003 - okr, 11i.OKR.J 13-SEP-02 Patchset Released By_Dev
2508005 - xni, 11i.XNI.I 30-AUG-02 Patchset Released By_Dev
2236030 - pos, 11i.POS.C 15-AUG-02 Patchset Released By_Dev
2484904 - biv, 11i.BIV.P 31-JUL-02 Patchset Superseded By_Dev
2486390 - cug, 11i.CUG.N 31-JUL-02 Patchset Superseded By_Dev
2440079 - oki, 11i.OKI.H 13-SEP-02 Patchset Released By_Dev
2394621 - iec, 11i.IEC.F 29-MAY-02 Patchset Superseded By_Dev
2507649 - cse, 11i.CSE.N 30-AUG-02 Patchset Released By_Dev
2440082 - oko, 11i.OKO.G 13-SEP-02 Patchset Released By_Dev
2514185 - jtm, 11i.JTM.D 15-OCT-02 Patchset Released By_Metalink
2322414 - ahl, 11i.AHL.N 01-MAY-02 Patchset Superseded By_Dev
2344175 - ad, 11i.AD.G 05-NOV-02 Patchset Released By_Metalink
" > ${OUT_DIR}/1158_Base.txt
echo "
2655277 - fnd Application Object Library, Minipack G
2657511 - ak Common Modules, Minipack F
2668469 - txk Techstack, Minipack A
2728236 - owf Workflow, Minipack G
2662787 - ec e-Commerce Gateway, Minipack F
2464368 - alr Alert, Minipack F
2707397 - az Application Implementation, Minipack E
2737099 - oam Applications Manager, Minipack G
2661232 - asg CRM Gateway for Mobile Devices, Minipack Q
2420923 - jtt CRM Technology Foundation, Minipack D
2670197 - jtm Mobile Application Foundation, Minipack E
2640247 - jta CRM Applications Foundation, Minipack E
2677750 - bne Web Applications Desktop Integrator, Minipack B
2682790 - frm Report Manager, Minipack F
2767066 - imc Customers Online, Minipack J
2706853 - bic Customer Intelligence, Minipack Q
2645935 - Sales Suite, Family pack G
2642404 - cn Sales Compensation, Minipack G
2549599 - qot Quoting, Minipack C
2636442 - ibe iStore, Minipack O
2412097 - aso Order Capture, Minipack L
2606463 - prp Proposals, Minipack A
2630927 - Marketing Suite, Family pack B
2728964 - aml Leads Management, Minipack A
2661036 - Contracts Suite, Family pack I
2713120 - Service Suite, Family pack I
2661236 - csl Field Service/Laptop, Minipack J
2661240 - csm Field Service / Handheld, Minipack C
2696911 - csi Install Base, Minipack O
2644375 - Interaction Center Suite, Family pack Q
2629235 - Financials Suite, Family pack D
2488736 - fii Financial Intelligence, Minipack F
1707487 - oit Internet Time, Minipack C
2681531 - iex Collections, Minipack E
2683795 - iby iPayment, Minipack N
2698797 - okl Lease Management, Minipack E
2697753 - Discrete Manufacturing Suite, Family pack I
2433137 - Process Manufacturing Suite, Family pack J
2591002 - pmi OPM Intelligence, Minipack F
2471486 - cln Supply Chain Trading Connector, Minipack A
2591001 - edr E Records, Minipack A
2478472 - eam Enterprise Asset Management, Minipack I
2696797 - Advanced Planning Suite, Family pack I
2700001 - Procurement Suite, Family pack I
2698175 - Order Management Suite, Family pack I
2803988 - Human Resources Suite, Family pack E
2483421 - hri Human Resources Intelligence, Minipack E
2716711 - hxt Time Management, Minipack E
2489786 - ota Training, Minipack G
2385730 - irc iRecruitment, Minipack A
2484626 - Projects Suite, Family pack K
2475721 - oke Project Contracts, Minipack I
2692848 - bis Business Intelligence System, Minipack G
2700670 - edw Enterprise Data Warehouse, Minipack C
2700672 - ews Enterprise Warehouse Source, Minipack C
2692588 - bsc Balanced Scorecard, Minipack E
2720739 - Product Lifecycle Management Suite, Family pack A
2492770 - psp Labor Distribution, Minipack G
2799224 - igs Student System, Minipack J
2691082 - gms Grants Accounting, Minipack K
2492817 - igw Grants Proposal, Minipack E
2282494 - abm Patchset Released on 15-MAR-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.ABM.G.1
2673262 - ad Patchset Released on 30-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.AD.H
2700563 - ahl Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.AHL.P
2384215 - ahm Patchset Released on 23-OCT-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.AHM.D
2640735 - amf Patchset Released on 11-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.AMF.B
2460403 - ams Patchset Released on 11-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.AMS.H
2630030 - amv Patchset Released on 11-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.AMV.H
2488725 - ap Patchset Released on 02-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.AP.K
2488726 - ar Patchset Released on 02-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.AR.L
2640001 - as Patchset Released on 11-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.AS.H
2640034 - asf Patchset Released on 11-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.ASF.G
2642511 - asl Patchset Released on 11-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.ASL.H
2642510 - ast Patchset Released on 11-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.AST.G
2646044 - ax Patchset Released on 02-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.AX.G
2803591 - ben Patchset Released on 19-MAY-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.BEN.K
2642409 - bil Patchset Released on 11-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.BIL.N
2630063 - bim Patchset Released on 11-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.BIM.N
2707184 - biv Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.BIV.R
2685978 - bix Patchset Released on 27-NOV-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.BIX.S
2691149 - bom Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.BOM.I
2485142 - cct Patchset Released on 02-DEC-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.CCT.Q
2488730 - ce Patchset Released on 02-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.CE.H
2478612 - chv Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.CHV.E
2691177 - crp Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.CRP.E
2707706 - cs Patchset Released on 11-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.CS.P
2707217 - csc Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.CSC.P
2712429 - csd Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.CSD.R
2696915 - cse Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.CSE.O
2702303 - csf Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.CSF.R
2707263 - csp Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.CSP.Q
2702306 - csr Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.CSR.L
2708002 - css Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.CSS.I
2700678 - cug Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.CUG.P
2690432 - cz Patchset Released on 20-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.CZ.I
2714479 - ddd Patchset Released on 28-MAY-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.DDD.A
2803505 - dt Patchset Released on 19-MAY-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.DT.F
1950474 - eaa Patchset Released on 04-SEP-01 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.EAA.B
2440710 - ecx Patchset Released on 04-SEP-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.ECX.C
2714179 - ego Patchset Released on 11-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.EGO.A
2371323 - eng Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.ENG.H
2714518 - eni Patchset Released on 11-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.ENI.F
2488733 - fa Patchset Superseded on 01-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.FA.L
2803574 - ff Patchset Released on 19-MAY-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.FF.G
2479225 - flm Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.FLM.H
2456473 - fpt Patchset Released on 11-OCT-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.FPT.D
2690445 - fte Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.FTE.E
2408789 - fv Patchset Superseded on 02-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.FV.G
2803596 - ghr Patchset Released on 19-MAY-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.GHR.H
2488743 - gl Patchset Released on 02-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.GL.H
2294171 - gma Patchset Superseded on 26-DEC-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.GMA.J
2294175 - gmd Patchset Superseded on 26-DEC-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.GMD.J
2294178 - gme Patchset Superseded on 26-DEC-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.GME.J
2294183 - gmf Patchset Superseded on 26-DEC-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.GMF.J
2294188 - gmi Patchset Superseded on 26-DEC-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.GMI.J
2294192 - gml Patchset Superseded on 26-DEC-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.GML.J
2294225 - gmp Patchset Superseded on 26-DEC-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.GMP.J
2294228 - gr Patchset Superseded on 26-DEC-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.GR.J
2717041 - hxc Patchset Released on 27-MAR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.HXC.C
1306459 - iba Patchset Superseded on 21-JUN-00 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.IBA.A
2629974 - ibc Patchset Released on 24-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.IBC.B
2709518 - ibu Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.IBU.O
2478494 - icx Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.ICX.H
2682730 - ieb Patchset Released on 29-NOV-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.IEB.Q
2687987 - iec Patchset Released on 29-NOV-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.IEC.H
2688479 - iem Patchset Released on 28-NOV-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.IEM.Q
2690842 - ieo Patchset Released on 02-DEC-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.IEO.Q
2785906 - ies Patchset Released on 04-FEB-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.IES.Q
2682729 - ieu Patchset Released on 29-NOV-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.IEU.Q
2459356 - igi Patchset Superseded on 02-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.IGI.K
2371213 - inv Patchset Released on 20-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.INV.I
2484640 - ipa Patchset Released on 17-FEB-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.IPA.E
2202589 - ja Patchset Released on 02-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.JA.F
2271080 - je Patchset Released on 02-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.JE.G
2132882 - jg Patchset Released on 02-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.JG.H
2310959 - jl Patchset Released on 02-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.JL.J
2386712 - jts Patchset Released on 22-OCT-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.JTS.E
2479230 - mrp Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.MRP.H
2478170 - msc Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.MSC.H
2478195 - msd Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.MSD.H
2478230 - mso Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.MSO.H
2478234 - msr Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.MSR.F
2691017 - mwa Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.MWA.G
1733032 - oe Patchset Released on 03-MAY-01 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.OE.C
2696923 - okc Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.OKC.M
2696943 - oki Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.OKI.I
2696951 - oko Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.OKO.H
2696947 - okr Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.OKR.K
2696936 - oks Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.OKS.N
2696938 - okx Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.OKX.M
2475849 - ont Patchset Released on 11-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.ONT.I
2484622 - pa Patchset Released on 23-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.PA.K
2803583 - pay Patchset Released on 19-MAY-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.PAY.K
2803589 - per Patchset Released on 19-MAY-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.PER.L
2478564 - pjm Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.PJM.G
2488748 - pn Patchset Released on 02-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.PN.I
2478541 - po Patchset Released on 11-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.PO.H
2478594 - poa Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.POA.E
2476027 - pon Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.PON.I
2478572 - pos Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.POS.D
2803594 - pqh Patchset Released on 19-MAY-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.PQH.H
2803595 - pqp Patchset Released on 19-MAY-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.PQP.H
2492811 - psa Patchset Released on 02-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.PSA.G
2412968 - psb Patchset Released on 02-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.PSB.H
2630022 - pv Patchset Released on 11-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.PV.G
2479232 - qa Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.QA.H
2478163 - qp Patchset Released on 11-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.QP.I
2502497 - qrm Patchset Released on 02-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.QRM.B
2490905 - rg Patchset Released on 02-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.RG.F
2478373 - rlm Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.RLM.I
2803590 - ssp Patchset Released on 19-MAY-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.SSP.H
2478411 - vea Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.VEA.I
2478579 - wip Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.WIP.H
2478530 - wms Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.WMS.F
2482422 - wps Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.WPS.G
2478452 - wsh Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.WSH.I
2691993 - wsm Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.WSM.H
2739476 - xdp Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.XDP.W
2490908 - xla Patchset Released on 02-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.XLA.F
2701907 - xnc Patchset Released on 15-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.XNC.N
2696920 - xni Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.XNI.J
2732312 - xnp Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.XNP.W
2707272 - xns Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.XNS.U
2554877 - xtr Patchset Released on 02-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.XTR.I
2431154 - xni Patchset Superseded on 04-JUL-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.XNI.G
" > ${OUT_DIR}/1159_Base.txt
echo "
3452690 - abm Patchset Released on 27-FEB-04 from Note:259484.1, 11i.ABM.G.4
4038964 - ad Patchset Released on 02-DEC-04, 11i.AD.I.1
3132184 - ahl Patchset Released on 17-SEP-04, 11i.AHL.Q
2384215 - ahm Patchset Released on 23-OCT-02, 11i.AHM.D
3263645 - ak Patchset Released on 04-NOV-04 from Note:259484.1, 11i.AK.G
3261254 - alr Patchset Released on 04-NOV-04 from Note:259484.1, 11i.ALR.G
3134002 - amf Patchset Released on 07-OCT-04, 11i.AMF.C
3025816 - ams Patchset Released on 08-OCT-04, 11i.AMS.I
3134012 - amv Patchset Released on 07-OCT-04, 11i.AMV.I
3485924 - amw Patchset Released on 05-NOV-04 from Note:259484.1, 11i.AMW.C
3151444 - ap Patchset Released on 18-OCT-04, 11i.AP.M
3151465 - ar Patchset Released on 18-OCT-04, 11i.AR.N
3046981 - as Patchset Released on 08-OCT-04, 11i.AS.I
3046985 - asf Patchset Released on 08-OCT-04, 11i.ASF.H
3263401 - asg Patchset Released on 04-NOV-04 from Note:259484.1, 11i.ASG.R
3780558 - asl Patchset Released on 08-OCT-04, 11i.ASL.I
3293018 - asn Patchset Released on 13-OCT-04 from Note:259484.1, 11i.ASN.A
2937137 - aso Patchset Released on 21-JUN-04, 11i.ASO.M
2212166 - asp Patchset Released on 08-OCT-04, 11i.ASP.B
3046996 - ast Patchset Released on 08-OCT-04, 11i.AST.H
3151359 - ax Patchset Released on 18-OCT-04, 11i.AX.I
3251003 - az Patchset Released on 05-NOV-04 from Note:259484.1, 11i.AZ.F
3418234 - ben Patchset Released on 27-JUL-04, 11i.BEN.M
3367777 - bic Patchset Released on 05-NOV-04 from Note:259484.1, 11i.BIC.S
3061845 - bil Patchset Released on 08-OCT-04, 11i.BIL.O
3025758 - bim Patchset Released on 07-OCT-04, 11i.BIM.O
3673034 - bis Patchset Released on 15-OCT-04 from Note:259484.1, 11i.BIS.J
3014204 - biv Patchset Released on 17-SEP-04, 11i.BIV.S
3112625 - bix Patchset Released on 29-OCT-03, 11i.BIX.T
2819091 - bne Patchset Released on 15-SEP-03 from Note:259484.1, 11i.BNE.C
2768762 - bom Patchset Released on 17-SEP-04, 11i.BOM.J
3673035 - bsc Patchset Released on 15-OCT-04 from Note:259484.1, 11i.BSC.H
2687381 - cct Patchset Released on 29-OCT-03, 11i.CCT.R
3151412 - ce Patchset Released on 18-OCT-04, 11i.CE.J
3212221 - chv Patchset Released on 17-SEP-04, 11i.CHV.F
3231176 - cln Patchset Released on 11-OCT-04 from Note:259484.1, 11i.CLN.C
3061842 - cn Patchset Released on 18-MAR-04, 11i.CN.H
2770107 - crp Patchset Released on 17-SEP-04, 11i.CRP.F
3022934 - cs Patchset Released on 17-SEP-04, 11i.CS.Q
3014206 - csc Patchset Released on 17-SEP-04, 11i.CSC.Q
3215147 - csd Patchset Released on 17-SEP-04, 11i.CSD.S
3195218 - cse Patchset Released on 17-SEP-04, 11i.CSE.P
3132186 - csf Patchset Released on 17-SEP-04, 11i.CSF.S
3195214 - csi Patchset Released on 17-SEP-04, 11i.CSI.P
3263427 - csl Patchset Released on 04-NOV-04 from Note:259484.1, 11i.CSL.K
3263430 - csm Patchset Released on 05-NOV-04 from Note:259484.1, 11i.CSM.D
3014210 - csp Patchset Released on 17-SEP-04, 11i.CSP.R
3132185 - csr Patchset Released on 17-SEP-04, 11i.CSR.M
3214922 - css Patchset Released on 17-SEP-04, 11i.CSS.J
3014213 - cug Patchset Released on 17-SEP-04, 11i.CUG.Q
2136960 - cun Patchset Released on 01-FEB-02, 11i.CUN.J
2770105 - cz Patchset Released on 17-SEP-04, 11i.CZ.J
3298209 - ddd Patchset Released on 08-OCT-04, 11i.DDD.C
3418248 - dt Patchset Released on 27-JUL-04, 11i.DT.H
1950474 - eaa Patchset Released on 04-SEP-01, 11i.EAA.B
3200674 - eam Patchset Released on 17-SEP-04, 11i.EAM.J
3261243 - ec Patchset Released on 04-NOV-04 from Note:259484.1, 11i.EC.G
2440710 - ecx Patchset Released on 04-SEP-02, 11i.ECX.C
2922221 - edr Patchset Released on 17-SEP-04, 11i.EDR.C
3298205 - ego Patchset Released on 08-OCT-04, 11i.EGO.C
2769980 - eng Patchset Released on 17-SEP-04, 11i.ENG.I
3315665 - eni Patchset Released on 08-OCT-04, 11i.ENI.H
3151587 - fa Patchset Released on 18-OCT-04, 11i.FA.O
3514740 - fem Patchset Superseded on 27-AUG-04, 11i.FEM.B
3418286 - ff Patchset Released on 27-JUL-04, 11i.FF.I
2864462 - fii Patchset Released on 05-NOV-04 from Note:259484.1, 11i.FII.G
2768757 - flm Patchset Released on 17-SEP-04, 11i.FLM.I
3262159 - fnd Patchset Released on 04-NOV-04 from Note:259484.1, 11i.FND.H
2456473 - fpt Patchset Released on 11-OCT-02, 11i.FPT.D
2682790 - frm Patchset Superseded on 24-NOV-02, 11i.FRM.F
2770453 - fte Patchset Released on 17-SEP-04, 11i.FTE.F
3151594 - fv Patchset Released on 18-OCT-04, 11i.FV.J
3271405 - gcs Patchset Released on 05-NOV-04 from Note:259484.1, 11i.GCS.B
3418292 - ghr Patchset Released on 27-JUL-04, 11i.GHR.J
3151409 - gl Patchset Released on 18-OCT-04, 11i.GL.J
2916578 - gma Patchset Released on 17-SEP-04, 11i.GMA.L
2916585 - gmd Patchset Released on 17-SEP-04, 11i.GMD.L
2916589 - gme Patchset Released on 17-SEP-04, 11i.GME.L
2916592 - gmf Patchset Released on 17-SEP-04, 11i.GMF.L
2916596 - gmi Patchset Released on 17-SEP-04, 11i.GMI.L
2916602 - gml Patchset Released on 17-SEP-04, 11i.GML.L
2916603 - gmp Patchset Released on 17-SEP-04, 11i.GMP.L
3018908 - gms Patchset Released on 05-DEC-03 from Note:259484.1, 11i.GMS.L
2916605 - gr Patchset Released on 17-SEP-04, 11i.GR.L
3177666 - hri Patchset Released on 05-FEB-04 from Note:259484.1, 11i.HRI.F
2717041 - hxc Patchset Obsoleted on 27-MAR-03, 11i.HXC.C
3530830 - hxt Patchset Released on 04-NOV-04 from Note:259484.1, 11i.HXT.H
3289862 - ia Patchset Released on 05-NOV-04 from Note:259484.1, 11i.IA.A
1306459 - iba Patchset Superseded on 21-JUN-00, 11i.IBA.A
3025788 - ibc Patchset Released on 05-NOV-04, 11i.IBC.C
3071058 - ibe Patchset Released on 21-JUN-04, 11i.IBE.P
3215243 - ibu Patchset Released on 17-SEP-04, 11i.IBU.P
3151563 - iby Patchset Released on 18-OCT-04, 11i.IBY.P
3212296 - icx Patchset Released on 17-SEP-04, 11i.ICX.I
3103016 - ieb Patchset Released on 29-OCT-03, 11i.IEB.R
3103006 - iec Patchset Released on 29-OCT-03, 11i.IEC.R
2688479 - iem Patchset Superseded on 28-NOV-02, 11i.IEM.Q
3112614 - ieo Patchset Released on 29-OCT-03, 11i.IEO.R
3105044 - ies Patchset Released on 29-OCT-03, 11i.IES.R
3101379 - ieu Patchset Released on 29-OCT-03, 11i.IEU.R
3274195 - iex Patchset Released on 05-NOV-04 from Note:259484.1, 11i.IEX.G
3151665 - igi Patchset Released on 18-OCT-04, 11i.IGI.N
3082081 - igs Patchset Released on 01-APR-04 from Note:259484.1, 11i.IGS.L
3093820 - igw Patchset Superseded on 12-DEC-03 from Note:259484.1, 11i.IGW.F
3284214 - imc Patchset Released on 05-NOV-04 from Note:259484.1, 11i.IMC.L
2770966 - inv Patchset Released on 17-SEP-04, 11i.INV.J
3069070 - ipa Patchset Released on 28-NOV-03, 11i.IPA.F
2695944 - isc Patchset Released on 17-SEP-04, 11i.ISC.B
2692950 - itg Patchset Released on 11-OCT-04 from Note:259484.1, 11i.ITG.F
3151471 - ja Patchset Released on 18-OCT-04, 11i.JA.H
3151480 - je Patchset Released on 18-OCT-04, 11i.JE.I
3151483 - jg Patchset Released on 18-OCT-04, 11i.JG.J
3151519 - jl Patchset Released on 18-OCT-04, 11i.JL.L
3263420 - jtm Patchset Released on 04-NOV-04 from Note:259484.1, 11i.JTM.F
2386712 - jts Patchset Released on 22-OCT-02, 11i.JTS.E
2769918 - mrp Patchset Released on 17-SEP-04, 11i.MRP.I
3200649 - msc Patchset Released on 17-SEP-04, 11i.MSC.I
3200658 - msd Patchset Released on 17-SEP-04, 11i.MSD.I
3200659 - mso Patchset Released on 17-SEP-04, 11i.MSO.I
3200664 - msr Patchset Released on 17-SEP-04, 11i.MSR.G
3099306 - mst Patchset Released on 17-SEP-04, 11i.MST.A
2770126 - mwa Patchset Released on 17-SEP-04, 11i.MWA.H
1733032 - oe Patchset Released on 03-MAY-01, 11i.OE.C
3195187 - okc Patchset Released on 17-SEP-04, 11i.OKC.N
3195207 - oke Patchset Released on 17-SEP-04, 11i.OKE.J
3195201 - oki Patchset Released on 17-SEP-04, 11i.OKI.J
3101250 - okl Patchset Released on 17-SEP-04 from Note:259484.1, 11i.OKL.F
3195197 - oko Patchset Released on 17-SEP-04, 11i.OKO.I
3440839 - okr Patchset Released on 17-SEP-04, 11i.OKR.L
3195193 - oks Patchset Released on 17-SEP-04, 11i.OKS.O
3195204 - okx Patchset Released on 17-SEP-04, 11i.OKX.N
2770166 - ont Patchset Released on 17-SEP-04, 11i.ONT.J
2695953 - opi Patchset Released on 17-SEP-04, 11i.OPI.B
3291795 - ota Patchset Released on 04-NOV-04 from Note:259484.1, 11i.OTA.I
3073155 - ozf Patchset Released on 09-OCT-04, 11i.OZF.D
2991508 - pa Patchset Released on 28-NOV-03, 11i.PA.L
3418225 - pay Patchset Released on 27-JUL-04, 11i.PAY.M
3418216 - per Patchset Released on 27-JUL-04, 11i.PER.N
2770116 - pjm Patchset Released on 17-SEP-04, 11i.PJM.H
3416752 - pmi Patchset Released on 07-OCT-04 from Note:259484.1, 11i.PMI.H
3151458 - pn Patchset Released on 18-OCT-04, 11i.PN.K
3212265 - po Patchset Released on 17-SEP-04, 11i.PO.I
3212251 - poa Patchset Released on 17-SEP-04, 11i.POA.F
3212274 - pon Patchset Released on 17-SEP-04, 11i.PON.J
3212271 - pos Patchset Released on 17-SEP-04, 11i.POS.E
3418295 - pqh Patchset Released on 28-JUL-04, 11i.PQH.J
3418304 - pqp Patchset Released on 28-JUL-04, 11i.PQP.J
3070696 - prp Patchset Released on 05-NOV-04, 11i.PRP.B
3153659 - psa Patchset Released on 18-OCT-04, 11i.PSA.I
3151556 - psb Patchset Released on 18-OCT-04, 11i.PSB.J
3418306 - psp Patchset Released on 28-JUL-04, 11i.PSP.I
3025814 - pv Patchset Released on 09-OCT-04, 11i.PV.H
2769925 - qa Patchset Released on 17-SEP-04, 11i.QA.I
2937175 - qot Patchset Released on 21-JUN-04, 11i.QOT.D
2770137 - qp Patchset Released on 17-SEP-04, 11i.QP.J
3151463 - qrm Patchset Released on 18-OCT-04, 11i.QRM.D
3151391 - rg Patchset Released on 18-OCT-04, 11i.RG.H
2770345 - rlm Patchset Released on 17-SEP-04, 11i.RLM.J
3418312 - ssp Patchset Released on 28-JUL-04, 11i.SSP.J
2770336 - vea Patchset Released on 17-SEP-04, 11i.VEA.J
2768748 - wip Patchset Released on 17-SEP-04, 11i.WIP.I
2770088 - wms Patchset Released on 17-SEP-04, 11i.WMS.G
2768755 - wps Patchset Released on 17-SEP-04, 11i.WPS.H
2770367 - wsh Patchset Released on 17-SEP-04, 11i.WSH.J
2770100 - wsm Patchset Released on 17-SEP-04, 11i.WSM.I
3263588 - xdo Patchset Released on 04-NOV-04 from Note:259484.1, 11i.XDO.H
3214732 - xdp Patchset Released on 17-SEP-04, 11i.XDP.X
3151394 - xla Patchset Released on 18-OCT-04, 11i.XLA.H
2701907 - xnc Patchset Released on 15-APR-03, 11i.XNC.N
3195219 - xni Patchset Released on 17-SEP-04, 11i.XNI.K
3214804 - xnp Patchset Released on 17-SEP-04, 11i.XNP.X
3014217 - xns Patchset Released on 17-SEP-04, 11i.XNS.V
3151450 - xtr Patchset Released on 18-OCT-04, 11i.XTR.K
3264437 - zpb Patchset Released on 01-OCT-04, 11i.ZPB.A
" > ${OUT_DIR}/11510_Base.txt
}
##########################
### Main Program Calls ###
##########################
Args="$*"
ArgCount="$#"
Build_Merged_Patches_Report
exit
fi
Get_Version
Compare_Patches
echo "Finished: Compare_Patches (Report.txt)"
Send_Results
echo "Finished: All Steps"