http://appsdbasworld.blogspot.com

appsdbasworld

 
APPS R12
  • R12.AD.A.DELTA.4 Patch
  • Disable concurrent manager
  • Increasing the number oacore process type(JVM) and...
  • Release12 installation
  • InitSID.ora settings for release12
  • Creating custom top in release12
  • Changing apps password
  • Apps questions
  • Workflow Notification Mailer Setup
  • Schedule downtime in R12
  • Enable/Disable restrict session of Apache
  • APPS 11i
  • Indian localization patch
  • Opening forms from linux machine
  • Replacing Jinitiator with JRE for Oracle Apps 11i
  • Enabling SSL for E-Business suite 11i
  • Executing gather schema statistics at backend
  • Cleaning temporary tablespace
  • How to check versions
  • How to find patchset level
  • Cleaning concurrent manager tables
  • Database General
  • Create A Production (Full or Partial) Duplicate On...
  • Creating a Duplicate Database on a New Host Using ...
  • Database Cloning
  • 11g top new features
  • New background processes in 10g
  • 10g Data Pump
  • Installing Oracle Database 9i (9.2.0.8) on RHEL 4
  • Query to kill inactive sessions
  • Installing 11g(11.1.0) database on Redhat Linux 4
  • Check Deprecated Initialization Parameters in 11g
  • Online backup 9i & 10g
  • Enable/Disable archivelog in 9i
  • Creating recovery catalog in remote database
  • Creating database with create database command
  • Application Server
  • web cache cloning
  • 10g AS installation with linux
  • Operating System
  • Script to start/stop R12 services
  • Basic commands to check system statistics
  • Statspack analyzer
  • Analyze your statspack report
  • Search
    Only search this Blog
    E-mail Subscription

    Enter your email address:

    Delivered by FeedBurner

    Others Coming Soon!
    Your Ad Here
    Tuesday, June 17, 2008
    To find patchset level in apps.
    -------------------------------

    1. Here's the patchsets.sh script. Copy this script from $Header up to
    end of the script and ftp to your sever. Ftp this file as a application
    user and save it.



    # $Header: patchsets.sh 4.41 2008/07/23 14:06:01 Steve.Andrew ftp_site $
    #############################################################################
    ## patchsets.sh - used to compare applptch.txt to patchset listings from ARU.
    ## - Cuurently 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)
    ## [htmlout=file_name] [applptch=applptch_file.txt]
    ## [htmlout11i=file_name]
    ## [htmloutR12=file_name]
    ## [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 Report:
    ## connect=apps/apps@connection report=applied_patches
    ##
    ## 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)
    ##
    ## $ 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!!! - Steve.Andrew@oracle.com
    ##
    ## 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:
    ###############################################################################
    ## Author: Steve Andrew Written: April 10, 2000 Updated: DEC 20, 2005
    ##
    ## 8/7/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 james.sargent@oracle.com 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: Ronald.rademaker@oracle.com
    ## 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
    ##
    #############################################################################

    ## ### HELPFUL PROGAM TIPS #####################################
    ## 10sc patch file has no version info ... only word "Applied at start..."
    ## Applied B765114: Patch succeeded. Time is Mon Aug 09 05:25:18 PM
    ## Applied B777860: Patch succeeded. Time is Mon Aug 09 08:01:53 PM
    ##
    ### Note: I will assume 11.5.2 will look the same... for version
    ### 11.5.1 update
    ## %%% applptch file format 11.5.A
    ## CURRENT_RELEASE: 11.5.1
    ## RELEASE_CHANGE_DATE: Tue Jun 06 2000 10:23:24
    ## FILE_CHANGE_DATE: Mon Jul 17 2000 16:35:36
    ## WHY_FILE_CHANGED: aru 1256034D
    ##
    ### 11.02 Example Header
    ## %%% applptch file format 11.0.A
    ## CURRENT_RELEASE: 11.0.200
    ## RELEASE_CHANGE_DATE: Tue Jul 13 1999 10:34:42
    ## FILE_CHANGE_DATE: Tue Feb 15 2000 10:16:38
    ## WHY_FILE_CHANGED: aru 973520D
    ##
    ## a 10.7 16.1 NCA Example:
    ## CURRENT_RELEASE: 10.7.0
    #####################################################################

    ##
    ## Make files created easy to overwrite... rw-rw-rw- to support
    ## multiple unix ids.
    ##
    umask 000

    TOOL_VERSION=`head -1 patchsets.sh | awk '{print $4}'`
    export TOOL_VERSION

    ## SET TO AVOID A DEBUG PROBLEM
    OUT_DIR=.; export OUT_DIR

    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

    if [ "${TERM}" = "" ];then
    TERM=vt100; export TERM
    fi

    # NT is Windows_NT -- needed to trap some MKS commands
    OS=`uname -a | awk '{print $1}'`
    # Slightly dif. syntax for uname on Cygwin, workaround:
    # it uname returns: CYGWIN_NT_5.0 userName xxx
    OS1=`echo "${OS}" | grep "CYGWIN"`
    if [ "${OS1}" != "" ];then
    OS="Windows_NT"
    CYGWIN="y"
    CUST_TEMP="."
    fi
    export OS CYGWIN CUST_TEMP

    #
    # 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

    if [ "${OS}" = "AIX" -o "${OS}" = "Windows_NT" ];then
    aix=y
    export aix
    fi

    if [ "${OS}" = "Windows_NT" ]; then
    # DOMAIN=`domain` cygwin failed with this syntax
    DOMAIN=`ipconfig /all | grep -i "Primary Dns Suffix" | awk '{print $12}'`
    else
    DOMAIN=`grep domain /etc/resolv.conf | awk '{print $2}'`
    fi
    export DOMAIN

    MACHINE=`uname -a`
    export MACHINE

    ## Applptch.txt Raw Data Files
    RELR12=${OUT_DIR}/R12_patchsets.txt
    REL115=${OUT_DIR}/11i_patchsets.txt
    REL110=${OUT_DIR}/110_patchsets.txt
    REL110=${OUT_DIR}/110_patchsets.txt
    REL107=${OUT_DIR}/107_patchsets.txt
    REL161=${OUT_DIR}/16_patchsets.txt
    REL107NCA=${OUT_DIR}/107NCA_patchsets.txt

    ########################################################
    # 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

    export R1151_PATCHES R1152_PATCHES R1153_PATCHES R1154_PATCHES R1155_PATCHES R1156_PATCHES R1157_PATCHES
    export R11510_PATCHES R1159_PATCHES R1158_PATCHES PATCHSET_LIST R1200_PATCHES RELR12

    if [ "${connect}" = "" ]; then

    if [ "${applptch}" = "" ];then

    ckVersion=`echo "${version}" | egrep '10.7|11.0'`
    if [ -r $APPL_TOP/admin/${TWO_TASK:=$ORACLE_SID}/applptch.txt -a "${ckVersion}" != "" ]; then
    ## 11.0.x and 11.i Location
    applptch=$APPL_TOP/admin/${TWO_TASK:=$ORACLE_SID}/applptch.txt
    elif [ -r $APPL_TOP/applptch.txt -a "${ckVersion}" != "" ]; then
    ## 10.7 and back
    applptch=$APPL_TOP/applptch.txt
    elif [ "${ckVersion}" != "" ]; then
    ## Just create a dummy one
    echo "" > dummy_applptch.txt
    applptch=dummy_applptch.txt
    else
    ## Appears that the AD patch has been applied or we are on >= 11.5.5
    ## or there is a Problem : Need connect=apps/apps@${TWO_TASK} for sqlplus
    ## to get the applied bug list and build Patch.csv
    Need_Login_And_Password=True; export Need_Login_And_Password
    Need_Database_Patch_List=True; export Need_Database_Patch_List
    echo "Connection needed when using 11.5.5 or greater."
    echo ""
    echo "Please Enter username/password@connect_string"
    echo "ie. (apps/apps@VIS): \c"
    read connect
    fi
    fi

    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

    if [ "${Need_Database_Patch_List}" = "True" ];then
    echo "Getting Appsversion Version from the Database"
    Get_DB_Apps_Version
    echo " ... DETERMINED DB VERSION: $AppsVer"
    CHK11i=`echo "${AppsVer}" | grep "^11."`
    CHKR12=`echo "${AppsVer}" | grep "^12."`
    if [ "${CHK11i}" != "" ];then
    R11i=YES; export R11i
    Debug " ... setup for R11i"
    PATCHSET_LIST=${OUT_DIR}/11i_patchsets.txt; export PATCHSET_LIST
    fi
    if [ "${CHKR12}" != "" ];then
    R12=YES; export R12
    Debug " ... setup for R12"
    PATCHSET_LIST=${OUT_DIR}/R12_patchsets.txt; export PATCHSET_LIST
    fi
    fi

    REPORT=Report.txt; export REPORT
    REPORT_FILE=`echo "$REPORT" | awk -F"/" '{print $6}'`
    PATCH_LIST=Patch.csv
    PATCH_LIST_FILE=`echo "$PATCH_LIST" | awk -F"/" '{print $6}'`

    #####################################
    # Clearing Report File from Last Run
    #####################################
    echo > $REPORT

    LOG=$OUT_DIR/log.txt
    LOG_COUNT=$OUT_DIR/log_count.txt

    # Mail and Output Options
    silent=${silent:=n}
    Screen=${Screen:=n}
    Editor=${Editor:=vi}
    Outfile=${Outfile:=`pwd`/usobOutfile.log}
    Email=${Email:=$Email}
    SendEmail=${SendEmail:=y}

    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

    EmailSubject=${EmailSubject:="Mailer - Run by: $USER"}
    HTMLTitle=${HTMLTitle:="Web Based uSOB Title by Steve"}
    HTMLoutput=${HTMLoutput:=n}

    ##
    ## NOTE: Need to call this before PSEUDO PRODUCT WORK
    ## to get at the XXX_pathcsets.txt files
    ##

    Build_Patchset_Lists

    ## PROBLEM: This file ( R12_patchsets.txt, 11i_patchsets.txt) does not
    ## exist until calling Build Patch List. ( Added above)

    if [ "${R12}" = "YES" ];then

    ## NOTE: I need to fix to support R12 PSEUDO Products
    # select product_name, product_abbreviation, pseudo_product_flag,
    # application_short_name, product_family_abbreviation
    # from ad_pm_product_info
    # where pseudo_product_flag = 'N'
    # order by 2
    ##
    ## NEED TO SETUP: FULL, SHAR, and ALL_PSEUDO for R12
    ## - HARD CODE to MAKE IT FASTER, MAY NEED TO RERUN OCCASIONALLY
    ##

    # MOVED from Get_Version to Setup
    # Build APPLFULL and APPLSHAR env variables and export the products installed and shared.
    ## echo "ABOUT TO CALL: Set_APPLFULL_APPLSHAR_from_DB"
    Set_APPLFULL_APPLSHAR_from_DB
    Debug "APPLFULL= $APPLFULL"
    Debug "APPLSHAR = $APPLSHAR"
    FULL="$APPLFULL"; export FULL
    SHAR="$APPLSHAR"; export SHAR
    ALL_PSEUDO_PRODUCTS="$FULL $SHAR"
    export ALL_PSEUDO_PRODUCTS

    Debug "ALL_PSEUDO_PRODUCTS = $ALL_PSEUDO_PRODUCTS"

    sed 1,5d ${OUT_DIR}/R12_patchsets.txt | egrep -vi '_PF' | awk '{print $1}' | sort -u | tr '[a-z][a-z]' '[A-Z][A-Z]' > ${OUT_DIR}/allprods.txt

    elif [ "${R11i}" = "YES" ];then

    # LEFT OUT WHEN ADDING Support for R12
    Set_APPLFULL_APPLSHAR_from_DB

    ## SETUP FOR PSEUDO PRODUCTS
    ##############################################
    FULL="ABM AHL AHM AK ALR AMF AMS AMW AP AR AS ASF ASL ASN ASO ASP AST AU "
    FULL="$FULL AX AZ BEN BIC BIL BIM BIS BIV BIX BNE BOM BSC CCT CE CHV CLN "
    FULL="$FULL CN CRP CS CSC CSD CSE CSF CSI CSL CSM CSP CSR CSS CUE CUF CUG "
    FULL="$FULL CUS CZ DDD DOM DNA EAA EAM EC ECX EDR EGO ENG ENI EVM FA FEM FII FLM "
    FULL="$FULL FND FPA FPT FRM FTE FUN FV GCS GHR GL GMA GMD GME GMF GMI GML GMP "
    FULL="$FULL GMS GR HRI HXC HXT HZ IA IBA IBC IBE IBP IBU IBY ICX IEB IEC IEM "
    FULL="$FULL IEO IES IEU IEX IGC IGF IGI IGS IGW IMC IMT INV IPD ISC ITG JA JE "
    FULL="$FULL JG JL JTF JTM JTS LNS ME MRP MSC MSD MSO MSR MST MWA OKB OKC OKE "
    FULL="$FULL OKI OKL OKO OKR OKS OKX ONT OPI OTA OZF OZP OZS PA PAY PER PJI "
    FULL="$FULL PJM PMI PN PO POA POM PON POS PQH PQP PRP PSA PSB PSP PV QA QOT "
    FULL="$FULL QP QRM RG RHX RLM SSP VEA WIP WMS WPS WSH WSM XDO XDP XLA XLE XNB "
    FULL="$FULL XNC XNI XNM XNP XNS XTR ZFA ZPB ZSA ZX"
    export FULL

    # ADDED OAM so to PSEUDO PRODUCT Listing
    # MISTAKE: REMOVE THE OAM from HERE, is should find it in 11i_patchsets.sh below...
    # Real Problem was a few lines down I was removing metalink distributed patchsets...
    SHAR=" AD AMV ASG CUA CUI CUN CUP DT FF IPA MFG OE RLA SHT VEH "
    export SHAR

    ALL_PSEUDO_PRODUCTS="$FULL $SHAR"
    export ALL_PSEUDO_PRODUCTS

    sed 1,5d ${OUT_DIR}/11i_patchsets.txt | egrep -vi '_PF' | awk '{print $1}' | sort -u | tr '[a-z][a-z]' '[A-Z][A-Z]' > ${OUT_DIR}/allprods.txt

    fi

    if [ "${R12}" = "YES" -o "${R11i}" = "YES" ];then

    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:
    #############################################################################

    Debug "Start of Get_Arguments"

    ##
    ## 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

    Debug "End of Get_Arguments"

    #
    # Runs and Exits :
    # Usage: upgrade=./patchsets.sh or upgrade="/tmp/patchsets.sh"
    #
    if [ "${upgrade}" != "" ];then
    Get_Latest_Patchsets
    fi

    }


    Full_Help ()
    {
    ## Procedure Name: Full_Help
    ################################################################
    ## Provides on-line help with the right options. ? help as
    ## parameters passed.
    ## Note: Exits program after being called.
    ################################################################
    ##

    clear
    echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Check Applied Patchsets Tool - patchsets.sh
    #############################################################################
    ## Name: patchsets.sh Version: $TOOL_VERSION
    ## By: steve.andrew@oracle.com Last Modified: Nov 09, 2007
    ## Written: 6/22/99
    #############################################################################
    ##
    ## Usage: patchsets.sh connect=Apps_login/pw
    ## [ad_bug_date="DD-MON-YY"] (11i/R12 only)
    ## [htmlout=file_name] - Report.txt converted to html
    ## [htmlout11i=file_name] - Report_11i.txt to html
    ## [htmloutR12=file_name] - Report_R12.txt to html
    ## [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
    ## Note: Gets generated automatically during normal runs
    ##
    ## 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
    #############################################################################

    Purpose: To Aid in analysis of the latest available patchsets in relationship
    to all patchsets that have been applied. If patches in the db the
    program uses ad_bugs & ad_applied_patches table or applptch.txt file.
    ##
    ## Usage: /bin/sh or /bin/ksh both have been tested.
    ##
    ##
    11i Usage when latest AD patchsets (E or more) have been applied
    or > 11.5.4

    $ ./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
    $ ./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)

    # All other Oracle Applications Installs
    $ ./patchsets.sh
    defaults to \$APPL_TOP/admin/\$TWO_TASK/applptch.txt or equiv

    $ ./patchsets.sh applptch=/tmp/my_applptch.txt

    #################
    # New Test Feature: (Feedback welcome = steve.andrew@oracle.com)
    # - ftp itself for you with latest version)
    # - be sure to backup your \$HOME/.netrc before testing this option.
    # $ patchsets.sh upgrade=. or upgrade=/tmp
    ##################

    TO RUN UNDER NT with MKS:
    1) Get to the drive where the appl_top is.
    C:> D:
    D:\\>
    Make a tmp directory on that drives root.
    D:> mkdir tmp (this is where the patchset lists get created)

    2) cd to the APPL_TOP path and
    then execute the envshell to setup the env variables.
    D:\\> cd D:\\\apps\\\visappl
    D:\\\apps\\\visappl> envshell
    -> A new window spawns with the correct env settings, use it for step 3
    3) Start the MKS SHELL,
    D:\\\apps\\\visappl> sh
    $
    4) Run the patchsets program from the APPL_TOP/admin/$ORACLE_SID directory
    $ cd $APPL_TOP/admin/VIS
    $ ./patchsets.sh applptch=applptch.txt

    IF AIX GIVES: 0403-029 BUFFER ERROR:
    1) Install X11.dt.rte on AIX (this gave me /usr/dt/bin/dtksh
    version 93 of ksh)
    After the update from IBM, then the Esc Control-V should
    show at least: Version M-11/16/93i
    2) Modified the script:
    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

    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.

    WARNING: Relationship between patchsets and family packs:
    The report may say that the highest patchset installed is: B, but if a
    Family Pack was installed that includes that Product, then the Family Pack
    could have a higher version of that particular product. The program should
    pick up patchsets applied by Family Packs.

    If the most recently available patchset is not available on metalink
    for download, then you can run the report with available=metalink to limit
    the available patchsets to those that are on Metalink.

    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 Consolicated 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.
    ATG currently plans to release CU2, and not and more ATG_PF Family Packs
    for code updates. If you have any questions on this, please log a SR.

    NOTE: 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.

    - For more information on this program, get the latest version, Note: 139684.1
    and find examples of its use you can go to the following:

    http://grape.us.oracle.com/~ssandrew/ (Internal)
    or
    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"
    #

    REAL_HOME=$HOME; export REAL_HOME
    HOME=`pwd`; export HOME

    echo "Checking for patchsets.sh update from oracle-ftp"

    if [ "${skipnetrc}" = "y" ]; then
    echo "Manual update should have been made to netrc"
    else
    if [ -r .netrc ]; then
    echo "You will have to manually update your .netrc file"
    echo "machine ftp.oracle.com login anonymous password anonymous@oracle.com"
    exit
    else
    echo "machine ftp.oracle.com login anonymous password anonymous@oracle.com" > .netrc
    chmod 600 .netrc
    fi
    fi


    ##
    ## 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

    NEW_VERSION=`head $OUT_DIR/patchsets.sh | grep Header | awk '{print $4}'`

    if [ "${REAL_HOME}" != "${HOME}" ];then
    rm ${HOME}/.netrc
    fi
    # RESET BACK TO REAL HOME
    HOME=$REAL_HOME; export HOME

    echo "Info: "
    echo "#######################################"
    echo " Current_Version: $TOOL_VERSION"
    echo "Downloaded version: $NEW_VERSION"
    echo "#######################################"

    if [ "${TOOL_VERSION}" != "$NEW_VERSION}" ];then
    cp ./patchsets.sh ./patchsets.sh.OLD
    cp ${OUT_DIR}/patchsets.sh ${upgrade}/patchsets.sh
    echo
    echo "New Version ($NEW_VERSION) was put in place ${upgrade}/patchsets.sh"
    else
    echo
    echo "The versions were the same so, no changes were made."
    fi

    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

    BaseAppsVer=`echo $AppsVer | awk -F"." '{print $1"."$2"."$3}'`
    export AppsVer BaseAppsVer

    }


    Build_Applied_Patches_Report ()
    {
    #
    # Requested Report to show applied patches
    ###############################################

    if [ "${BaseAppsVer}" = "12.0.0" ]; then

    ad_bug_date="01-DEC-05"
    # echo " ... R12.0.0 patch report to after 01-DEC-05 and not include 3140000 and 4440000"

    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

    column patch_name head Bug format a8
    column Product format a7
    column trackable_entity_abbr head Track_Ent format a9
    column baseline_name head Baseline format a8
    column codelevel head CodeLevel format a10
    column patch_type head Patch_Type format a11
    column last_update_date head Applied format a10

    SELECT 'R12 Applied Patches Report by Date ran on: '|| sysdate Report FROM dual;

    SELECT distinct ap.patch_name,
    decode(ab.application_short_name, null,
    ate.abbreviation, ab.application_short_name) Product,
    ab.trackable_entity_abbr, ab.baseline_name BaseLine,
    'R12.'||ate.abbreviation||'.'||ate.codelevel CodeLevel,
    ap.patch_type Patch_Type, ap.last_update_date Applied
    FROM applsys.ad_bugs ab, applsys.ad_applied_patches ap,
    applsys.ad_patch_drivers pd, ad_trackable_entities ate
    WHERE ab.bug_number = ap.patch_name
    and ap.applied_patch_id = pd.applied_patch_id
    and ab.trackable_entity_abbr = ate.abbreviation
    and ab.aru_release_name != '11i'
    and ap.last_update_date > '01-JAN-07'
    ORDER BY ap.last_update_date desc;

    column abbreviation head Product format a7
    column name head Product_Name format a38
    column type head Patch_Type format a14
    column codelevel head CodeLevel format a10
    column baseline head BaseLine format a8

    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

    select abbreviation, name, codelevel, baseline
    from ad_trackable_entities where type = 'product'
    order by type desc, 1
    "

    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

    column patch_name head Bug format a10
    column application_short_name head Product format a7
    column patch_type head Patch_Type format a16
    column patch_level head Patch_Level format a12
    column last_update_date head Applied format a11
    column ReportDate head ReportDate format a20

    prompt
    prompt 11i Applied Patches by Most Recently Applied Date

    SELECT sysdate ReportDate FROM dual;

    SELECT distinct ap.patch_name,
    decode(ab.application_short_name, null, mini.app_short_name,
    ab.application_short_name) application_short_name,
    ap.patch_type patch_type, mini.patch_level patch_level,
    ap.last_update_date Applied
    FROM applsys.ad_bugs ab, applsys.ad_applied_patches ap,
    applsys.ad_patch_drivers pd, applsys.ad_patch_driver_minipks mini
    WHERE ab.bug_number = ap.patch_name
    and ap.applied_patch_id = pd.applied_patch_id
    and pd.patch_driver_id = mini.patch_driver_id(+)
    ORDER BY ap.last_update_date desc"

    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

    column patch_name head Bug format a10
    column application_short_name head Product format a9
    column patch_type head Patch_Type format a16
    column patch_level head Patch_Level format a12
    column last_update_date head Applied format a11
    column ReportDate head ReportDate format a20

    prompt
    prompt 11i Applied Patches by Most Recently Applied Date

    SELECT sysdate ReportDate FROM dual;

    SELECT distinct ap.patch_name,
    decode(mini.app_short_name, null, 'not_avail', mini.app_short_name) application_short_name,
    ap.patch_type patch_type, mini.patch_level patch_level,
    ap.last_update_date Applied
    FROM applsys.ad_bugs ab, applsys.ad_applied_patches ap,
    applsys.ad_patch_drivers pd, applsys.ad_patch_driver_minipks mini
    WHERE ab.bug_number = ap.patch_name
    and ap.applied_patch_id = pd.applied_patch_id
    and pd.patch_driver_id = mini.patch_driver_id(+)
    ORDER BY ap.last_update_date desc"

    Run_SQL

    echo " ... Running Applied_Patches_Report.sql 11i sql: Applied_Patches_11i.sql"
    echo "${SQL};" > Applied_Patches_11i.sql
    if [ -r $OUT_DIR/$OUT_FILE.txt ];then
    ## ORA-00904
    CHECK_MISSING_COLUMN=`grep "ORA-00904" $OUT_DIR/$OUT_FILE.txt`
    if [ "${CHECK_MISSING_COLUMN}" != "" ];then
    SQL=$SQL2;
    echo "${SQL};" > Applied_Patches_11i.sql
    Run_SQL
    fi
    cp $OUT_DIR/$OUT_FILE.txt Applied_Patches_11i.txt
    echo " ... Created Patches Applied Report: Applied_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
    ###################################

    if [ "${BaseAppsVer}" = "12.0.0" ]; then
    ad_bug_date="01-DEC-05"
    echo " ... R12.0.0 limiting mini-packs to after 01-DEC-05"

    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 > '${ad_bug_date}'
    and ( patch_level like 'R12%' or patch_level like '11i%' )
    group by patch_level"
    Run_SQL

    # echo "Running R12 sql: $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"

    if [ $COUNT -ge 1 ];then
    # pn 11i.PN.H 2398753 - format of 11i_patchsets.txt

    echo " ... Converting Patch Names to Patch Numbers. (using XX_patchsets.txt)"

    while read aline
    do
    Debug " ... Working with: $aline"
    PatchsetDate=`echo $aline | awk -F"," '{print $1}'`
    PatchsetName=`echo $aline | awk -F"," '{print $2}' | sed 's/ //g'`
    if [ "${PatchsetName}" != "" ];then

    if [ "${R12}" = "YES" ];then
    MATCH=`grep "${PatchsetName}" $OUT_DIR/R12_patchsets.txt | awk '{print $3}'`
    else
    MATCH=`grep "${PatchsetName}" $OUT_DIR/11i_patchsets.txt | awk '{print $3}'`
    fi
    fi
    if [ "${MATCH}" != "" ];then
    Debug " ..... matched: $PatchsetDate, $PatchsetName is bug => $MATCH"
    echo "$PatchsetDate, $PatchsetName, $MATCH" >> Applied_Ad_Minipks.csv
    else
    Debug " .... no match: $PatchsetName in XX_patchsets.txt"
    fi
    done < Applied_Minipks.csv

    if [ -r Applied_Minipks.csv ];then
    rm Applied_Minipks.csv
    fi

    # Later APPEND to Patch.csv - as the list of applied patchsets found in ad_patch_dirver_minipks
    # awk -F"," '{print $1, $3}' Applied_Ad_Minipks.csv >> Patch.csv

    fi

    fi
    }



    Get_DB_Patch_List ()
    {
    # Called to generate the complete Applied Patches list from the Database
    # TABLE USED: AD_BUGS
    #
    # REMOVED THESE cause awk -F"," later, 4/11/2002
    # prompt Patch Listing
    # prompt ===================

    # Create Applied_Minipks.csv - Applied Patchsets (ad_patch_driver_minipks is updated ~> 11.5.6)
    echo "Running query on ad_patch_driver_minipks adds all patchsets applied."
    Get_AD_Patch_Minipks

    Build_Applied_Patches_Report

    if [ "${patch_list}" = "ad_applied_patches" ];then

    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

    elif [ "${patch_list}" != "" ];then

    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

    # nvl(application_short_name, 'Not_Available')
    # Bad idea, going to remove completely
    # OLD WAY: SQL="
    # OLD WAY: set head off
    # OLD WAY: set pagesize 50000
    # OLD WAY: prompt Product, Bug
    # OLD WAY: select bug_id || ', ' || bug_number from ad_bugs"

    if [ "${BaseAppsVer}" = "12.0.0" ];then

    ad_bug_date="01-JAN-07"
    echo "Building Patch.csv for 12.0.0 ad_bugs ad_applied_patches after 01-JAN-07 rel. date"

    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
    where last_update_date > '${ad_bug_date}'
    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}'
    "

    elif [ "${BaseAppsVer}" = "11.5.7" -o "${BaseAppsVer}" = "11.5.8" -o "${BaseAppsVer}" = "11.5.9" -o "${BaseAppsVer}" = "11.5.10" ];then
    # FOR 11.5.7 and 11.5.8 and 11.5.9 Only use this date filter to make it faster...
    # Note: All the baselines have been added from FND_PRODUCT_INSTALLATIONS and
    # the release notes, so these bugs should not really be needed anyway. After 11.5.6
    # INTERNAL NOTE:
    # I picked this date...

    if [ "${ad_bug_date}" = "" ];then
    ad_bug_date="01-JAN-02"
    fi

    ####################################################################################################################
    # 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

    Debug "Using ad_bugs/ad_applied patches with ad_bugs < 01-JAN-02 date (11.5.7/11.5.8/11.5.9/11.5.10)"

    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}'
    "

    # Should indicate 11.5.1 - 11.5.6
    else

    if [ "${ad_bug_date}" = "" ];then
    ad_bug_date="01-JAN-1951"
    fi

    Debug "Using all bugs in ad_bugs/ad_applied patches (11.5.1-11.5.6) date > 1951(year) "
    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

    Debug "Extracting Patches Applied with:"
    Debug "SQL=$SQL"
    Run_SQL
    cp $OUT_DIR/$OUT_FILE.txt Patch.csv

    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

    # 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

    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

    Debug "Setting APPLSHAR and APPLFULL from fnd_product_installations."

    # BUG: 2743473, Work-Around for V. 4.1 of patchsets.sh
    # Need to find out Why this product: is not showing up in FND_ tables
    # ie.: fnd_application_vl view is based on table: FND_APPLICATION
    # SELECT B.ROWID ROW_ID , B.APPLICATION_ID , B.APPLICATION_SHORT_NAME ,
    # B.LAST_UPDATE_DATE , B.LAST_UPDATED_BY , B.CREATION_DATE ,
    # B.CREATED_BY , B.LAST_UPDATE_LOGIN , B.BASEPATH
    # FROM FND_APPLICATION B
    # WHERE B.APPLICATION_SHORT_NAME like 'H%'
    ## HZ = Trading Community
    # 4.1 fixed below in 4.2 HZ_FULL=`echo "$APPLFULL" | grep "HZ "`
    ##
    ## HZ_FULL=`echo "$APPLFULL" | grep "HZ"`
    ## if [ "${HZ_FULL}" != "" ];then
    ## echo "HZ I" >> $OUT_DIR/$OUT_FILE.txt
    ## echo " ... Adding HZ to APPLFULL - to $OUT_DIR/$OUT_FILE.txt... "
    ## fi
    ## HZ_SHAR=`echo "$APPLSHAR" | grep "HZ"`
    ## if [ "${HZ_SHAR}" != "" ];then
    ## echo "HZ S" >> $OUT_DIR/$OUT_FILE.txt
    ## echo " ... Adding HZ to APPLSHAR - to $OUT_DIR/$OUT_FILE.txt... "
    ## cp $OUT_DIR/$OUT_FILE.txt DEBUG_HZ.txt
    ## fi
    ## End of HZ Work-Around to APPEND to OUT_FILE.txt

    ## 4.2 HZ Hard-coded fix.
    echo "HZ I" >> $OUT_DIR/$OUT_FILE.txt

    # 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

    # rm $OUT_DIR/$OUT_FILE.txt if you can read it.
    Purge_Outfile

    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
    #############################################################################

    # WORKING IN THE DATABASE for patches...
    if [ "${Need_Database_Patch_List}" = "True" ];then

    # echo "Getting Appsversion Version from the Database"
    # Get_DB_Apps_Version
    # echo " ... DETERMINED DB VERSION: $AppsVer"
    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

    ## Moved to Setup:
    ## Build APPLFULL and APPLSHAR env variables and export the products installed and shared.
    ## Set_APPLFULL_APPLSHAR_from_DB

    if [ "${patch_list}" != "" ]; then
    Count=`grep "," Patch.csv | wc | awk '{ print $1}'`
    echo "USING Supplied option: patch_list=${patch_list}, Records in Patch.csv: $Count"
    if [ "${patch_list}" = "ad_applied_patches" ]; then
    echo " ..... Warning: This table will not include merged patchsets, if you are using admrgpch"
    echo " ..... It is alot slower, but please use ad_bugs or the complete patch list table to be sure"
    fi
    else
    echo " ... FOUND: $BUG_COUNT_RETURNED records in AD_BUGS & AD_APPLIED_PATCHES"
    fi

    # NOT WORKING IN DATABASE or "${Need_Database_Patch_List}" != "True" and appltch not blank
    elif [ "${applptch}" != "" ]; then
    SC_YES=""
    SC_YES=`head $applptch | grep "Applied"`
    else
    # NOT WORKING IN DATABASE or "${Need_Database_Patch_List}" != "True" and appltch blank
    # If using the applptch variable check for sc
    SC_YES=`head $applptch | grep "Applied"`
    fi

    if [ "${Need_Database_Patch_List}" = "True" ];then
    echo " ... Generated csv Patch datafile from the ad_xyz tables or Database: applptch=Patch.csv"
    # NOTE: Already ran Get_DB_Patch_List which APPENDED the ad_patch_driver_minipks patchsets
    # to Patch.csv - Report_11i.txt using $applptch for its list of applied patches.
    applptch="Patch.csv"
    Debug "DEBUG=> Setting applptch=Patch.csv"

    ############################################################################
    ## All NON-10sc Applptch.txt files get version and BaseAppsVersion HERE:
    ############################################################################
    elif [ "${SC_YES}" = "" ]; then

    if [ "${version}" = "10.7" ]; then
    AppsVer=${version}
    Debug "Getting version from header of applptch = $applptch"
    Debug "Got Versino: AppsVer=$AppsVer"
    export AppsVer
    BaseAppsVer=`echo $AppsVer | awk -F"." '{print $1"."$2"."$3}'`
    export BaseAppsVer
    elif [ "${version}" = "11.0" -o "${version}" = "11.0.1" -o "${version}" = "11.0.2" -o "${version}" = "11.0.3" ]; then
    AppsVer=${version}
    Debug "Getting version from header of applptch = $applptch"
    Debug "Got Versino: AppsVer=$AppsVer"
    export AppsVer
    BaseAppsVer=`echo $AppsVer | awk -F"." '{print $1"."$2"."$3}'`
    export BaseAppsVer
    else
    AppsVer=`head $applptch | grep CURRENT_RELEASE | awk '{print $2}'`
    Debug "Getting version from header of applptch = $applptch"
    Debug "Got Versino: AppsVer=$AppsVer"
    export AppsVer
    BaseAppsVer=`echo $AppsVer | awk -F"." '{print $1"."$2"."$3}'`
    export BaseAppsVer
    fi

    # Appsverision: 11.0.200 BaseAppsVer:11.0
    else
    AppsVer=16.1
    BaseAppsVer=16.1
    PatchsetDate=$REL161_DATE
    export BaseAppsVer
    export AppsVer
    fi


    #################################################################################
    ### DETERMINE THE VERSIONS SO THE Base Patchset List can be added to Report.txt
    #################################################################################
    ### Appsversion: 11.0.200 BaseAppsVer:11.0
    case "$BaseAppsVer" in

    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/110*_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$$

    Debug "Capture AppsVer=$AppsVer followed by one space then word followed."

    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: Steve.Andrew@oracle.com 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/110*_Base.txt $OUT_DIR/110_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

    # ADDED SUPPORT BACK:
    # echo "No longer supporting 10.7, please contact me if this is a problem."
    # exit

    rm $OUT_DIR/110*_Base.txt $OUT_DIR/110_patchsets.txt
    # rm $OUT_DIR/107*_Base.txt $OUT_DIR/107*_patchsets.txt
    rm $OUT_DIR/115*_Base.txt $OUT_DIR/11i_patchsets.txt

    # echo "DEBUG: IN 10.7.0 with nca=$nca "
    if [ "${nca}" = "y" ]; then
    echo "USING REL 107 NCA for Middle-tiers patch list"
    PatchsetList=$REL107NCA
    Patched=`cat $PatchsetList | grep "16.1" | awk '{print $3}' | sort -u`
    BasePatchsetList=${OUT_DIR}/107_Base.txt
    else
    PatchsetList=$REL107
    Patched=`cat $PatchsetList | grep "10.7" | awk '{print $3}' | sort -u`
    BasePatchsetList=${OUT_DIR}/107_Base.txt
    fi
    ;;
    16.1) PatchsetDate=$REL161_DATE

    echo "No longer supporting 16.1, please contact me if this is a problem."
    exit

    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

    if [ "${TWO_TASK}" != "" -o "${ORACLE_SID}" != "" ];then
    echo " Database: ${TWO_TASK:=$ORACLE_SID}" >> $1
    fi

    if [ "${APPLFULL}" != "" ];then
    echo " Limited Report to: APPLFULL and APPLSHAR products" >> $1
    echo " APPLFULL: $APPLFULL" >> $1
    echo " APPLSHAR: $APPLSHAR" >> $1
    else
    echo " Limited Report to: ALL Products, APPLFULL/Share not set." >> $1
    fi

    if [ "${PSEUDO}" != "" -a "${BaseAppsVer}" != "10.7.0" ];then
    echo " Pseudo Products: ${PSEUDO}" >> $1
    fi

    echo " Written By: $2" >> $1
    echo " WARNING: DOWNLOAD CHANGING NOVEMBER 3rd, 2006" >> $1
    echo " Program Updates: ftp://ftp.oracle.com/support/outgoing/PATCHSET_COMPARE_TOOL" >> $1
    echo " Download Patchsets: Go to link below or click on Patches" >> $1
    echo " http://metalink.oracle.com/metalink/plsql/dis_download.startup" >> $1
    echo "=============================================================================" >> $1

    }



    Compare_Patches_title () {
    echo "
    $*
    Product Baseline Version Running Version Latest Available,Status
    ------- ----------------- --------------- -----------------------"|
    tee -a $DIFF_OUT
    }


    Compare_Patches_11i () {

    # Only run this code if 11i the is installed version
    if [ "${R11i}" != "YES" ]; then
    return 0
    fi

    DIFF_OUT=Report_11i.txt
    rm -f $DIFF_OUT

    if [ "${OS}" = "Windows_NT" ]; then
    rev=""; bold=""; offall=""
    else
    rev=`tput rev`; bold=`tput bold`; offall=`tput sgr0`
    fi

    Add_Report_Header $DIFF_OUT "Oracle Support Services"

    echo "Starting: Report_11i.txt"

    #######
    # 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
    12.0*) FILES="$R1200_PATCHES" ;;
    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

    ## for file in $FILES
    ## do
    ## if [ "${aix}" = "y" ];then
    ## cat $file|awk '{print $1}' >> ${OUT_DIR}/BASE_PATCH_LIST
    ## else
    ## BASE_PATCH_LIST="$BASE_PATCH_LIST `cat $file|awk '{print $1}'`"
    ## # cat $file | awk '{print $1}' | grep '[1-9][1-9]' >> BASELINE.txt
    ## fi
    ## done
    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

    # Build list of products that have released Family Packs or _pf
    # V. 4.8 REMOVED: grep -v Closed|
    FAMILY_PACKS=`cat $PATCHSET_LIST | awk '{print $1}'| grep _pf | sort -u`

    # Added to get list from ad_bugs results in patch.csv
    if [ "${Need_Database_Patch_List}" = "True" ];then

    if [ "${OS}" = "AIX" -o "${OS}" = "Windows_NT" ];then
    Debug "AIX Specific - building ${OUT_DIR}/PATCHES_APPLIED file as master from $applptch"
    cat $PATCH_LIST | awk -F"," '{print $2}' | sort -un >> ${OUT_DIR}/PATCHES_APPLIED
    ## ## Date: 05/09/07 Version: 4.34
    ## cat $PATCH_LIST | awk -F"," '{print $2}' | sort -un >> ${OUT_DIR}/PATCHES_APPLIED
    ## Clean update a bit more for NT shells
    cat $PATCH_LIST | awk -F"," '{print $2}' | egrep -v '[a-z]|[A-Z]|\.' | sort -un > ${OUT_DIR}/PATCHES_APPLIED
    else
    Debug "Non-AIX building PATCHES_APPLIED variable $applptch"
    PATCHES_APPLIED=`awk -F"," '{print $2}' $applptch |
    grep -v mrg | grep -v "^$" |
    sort -un`
    fi

    fi

    Compare_Patches_title " FAMILY PACK PATCHES"
    SHAR=NO;FULL=NO;PSEUDO_TITLE=NO
    # typeset -l PRODUCTS_ALL="$FAMILY_PACKS $APPLFULL $APPLSHAR"
    # echo "FAMILY_PACKS=$FAMILY_PACKS"; export FAMILY_PACKS
    # echo "APPLFULL=$APPLFULL"; export APPLFULL
    # echo "APPLSHAR=$APPLSHAR"; export APPLSHAR

    for product in `echo $FAMILY_PACKS $APPLFULL $APPLSHAR $PSEUDO | tr "[A-Z][A-Z]" "[a-z][a-z]"`
    do
    unset BASE CURRENT LATEST patch_ver patch_num latest latest_patch patch_num_all patch

    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

    ## IF patch from ARU is in BASE_PATCH_LIST (All BASELINES MERGED, name it BASE else CURRENT

    for patch in `grep "^$product " $PATCHSET_LIST | awk '{print $2"^"$3"^"$6"^"$7}'`
    do

    # 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 [ "${latest_patch}" = "3453499" -a "${patch_num}" = "3817226" ];then
    skip=Rare_adx_problem_skip_change
    else
    if [ "${available}" = "metalink" ];then
    case $patch in
    *By_Metalink) latest_patch=$patch ;;
    esac
    else
    latest_patch=$patch
    fi
    fi
    done

    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

    status=`echo "${latest_patch}" | awk -F'^' '{print $3}' | cut -b 1-3`
    dist=`echo "${latest_patch}" | awk -F'^' '{print $4}' | cut -b 1-8`

    ## Ends up with BASE line, if present, and CURRENT (Highest of each...)

    ##############################################################################
    ## 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 [ "${product}" = "adx" ];then
    # echo "IN BODY: with patch_num=$patch_num}XXX"
    A=`echo "$patch_num_all" | grep 3453499`
    B=`echo "$patch_num_all" | grep 3817226`
    if [ "${A}" != "" -a "${B}" != "" ];then
    patch_num_all=`echo $patch_num_all | sed 's/3817226|//g'`
    # echo "FIXED: patch_num_all=$patch_num_all"
    fi
    fi

    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

    if [ "$LATEST" != "${CURRENT}" ]; then
    LATEST="${rev}${LATEST}${offall}";
    fi

    if [ "$CURRENT" != "${BASE}" ]; then
    # CURRENT="${bold}${CURRENT}${offall}";
    CURRENT1=`echo "${bold}${CURRENT}${offall} " | cut -b 1-30`
    echo "${PRODUCT}${BASE} ${CURRENT1} ${LATEST}, ${status}-${dist}"
    else
    echo "${PRODUCT}${BASE} ${CURRENT1}${LATEST}, ${status}-${dist}"
    fi

    done

    echo "

    WARNING on Family Packs and Patchsets:
    The patchsets included in a Family Pack are not all distributed as standalone, but
    should show up in ad_bugs as an included patch. These were not included
    in the Report because they were not downloadable directly from Metalink. This has
    caused some confusion in the real Baseline or Running patchsets because you had to
    determine that based on the readme of your Family Packs that have been applied.
    This has been changed and the patchsets in ${OUT_DIR}/11i_patchsets.txt now includes all
    the patchsets even if 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/11i_patchsets.txt.

    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.

    Note2: (as of v.4.14)
    Latest Available shows all patchsets even if NOT AVAILABLE for download on
    Metalink. An optional flag to limit Latest Available to patches only available
    on metailink has been provided. ie. Add: available=metalink to command line.

    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.

    TXK Autoconfig Template Rollups - As of Mar 2006
    TXK-B : 2682076
    TXK-C : 2682863
    TXK-D : 2757379
    TXK-E : 2902755
    TXK-F : 3104607
    TXK-G : 3239694 (Feb-2004)
    TXK-H : 3416234 (May-2004)
    TXK-I : 3594604 (Oct-2004)
    TXK-J : 3950067 (Feb-2005)
    TXK-J.1 : 4367673
    TXK-K : 4104924 (May-2005)
    TXK-L : 4489303 (Nov-2005)
    TXK-M : 4717668 (Mar-2006)

    New Status Field:
    ##############################################################################
    PATCHSET STATUS:
    Rel=Released, Sup=Superseded, Obs=Obsoleted
    DISTRIBUTION STATUS:
    By_Metal=On Metalink, Not_Dist=Not Available, By_Dev=Available from Development only

    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

    " >> $DIFF_OUT

    }

    Compare_Patches_R12 () {

    # Only run this code if 11i the is installed version
    if [ "${R12}" != "YES" ]; then
    return 0;
    fi

    DIFF_OUT=Report_R12.txt
    if [ -r $DIFF_OUT ];then
    rm -f $DIFF_OUT
    fi

    if [ "${OS}" = "Windows_NT" ]; then
    rev=""; bold=""; offall=""
    else
    rev=`tput rev`; bold=`tput bold`; offall=`tput sgr0`
    fi

    Add_Report_Header $DIFF_OUT "Oracle Support Services"

    echo "Starting: $DIFF_OUT Report"

    #######
    # 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)
    #######

    case "$BaseAppsVer" in
    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

    # Build list of products that have released Family Packs or _pf
    # V. 4.8 REMOVED: grep -v Closed|
    FAMILY_PACKS=`cat $PATCHSET_LIST | awk '{print $1}'| grep _pf | sort -u`

    # Added to get list from ad_bugs results in patch.csv
    if [ "${Need_Database_Patch_List}" = "True" ];then

    if [ "${OS}" = "AIX" -o "${OS}" = "Windows_NT" ];then
    Debug "AIX Specific - building ${OUT_DIR}/PATCHES_APPLIED file as master from $applptch"
    ## ## Date: 05/09/07 Version: 4.34
    ## cat $PATCH_LIST | awk -F"," '{print $2}' | sort -un >> ${OUT_DIR}/PATCHES_APPLIED
    ## Clean update a bit more for NT shells
    cat $PATCH_LIST | awk -F"," '{print $2}' | egrep -v '[a-z]|[A-Z]|\.' | sort -un > ${OUT_DIR}/PATCHES_APPLIED
    else
    Debug "Non-AIX building PATCHES_APPLIED variable $applptch"
    PATCHES_APPLIED=`awk -F"," '{print $2}' $applptch |
    grep -v mrg | grep -v "^$" |
    sort -un`
    fi

    fi

    Compare_Patches_title " FAMILY PACK PATCHES"
    SHAR=NO;FULL=NO;PSEUDO_TITLE=NO
    # typeset -l PRODUCTS_ALL="$FAMILY_PACKS $APPLFULL $APPLSHAR"
    # echo "FAMILY_PACKS=$FAMILY_PACKS"; export FAMILY_PACKS
    # echo "APPLFULL=$APPLFULL"; export APPLFULL
    # echo "APPLSHAR=$APPLSHAR"; export APPLSHAR

    for product in `echo $FAMILY_PACKS $APPLFULL $APPLSHAR $PSEUDO | tr "[A-Z][A-Z]" "[a-z][a-z]"`
    do
    unset BASE CURRENT LATEST patch_ver patch_num latest latest_patch patch_num_all patch

    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

    ## IF patch from ARU is in BASE_PATCH_LIST (All BASELINES MERGED, name it BASE else CURRENT

    for patch in `grep "^$product " $PATCHSET_LIST | awk '{print $2"^"$3"^"$6"^"$7}'`
    do

    # 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
    # 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 [ "${available}" = "metalink" ];then
    case $patch in
    *By_Metalink) latest_patch=$patch ;;
    esac
    else
    latest_patch=$patch
    fi
    done
    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}'`
    LATEST="${patch_ver}(${patch_num})"
    status=`echo "${latest_patch}" | awk -F'^' '{print $3}' | cut -b 1-3`
    dist=`echo "${latest_patch}" | awk -F'^' '{print $4}' | cut -b 1-8`

    ## 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`

    echo "${PRODUCT}${BASE} ${CURRENT1}${LATEST}, ${status}-${dist}">>$DIFF_OUT

    if [ "$LATEST" != "${CURRENT}" ]; then
    LATEST="${rev}${LATEST}${offall}";
    fi

    if [ "$CURRENT" != "${BASE}" ]; then
    # CURRENT="${bold}${CURRENT}${offall}";
    CURRENT1=`echo "${bold}${CURRENT}${offall} " | cut -b 1-30`
    echo "${PRODUCT}${BASE} ${CURRENT1} ${LATEST}, ${status}-${dist}"
    else
    echo "${PRODUCT}${BASE} ${CURRENT1}${LATEST}, ${status}-${dist}"
    fi

    done

    echo "

    WARNING on Family Packs and Patchsets:
    Things have changed in R12 with Code Levels and Code Lines.
    A report: Applied_Patches_R12.txt is also included that shows all of your applied
    patches along with the Codelevels for all products (including pseudo), and
    family_packs. The Codelevels are stored in a new table called:
    ad_trackable_entities.
    Patches are no longer unique in that the same patch number can be released
    more than once but at different code levels.
    Patchsets included in a Family Pack are not all distributed as standalone, but
    should show up in ad_bugs as an included patch.
    The patchsets in ${OUT_DIR}/R12_patchsets.txt includes all the patchsets even if
    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.

    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.

    Note2: (as of v.4.14)
    Latest Available shows all patchsets even if NOT AVAILABLE for download on
    Metalink. An optional flag to limit Latest Available to patches only available
    on metailink has been provided. ie. Add: available=metalink to command line.

    New Status Field:
    ##############################################################################
    PATCHSET STATUS:
    Rel=Released, Sup=Superseded, Obs=Obsoleted
    DISTRIBUTION STATUS:
    By_Metal=On Metalink, Not_Dist=Not Available, By_Dev=Available from Development only

    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

    " >> $DIFF_OUT

    }


    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
    12.0*) FILES="$R12_PATCHES"
    R12=YES;;
    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 [ -r BASELINE.txt ];then
    rm -f BASELINE.txt
    fi

    for file in $FILES
    do
    # BASE_PATCH_LIST="$BASE_PATCH_LIST `cat $file|awk '{print $1}'`"
    cat $file | awk '{print $1}' | grep '[1-9][1-9]' >> BASELINE.txt
    done
    export BASE_PATCH_LIST

    }


    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..

    if [ "${Need_Database_Patch_List}" = "True" ];then

    PATCH_LIST_CSV_DONE=y
    if [ "${aix}" = "y" ];then
    cat Patch.csv |awk -F"," '{print $2}' >> ${OUT_DIR}/PATCHES_APPLIED.txt
    else
    PATCHES_APPLIED=`awk -F"," '{print $2}' Patch.csv`
    fi

    # PATCH_LIST is aready build: Patch.csv for in DB system
    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

    # OLD WAY:::
    # grep "begin bug " $applptch | grep -v mrg | awk '{print $3","$4}' | sort -u >> $PATCH_LIST
    # FOUND THAT SOME BUGS have no active actions, but still have merged bugs...
    # Had to add the addional bugs below into the list... USING the commented out section to get the prod. short
    # for i in `grep "begin aru bug" applptch.txt | awk '{print $3}' |sed 's/_/ /g' | sed 's/bug //g'`
    # do
    # echo "CHECKING: $i"
    # grep "^#" applptch.txt | grep "bug " | grep $i
    # done

    # NEW WAY:
    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




    # This APPENDS to the REPORT file the Header Part A
    Add_Report_Header $REPORT "Oracle Support, SSANDREW"

    echo >> $REPORT

    # This Builds Part B of the Report.txt file
    echo "Applied Patchsets that Match ARU:" >> $REPORT
    # echo "(also see: http://aru.us.oracle.com, then patchsets) " >> $REPORT

    if [ "${Need_Database_Patch_List}" = "True" ];then

    # Note: Patched is the List of CURRENT Patchsets from Oracle ARU
    #########
    echo " ... USING DB Patch Information: $applptch (From Database) "

    new_compare=; export new_compare

    if [ "${new_compare}" = "" ];then

    ##
    ## 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
    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"

    if [ "$YES" != "" ];then
    grep "${i}" $PatchsetList >> $OUT_DIR/patchsets$$
    Debug "Adding: match of: grep $i $PatchsetList to $OUT_DIR/patchsets$$"
    Debug "NOTE: YES=$YES Applied=$Applied REL115=$REL115 BasePatchsetList=$BasePatchsetList"
    # echo "IN: XX=$XX YES=$YES FROM:$REL110 APPLIED=$Applied" >> $REPORT
    else
    Debug "$i Not found in Patch.csv array..."
    fi
    done

    fi

    # Build a list of the APPLIED Patchsets in Current directory, if available
    if [ -r $OUT_DIR/patchsets$$ ];then
    sort $OUT_DIR/patchsets$$ > APPLIED_PATCHSETS.txt
    fi

    # 10.7 or 10.7 NCA section
    elif [ "${SC_YES}" = "" ]; then

    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

    # Build a list of the APPLIED Patchsets in Current directory, if available
    if [ -r $OUT_DIR/patchsets$$ ];then
    sort $OUT_DIR/patchsets$$ > APPLIED_PATCHSETS.txt
    fi

    else

    ############################
    ## If 10sc Patch Format ####
    ############################

    for i in $Patched
    do
    YES=`grep "Applied" $applptch | grep "$i"`

    if [ "$YES" != "" ];then
    grep $i $PatchsetList >> $OUT_DIR/patchsets$$
    fi
    done

    # Build a list of the APPLIED Patchsets in Current directory.
    if [ -r $OUT_DIR/patchsets$$ ];then
    sort $OUT_DIR/patchsets$$ > APPLIED_PATCHSETS.txt
    fi

    fi

    ## This allows for a Sorted List which is easier to compare
    case "$BaseAppsVer" in
    11.5*|12.0*) # Just for format dif with 11i

    echo "FAMILY PACKS" >> $REPORT
    echo "Prod Patchset Bug RELEASED Release Status Distribution" >> $REPORT
    echo "=======================================================================================" >> $REPORT
    FP=`grep _PF $OUT_DIR/patchsets$$`

    if [ "${FP}" != "" ];then
    sort $OUT_DIR/patchsets$$ | grep _PF >> $REPORT
    else
    echo "No Family Packs matches found." >> $REPORT
    echo " == This is somewhat unusual: Manually look in $OUT_DIR for the listings" >> $REPORT
    echo " == of current patchsets and compare them manually to confirm " >> $REPORT
    echo " == that this is correct ! 11.5.x/R12 installs include family packs." >> $REPORT
    fi

    echo >> $REPORT
    echo "APPLIED PATCHSETS" >> $REPORT
    echo "Prod Patchset Bug RELEASED Release Status Distribution" >> $REPORT
    ;;

    *) # Currently for 10.7, 11.0
    echo "Prod Patchset Bug RELEASED Release Status" >> $REPORT

    ;;
    esac
    ## ak 11.0.AK.B 733964 13-NOV-98 Patchset Superseded


    ## NOTE: No _PF's in 10.7 or 11.0.X
    echo "=======================================================================================" >> $REPORT
    if [ -r $OUT_DIR/patchsets$$ ];then
    sort $OUT_DIR/patchsets$$ | grep -v _PF >> $REPORT
    rm $OUT_DIR/patchsets$$
    else
    echo "No patchsets seem to Match." >> $REPORT
    echo " == This is unusual: Manually look in $OUT_DIR for the listings" >> $REPORT
    echo " == of current patchsets and compare them manually to confirm" >> $REPORT
    echo " == that this is correct ! " >> $REPORT
    fi

    ## FIX LATEST AVAILABLE - by limiting to metalink, even if status is not released, could be superseded.
    ## grep -i released $PatchsetList | sort > FULL_RELEASED.txt
    ## grep -i metalink $PatchsetList | sort > FULL_RELEASED.txt
    ## FIX LATEST AVAILABLE2

    if [ "${available}" = "metalink" ];then
    grep -i metalink $PatchsetList | sort > FULL_RELEASED.txt
    Msg1="on Metalink"
    else
    grep -i released $PatchsetList | sort > FULL_RELEASED.txt
    Msg1=""
    fi

    # APPLIED_PATCHSETS.txt
    # Add the Header
    # grep "Product" $OUT_DIR/Full_Released.txt | head -1 >> $REPORT


    # Build the dif. list showing PATCHSETS NOT in APPLIED already

    if [ "$APPLFULL" = "" ];then

    echo >> $REPORT
    echo "The Most Recent Release Patchsets ${Msg1}(Not Included Above) are: " >> $REPORT
    echo "=======================================================================================" >> $REPORT
    diff APPLIED_PATCHSETS.txt FULL_RELEASED.txt | grep ">" | cut -c3- >> $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

    for prods in `echo $APPLFULL $APPLSHAR $PSEUDO`
    do
    grep "\.$prods\." $OUT_DIR/patchset_tmp$$ >> $OUT_DIR/patchset_tmp2$$
    done

    sort $OUT_DIR/patchset_tmp2$$ >> $REPORT

    # Clean-up some of the tmp files.
    if [ -r $OUT_DIR/patchset_tmp2$$ ]; then
    rm $OUT_DIR/patchset_tmp*
    fi
    if [ -r $OUT_DIR/patchsets$$ ];then
    rm $OUT_DIR/patchsets$$
    fi

    echo >> $REPORT
    echo "Note: APPLFULL and APPLSHAR" >> $REPORT
    echo " This Most Recent Released Patchsets are limited to the installed and shared " >> $REPORT
    echo " products listed in APPLFULL and APPLSHAR variables. For 11i, this is based on " >> $REPORT
    echo " an fnd table when using connect= and an ad_bugs table exists." >> $REPORT
    echo "" >> $REPORT
    echo "Note2: Baseline Details " >> $REPORT
    echo " Starting with version 3.6 of this program, the Baseline patchsets" >> $REPORT
    echo " and Family Packs are included in the above listing so the list is" >> $REPORT
    echo " alot more than you have applied. To see what was delivered for each" >> $REPORT
    echo " baseline review the ${OUT_DIR}/XX_Base.txt files where XX=11XX or 12. " >> $REPORT
    echo "" >> $REPORT
    echo "Note3: " >> $REPORT
    echo " Not_Distributed: the patch is only available by a Family Pack. No one off patch available" >> $REPORT
    echo " By_Dev : the patch is only available by a Family Pack. No one off patch available" >> $REPORT
    echo " By_Metalink : the patch can be downloaded by Metalink or by ftp to updates.oracle.com" >> $REPORT
    echo "" >> $REPORT
    echo "Note4: (as of v.4.14)" >> $REPORT
    echo " Report shows all patchsets available even if not downloadable from Metalink." >> $REPORT
    echo " To limit the report to the Latest Available on metailink for download." >> $REPORT
    echo " ie. Add: available=metalink to command line." >> $REPORT
    echo " Typically these patchsets are included in a Family Pack, if not available for download." >> $REPORT
    echo "" >> $REPORT
    echo " KEY TO new Status Field:" >> $REPORT
    echo " ##############################################################################" >> $REPORT
    echo " PATCHSET STATUS: Rel=Released, Sup=Superseded, Obs=Obsoleted " >> $REPORT
    echo " DISTRIBUTION STATUS: By_Metal=On Metalink, Not_Dist=Not Available" >> $REPORT
    echo " : By_Dev=Available from Development only" >> $REPORT
    echo "" >> $REPORT
    echo "For specific patchsets questions, please first check ARU on Metalink. " >> $REPORT
    fi

    echo >> $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 [ "${OS}" = "Windows_NT" ]; then

    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

    # Added to fix a problem with the dtksh on AIX
    # where it would not take the << Zen even with the upgraded shell
    # Esc Control-V gave: 92 shell
    if [ "${aix}" = "y" ];then

    echo "set arraysize 4" > afile.sql
    echo "set pagesize 50000" >> afile.sql
    echo "set pause off" >> afile.sql
    echo "set linesize 80" >> afile.sql
    echo "set feedback on" >> afile.sql
    echo "$SetOption " >> afile.sql
    echo "spool $OUT_DIR/$OUT_FILE.txt" >> afile.sql
    echo "$SQL ;" >> afile.sql
    echo "spool off " >> afile.sql
    echo "exit " >> afile.sql
    $ORACLE_HOME/bin/$SQLPLUS -s $connect @afile | grep NoThING
    rm afile.sql

    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

    if [ "${Screen}" = "y" ];then
    $Editor $REPORT
    fi

    if [ "${htmlout}" != "" ];then
    echo "
    Patchset Report: `date`    Version: $TOOL_VERSION" > $htmlout
    
    cat $REPORT >> $htmlout
    echo "
    " >> $htmlout
    fi

    if [ "${htmlout11i}" != "" -a "${R11i}" = "YES" ];then
    echo "
    Patchset Report_11i: `date`    Version: $TOOL_VERSION" > $htmlout11i
    
    cat Report_11i.txt >> $htmlout11i
    echo "
    " >> ${htmlout11i}
    fi

    if [ "${htmloutR12}" != "" -a "${R12}" = "YES" ];then
    echo "
    Patchset Report_11i: `date`    Version: $TOOL_VERSION" > $htmloutR12
    
    cat Report_R12.txt >> $htmloutR12
    echo "
    " >> ${htmloutR12}
    fi

    if [ "${silent}" = "n" ]; then
    ## Added silent mode for anyone who wants to use it as a Batch Job
    ##
    # End of report, explain a bit and show other files:
    echo "Oracle Patchsets Comparison, patchsets.sh, Version: $TOOL_VERSION"
    echo
    echo "The raw patchsets files have been put in your ${OUT_DIR}:"
    echo "===================================================="
    ls ${OUT_DIR}/*patchset*
    echo "===================================================="

    echo "The Report.txt and Patch.csv files can be found"
    echo "in your Current Directory: `pwd`"

    if [ "${R11i}" = "YES" ];then
    echo " Report_11i.txt - New Detailed Patchset Report for 11i"
    fi

    if [ "${R12}" != "YES" ];then
    echo " Report_12.txt - New Detailed Patchset Report for R12"
    fi

    echo " Report.txt - Patchset Comparison with ARU"
    echo " Patch.csv - Listing(csv) of all bugs applied (begin bug or ad_bugs)"
    echo "========================================================================"
    echo "Warning1: This report is only as up-to-date as when last downloaded."
    echo "Warning2: If your applptch.txt is not accurate, the results will not be"
    echo " accurate. ie. If you deleted it or if an applptch.bak has been"
    echo " created, you need to run against that and combine the results."
    echo ""
    echo "Download the most recent version whenever you want to get "
    echo "the updated ARU patchset listings. (see ${OUT_DIR}/XX_patchsets.txt)"
    echo
    echo "Find Updates at:"
    echo " http://grape.us.oracle.com/~ssandrew/ (Internal)
    or
    WARNING: SITE FOR DOWNLOAD CHANGING after NOVEMBER 3rd, 2006
    ftp://ftp.oracle.com/support/outgoing/PATCHSET_COMPARE_TOOL/ (External)
    "

    if [ "${htmlout}" != "" ];then
    echo
    echo " Note: htmlout file Report.txt to html was sent to: $htmlout"
    fi

    if [ "${htmlout11i}" != "" ];then
    echo
    echo " Note: htmlout11i file Report_11i.txt to html was sent to: $htmlout11i"
    fi

    if [ "${htmloutR12}" != "" ];then
    echo
    echo " Note: htmloutR12 file Report_11i.txt to html was sent to: $htmloutR12"
    fi


    fi


    }


    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..
    #############################################################################

    # Built from: (Cron job aru patchset listings...update on poseidon)
    #############################################################################
    # RELR12=/home/ssandrew/shtml/R12_patchsets.txt
    # REL115=/home/ssandrew/shtml/11i_patchsets.txt
    # REL110=/home/ssandrew/shtml/110_patchsets.txt
    # REL107=/home/ssandrew/shtml/107_patchsets.txt
    # REL161=/home/ssandrew/shtml/16_patchsets.txt
    # REL107NCA=/home/ssandrew/shtml/107NCA_patchsets.txt
    #############################################################################

    ##
    ## R12 SUPPORT
    ##

    RELR12_DATE="Feb 11 22:30"

    echo "

    Patchset
    Product Name Bug_number RELEASED_ Status DISTRIBUTION
    --------- ---------------- ---------- --------- -------------------- -------------------
    ad R12.AD.A 4502962 18-JAN-07 Checkin Released By_Metalink
    ad R12.AD.A.1 5905728 13-APR-07 Checkin Released Not_Distributed
    ad R12.AD.A.2 6014659 13-JUL-07 Checkin Released Not_Distributed
    ad R12.AD.A.3 6272715 14-OCT-07 Checkin Released Not_Distributed
    ad R12.AD.A.4 6510214 13-JAN-08 Checkin Released By_Metalink
    ad R12.AD.A.5 7305206 04-AUG-08 Checkin Released Not_Distributed
    ad R12.AD.A.6 7305220 05-NOV-08 Checkin Released By_Metalink
    ad R12.AD.B 6665350 13-AUG-08 Checkin Released Not_Distributed
    ado R12.ADO.A 6871277 11-AUG-08 Checkin Released Not_Distributed
    ado R12.ADO.B 6867824 11-AUG-08 Checkin Released Not_Distributed
    ahl R12.AHL.A 4510344 18-JAN-07 Checkin Released Not_Distributed
    ahl R12.AHL.A.1 5886833 13-APR-07 Checkin Released Not_Distributed
    ahl R12.AHL.A.2 6002370 12-JUL-07 Checkin Released Not_Distributed
    ahl R12.AHL.A.3 6264216 12-OCT-07 Checkin Released Not_Distributed
    ahl R12.AHL.A.4 6506800 10-JAN-08 Checkin Released Not_Distributed
    ahl R12.AHL.A.5 7290906 29-JUL-08 Checkin Released Not_Distributed
    ahl R12.AHL.A.6 7291478 03-NOV-08 Checkin Released Not_Distributed
    ahl R12.AHL.B 6657341 12-AUG-08 Checkin Released Not_Distributed
    ak R12.AK.A 4496642 18-JAN-07 Checkin Released Not_Distributed
    ak R12.AK.A.1 5907546 13-APR-07 Checkin Released Not_Distributed
    ak R12.AK.A.2 5917306 13-JUL-07 Checkin Released Not_Distributed
    ak R12.AK.A.3 6077390 11-OCT-07 Checkin Released Not_Distributed
    ak R12.AK.A.4 6354123 11-JAN-08 Checkin Released Not_Distributed
    ak R12.AK.A.5 6594738 29-JUL-08 Checkin Released Not_Distributed
    ak R12.AK.A.6 7237094 03-NOV-08 Checkin Released Not_Distributed
    ak R12.AK.B 6430051 11-AUG-08 Checkin Released Not_Distributed
    alr R12.ALR.A 4496584 18-JAN-07 Checkin Released Not_Distributed
    alr R12.ALR.A.1 5907552 13-APR-07 Checkin Released Not_Distributed
    alr R12.ALR.A.2 5917314 13-JUL-07 Checkin Released Not_Distributed
    alr R12.ALR.A.3 6077418 11-OCT-07 Checkin Released Not_Distributed
    alr R12.ALR.A.4 6354126 11-JAN-08 Checkin Released Not_Distributed
    alr R12.ALR.A.5 6594741 29-JUL-08 Checkin Released Not_Distributed
    alr R12.ALR.A.6 7237106 03-NOV-08 Checkin Released Not_Distributed
    alr R12.ALR.B 6430052 11-AUG-08 Checkin Released Not_Distributed
    ame R12.AME.A 5348050 18-JAN-07 Checkin Released Not_Distributed
    ame R12.AME.A.1 5889626 13-APR-07 Checkin Released Not_Distributed
    ame R12.AME.A.2 5997203 12-JUL-07 Checkin Released Not_Distributed
    ame R12.AME.A.3 6196260 12-OCT-07 Checkin Released Not_Distributed
    ame R12.AME.A.4 6506440 11-JAN-08 Checkin Released Not_Distributed
    ame R12.AME.A.5 6835789 15-MAY-08 Checkin Released Not_Distributed
    ame R12.AME.A.6 7291407 04-NOV-08 Checkin Released Not_Distributed
    ame R12.AME.B 6658013 12-AUG-08 Checkin Released Not_Distributed
    aml R12.AML.A 4460087 18-JAN-07 Checkin Released Not_Distributed
    aml R12.AML.A.1 5884237 12-APR-07 Checkin Released Not_Distributed
    aml R12.AML.A.2 6000240 12-JUL-07 Checkin Released Not_Distributed
    aml R12.AML.A.3 6261886 10-OCT-07 Checkin Released Not_Distributed
    aml R12.AML.A.4 6494418 11-JAN-08 Checkin Released Not_Distributed
    aml R12.AML.A.5 7299908 04-AUG-08 Checkin Released Not_Distributed
    aml R12.AML.A.6 7303707 03-NOV-08 Checkin Released Not_Distributed
    aml R12.AML.B 4562141 11-AUG-08 Checkin Released Not_Distributed
    ams R12.AMS.A 4460205 18-JAN-07 Checkin Released Not_Distributed
    ams R12.AMS.A.1 5884360 12-APR-07 Checkin Released Not_Distributed
    ams R12.AMS.A.2 6000306 12-JUL-07 Checkin Released Not_Distributed
    ams R12.AMS.A.3 6261509 10-OCT-07 Checkin Released Not_Distributed
    ams R12.AMS.A.4 6494430 11-JAN-08 Checkin Released Not_Distributed
    ams R12.AMS.A.5 7299932 04-AUG-08 Checkin Released Not_Distributed
    ams R12.AMS.A.6 7303708 03-NOV-08 Checkin Released Not_Distributed
    ams R12.AMS.B 4562181 11-AUG-08 Checkin Released Not_Distributed
    amv R12.AMV.A 4460199 18-JAN-07 Checkin Released Not_Distributed
    amv R12.AMV.A.1 5884098 12-APR-07 Checkin Released Not_Distributed
    amv R12.AMV.A.2 6000228 12-JUL-07 Checkin Released Not_Distributed
    amv R12.AMV.A.3 6261872 10-OCT-07 Checkin Released Not_Distributed
    amv R12.AMV.A.4 6496900 11-JAN-08 Checkin Released Not_Distributed
    amv R12.AMV.A.5 7299944 04-AUG-08 Checkin Released Not_Distributed
    amv R12.AMV.A.6 7303709 03-NOV-08 Checkin Released Not_Distributed
    amv R12.AMV.B 4562216 11-AUG-08 Checkin Released Not_Distributed
    amw R12.AMW.A 4442821 18-JAN-07 Checkin Released Not_Distributed
    amw R12.AMW.A.1 5884274 12-APR-07 Checkin Released Not_Distributed
    amw R12.AMW.A.2 5999585 12-JUL-07 Checkin Released Not_Distributed
    amw R12.AMW.A.3 6251302 13-OCT-07 Checkin Released Not_Distributed
    amw R12.AMW.A.4 6493689 11-JAN-08 Checkin Released Not_Distributed
    amw R12.AMW.A.5 6833299 15-MAY-08 Checkin Released Not_Distributed
    amw R12.AMW.A.6 7293767 03-NOV-08 Checkin Released Not_Distributed
    amw R12.AMW.B 4565226 11-AUG-08 Checkin Released Not_Distributed
    ap R12.AP.A 4442842 18-JAN-07 Checkin Released Not_Distributed
    ap R12.AP.A.1 5884297 12-APR-07 Checkin Released Not_Distributed
    ap R12.AP.A.2 5999586 12-JUL-07 Checkin Released Not_Distributed
    ap R12.AP.A.3 6251316 13-OCT-07 Checkin Released Not_Distributed
    ap R12.AP.A.4 6493697 11-JAN-08 Checkin Released Not_Distributed
    ap R12.AP.A.5 6832840 15-MAY-08 Checkin Released Not_Distributed
    ap R12.AP.A.6 7293702 04-NOV-08 Checkin Released Not_Distributed
    ap R12.AP.B 4565257 11-AUG-08 Checkin Released Not_Distributed
    ar R12.AR.A 4442853 18-JAN-07 Checkin Released Not_Distributed
    ar R12.AR.A.1 5884300 12-APR-07 Checkin Released Not_Distributed
    ar R12.AR.A.2 5999588 12-JUL-07 Checkin Released Not_Distributed
    ar R12.AR.A.3 6251323 13-OCT-07 Checkin Released Not_Distributed
    ar R12.AR.A.4 6493709 11-JAN-08 Checkin Released Not_Distributed
    ar R12.AR.A.5 6833063 15-MAY-08 Checkin Released Not_Distributed
    ar R12.AR.A.6 7293881 04-NOV-08 Checkin Released Not_Distributed
    ar R12.AR.B 4565266 12-AUG-08 Checkin Released Not_Distributed
    as R12.AS.A 4455992 18-JAN-07 Checkin Released Not_Distributed
    as R12.AS.A.1 5884080 12-APR-07 Checkin Released Not_Distributed
    as R12.AS.A.2 6000038 12-JUL-07 Checkin Released Not_Distributed
    as R12.AS.A.3 6261612 10-OCT-07 Checkin Released Not_Distributed
    as R12.AS.A.4 6494438 11-JAN-08 Checkin Released Not_Distributed
    as R12.AS.A.5 7299964 04-AUG-08 Checkin Released Not_Distributed
    as R12.AS.A.6 7303710 03-NOV-08 Checkin Released Not_Distributed
    as R12.AS.B 4547895 11-AUG-08 Checkin Released Not_Distributed
    asf R12.ASF.A 4455993 18-JAN-07 Checkin Released Not_Distributed
    asf R12.ASF.A.1 5884093 12-APR-07 Checkin Released Not_Distributed
    asf R12.ASF.A.2 6000072 12-JUL-07 Checkin Released Not_Distributed
    asf R12.ASF.A.3 6261643 10-OCT-07 Checkin Released Not_Distributed
    asf R12.ASF.A.4 6494443 11-JAN-08 Checkin Released Not_Distributed
    asf R12.ASF.A.5 7299967 04-AUG-08 Checkin Released Not_Distributed
    asf R12.ASF.A.6 7303712 03-NOV-08 Checkin Released Not_Distributed
    asf R12.ASF.B 4547896 11-AUG-08 Checkin Released Not_Distributed
    asg R12.ASG.A 4510091 18-JAN-07 Checkin Released Not_Distributed
    asg R12.ASG.A.1 5889798 13-APR-07 Checkin Released Not_Distributed
    asg R12.ASG.A.2 5999973 12-JUL-07 Checkin Released Not_Distributed
    asg R12.ASG.A.3 6263298 12-OCT-07 Checkin Released Not_Distributed
    asg R12.ASG.A.4 6506731 10-JAN-08 Checkin Released Not_Distributed
    asg R12.ASG.A.5 7300405 04-AUG-08 Checkin Released Not_Distributed
    asg R12.ASG.A.6 7300410 03-NOV-08 Checkin Released Not_Distributed
    asg R12.ASG.B 6657096 11-AUG-08 Checkin Released Not_Distributed
    asl R12.ASL.A 4460146 18-JAN-07 Checkin Released Not_Distributed
    asl R12.ASL.A.1 5884262 12-APR-07 Checkin Released Not_Distributed
    asl R12.ASL.A.2 6000254 12-JUL-07 Checkin Released Not_Distributed
    asl R12.ASL.A.3 6261906 10-OCT-07 Checkin Released Not_Distributed
    asl R12.ASL.A.4 6494449 11-JAN-08 Checkin Released Not_Distributed
    asl R12.ASL.A.5 7299971 04-AUG-08 Checkin Released Not_Distributed
    asl R12.ASL.A.6 7303713 03-NOV-08 Checkin Released Not_Distributed
    asl R12.ASL.B 4562221 11-AUG-08 Checkin Released Not_Distributed
    asn R12.ASN.A 4459008 18-JAN-07 Checkin Released Not_Distributed
    asn R12.ASN.A.1 5884201 12-APR-07 Checkin Released Not_Distributed
    asn R12.ASN.A.2 6000193 12-JUL-07 Checkin Released Not_Distributed
    asn R12.ASN.A.3 6261806 10-OCT-07 Checkin Released Not_Distributed
    asn R12.ASN.A.4 6494461 11-JAN-08 Checkin Released Not_Distributed
    asn R12.ASN.A.5 7300007 04-AUG-08 Checkin Released Not_Distributed
    asn R12.ASN.A.6 7303714 03-NOV-08 Checkin Released Not_Distributed
    asn R12.ASN.B 4545522 11-AUG-08 Checkin Released Not_Distributed
    aso R12.ASO.A 4459029 18-JAN-07 Checkin Released Not_Distributed
    aso R12.ASO.A.1 5884217 12-APR-07 Checkin Released Not_Distributed
    aso R12.ASO.A.2 6000212 12-JUL-07 Checkin Released Not_Distributed
    aso R12.ASO.A.3 6261857 10-OCT-07 Checkin Released Not_Distributed
    aso R12.ASO.A.4 6494469 11-JAN-08 Checkin Released Not_Distributed
    aso R12.ASO.A.5 7300012 04-AUG-08 Checkin Released Not_Distributed
    aso R12.ASO.A.6 7303715 03-NOV-08 Checkin Released Not_Distributed
    aso R12.ASO.B 4545523 11-AUG-08 Checkin Released Not_Distributed
    asp R12.ASP.A 4460134 18-JAN-07 Checkin Released Not_Distributed
    asp R12.ASP.A.1 5884254 12-APR-07 Checkin Released Not_Distributed
    asp R12.ASP.A.2 6000248 12-JUL-07 Checkin Released Not_Distributed
    asp R12.ASP.A.3 6261893 10-OCT-07 Checkin Released Not_Distributed
    asp R12.ASP.A.4 6494474 11-JAN-08 Checkin Released Not_Distributed
    asp R12.ASP.A.5 7300015 04-AUG-08 Checkin Released Not_Distributed
    asp R12.ASP.A.6 7303716 03-NOV-08 Checkin Released Not_Distributed
    asp R12.ASP.B 4562223 11-AUG-08 Checkin Released Not_Distributed
    ast R12.AST.A 4455994 18-JAN-07 Checkin Released Not_Distributed
    ast R12.AST.A.1 5884113 12-APR-07 Checkin Released Not_Distributed
    ast R12.AST.A.2 6000162 12-JUL-07 Checkin Released Not_Distributed
    ast R12.AST.A.3 6261684 10-OCT-07 Checkin Released Not_Distributed
    ast R12.AST.A.4 6494482 11-JAN-08 Checkin Released Not_Distributed
    ast R12.AST.A.5 7300031 04-AUG-08 Checkin Released Not_Distributed
    ast R12.AST.A.6 7303717 03-NOV-08 Checkin Released Not_Distributed
    ast R12.AST.B 4547897 11-AUG-08 Checkin Released Not_Distributed
    atg_pf R12.ATG_PF.A 4461237 18-JAN-07 Checkin Released Not_Distributed
    atg_pf R12.ATG_PF.A.1 5907545 15-APR-07 Checkin Released Not_Distributed
    atg_pf R12.ATG_PF.A.2 5917344 13-JUL-07 Checkin Released Not_Distributed
    atg_pf R12.ATG_PF.A.3 6077669 14-OCT-07 Checkin Released Not_Distributed
    atg_pf R12.ATG_PF.A.4 6272680 13-JAN-08 Checkin Released By_Metalink
    atg_pf R12.ATG_PF.A.5 6594849 30-JUL-08 Checkin Released Not_Distributed
    atg_pf R12.ATG_PF.A.6 7237006 05-NOV-08 Checkin Released By_Metalink
    atg_pf R12.ATG_PF.B 6430106 12-AUG-08 Checkin Released Not_Distributed
    az R12.AZ.A 4497507 18-JAN-07 Checkin Released Not_Distributed
    az R12.AZ.A.1 5907561 13-APR-07 Checkin Released Not_Distributed
    az R12.AZ.A.2 5917320 13-JUL-07 Checkin Released Not_Distributed
    az R12.AZ.A.3 6077435 11-OCT-07 Checkin Released Not_Distributed
    az R12.AZ.A.4 6354128 11-JAN-08 Checkin Released Not_Distributed
    az R12.AZ.A.5 6594743 29-JUL-08 Checkin Released Not_Distributed
    az R12.AZ.A.6 7237121 03-NOV-08 Checkin Released Not_Distributed
    az R12.AZ.B 6430059 11-AUG-08 Checkin Released Not_Distributed
    ben R12.BEN.A 5348063 18-JAN-07 Checkin Released Not_Distributed
    ben R12.BEN.A.1 5889632 13-APR-07 Checkin Released Not_Distributed
    ben R12.BEN.A.2 5997210 12-JUL-07 Checkin Released Not_Distributed
    ben R12.BEN.A.3 6196256 12-OCT-07 Checkin Released Not_Distributed
    ben R12.BEN.A.4 6506484 11-JAN-08 Checkin Released Not_Distributed
    ben R12.BEN.A.5 6835786 15-MAY-08 Checkin Released Not_Distributed
    ben R12.BEN.A.6 7291404 04-NOV-08 Checkin Released Not_Distributed
    ben R12.BEN.B 6658009 12-AUG-08 Checkin Released Not_Distributed
    bic R12.BIC.A 4442855 18-JAN-07 Checkin Released Not_Distributed
    bic R12.BIC.A.1 5884305 12-APR-07 Checkin Released Not_Distributed
    bic R12.BIC.A.2 5999919 12-JUL-07 Checkin Released Not_Distributed
    bic R12.BIC.A.3 6262237 11-OCT-07 Checkin Released Not_Distributed
    bic R12.BIC.A.4 6496834 11-JAN-08 Checkin Released Not_Distributed
    bic R12.BIC.A.5 7299982 04-AUG-08 Checkin Released Not_Distributed
    bic R12.BIC.A.6 7300341 04-NOV-08 Checkin Released Not_Distributed
    bic R12.BIC.B 4565328 11-AUG-08 Checkin Released Not_Distributed
    bil R12.BIL.A 4455996 18-JAN-07 Checkin Released Not_Distributed
    bil R12.BIL.A.1 5884179 12-APR-07 Checkin Released Not_Distributed
    bil R12.BIL.A.2 6000171 12-JUL-07 Checkin Released Not_Distributed
    bil R12.BIL.A.3 6261703 10-OCT-07 Checkin Released Not_Distributed
    bil R12.BIL.A.4 6494486 11-JAN-08 Checkin Released Not_Distributed
    bil R12.BIL.A.5 7300034 04-AUG-08 Checkin Released Not_Distributed
    bil R12.BIL.A.6 7303718 03-NOV-08 Checkin Released Not_Distributed
    bil R12.BIL.B 4547898 11-AUG-08 Checkin Released Not_Distributed
    bim R12.BIM.A 4460115 18-JAN-07 Checkin Released Not_Distributed
    bim R12.BIM.A.1 5884248 12-APR-07 Checkin Released Not_Distributed
    bim R12.BIM.A.2 6000230 12-JUL-07 Checkin Released Not_Distributed
    bim R12.BIM.A.3 6261878 10-OCT-07 Checkin Released Not_Distributed
    bim R12.BIM.A.4 6494498 11-JAN-08 Checkin Released Not_Distributed
    bim R12.BIM.A.5 7300036 04-AUG-08 Checkin Released Not_Distributed
    bim R12.BIM.A.6 7303719 03-NOV-08 Checkin Released Not_Distributed
    bim R12.BIM.B 4562226 11-AUG-08 Checkin Released Not_Distributed
    bis R12.BIS.A 4458508 18-JAN-07 Checkin Released Not_Distributed
    bis R12.BIS.A.1 5866616 15-APR-07 Checkin Released Not_Distributed
    bis R12.BIS.A.2 6002441 16-JUL-07 Checkin Released Not_Distributed
    bis R12.BIS.A.3 6275383 12-OCT-07 Checkin Released Not_Distributed
    bis R12.BIS.A.4 6507056 11-JAN-08 Checkin Released Not_Distributed
    bis R12.BIS.A.5 7300349 04-AUG-08 Checkin Released Not_Distributed
    bis R12.BIS.A.6 7300348 03-NOV-08 Checkin Released Not_Distributed
    bis R12.BIS.B 6664110 11-AUG-08 Checkin Released Not_Distributed
    bis_pf R12.BIS_PF.A 4458359 18-JAN-07 Checkin Released Not_Distributed
    bis_pf R12.BIS_PF.A.1 5866626 15-APR-07 Checkin Released Not_Distributed
    bis_pf R12.BIS_PF.A.2 6002340 16-JUL-07 Checkin Released Not_Distributed
    bis_pf R12.BIS_PF.A.3 6215085 15-OCT-07 Checkin Released Not_Distributed
    bis_pf R12.BIS_PF.A.4 6507067 13-JAN-08 Checkin Released Not_Distributed
    bis_pf R12.BIS_PF.A.5 7291474 04-AUG-08 Checkin Released Not_Distributed
    bis_pf R12.BIS_PF.A.6 7291488 06-NOV-08 Checkin Released Not_Distributed
    bis_pf R12.BIS_PF.B 5915303 13-AUG-08 Checkin Released Not_Distributed
    biv R12.BIV.A 4510016 18-JAN-07 Checkin Released Not_Distributed
    biv R12.BIV.A.1 5890924 13-APR-07 Checkin Released Not_Distributed
    biv R12.BIV.A.2 6001486 12-JUL-07 Checkin Released Not_Distributed
    biv R12.BIV.A.3 6262191 11-OCT-07 Checkin Released Not_Distributed
    biv R12.BIV.A.4 6496838 11-JAN-08 Checkin Released Not_Distributed
    biv R12.BIV.A.5 7300192 04-AUG-08 Checkin Released Not_Distributed
    biv R12.BIV.A.6 7300297 03-NOV-08 Checkin Released Not_Distributed
    biv R12.BIV.B 6657907 11-AUG-08 Checkin Released Not_Distributed
    bix R12.BIX.A 4510443 18-JAN-07 Checkin Released Not_Distributed
    bix R12.BIX.A.1 5890922 13-APR-07 Checkin Released Not_Distributed
    bix R12.BIX.A.2 6005399 12-JUL-07 Checkin Released Not_Distributed
    bix R12.BIX.A.3 6262200 11-OCT-07 Checkin Released Not_Distributed
    bix R12.BIX.A.4 6496847 11-JAN-08 Checkin Released Not_Distributed
    bix R12.BIX.A.5 7299983 04-AUG-08 Checkin Released Not_Distributed
    bix R12.BIX.A.6 7300342 04-NOV-08 Checkin Released Not_Distributed
    bix R12.BIX.B 6655411 11-AUG-08 Checkin Released Not_Distributed
    bne R12.BNE.A 4494583 18-JAN-07 Checkin Released Not_Distributed
    bne R12.BNE.A.1 5907557 13-APR-07 Checkin Released Not_Distributed
    bne R12.BNE.A.2 5917318 13-JUL-07 Checkin Released Not_Distributed
    bne R12.BNE.A.3 6077453 11-OCT-07 Checkin Released Not_Distributed
    bne R12.BNE.A.4 6354131 11-JAN-08 Checkin Released Not_Distributed
    bne R12.BNE.A.5 6594745 29-JUL-08 Checkin Released Not_Distributed
    bne R12.BNE.A.6 7237127 03-NOV-08 Checkin Released Not_Distributed
    bne R12.BNE.B 6430060 11-AUG-08 Checkin Released Not_Distributed
    bom R12.BOM.A 4510279 18-JAN-07 Checkin Released Not_Distributed
    bom R12.BOM.A.1 5886953 13-APR-07 Checkin Released Not_Distributed
    bom R12.BOM.A.2 6000109 12-JUL-07 Checkin Released Not_Distributed
    bom R12.BOM.A.3 6262608 12-OCT-07 Checkin Released Not_Distributed
    bom R12.BOM.A.4 6506742 11-JAN-08 Checkin Released Not_Distributed
    bom R12.BOM.A.5 7289234 29-JUL-08 Checkin Released Not_Distributed
    bom R12.BOM.A.6 7289506 03-NOV-08 Checkin Released Not_Distributed
    bom R12.BOM.B 6469994 04-FEB-08 Checkin Released Not_Distributed
    bom R12.BOM.C 6657067 11-AUG-08 Checkin Released Not_Distributed
    bpa R12.BPA.A 4442859 18-JAN-07 Checkin Released Not_Distributed
    bpa R12.BPA.A.1 5884311 12-APR-07 Checkin Released Not_Distributed
    bpa R12.BPA.A.2 5999590 12-JUL-07 Checkin Released Not_Distributed
    bpa R12.BPA.A.3 6251330 13-OCT-07 Checkin Released Not_Distributed
    bpa R12.BPA.A.4 6493716 10-JAN-08 Checkin Released Not_Distributed
    bpa R12.BPA.A.5 6833332 15-MAY-08 Checkin Released Not_Distributed
    bpa R12.BPA.A.6 7293780 03-NOV-08 Checkin Released Not_Distributed
    bpa R12.BPA.B 4565332 11-AUG-08 Checkin Released Not_Distributed
    bsc R12.BSC.A 4458509 18-JAN-07 Checkin Released Not_Distributed
    bsc R12.BSC.A.1 5866621 15-APR-07 Checkin Released Not_Distributed
    bsc R12.BSC.A.2 6002460 16-JUL-07 Checkin Released Not_Distributed
    bsc R12.BSC.A.3 6275387 12-OCT-07 Checkin Released Not_Distributed
    bsc R12.BSC.A.4 6507029 11-JAN-08 Checkin Released Not_Distributed
    bsc R12.BSC.A.5 7300350 04-AUG-08 Checkin Released Not_Distributed
    bsc R12.BSC.A.6 7300380 03-NOV-08 Checkin Released Not_Distributed
    bsc R12.BSC.B 6664204 11-AUG-08 Checkin Released Not_Distributed
    cac R12.CAC.A 4462883 18-JAN-07 Checkin Released Not_Distributed
    cac R12.CAC.A.1 5884322 12-APR-07 Checkin Released Not_Distributed
    cac R12.CAC.A.2 6000253 12-JUL-07 Checkin Released Not_Distributed
    cac R12.CAC.A.3 6262228 11-OCT-07 Checkin Released Not_Distributed
    cac R12.CAC.A.4 6496853 11-JAN-08 Checkin Released Not_Distributed
    cac R12.CAC.A.5 7300404 04-AUG-08 Checkin Released Not_Distributed
    cac R12.CAC.A.6 7303904 03-NOV-08 Checkin Released Not_Distributed
    cac R12.CAC.B 4561622 11-AUG-08 Checkin Released Not_Distributed
    cct R12.CCT.A 4464346 18-JAN-07 Checkin Released Not_Distributed
    cct R12.CCT.A.1 5884733 12-APR-07 Checkin Released Not_Distributed
    cct R12.CCT.A.2 6000359 12-JUL-07 Checkin Released Not_Distributed
    cct R12.CCT.A.3 6262383 11-OCT-07 Checkin Released Not_Distributed
    cct R12.CCT.A.4 6496856 11-JAN-08 Checkin Released Not_Distributed
    cct R12.CCT.A.5 7299989 04-AUG-08 Checkin Released Not_Distributed
    cct R12.CCT.A.6 7300353 04-NOV-08 Checkin Released Not_Distributed
    cct R12.CCT.B 4561624 11-AUG-08 Checkin Released Not_Distributed
    cc_pf R12.CC_PF.A 4464624 18-JAN-07 Checkin Released Not_Distributed
    cc_pf R12.CC_PF.A.1 5884971 13-APR-07 Checkin Released Not_Distributed
    cc_pf R12.CC_PF.A.2 6000364 16-JUL-07 Checkin Released Not_Distributed
    cc_pf R12.CC_PF.A.3 6262581 15-OCT-07 Checkin Released Not_Distributed
    cc_pf R12.CC_PF.A.4 6507355 14-JAN-08 Checkin Released By_Metalink
    cc_pf R12.CC_PF.A.5 7291056 04-AUG-08 Checkin Released Not_Distributed
    cc_pf R12.CC_PF.A.6 7291073 06-NOV-08 Checkin Released By_Metalink
    cc_pf R12.CC_PF.B 6663753 13-AUG-08 Checkin Released Not_Distributed
    ce R12.CE.A 4442863 18-JAN-07 Checkin Released Not_Distributed
    ce R12.CE.A.1 5884315 12-APR-07 Checkin Released Not_Distributed
    ce R12.CE.A.2 5999565 12-JUL-07 Checkin Released Not_Distributed
    ce R12.CE.A.3 6251356 13-OCT-07 Checkin Released Not_Distributed
    ce R12.CE.A.4 6493723 11-JAN-08 Checkin Released Not_Distributed
    ce R12.CE.A.5 6832849 15-MAY-08 Checkin Released Not_Distributed
    ce R12.CE.A.6 7293707 04-NOV-08 Checkin Released Not_Distributed
    ce R12.CE.B 4538335 11-AUG-08 Checkin Released Not_Distributed
    chv R12.CHV.A 4445643 18-JAN-07 Checkin Released Not_Distributed
    chv R12.CHV.A.1 5884370 12-APR-07 Checkin Released Not_Distributed
    chv R12.CHV.A.2 6000216 12-JUL-07 Checkin Released Not_Distributed
    chv R12.CHV.A.3 6261716 10-OCT-07 Checkin Released Not_Distributed
    chv R12.CHV.A.4 6496836 11-JAN-08 Checkin Released Not_Distributed
    chv R12.CHV.A.5 7300042 04-AUG-08 Checkin Released Not_Distributed
    chv R12.CHV.A.6 7300361 04-NOV-08 Checkin Released Not_Distributed
    chv R12.CHV.B 4565370 11-AUG-08 Checkin Released Not_Distributed
    cla R12.CLA.A 5696981 14-MAY-07 Checkin Released By_Dev
    cle R12.CLE.A 5871794 03-JUL-07 Checkin Released By_Metalink
    clj R12.CLJ.A 5686853 31-MAY-07 Checkin Released By_Metalink
    clj R12.CLJ.A.1 6156608 31-JUL-07 Checkin Released By_Metalink
    clj R12.CLJ.B 6432352 18-SEP-07 Checkin Released By_Metalink
    cll R12.CLL.A 5948849 30-MAR-07 Checkin Obsoleted By_Metalink
    cll R12.CLL.A.1 6008268 06-JUN-07 Checkin Obsoleted By_Metalink
    cll R12.CLL.B 6311721 31-AUG-07 Checkin Released By_Metalink
    cll R12.CLL.B.1 6456912 04-APR-08 Checkin Released By_Metalink
    cll R12.CLL.B.2 6946075 12-SEP-08 Checkin Released By_Metalink
    cln R12.CLN.A 4510808 18-JAN-07 Checkin Released Not_Distributed
    cln R12.CLN.A.1 5887086 13-APR-07 Checkin Released Not_Distributed
    cln R12.CLN.A.2 6002276 12-JUL-07 Checkin Released Not_Distributed
    cln R12.CLN.A.3 6262558 12-OCT-07 Checkin Released Not_Distributed
    cln R12.CLN.A.4 6506801 10-JAN-08 Checkin Released Not_Distributed
    cln R12.CLN.A.5 7290555 29-JUL-08 Checkin Released Not_Distributed
    cln R12.CLN.A.6 7290514 03-NOV-08 Checkin Released Not_Distributed
    cln R12.CLN.B 6470002 04-FEB-08 Checkin Released Not_Distributed
    cln R12.CLN.C 6657409 12-AUG-08 Checkin Released Not_Distributed
    cn R12.CN.A 4455995 18-JAN-07 Checkin Released Not_Distributed
    cn R12.CN.A.1 5884164 12-APR-07 Checkin Released Not_Distributed
    cn R12.CN.A.2 5999566 12-JUL-07 Checkin Released Not_Distributed
    cn R12.CN.A.3 6251180 13-OCT-07 Checkin Released Not_Distributed
    cn R12.CN.A.4 6494116 11-JAN-08 Checkin Released Not_Distributed
    cn R12.CN.A.5 7300051 04-AUG-08 Checkin Released Not_Distributed
    cn R12.CN.A.6 7303721 03-NOV-08 Checkin Released Not_Distributed
    cn R12.CN.B 4547899 11-AUG-08 Checkin Released Not_Distributed
    crp R12.CRP.A 4510314 18-JAN-07 Checkin Released Not_Distributed
    crp R12.CRP.A.1 4890549 13-APR-07 Checkin Released Not_Distributed
    crp R12.CRP.A.2 6003703 12-JUL-07 Checkin Released Not_Distributed
    crp R12.CRP.A.3 6258886 12-OCT-07 Checkin Released Not_Distributed
    crp R12.CRP.A.4 6508199 11-JAN-08 Checkin Released Not_Distributed
    crp R12.CRP.A.5 7289252 29-JUL-08 Checkin Released Not_Distributed
    crp R12.CRP.A.6 7289559 03-NOV-08 Checkin Released Not_Distributed
    crp R12.CRP.B 6658948 11-AUG-08 Checkin Released Not_Distributed
    cs R12.CS.A 4463905 18-JAN-07 Checkin Released Not_Distributed
    cs R12.CS.A.1 5884088 12-APR-07 Checkin Released Not_Distributed
    cs R12.CS.A.2 6000188 12-JUL-07 Checkin Released Not_Distributed
    cs R12.CS.A.3 6261746 10-OCT-07 Checkin Released Not_Distributed
    cs R12.CS.A.4 6496901 11-JAN-08 Checkin Released Not_Distributed
    cs R12.CS.A.5 7300210 04-AUG-08 Checkin Released Not_Distributed
    cs R12.CS.A.6 7300302 03-NOV-08 Checkin Released Not_Distributed
    cs R12.CS.B 4561585 11-AUG-08 Checkin Released Not_Distributed
    csc R12.CSC.A 4464378 18-JAN-07 Checkin Released Not_Distributed
    csc R12.CSC.A.1 5884160 12-APR-07 Checkin Released Not_Distributed
    csc R12.CSC.A.2 6000239 12-JUL-07 Checkin Released Not_Distributed
    csc R12.CSC.A.3 6261808 10-OCT-07 Checkin Released Not_Distributed
    csc R12.CSC.A.4 6496904 11-JAN-08 Checkin Released Not_Distributed
    csc R12.CSC.A.5 7300256 04-AUG-08 Checkin Released Not_Distributed
    csc R12.CSC.A.6 7300305 03-NOV-08 Checkin Released Not_Distributed
    csc R12.CSC.B 4561559 11-AUG-08 Checkin Released Not_Distributed
    csd R12.CSD.A 4510341 18-JAN-07 Checkin Released Not_Distributed
    csd R12.CSD.A.1 5890876 13-APR-07 Checkin Released Not_Distributed
    csd R12.CSD.A.2 6001478 12-JUL-07 Checkin Released Not_Distributed
    csd R12.CSD.A.3 6264410 12-OCT-07 Checkin Released Not_Distributed
    csd R12.CSD.A.4 6508102 11-JAN-08 Checkin Released Not_Distributed
    csd R12.CSD.A.5 7291013 29-JUL-08 Checkin Released Not_Distributed
    csd R12.CSD.A.6 7291516 03-NOV-08 Checkin Released Not_Distributed
    csd R12.CSD.B 6659467 12-AUG-08 Checkin Released Not_Distributed
    cse R12.CSE.A 4510340 18-JAN-07 Checkin Released Not_Distributed
    cse R12.CSE.A.1 5887135 13-APR-07 Checkin Released Not_Distributed
    cse R12.CSE.A.2 6002133 12-JUL-07 Checkin Released Not_Distributed
    cse R12.CSE.A.3 6261602 12-OCT-07 Checkin Released Not_Distributed
    cse R12.CSE.A.4 6506344 10-JAN-08 Checkin Released Not_Distributed
    cse R12.CSE.A.5 7290721 29-JUL-08 Checkin Released Not_Distributed
    cse R12.CSE.A.6 7290715 03-NOV-08 Checkin Released Not_Distributed
    cse R12.CSE.B 6657469 12-AUG-08 Checkin Released Not_Distributed
    csf R12.CSF.A 4510038 18-JAN-07 Checkin Released Not_Distributed
    csf R12.CSF.A.1 5887112 13-APR-07 Checkin Released Not_Distributed
    csf R12.CSF.A.2 6002044 12-JUL-07 Checkin Released Not_Distributed
    csf R12.CSF.A.3 6262102 12-OCT-07 Checkin Released Not_Distributed
    csf R12.CSF.A.4 6506730 10-JAN-08 Checkin Released Not_Distributed
    csf R12.CSF.A.5 7300257 04-AUG-08 Checkin Released Not_Distributed
    csf R12.CSF.A.6 7300308 03-NOV-08 Checkin Released Not_Distributed
    csf R12.CSF.B 6657107 11-AUG-08 Checkin Released Not_Distributed
    csi R12.CSI.A 4510338 18-JAN-07 Checkin Released Not_Distributed
    csi R12.CSI.A.1 5887144 13-APR-07 Checkin Released Not_Distributed
    csi R12.CSI.A.2 6002132 12-JUL-07 Checkin Released Not_Distributed
    csi R12.CSI.A.3 6261601 12-OCT-07 Checkin Released Not_Distributed
    csi R12.CSI.A.4 6506342 10-JAN-08 Checkin Released Not_Distributed
    csi R12.CSI.A.5 7290709 29-JUL-08 Checkin Released Not_Distributed
    csi R12.CSI.A.6 7290705 03-NOV-08 Checkin Released Not_Distributed
    csi R12.CSI.B 6657466 12-AUG-08 Checkin Released Not_Distributed
    csk R12.CSK.A 4521348 18-JAN-07 Checkin Released Not_Distributed
    csk R12.CSK.A.1 5884298 12-APR-07 Checkin Released Not_Distributed
    csk R12.CSK.A.2 6000310 12-JUL-07 Checkin Released Not_Distributed
    csk R12.CSK.A.3 6261771 10-OCT-07 Checkin Released Not_Distributed
    csk R12.CSK.A.4 6496909 11-JAN-08 Checkin Released Not_Distributed
    csk R12.CSK.A.5 7300258 04-AUG-08 Checkin Released Not_Distributed
    csk R12.CSK.A.6 7300312 03-NOV-08 Checkin Released Not_Distributed
    csk R12.CSK.B 4561589 11-AUG-08 Checkin Released Not_Distributed
    csl R12.CSL.A 4510087 18-JAN-07 Checkin Released Not_Distributed
    csl R12.CSL.A.1 5889808 13-APR-07 Checkin Released Not_Distributed
    csl R12.CSL.A.2 5999977 12-JUL-07 Checkin Released Not_Distributed
    csl R12.CSL.A.3 6263302 12-OCT-07 Checkin Released Not_Distributed
    csl R12.CSL.A.4 6506734 10-JAN-08 Checkin Released Not_Distributed
    csl R12.CSL.A.5 7300262 04-AUG-08 Checkin Released Not_Distributed
    csl R12.CSL.A.6 7300314 03-NOV-08 Checkin Released Not_Distributed
    csl R12.CSL.B 6657104 11-AUG-08 Checkin Released Not_Distributed
    csm R12.CSM.A 4510068 18-JAN-07 Checkin Released Not_Distributed
    csm R12.CSM.A.1 5889818 13-APR-07 Checkin Released Not_Distributed
    csm R12.CSM.A.2 6000090 12-JUL-07 Checkin Released Not_Distributed
    csm R12.CSM.A.3 6263307 12-OCT-07 Checkin Released Not_Distributed
    csm R12.CSM.A.4 6506735 10-JAN-08 Checkin Released Not_Distributed
    csm R12.CSM.A.5 7300263 04-AUG-08 Checkin Released Not_Distributed
    csm R12.CSM.A.6 7300317 03-NOV-08 Checkin Released Not_Distributed
    csm R12.CSM.B 6657105 11-AUG-08 Checkin Released Not_Distributed
    csp R12.CSP.A 4510058 18-JAN-07 Checkin Released Not_Distributed
    csp R12.CSP.A.1 5887118 13-APR-07 Checkin Released Not_Distributed
    csp R12.CSP.A.2 6002048 12-JUL-07 Checkin Released Not_Distributed
    csp R12.CSP.A.3 6262280 12-OCT-07 Checkin Released Not_Distributed
    csp R12.CSP.A.4 6506743 10-JAN-08 Checkin Released Not_Distributed
    csp R12.CSP.A.5 7300266 04-AUG-08 Checkin Released Not_Distributed
    csp R12.CSP.A.6 7300321 03-NOV-08 Checkin Released Not_Distributed
    csp R12.CSP.B 6657109 11-AUG-08 Checkin Released Not_Distributed
    csr R12.CSR.A 4510064 18-JAN-07 Checkin Released Not_Distributed
    csr R12.CSR.A.1 5890919 13-APR-07 Checkin Released Not_Distributed
    csr R12.CSR.A.2 6002055 12-JUL-07 Checkin Released Not_Distributed
    csr R12.CSR.A.3 6262232 12-OCT-07 Checkin Released Not_Distributed
    csr R12.CSR.A.4 6506748 10-JAN-08 Checkin Released Not_Distributed
    csr R12.CSR.A.5 7300267 04-AUG-08 Checkin Released Not_Distributed
    csr R12.CSR.A.6 7300324 03-NOV-08 Checkin Released Not_Distributed
    csr R12.CSR.B 6657111 11-AUG-08 Checkin Released Not_Distributed
    csz R12.CSZ.A 4521359 18-JAN-07 Checkin Released Not_Distributed
    csz R12.CSZ.A.1 5884306 12-APR-07 Checkin Released Not_Distributed
    csz R12.CSZ.A.2 6000319 12-JUL-07 Checkin Released Not_Distributed
    csz R12.CSZ.A.3 6261835 10-OCT-07 Checkin Released Not_Distributed
    csz R12.CSZ.A.4 6496911 11-JAN-08 Checkin Released Not_Distributed
    csz R12.CSZ.A.5 7300268 04-AUG-08 Checkin Released Not_Distributed
    csz R12.CSZ.A.6 7300325 03-NOV-08 Checkin Released Not_Distributed
    csz R12.CSZ.B 4561594 11-AUG-08 Checkin Released Not_Distributed
    ctb R12.CTB.A 6140927 09-AUG-08 Checkin Released By_Metalink
    ctb R12.CTB.A.1 6399312 11-AUG-08 Checkin Released By_Metalink
    cug R12.CUG.A 4518049 18-JAN-07 Checkin Released Not_Distributed
    cug R12.CUG.A.1 5884241 12-APR-07 Checkin Released Not_Distributed
    cug R12.CUG.A.2 6000301 12-JUL-07 Checkin Released Not_Distributed
    cug R12.CUG.A.3 6261876 10-OCT-07 Checkin Released Not_Distributed
    cug R12.CUG.A.4 6496917 11-JAN-08 Checkin Released Not_Distributed
    cug R12.CUG.A.5 7300271 04-AUG-08 Checkin Released Not_Distributed
    cug R12.CUG.A.6 7300327 03-NOV-08 Checkin Released Not_Distributed
    cug R12.CUG.B 4561564 11-AUG-08 Checkin Released Not_Distributed
    cz R12.CZ.A 4510814 18-JAN-07 Checkin Released Not_Distributed
    cz R12.CZ.A.1 5888208 13-APR-07 Checkin Released Not_Distributed
    cz R12.CZ.A.2 6002255 12-JUL-07 Checkin Released Not_Distributed
    cz R12.CZ.A.3 6262115 12-OCT-07 Checkin Released Not_Distributed
    cz R12.CZ.A.4 6506771 10-JAN-08 Checkin Released Not_Distributed
    cz R12.CZ.A.5 7290204 29-JUL-08 Checkin Released Not_Distributed
    cz R12.CZ.A.6 7290191 03-NOV-08 Checkin Released Not_Distributed
    cz R12.CZ.B 6657401 12-AUG-08 Checkin Released Not_Distributed
    ddd R12.DDD.A 4508270 18-JAN-07 Checkin Released Not_Distributed
    ddd R12.DDD.A.1 5886913 13-APR-07 Checkin Released Not_Distributed
    ddd R12.DDD.A.2 5999927 12-JUL-07 Checkin Released Not_Distributed
    ddd R12.DDD.A.3 6263015 11-OCT-07 Checkin Released Not_Distributed
    ddd R12.DDD.A.4 6506713 10-JAN-08 Checkin Released Not_Distributed
    ddd R12.DDD.A.5 7290020 29-JUL-08 Checkin Released Not_Distributed
    ddd R12.DDD.A.6 7290029 04-NOV-08 Checkin Released Not_Distributed
    ddd R12.DDD.B 6469944 04-FEB-08 Checkin Released Not_Distributed
    ddd R12.DDD.C 6657742 11-AUG-08 Checkin Released Not_Distributed
    ddr R12.DDR.A 6792776 29-APR-08 Checkin Released Not_Distributed
    ddr R12.DDR.B 6792777 29-APR-08 Checkin Released Not_Distributed
    ddr R12.DDR.B.1 7038970 12-AUG-08 Checkin Released Not_Distributed
    dmf_pf R12.DMF_PF.A 4510290 18-JAN-07 Checkin Released Not_Distributed
    dmf_pf R12.DMF_PF.A.1 5891085 13-APR-07 Checkin Released Not_Distributed
    dmf_pf R12.DMF_PF.A.2 6003918 16-JUL-07 Checkin Released Not_Distributed
    dmf_pf R12.DMF_PF.A.3 6258903 15-OCT-07 Checkin Released Not_Distributed
    dmf_pf R12.DMF_PF.A.4 6506939 14-JAN-08 Checkin Released Not_Distributed
    dmf_pf R12.DMF_PF.A.5 7289231 31-JUL-08 Checkin Released Not_Distributed
    dmf_pf R12.DMF_PF.A.6 7289232 06-NOV-08 Checkin Released Not_Distributed
    dmf_pf R12.DMF_PF.B 6658955 12-AUG-08 Checkin Released Not_Distributed
    dna R12.DNA.A 4508276 18-JAN-07 Checkin Released Not_Distributed
    dna R12.DNA.A.1 5888156 13-APR-07 Checkin Released Not_Distributed
    dna R12.DNA.A.2 6003832 12-JUL-07 Checkin Released Not_Distributed
    dna R12.DNA.A.3 6258675 12-OCT-07 Checkin Released Not_Distributed
    dna R12.DNA.A.4 6506716 11-JAN-08 Checkin Released Not_Distributed
    dna R12.DNA.A.5 7290041 29-JUL-08 Checkin Released Not_Distributed
    dna R12.DNA.A.6 7290073 03-NOV-08 Checkin Released Not_Distributed
    dna R12.DNA.B 6469982 04-FEB-08 Checkin Released Not_Distributed
    dna R12.DNA.C 6657747 11-AUG-08 Checkin Released Not_Distributed
    dom R12.DOM.A 4508279 18-JAN-07 Checkin Released Not_Distributed
    dom R12.DOM.A.1 5888159 13-APR-07 Checkin Released Not_Distributed
    dom R12.DOM.A.2 6003873 12-JUL-07 Checkin Released Not_Distributed
    dom R12.DOM.A.3 6258758 12-OCT-07 Checkin Released Not_Distributed
    dom R12.DOM.A.4 6506720 11-JAN-08 Checkin Released Not_Distributed
    dom R12.DOM.A.5 7290105 29-JUL-08 Checkin Released Not_Distributed
    dom R12.DOM.A.6 7290117 03-NOV-08 Checkin Released Not_Distributed
    dom R12.DOM.B 6657753 11-AUG-08 Checkin Released Not_Distributed
    dpp R12.DPP.A 6506371 02-DEC-07 Checkin Released Not_Distributed
    dpp R12.DPP.B 6663469 11-AUG-08 Checkin Released Not_Distributed
    dt R12.DT.A 5348620 18-JAN-07 Checkin Released Not_Distributed
    dt R12.DT.A.1 5889638 13-APR-07 Checkin Released Not_Distributed
    dt R12.DT.A.2 5997216 12-JUL-07 Checkin Released Not_Distributed
    dt R12.DT.A.3 6196247 12-OCT-07 Checkin Released Not_Distributed
    dt R12.DT.A.4 6506469 11-JAN-08 Checkin Released Not_Distributed
    dt R12.DT.A.5 6835780 15-MAY-08 Checkin Released Not_Distributed
    dt R12.DT.A.6 7291398 04-NOV-08 Checkin Released Not_Distributed
    dt R12.DT.B 6658003 12-AUG-08 Checkin Released Not_Distributed
    eam R12.EAM.A 4508561 18-JAN-07 Checkin Released Not_Distributed
    eam R12.EAM.A.1 5889783 13-APR-07 Checkin Released Not_Distributed
    eam R12.EAM.A.2 6002099 13-JUL-07 Checkin Released Not_Distributed
    eam R12.EAM.A.3 6261535 12-OCT-07 Checkin Released Not_Distributed
    eam R12.EAM.A.4 6506302 11-JAN-08 Checkin Released Not_Distributed
    eam R12.EAM.A.5 7289247 29-JUL-08 Checkin Released Not_Distributed
    eam R12.EAM.A.6 7289545 03-NOV-08 Checkin Released Not_Distributed
    eam R12.EAM.B 6657439 12-AUG-08 Checkin Released Not_Distributed
    ec R12.EC.A 4496609 18-JAN-07 Checkin Released Not_Distributed
    ec R12.EC.A.1 5907563 13-APR-07 Checkin Released Not_Distributed
    ec R12.EC.A.2 5917321 13-JUL-07 Checkin Released Not_Distributed
    ec R12.EC.A.3 6077463 11-OCT-07 Checkin Released Not_Distributed
    ec R12.EC.A.4 6354135 11-JAN-08 Checkin Released Not_Distributed
    ec R12.EC.A.5 6594747 29-JUL-08 Checkin Released Not_Distributed
    ec R12.EC.A.6 7237136 03-NOV-08 Checkin Released Not_Distributed
    ec R12.EC.B 6430064 11-AUG-08 Checkin Released Not_Distributed
    ecx R12.ECX.A 5353037 18-JAN-07 Checkin Released Not_Distributed
    ecx R12.ECX.A.1 5907566 13-APR-07 Checkin Released Not_Distributed
    ecx R12.ECX.A.2 5917325 13-JUL-07 Checkin Released Not_Distributed
    ecx R12.ECX.A.3 6077483 11-OCT-07 Checkin Released Not_Distributed
    ecx R12.ECX.A.4 6272384 11-JAN-08 Checkin Released Not_Distributed
    ecx R12.ECX.A.5 6594775 29-JUL-08 Checkin Released Not_Distributed
    ecx R12.ECX.A.6 7237218 03-NOV-08 Checkin Released Not_Distributed
    ecx R12.ECX.B 6430084 11-AUG-08 Checkin Released Not_Distributed
    edr R12.EDR.A 4510792 18-JAN-07 Checkin Released Not_Distributed
    edr R12.EDR.A.1 5887024 13-APR-07 Checkin Released Not_Distributed
    edr R12.EDR.A.2 6002271 12-JUL-07 Checkin Released Not_Distributed
    edr R12.EDR.A.3 6262479 12-OCT-07 Checkin Released Not_Distributed
    edr R12.EDR.A.4 6506781 10-JAN-08 Checkin Released Not_Distributed
    edr R12.EDR.A.5 7290324 29-JUL-08 Checkin Released Not_Distributed
    edr R12.EDR.A.6 7290311 03-NOV-08 Checkin Released Not_Distributed
    edr R12.EDR.B 6657413 12-AUG-08 Checkin Released Not_Distributed
    edw R12.EDW.A 4459919 18-JAN-07 Checkin Released Not_Distributed
    edw R12.EDW.A.1 5907517 15-APR-07 Checkin Released Not_Distributed
    edw R12.EDW.A.2 6002553 16-JUL-07 Checkin Released Not_Distributed
    edw R12.EDW.A.3 6275392 12-OCT-07 Checkin Released Not_Distributed
    edw R12.EDW.A.4 6507060 11-JAN-08 Checkin Released Not_Distributed
    edw R12.EDW.A.5 7300369 04-AUG-08 Checkin Released Not_Distributed
    edw R12.EDW.A.6 7300384 03-NOV-08 Checkin Released Not_Distributed
    edw R12.EDW.B 6664239 11-AUG-08 Checkin Released Not_Distributed
    ego R12.EGO.A 4508283 18-JAN-07 Checkin Released Not_Distributed
    ego R12.EGO.A.1 5888049 13-APR-07 Checkin Released Not_Distributed
    ego R12.EGO.A.2 5989370 12-JUL-07 Checkin Released Not_Distributed
    ego R12.EGO.A.3 6258799 12-OCT-07 Checkin Released Not_Distributed
    ego R12.EGO.A.4 6506721 11-JAN-08 Checkin Released Not_Distributed
    ego R12.EGO.A.5 7289948 29-JUL-08 Checkin Released Not_Distributed
    ego R12.EGO.A.6 7289978 04-NOV-08 Checkin Released Not_Distributed
    ego R12.EGO.B 6469934 05-FEB-08 Checkin Released Not_Distributed
    ego R12.EGO.C 6657724 11-AUG-08 Checkin Released Not_Distributed
    eng R12.ENG.A 4508286 18-JAN-07 Checkin Released Not_Distributed
    eng R12.ENG.A.1 5888106 13-APR-07 Checkin Released Not_Distributed
    eng R12.ENG.A.2 6003926 12-JUL-07 Checkin Released Not_Distributed
    eng R12.ENG.A.3 6258812 12-OCT-07 Checkin Released Not_Distributed
    eng R12.ENG.A.4 6506726 11-JAN-08 Checkin Released Not_Distributed
    eng R12.ENG.A.5 7290093 29-JUL-08 Checkin Released Not_Distributed
    eng R12.ENG.A.6 7290081 04-NOV-08 Checkin Released Not_Distributed
    eng R12.ENG.B 6469997 04-FEB-08 Checkin Released Not_Distributed
    eng R12.ENG.C 6657749 11-AUG-08 Checkin Released Not_Distributed
    eni R12.ENI.A 4508291 18-JAN-07 Checkin Released Not_Distributed
    eni R12.ENI.A.1 5886941 13-APR-07 Checkin Released Not_Distributed
    eni R12.ENI.A.2 5999954 13-JUL-07 Checkin Released Not_Distributed
    eni R12.ENI.A.3 6263310 12-OCT-07 Checkin Released Not_Distributed
    eni R12.ENI.A.4 6506724 11-JAN-08 Checkin Released Not_Distributed
    eni R12.ENI.A.5 7290138 29-JUL-08 Checkin Released Not_Distributed
    eni R12.ENI.A.6 7290149 04-NOV-08 Checkin Released Not_Distributed
    eni R12.ENI.B 6657757 11-AUG-08 Checkin Released Not_Distributed
    ews R12.EWS.A 4459926 18-JAN-07 Checkin Released Not_Distributed
    ews R12.EWS.A.2 6002636 16-JUL-07 Checkin Released Not_Distributed
    ews R12.EWS.A.3 6275398 12-OCT-07 Checkin Released Not_Distributed
    ews R12.EWS.A.4 6507063 11-JAN-08 Checkin Released Not_Distributed
    ews R12.EWS.A.5 7300372 04-AUG-08 Checkin Released Not_Distributed
    ews R12.EWS.A.6 7300386 03-NOV-08 Checkin Released Not_Distributed
    ews R12.EWS.B 6664244 11-AUG-08 Checkin Released Not_Distributed
    fa R12.FA.A 4442870 18-JAN-07 Checkin Released Not_Distributed
    fa R12.FA.A.1 5884317 12-APR-07 Checkin Released Not_Distributed
    fa R12.FA.A.2 5999587 12-JUL-07 Checkin Released Not_Distributed
    fa R12.FA.A.3 6251379 13-OCT-07 Checkin Released Not_Distributed
    fa R12.FA.A.4 6493729 11-JAN-08 Checkin Released Not_Distributed
    fa R12.FA.A.5 6833156 15-MAY-08 Checkin Released Not_Distributed
    fa R12.FA.A.6 7293627 03-NOV-08 Checkin Released Not_Distributed
    fa R12.FA.B 4565280 11-AUG-08 Checkin Released Not_Distributed
    fem R12.FEM.A 4448709 18-JAN-07 Checkin Released Not_Distributed
    fem R12.FEM.A.1 5884409 12-APR-07 Checkin Released Not_Distributed
    fem R12.FEM.A.2 5999547 12-JUL-07 Checkin Released Not_Distributed
    fem R12.FEM.A.3 6251306 13-OCT-07 Checkin Released Not_Distributed
    fem R12.FEM.A.4 6494137 10-JAN-08 Checkin Released Not_Distributed
    fem R12.FEM.A.5 6833144 15-MAY-08 Checkin Released Not_Distributed
    fem R12.FEM.A.6 7293631 03-NOV-08 Checkin Released Not_Distributed
    fem R12.FEM.B 4565437 11-AUG-08 Checkin Released Not_Distributed
    ff R12.FF.A 5348095 18-JAN-07 Checkin Released Not_Distributed
    ff R12.FF.A.1 5889647 13-APR-07 Checkin Released Not_Distributed
    ff R12.FF.A.2 5997223 12-JUL-07 Checkin Released Not_Distributed
    ff R12.FF.A.3 6196258 12-OCT-07 Checkin Released Not_Distributed
    ff R12.FF.A.4 6506486 11-JAN-08 Checkin Released Not_Distributed
    ff R12.FF.A.5 6835788 15-MAY-08 Checkin Released Not_Distributed
    ff R12.FF.A.6 7291406 04-NOV-08 Checkin Released Not_Distributed
    ff R12.FF.B 6658012 12-AUG-08 Checkin Released Not_Distributed
    fii R12.FII.A 4442874 18-JAN-07 Checkin Released Not_Distributed
    fii R12.FII.A.1 5884321 12-APR-07 Checkin Released Not_Distributed
    fii R12.FII.A.2 5999591 12-JUL-07 Checkin Released Not_Distributed
    fii R12.FII.A.3 6251402 13-OCT-07 Checkin Released Not_Distributed
    fii R12.FII.A.4 6493735 11-JAN-08 Checkin Released Not_Distributed
    fii R12.FII.A.5 6833340 15-MAY-08 Checkin Released Not_Distributed
    fii R12.FII.A.6 7293783 03-NOV-08 Checkin Released Not_Distributed
    fii R12.FII.B 4565292 11-AUG-08 Checkin Released Not_Distributed
    fin_pf R12.FIN_PF.A 4175000 18-JAN-07 Checkin Released Not_Distributed
    fin_pf R12.FIN_PF.A.1 5884587 12-APR-07 Checkin Released Not_Distributed
    fin_pf R12.FIN_PF.A.2 6000030 16-JUL-07 Checkin Released Not_Distributed
    fin_pf R12.FIN_PF.A.3 6251856 14-OCT-07 Checkin Released Not_Distributed
    fin_pf R12.FIN_PF.A.4 6493602 14-JAN-08 Checkin Released By_Metalink
    fin_pf R12.FIN_PF.A.5 6836355 16-MAY-08 Checkin Released By_Metalink
    fin_pf R12.FIN_PF.A.6 7294050 06-NOV-08 Checkin Released By_Metalink
    fin_pf R12.FIN_PF.B 4565490 13-AUG-08 Checkin Released Not_Distributed
    flm R12.FLM.A 4510252 18-JAN-07 Checkin Released Not_Distributed
    flm R12.FLM.A.1 5887001 13-APR-07 Checkin Released Not_Distributed
    flm R12.FLM.A.2 6002167 12-JUL-07 Checkin Released Not_Distributed
    flm R12.FLM.A.3 6261935 12-OCT-07 Checkin Released Not_Distributed
    flm R12.FLM.A.4 6506328 11-JAN-08 Checkin Released Not_Distributed
    flm R12.FLM.A.5 7289243 29-JUL-08 Checkin Released Not_Distributed
    flm R12.FLM.A.6 7289532 03-NOV-08 Checkin Released Not_Distributed
    flm R12.FLM.B 6657447 11-AUG-08 Checkin Released Not_Distributed
    fnd R12.FND.A 4494236 18-JAN-07 Checkin Released Not_Distributed
    fnd R12.FND.A.1 5907547 13-APR-07 Checkin Released Not_Distributed
    fnd R12.FND.A.2 5917310 13-JUL-07 Checkin Released Not_Distributed
    fnd R12.FND.A.3 6077562 11-OCT-07 Checkin Released Not_Distributed
    fnd R12.FND.A.4 6272353 11-JAN-08 Checkin Released Not_Distributed
    fnd R12.FND.A.5 6594756 29-JUL-08 Checkin Released Not_Distributed
    fnd R12.FND.A.6 7237143 03-NOV-08 Checkin Released Not_Distributed
    fnd R12.FND.B 6430070 11-AUG-08 Checkin Released Not_Distributed
    fpa R12.FPA.A 4420079 18-JAN-07 Checkin Released Not_Distributed
    fpa R12.FPA.A.1 5911101 13-APR-07 Checkin Released Not_Distributed
    fpa R12.FPA.A.2 6022665 12-JUL-07 Checkin Released Not_Distributed
    fpa R12.FPA.A.3 6266098 11-OCT-07 Checkin Released Not_Distributed
    fpa R12.FPA.A.4 6512967 11-JAN-08 Checkin Released Not_Distributed
    fpa R12.FPA.A.5 7292358 29-JUL-08 Checkin Released Not_Distributed
    fpa R12.FPA.A.6 7292367 03-NOV-08 Checkin Released Not_Distributed
    fpa R12.FPA.B 5949295 09-AUG-08 Checkin Released Not_Distributed
    frm R12.FRM.A 4494603 18-JAN-07 Checkin Released Not_Distributed
    frm R12.FRM.A.1 5907553 13-APR-07 Checkin Released Not_Distributed
    frm R12.FRM.A.2 5917316 13-JUL-07 Checkin Released Not_Distributed
    frm R12.FRM.A.3 6077597 11-OCT-07 Checkin Released Not_Distributed
    frm R12.FRM.A.4 6354138 11-JAN-08 Checkin Released Not_Distributed
    frm R12.FRM.A.5 6594779 30-JUL-08 Checkin Released Not_Distributed
    frm R12.FRM.A.6 7237233 03-NOV-08 Checkin Released Not_Distributed
    frm R12.FRM.B 6430095 11-AUG-08 Checkin Released Not_Distributed
    fte R12.FTE.A 4510431 18-JAN-07 Checkin Released Not_Distributed
    fte R12.FTE.A.1 5888166 13-APR-07 Checkin Released Not_Distributed
    fte R12.FTE.A.2 6001766 12-JUL-07 Checkin Released Not_Distributed
    fte R12.FTE.A.3 6258062 12-OCT-07 Checkin Released Not_Distributed
    fte R12.FTE.A.4 6506757 10-JAN-08 Checkin Released Not_Distributed
    fte R12.FTE.A.5 7290337 29-JUL-08 Checkin Released Not_Distributed
    fte R12.FTE.A.6 7290368 04-NOV-08 Checkin Released Not_Distributed
    fte R12.FTE.B 6657118 11-AUG-08 Checkin Released Not_Distributed
    ftp R12.FTP.A 4448724 18-JAN-07 Checkin Released Not_Distributed
    ftp R12.FTP.A.1 5884412 12-APR-07 Checkin Released Not_Distributed
    ftp R12.FTP.A.2 5999551 12-JUL-07 Checkin Released Not_Distributed
    ftp R12.FTP.A.3 6251355 13-OCT-07 Checkin Released Not_Distributed
    ftp R12.FTP.A.4 6494179 10-JAN-08 Checkin Released Not_Distributed
    ftp R12.FTP.A.5 6833347 15-MAY-08 Checkin Released Not_Distributed
    ftp R12.FTP.A.6 7293794 03-NOV-08 Checkin Released Not_Distributed
    ftp R12.FTP.B 6651721 11-AUG-08 Checkin Released Not_Distributed
    fun R12.FUN.A 4442881 18-JAN-07 Checkin Released Not_Distributed
    fun R12.FUN.A.1 5884325 12-APR-07 Checkin Released Not_Distributed
    fun R12.FUN.A.2 5999595 12-JUL-07 Checkin Released Not_Distributed
    fun R12.FUN.A.3 6250209 13-OCT-07 Checkin Released Not_Distributed
    fun R12.FUN.A.4 6493740 11-JAN-08 Checkin Released Not_Distributed
    fun R12.FUN.A.5 6833174 15-MAY-08 Checkin Released Not_Distributed
    fun R12.FUN.A.6 7293641 03-NOV-08 Checkin Released Not_Distributed
    fun R12.FUN.B 4565296 11-AUG-08 Checkin Released Not_Distributed
    fv R12.FV.A 4442888 18-JAN-07 Checkin Released Not_Distributed
    fv R12.FV.A.1 5884328 12-APR-07 Checkin Released Not_Distributed
    fv R12.FV.A.2 5999602 12-JUL-07 Checkin Released Not_Distributed
    fv R12.FV.A.3 6250135 13-OCT-07 Checkin Released Not_Distributed
    fv R12.FV.A.4 6493745 11-JAN-08 Checkin Released Not_Distributed
    fv R12.FV.A.5 6833168 15-MAY-08 Checkin Released Not_Distributed
    fv R12.FV.A.6 7293645 03-NOV-08 Checkin Released Not_Distributed
    fv R12.FV.B 4565298 11-AUG-08 Checkin Released Not_Distributed
    fwk R12.FWK.A 4494343 18-JAN-07 Checkin Released Not_Distributed
    fwk R12.FWK.A.1 5907550 13-APR-07 Checkin Released Not_Distributed
    fwk R12.FWK.A.2 5917313 13-JUL-07 Checkin Released Not_Distributed
    fwk R12.FWK.A.3 6077551 11-OCT-07 Checkin Released Not_Distributed
    fwk R12.FWK.A.4 6272406 11-JAN-08 Checkin Released Not_Distributed
    fwk R12.FWK.A.5 6594758 29-JUL-08 Checkin Released Not_Distributed
    fwk R12.FWK.A.6 7237178 03-NOV-08 Checkin Released Not_Distributed
    fwk R12.FWK.B 6430074 11-AUG-08 Checkin Released Not_Distributed
    gcs R12.GCS.A 4448737 18-JAN-07 Checkin Released Not_Distributed
    gcs R12.GCS.A.1 5884416 12-APR-07 Checkin Released Not_Distributed
    gcs R12.GCS.A.2 5999557 12-JUL-07 Checkin Released Not_Distributed
    gcs R12.GCS.A.3 6251401 13-OCT-07 Checkin Released Not_Distributed
    gcs R12.GCS.A.4 6494181 10-JAN-08 Checkin Released Not_Distributed
    gcs R12.GCS.A.5 6833378 15-MAY-08 Checkin Released Not_Distributed
    gcs R12.GCS.A.6 7293798 03-NOV-08 Checkin Released Not_Distributed
    gcs R12.GCS.B 6651726 11-AUG-08 Checkin Released Not_Distributed
    ghr R12.GHR.A 5348561 18-JAN-07 Checkin Released Not_Distributed
    ghr R12.GHR.A.1 5889650 13-APR-07 Checkin Released Not_Distributed
    ghr R12.GHR.A.2 5997227 12-JUL-07 Checkin Released Not_Distributed
    ghr R12.GHR.A.3 6196268 12-OCT-07 Checkin Released Not_Distributed
    ghr R12.GHR.A.4 6506494 11-JAN-08 Checkin Released Not_Distributed
    ghr R12.GHR.A.5 6835797 15-MAY-08 Checkin Released Not_Distributed
    ghr R12.GHR.A.6 7291413 04-NOV-08 Checkin Released Not_Distributed
    ghr R12.GHR.B 6658019 12-AUG-08 Checkin Released Not_Distributed
    gl R12.GL.A 4442895 18-JAN-07 Checkin Released Not_Distributed
    gl R12.GL.A.1 5884332 12-APR-07 Checkin Released Not_Distributed
    gl R12.GL.A.2 5999606 12-JUL-07 Checkin Released Not_Distributed
    gl R12.GL.A.3 6250259 13-OCT-07 Checkin Released Not_Distributed
    gl R12.GL.A.4 6493751 11-JAN-08 Checkin Released Not_Distributed
    gl R12.GL.A.5 6833178 15-MAY-08 Checkin Released Not_Distributed
    gl R12.GL.A.6 7293667 03-NOV-08 Checkin Released Not_Distributed
    gl R12.GL.B 4565307 11-AUG-08 Checkin Released Not_Distributed
    gma R12.GMA.A 4510696 18-JAN-07 Checkin Released Not_Distributed
    gma R12.GMA.A.1 5888102 13-APR-07 Checkin Released Not_Distributed
    gma R12.GMA.A.2 6002292 12-JUL-07 Checkin Released Not_Distributed
    gma R12.GMA.A.3 6262513 12-OCT-07 Checkin Released Not_Distributed
    gma R12.GMA.A.4 6506787 10-JAN-08 Checkin Released Not_Distributed
    gma R12.GMA.A.5 7290371 29-JUL-08 Checkin Released Not_Distributed
    gma R12.GMA.A.6 7290351 03-NOV-08 Checkin Released Not_Distributed
    gma R12.GMA.B 6657419 12-AUG-08 Checkin Released Not_Distributed
    gmd R12.GMD.A 4510710 18-JAN-07 Checkin Released Not_Distributed
    gmd R12.GMD.A.1 5888108 13-APR-07 Checkin Released Not_Distributed
    gmd R12.GMD.A.2 6002258 12-JUL-07 Checkin Released Not_Distributed
    gmd R12.GMD.A.3 6262008 12-OCT-07 Checkin Released Not_Distributed
    gmd R12.GMD.A.4 6506746 10-JAN-08 Checkin Released Not_Distributed
    gmd R12.GMD.A.5 7290116 29-JUL-08 Checkin Released Not_Distributed
    gmd R12.GMD.A.6 7290106 03-NOV-08 Checkin Released Not_Distributed
    gmd R12.GMD.B 6657427 12-AUG-08 Checkin Released Not_Distributed
    gme R12.GME.A 4510757 18-JAN-07 Checkin Released Not_Distributed
    gme R12.GME.A.1 5888113 13-APR-07 Checkin Released Not_Distributed
    gme R12.GME.A.2 6002263 12-JUL-07 Checkin Released Not_Distributed
    gme R12.GME.A.3 6262034 12-OCT-07 Checkin Released Not_Distributed
    gme R12.GME.A.4 6506754 10-JAN-08 Checkin Released Not_Distributed
    gme R12.GME.A.5 7290152 29-JUL-08 Checkin Released Not_Distributed
    gme R12.GME.A.6 7290131 03-NOV-08 Checkin Released Not_Distributed
    gme R12.GME.B 6657414 12-AUG-08 Checkin Released Not_Distributed
    gmf R12.GMF.A 4510764 18-JAN-07 Checkin Released Not_Distributed
    gmf R12.GMF.A.1 5888117 13-APR-07 Checkin Released Not_Distributed
    gmf R12.GMF.A.2 6002297 12-JUL-07 Checkin Released Not_Distributed
    gmf R12.GMF.A.3 6261986 12-OCT-07 Checkin Released Not_Distributed
    gmf R12.GMF.A.4 6506360 10-JAN-08 Checkin Released Not_Distributed
    gmf R12.GMF.A.5 7290085 29-JUL-08 Checkin Released Not_Distributed
    gmf R12.GMF.A.6 7290070 03-NOV-08 Checkin Released Not_Distributed
    gmf R12.GMF.B 6657417 12-AUG-08 Checkin Released Not_Distributed
    gmi R12.GMI.A 4510766 18-JAN-07 Checkin Released Not_Distributed
    gmi R12.GMI.A.1 5888119 13-APR-07 Checkin Released Not_Distributed
    gmi R12.GMI.A.2 6002302 12-JUL-07 Checkin Released Not_Distributed
    gmi R12.GMI.A.3 6262262 12-OCT-07 Checkin Released Not_Distributed
    gmi R12.GMI.A.4 6506739 10-JAN-08 Checkin Released Not_Distributed
    gmi R12.GMI.A.5 7290225 29-JUL-08 Checkin Released Not_Distributed
    gmi R12.GMI.A.6 7290213 03-NOV-08 Checkin Released Not_Distributed
    gmi R12.GMI.B 6657366 12-AUG-08 Checkin Released Not_Distributed
    gml R12.GML.A 4510781 18-JAN-07 Checkin Released Not_Distributed
    gml R12.GML.A.1 5888125 13-APR-07 Checkin Released Not_Distributed
    gml R12.GML.A.2 6002307 12-JUL-07 Checkin Released Not_Distributed
    gml R12.GML.A.3 6262301 12-OCT-07 Checkin Released Not_Distributed
    gml R12.GML.A.4 6506750 10-JAN-08 Checkin Released Not_Distributed
    gml R12.GML.A.5 7290270 29-JUL-08 Checkin Released Not_Distributed
    gml R12.GML.A.6 7290253 03-NOV-08 Checkin Released Not_Distributed
    gml R12.GML.B 6657370 12-AUG-08 Checkin Released Not_Distributed
    gmo R12.GMO.A 4510787 18-JAN-07 Checkin Released Not_Distributed
    gmo R12.GMO.A.1 5887034 13-APR-07 Checkin Released Not_Distributed
    gmo R12.GMO.A.2 6002268 13-JUL-07 Checkin Released Not_Distributed
    gmo R12.GMO.A.3 6262091 12-OCT-07 Checkin Released Not_Distributed
    gmo R12.GMO.A.4 6506725 10-JAN-08 Checkin Released Not_Distributed
    gmo R12.GMO.A.5 7290180 29-JUL-08 Checkin Released Not_Distributed
    gmo R12.GMO.A.6 7290172 03-NOV-08 Checkin Released Not_Distributed
    gmo R12.GMO.B 6657358 12-AUG-08 Checkin Released Not_Distributed
    gmp R12.GMP.A 4510783 18-JAN-07 Checkin Released Not_Distributed
    gmp R12.GMP.A.1 5888144 13-APR-07 Checkin Released Not_Distributed
    gmp R12.GMP.A.2 6002313 12-JUL-07 Checkin Released Not_Distributed
    gmp R12.GMP.A.3 6262475 12-OCT-07 Checkin Released Not_Distributed
    gmp R12.GMP.A.4 6506761 10-JAN-08 Checkin Released Not_Distributed
    gmp R12.GMP.A.5 7290289 29-JUL-08 Checkin Released Not_Distributed
    gmp R12.GMP.A.6 7290279 03-NOV-08 Checkin Released Not_Distributed
    gmp R12.GMP.B 6657377 12-AUG-08 Checkin Released Not_Distributed
    gms R12.GMS.A 4420082 18-JAN-07 Checkin Released Not_Distributed
    gms R12.GMS.A.1 5908166 13-APR-07 Checkin Released Not_Distributed
    gms R12.GMS.A.2 6022668 12-JUL-07 Checkin Released Not_Distributed
    gms R12.GMS.A.3 6266101 11-OCT-07 Checkin Released Not_Distributed
    gms R12.GMS.A.4 6512978 11-JAN-08 Checkin Released Not_Distributed
    gms R12.GMS.A.5 7292380 29-JUL-08 Checkin Released Not_Distributed
    gms R12.GMS.A.6 7292386 03-NOV-08 Checkin Released Not_Distributed
    gms R12.GMS.B 5873869 09-AUG-08 Checkin Released Not_Distributed
    gr R12.GR.A 4510789 18-JAN-07 Checkin Released Not_Distributed
    gr R12.GR.A.1 5887037 13-APR-07 Checkin Released Not_Distributed
    gr R12.GR.A.2 6002279 12-JUL-07 Checkin Released Not_Distributed
    gr R12.GR.A.3 6262535 12-OCT-07 Checkin Released Not_Distributed
    gr R12.GR.A.4 6506797 10-JAN-08 Checkin Released Not_Distributed
    gr R12.GR.A.5 7290425 29-JUL-08 Checkin Released Not_Distributed
    gr R12.GR.A.6 7290408 03-NOV-08 Checkin Released Not_Distributed
    gr R12.GR.B 6657432 12-AUG-08 Checkin Released Not_Distributed
    hcp R12.HCP.A 6140944 09-AUG-08 Checkin Released By_Metalink
    hcp R12.HCP.A.1 6399339 09-AUG-08 Checkin Released By_Metalink
    hct R12.HCT.A 6140939 09-AUG-08 Checkin Released By_Metalink
    hct R12.HCT.A.1 6399323 10-AUG-08 Checkin Released By_Metalink
    hc_pf R12.HC_PF.A 6446398 09-AUG-08 Checkin Released By_Metalink
    hc_pf R12.HC_PF.A.1 6505402 11-AUG-08 Checkin Released By_Metalink
    hri R12.HRI.A 5348566 18-JAN-07 Checkin Released Not_Distributed
    hri R12.HRI.A.1 5889658 13-APR-07 Checkin Released Not_Distributed
    hri R12.HRI.A.2 5997232 12-JUL-07 Checkin Released Not_Distributed
    hri R12.HRI.A.3 6196264 12-OCT-07 Checkin Released Not_Distributed
    hri R12.HRI.A.4 6506491 11-JAN-08 Checkin Released Not_Distributed
    hri R12.HRI.A.5 6835792 15-MAY-08 Checkin Released Not_Distributed
    hri R12.HRI.A.6 7291410 04-NOV-08 Checkin Released Not_Distributed
    hri R12.HRI.B 6658016 12-AUG-08 Checkin Released Not_Distributed
    hr_pf R12.HR_PF.A 4719824 18-JAN-07 Checkin Released Not_Distributed
    hr_pf R12.HR_PF.A.1 5881943 13-APR-07 Checkin Released Not_Distributed
    hr_pf R12.HR_PF.A.2 5997278 15-JUL-07 Checkin Released Not_Distributed
    hr_pf R12.HR_PF.A.3 6196269 15-OCT-07 Checkin Released Not_Distributed
    hr_pf R12.HR_PF.A.4 6494646 13-JAN-08 Checkin Released By_Metalink
    hr_pf R12.HR_PF.A.5 6610000 15-MAY-08 Checkin Released By_Metalink
    hr_pf R12.HR_PF.A.6 7004477 06-NOV-08 Checkin Released By_Metalink
    hr_pf R12.HR_PF.B 6603330 13-AUG-08 Checkin Released Not_Distributed
    hxt R12.HXT.A 5348569 18-JAN-07 Checkin Released Not_Distributed
    hxt R12.HXT.A.1 5889669 13-APR-07 Checkin Released Not_Distributed
    hxt R12.HXT.A.2 5997235 12-JUL-07 Checkin Released Not_Distributed
    hxt R12.HXT.A.3 6196255 12-OCT-07 Checkin Released Not_Distributed
    hxt R12.HXT.A.4 6506483 11-JAN-08 Checkin Released Not_Distributed
    hxt R12.HXT.A.5 6835785 15-MAY-08 Checkin Released Not_Distributed
    hxt R12.HXT.A.6 7291403 04-NOV-08 Checkin Released Not_Distributed
    hxt R12.HXT.B 6658008 12-AUG-08 Checkin Released Not_Distributed
    hz R12.HZ.A 4442901 18-JAN-07 Checkin Released Not_Distributed
    hz R12.HZ.A.1 5884333 12-APR-07 Checkin Released Not_Distributed
    hz R12.HZ.A.2 6000271 12-JUL-07 Checkin Released Not_Distributed
    hz R12.HZ.A.3 6262395 11-OCT-07 Checkin Released Not_Distributed
    hz R12.HZ.A.4 6496858 11-JAN-08 Checkin Released Not_Distributed
    hz R12.HZ.A.5 7299997 04-AUG-08 Checkin Released Not_Distributed
    hz R12.HZ.A.6 7300355 04-NOV-08 Checkin Released Not_Distributed
    hz R12.HZ.B 4565315 11-AUG-08 Checkin Released Not_Distributed
    ia R12.IA.A 4442905 18-JAN-07 Checkin Released Not_Distributed
    ia R12.IA.A.1 5884330 12-APR-07 Checkin Released Not_Distributed
    ia R12.IA.A.2 5999603 12-JUL-07 Checkin Released Not_Distributed
    ia R12.IA.A.3 6250059 13-OCT-07 Checkin Released Not_Distributed
    ia R12.IA.A.4 6493762 11-JAN-08 Checkin Released Not_Distributed
    ia R12.IA.A.5 6833192 15-MAY-08 Checkin Released Not_Distributed
    ia R12.IA.A.6 7293681 03-NOV-08 Checkin Released Not_Distributed
    ia R12.IA.B 4565320 11-AUG-08 Checkin Released Not_Distributed
    ibc R12.IBC.A 4460191 18-JAN-07 Checkin Released Not_Distributed
    ibc R12.IBC.A.1 5884356 12-APR-07 Checkin Released Not_Distributed
    ibc R12.IBC.A.2 6000297 12-JUL-07 Checkin Released Not_Distributed
    ibc R12.IBC.A.3 6261934 10-OCT-07 Checkin Released Not_Distributed
    ibc R12.IBC.A.4 6494506 11-JAN-08 Checkin Released Not_Distributed
    ibc R12.IBC.A.5 7300289 04-AUG-08 Checkin Released Not_Distributed
    ibc R12.IBC.A.6 7303723 03-NOV-08 Checkin Released Not_Distributed
    ibc R12.IBC.B 4562231 11-AUG-08 Checkin Released Not_Distributed
    ibe R12.IBE.A 4460184 18-JAN-07 Checkin Released Not_Distributed
    ibe R12.IBE.A.1 5884351 12-APR-07 Checkin Released Not_Distributed
    ibe R12.IBE.A.2 6000281 12-JUL-07 Checkin Released Not_Distributed
    ibe R12.IBE.A.3 6261929 10-OCT-07 Checkin Released Not_Distributed
    ibe R12.IBE.A.4 6494517 11-JAN-08 Checkin Released Not_Distributed
    ibe R12.IBE.A.5 7300298 04-AUG-08 Checkin Released Not_Distributed
    ibe R12.IBE.A.6 7303724 03-NOV-08 Checkin Released Not_Distributed
    ibe R12.IBE.B 4562233 11-AUG-08 Checkin Released Not_Distributed
    ibu R12.IBU.A 4464392 18-JAN-07 Checkin Released Not_Distributed
    ibu R12.IBU.A.1 5884184 12-APR-07 Checkin Released Not_Distributed
    ibu R12.IBU.A.2 6000252 12-JUL-07 Checkin Released Not_Distributed
    ibu R12.IBU.A.3 6261882 10-OCT-07 Checkin Released Not_Distributed
    ibu R12.IBU.A.4 6496919 11-JAN-08 Checkin Released Not_Distributed
    ibu R12.IBU.A.5 7300272 04-AUG-08 Checkin Released Not_Distributed
    ibu R12.IBU.A.6 7300329 03-NOV-08 Checkin Released Not_Distributed
    ibu R12.IBU.B 4561600 11-AUG-08 Checkin Released Not_Distributed
    ibw R12.IBW.A 4507963 18-JAN-07 Checkin Released Not_Distributed
    ibw R12.IBW.A.1 5884730 12-APR-07 Checkin Released Not_Distributed
    ibw R12.IBW.A.2 6000322 12-JUL-07 Checkin Released Not_Distributed
    ibw R12.IBW.A.3 6261988 10-OCT-07 Checkin Released Not_Distributed
    ibw R12.IBW.A.4 6494526 11-JAN-08 Checkin Released Not_Distributed
    ibw R12.IBW.A.5 7300300 04-AUG-08 Checkin Released Not_Distributed
    ibw R12.IBW.A.6 7303725 03-NOV-08 Checkin Released Not_Distributed
    ibw R12.IBW.B 4562191 11-AUG-08 Checkin Released Not_Distributed
    iby R12.IBY.A 4442908 18-JAN-07 Checkin Released Not_Distributed
    iby R12.IBY.A.1 5884350 12-APR-07 Checkin Released Not_Distributed
    iby R12.IBY.A.2 5999621 12-JUL-07 Checkin Released Not_Distributed
    iby R12.IBY.A.3 6250123 13-OCT-07 Checkin Released Not_Distributed
    iby R12.IBY.A.4 6493775 11-JAN-08 Checkin Released Not_Distributed
    iby R12.IBY.A.5 6832861 15-MAY-08 Checkin Released Not_Distributed
    iby R12.IBY.A.6 7293719 04-NOV-08 Checkin Released Not_Distributed
    iby R12.IBY.B 4565227 11-AUG-08 Checkin Released Not_Distributed
    icx R12.ICX.A 4445654 18-JAN-07 Checkin Released Not_Distributed
    icx R12.ICX.A.1 5884378 12-APR-07 Checkin Released Not_Distributed
    icx R12.ICX.A.2 6000330 12-JUL-07 Checkin Released Not_Distributed
    icx R12.ICX.A.3 6261775 10-OCT-07 Checkin Released Not_Distributed
    icx R12.ICX.A.4 6496753 11-JAN-08 Checkin Released Not_Distributed
    icx R12.ICX.A.5 7300043 04-AUG-08 Checkin Released Not_Distributed
    icx R12.ICX.A.6 7300362 04-NOV-08 Checkin Released Not_Distributed
    icx R12.ICX.B 4565368 11-AUG-08 Checkin Released Not_Distributed
    ieb R12.IEB.A 4464353 18-JAN-07 Checkin Released Not_Distributed
    ieb R12.IEB.A.1 5884749 12-APR-07 Checkin Released Not_Distributed
    ieb R12.IEB.A.2 6000372 12-JUL-07 Checkin Released Not_Distributed
    ieb R12.IEB.A.3 6262329 11-OCT-07 Checkin Released Not_Distributed
    ieb R12.IEB.A.4 6496863 11-JAN-08 Checkin Released Not_Distributed
    ieb R12.IEB.A.5 7299955 04-AUG-08 Checkin Released Not_Distributed
    ieb R12.IEB.A.6 7300326 04-NOV-08 Checkin Released Not_Distributed
    ieb R12.IEB.B 4561629 11-AUG-08 Checkin Released Not_Distributed
    iec R12.IEC.A 4464537 18-JAN-07 Checkin Released Not_Distributed
    iec R12.IEC.A.1 5884762 12-APR-07 Checkin Released Not_Distributed
    iec R12.IEC.A.2 6000388 12-JUL-07 Checkin Released Not_Distributed
    iec R12.IEC.A.3 6262181 11-OCT-07 Checkin Released Not_Distributed
    iec R12.IEC.A.4 6496866 11-JAN-08 Checkin Released Not_Distributed
    iec R12.IEC.A.5 7299973 04-AUG-08 Checkin Released Not_Distributed
    iec R12.IEC.A.6 7300331 04-NOV-08 Checkin Released Not_Distributed
    iec R12.IEC.B 4561653 11-AUG-08 Checkin Released Not_Distributed
    iem R12.IEM.A 4464416 18-JAN-07 Checkin Released Not_Distributed
    iem R12.IEM.A.1 5884755 12-APR-07 Checkin Released Not_Distributed
    iem R12.IEM.A.2 6000381 12-JUL-07 Checkin Released Not_Distributed
    iem R12.IEM.A.3 6262411 11-OCT-07 Checkin Released Not_Distributed
    iem R12.IEM.A.4 6496872 11-JAN-08 Checkin Released Not_Distributed
    iem R12.IEM.A.5 7299974 04-AUG-08 Checkin Released Not_Distributed
    iem R12.IEM.A.6 7300333 04-NOV-08 Checkin Released Not_Distributed
    iem R12.IEM.B 4561656 11-AUG-08 Checkin Released Not_Distributed
    ieo R12.IEO.A 4464327 18-JAN-07 Checkin Released Not_Distributed
    ieo R12.IEO.A.1 5884729 12-APR-07 Checkin Released Not_Distributed
    ieo R12.IEO.A.2 6000338 12-JUL-07 Checkin Released Not_Distributed
    ieo R12.IEO.A.3 6262233 11-OCT-07 Checkin Released Not_Distributed
    ieo R12.IEO.A.4 6496879 11-JAN-08 Checkin Released Not_Distributed
    ieo R12.IEO.A.5 7299976 04-AUG-08 Checkin Released Not_Distributed
    ieo R12.IEO.A.6 7300334 04-NOV-08 Checkin Released Not_Distributed
    ieo R12.IEO.B 4561657 11-AUG-08 Checkin Released Not_Distributed
    ies R12.IES.A 4464550 18-JAN-07 Checkin Released Not_Distributed
    ies R12.IES.A.1 5884772 12-APR-07 Checkin Released Not_Distributed
    ies R12.IES.A.2 6000392 12-JUL-07 Checkin Released Not_Distributed
    ies R12.IES.A.3 6262375 11-OCT-07 Checkin Released Not_Distributed
    ies R12.IES.A.4 6496885 11-JAN-08 Checkin Released Not_Distributed
    ies R12.IES.A.5 7299980 04-AUG-08 Checkin Released Not_Distributed
    ies R12.IES.A.6 7300340 04-NOV-08 Checkin Released Not_Distributed
    ies R12.IES.B 4561640 11-AUG-08 Checkin Released Not_Distributed
    ieu R12.IEU.A 4464309 18-JAN-07 Checkin Released Not_Distributed
    ieu R12.IEU.A.1 5884344 12-APR-07 Checkin Released Not_Distributed
    ieu R12.IEU.A.2 6000288 12-JUL-07 Checkin Released Not_Distributed
    ieu R12.IEU.A.3 6262408 11-OCT-07 Checkin Released Not_Distributed
    ieu R12.IEU.A.4 6496887 11-JAN-08 Checkin Released Not_Distributed
    ieu R12.IEU.A.5 7299978 04-AUG-08 Checkin Released Not_Distributed
    ieu R12.IEU.A.6 7300336 04-NOV-08 Checkin Released Not_Distributed
    ieu R12.IEU.B 4561643 11-AUG-08 Checkin Released Not_Distributed
    iex R12.IEX.A 4411250 18-JAN-07 Checkin Released Not_Distributed
    iex R12.IEX.A.1 5884355 12-APR-07 Checkin Released Not_Distributed
    iex R12.IEX.A.2 5999867 12-JUL-07 Checkin Released Not_Distributed
    iex R12.IEX.A.3 6250178 13-OCT-07 Checkin Released Not_Distributed
    iex R12.IEX.A.4 6493779 11-JAN-08 Checkin Released Not_Distributed
    iex R12.IEX.A.5 6833164 15-MAY-08 Checkin Released Not_Distributed
    iex R12.IEX.A.6 7293687 03-NOV-08 Checkin Released Not_Distributed
    iex R12.IEX.B 4565241 11-AUG-08 Checkin Released Not_Distributed
    igi R12.IGI.A 4442916 18-JAN-07 Checkin Released Not_Distributed
    igi R12.IGI.A.1 5884358 12-APR-07 Checkin Released Not_Distributed
    igi R12.IGI.A.2 5999879 12-JUL-07 Checkin Released Not_Distributed
    igi R12.IGI.A.3 6251116 13-OCT-07 Checkin Released Not_Distributed
    igi R12.IGI.A.4 6493788 11-JAN-08 Checkin Released Not_Distributed
    igi R12.IGI.A.5 6833081 15-MAY-08 Checkin Released Not_Distributed
    igi R12.IGI.A.6 7293884 04-NOV-08 Checkin Released Not_Distributed
    igi R12.IGI.B 4688801 12-AUG-08 Checkin Released Not_Distributed
    igp R12.IGP.A 4775831 18-JAN-07 Checkin Released Not_Distributed
    igp R12.IGP.A.1 5922127 13-APR-07 Checkin Released Not_Distributed
    igp R12.IGP.A.2 6040134 09-JUL-07 Checkin Released Not_Distributed
    igp R12.IGP.A.3 6322214 15-OCT-07 Checkin Released Not_Distributed
    igr R12.IGR.A 4775824 18-JAN-07 Checkin Released Not_Distributed
    igr R12.IGR.A.1 5922111 13-APR-07 Checkin Released Not_Distributed
    igr R12.IGR.A.2 6040123 09-JUL-07 Checkin Released Not_Distributed
    igr R12.IGR.A.3 6322211 15-OCT-07 Checkin Released Not_Distributed
    igs R12.IGS.A 4467166 18-JAN-07 Checkin Released Not_Distributed
    igs R12.IGS.A.1 5922099 13-APR-07 Checkin Released Not_Distributed
    igs R12.IGS.A.2 6040117 09-JUL-07 Checkin Released Not_Distributed
    igs R12.IGS.A.3 6322196 15-OCT-07 Checkin Released Not_Distributed
    igw R12.IGW.A 4442921 18-JAN-07 Checkin Released Not_Distributed
    igw R12.IGW.A.1 5884363 12-APR-07 Checkin Released Not_Distributed
    igw R12.IGW.A.2 5999908 12-JUL-07 Checkin Released Not_Distributed
    igw R12.IGW.A.3 6250222 13-OCT-07 Checkin Released Not_Distributed
    igw R12.IGW.A.4 6493796 11-JAN-08 Checkin Released Not_Distributed
    igw R12.IGW.A.5 6832865 15-MAY-08 Checkin Released Not_Distributed
    igw R12.IGW.A.6 7293724 04-NOV-08 Checkin Released Not_Distributed
    igw R12.IGW.B 4688798 11-AUG-08 Checkin Released Not_Distributed
    imc R12.IMC.A 4442924 18-JAN-07 Checkin Released Not_Distributed
    imc R12.IMC.A.1 5884367 12-APR-07 Checkin Released Not_Distributed
    imc R12.IMC.A.2 6000309 12-JUL-07 Checkin Released Not_Distributed
    imc R12.IMC.A.3 6262272 11-OCT-07 Checkin Released Not_Distributed
    imc R12.IMC.A.4 6496889 11-JAN-08 Checkin Released Not_Distributed
    imc R12.IMC.A.5 7299993 04-AUG-08 Checkin Released Not_Distributed
    imc R12.IMC.A.6 7300354 04-NOV-08 Checkin Released Not_Distributed
    imc R12.IMC.B 4565248 11-AUG-08 Checkin Released Not_Distributed
    inl R12.INL.A 6919602 12-AUG-08 Checkin Released Not_Distributed
    inl R12.INL.B 6961271 12-AUG-08 Checkin Released Not_Distributed
    inv R12.INV.A 2563006 18-JAN-07 Checkin Released Not_Distributed
    inv R12.INV.A.1 5885840 13-APR-07 Checkin Released Not_Distributed
    inv R12.INV.A.2 6003688 12-JUL-07 Checkin Released Not_Distributed
    inv R12.INV.A.3 6258855 12-OCT-07 Checkin Released Not_Distributed
    inv R12.INV.A.4 6508183 11-JAN-08 Checkin Released Not_Distributed
    inv R12.INV.A.5 7289233 29-JUL-08 Checkin Released Not_Distributed
    inv R12.INV.A.6 7289501 03-NOV-08 Checkin Released Not_Distributed
    inv R12.INV.B 6658935 12-AUG-08 Checkin Released Not_Distributed
    ipa R12.IPA.A 4452058 18-JAN-07 Checkin Released Not_Distributed
    ipa R12.IPA.A.1 5911126 13-APR-07 Checkin Released Not_Distributed
    ipa R12.IPA.A.2 6022675 12-JUL-07 Checkin Released Not_Distributed
    ipa R12.IPA.A.3 6266103 11-OCT-07 Checkin Released Not_Distributed
    ipa R12.IPA.A.4 6512989 11-JAN-08 Checkin Released Not_Distributed
    ipa R12.IPA.A.5 7292398 29-JUL-08 Checkin Released Not_Distributed
    ipa R12.IPA.A.6 7292400 03-NOV-08 Checkin Released Not_Distributed
    ipa R12.IPA.B 6664653 09-AUG-08 Checkin Released Not_Distributed
    ipm R12.IPM.A 5590685 24-MAY-07 Checkin Released Not_Distributed
    irc R12.IRC.A 5348577 18-JAN-07 Checkin Released Not_Distributed
    irc R12.IRC.A.1 5889675 13-APR-07 Checkin Released Not_Distributed
    irc R12.IRC.A.2 5997243 12-JUL-07 Checkin Released Not_Distributed
    irc R12.IRC.A.3 6196261 12-OCT-07 Checkin Released Not_Distributed
    irc R12.IRC.A.4 6506488 11-JAN-08 Checkin Released Not_Distributed
    irc R12.IRC.A.5 6835790 15-MAY-08 Checkin Released Not_Distributed
    irc R12.IRC.A.6 7291408 04-NOV-08 Checkin Released Not_Distributed
    irc R12.IRC.B 6658014 12-AUG-08 Checkin Released Not_Distributed
    isc R12.ISC.A 4510494 18-JAN-07 Checkin Released Not_Distributed
    isc R12.ISC.A.1 5889879 13-APR-07 Checkin Released Not_Distributed
    isc R12.ISC.A.2 6002337 12-JUL-07 Checkin Released Not_Distributed
    isc R12.ISC.A.3 6263093 12-OCT-07 Checkin Released Not_Distributed
    isc R12.ISC.A.4 6507046 10-JAN-08 Checkin Released Not_Distributed
    isc R12.ISC.A.5 7290971 29-JUL-08 Checkin Released Not_Distributed
    isc R12.ISC.A.6 7291502 03-NOV-08 Checkin Released Not_Distributed
    isc R12.ISC.B 6657615 29-APR-08 Checkin Released Not_Distributed
    isc R12.ISC.B.1 7038972 12-AUG-08 Checkin Released Not_Distributed
    ita R12.ITA.A 4442960 18-JAN-07 Checkin Released Not_Distributed
    ita R12.ITA.A.1 5884371 12-APR-07 Checkin Released Not_Distributed
    ita R12.ITA.A.2 5999963 12-JUL-07 Checkin Released Not_Distributed
    ita R12.ITA.A.3 6250256 13-OCT-07 Checkin Released Not_Distributed
    ita R12.ITA.A.4 6493801 11-JAN-08 Checkin Released Not_Distributed
    ita R12.ITA.A.5 6833387 15-MAY-08 Checkin Released Not_Distributed
    ita R12.ITA.A.6 7293802 03-NOV-08 Checkin Released Not_Distributed
    ita R12.ITA.B 4565254 11-AUG-08 Checkin Released Not_Distributed
    itg R12.ITG.A 4510822 18-JAN-07 Checkin Released Not_Distributed
    itg R12.ITG.A.1 5887102 13-APR-07 Checkin Released Not_Distributed
    itg R12.ITG.A.2 6002317 12-JUL-07 Checkin Released Not_Distributed
    itg R12.ITG.A.3 6264119 12-OCT-07 Checkin Released Not_Distributed
    itg R12.ITG.A.4 6506788 10-JAN-08 Checkin Released Not_Distributed
    itg R12.ITG.A.5 7290662 29-JUL-08 Checkin Released Not_Distributed
    itg R12.ITG.A.6 7290647 03-NOV-08 Checkin Released Not_Distributed
    itg R12.ITG.B 6657398 12-AUG-08 Checkin Released Not_Distributed
    itm R12.ITM.A 4508292 18-JAN-07 Checkin Released Not_Distributed
    itm R12.ITM.A.1 5887192 13-APR-07 Checkin Released Not_Distributed
    itm R12.ITM.A.2 5999960 13-JUL-07 Checkin Released Not_Distributed
    itm R12.ITM.A.3 6263011 12-OCT-07 Checkin Released Not_Distributed
    itm R12.ITM.A.4 6506727 11-JAN-08 Checkin Released Not_Distributed
    itm R12.ITM.A.5 7289986 29-JUL-08 Checkin Released Not_Distributed
    itm R12.ITM.A.6 7290003 04-NOV-08 Checkin Released Not_Distributed
    itm R12.ITM.B 6469939 04-FEB-08 Checkin Released Not_Distributed
    itm R12.ITM.C 6657739 11-AUG-08 Checkin Released Not_Distributed
    izu R12.IZU.A 4630372 03-APR-07 Checkin Released By_Metalink
    izu R12.IZU.A.1 6265814 11-OCT-07 Checkin Released Not_Distributed
    izu R12.IZU.A.2 6265818 11-OCT-07 Checkin Released Not_Distributed
    izu R12.IZU.A.3 6265820 31-OCT-07 Checkin Released By_Metalink
    izu R12.IZU.A.4 6497339 11-JAN-08 Checkin Released By_Metalink
    izu R12.IZU.A.5 7294696 31-JUL-08 Checkin Released Not_Distributed
    izu R12.IZU.A.6 7294700 05-NOV-08 Checkin Released By_Metalink
    izu R12.IZU.B 6633693 12-AUG-08 Checkin Released Not_Distributed
    ja R12.JA.A 4442852 18-JAN-07 Checkin Released Not_Distributed
    ja R12.JA.A.1 5884376 12-APR-07 Checkin Released Not_Distributed
    ja R12.JA.A.2 5999978 12-JUL-07 Checkin Released Not_Distributed
    ja R12.JA.A.3 6250283 13-OCT-07 Checkin Released Not_Distributed
    ja R12.JA.A.4 6493807 11-JAN-08 Checkin Released Not_Distributed
    ja R12.JA.A.5 6833092 15-MAY-08 Checkin Released Not_Distributed
    ja R12.JA.A.6 7293828 04-NOV-08 Checkin Released Not_Distributed
    ja R12.JA.B 4565259 12-AUG-08 Checkin Released Not_Distributed
    jai R12.JAI.A 4516469 18-JAN-07 Checkin Released Not_Distributed
    jai R12.JAI.A.1 5884381 12-APR-07 Checkin Released Not_Distributed
    jai R12.JAI.A.2 5999841 12-JUL-07 Checkin Released Not_Distributed
    jai R12.JAI.A.3 6250318 13-OCT-07 Checkin Released Not_Distributed
    jai R12.JAI.A.4 6493815 11-JAN-08 Checkin Released Not_Distributed
    jai R12.JAI.A.5 6833395 15-MAY-08 Checkin Released Not_Distributed
    jai R12.JAI.A.6 7293807 03-NOV-08 Checkin Released Not_Distributed
    jai R12.JAI.B 4565291 11-AUG-08 Checkin Released Not_Distributed
    je R12.JE.A 4442858 18-JAN-07 Checkin Released Not_Distributed
    je R12.JE.A.1 5884386 12-APR-07 Checkin Released Not_Distributed
    je R12.JE.A.2 5999874 12-JUL-07 Checkin Released Not_Distributed
    je R12.JE.A.3 6250339 13-OCT-07 Checkin Released Not_Distributed
    je R12.JE.A.4 6493821 11-JAN-08 Checkin Released Not_Distributed
    je R12.JE.A.5 6833105 15-MAY-08 Checkin Released Not_Distributed
    je R12.JE.A.6 7293851 04-NOV-08 Checkin Released Not_Distributed
    je R12.JE.B 4713717 12-AUG-08 Checkin Released Not_Distributed
    jg R12.JG.A 4442865 18-JAN-07 Checkin Released Not_Distributed
    jg R12.JG.A.1 5884392 12-APR-07 Checkin Released Not_Distributed
    jg R12.JG.A.2 5999892 12-JUL-07 Checkin Released Not_Distributed
    jg R12.JG.A.3 6250431 13-OCT-07 Checkin Released Not_Distributed
    jg R12.JG.A.4 6493761 11-JAN-08 Checkin Released Not_Distributed
    jg R12.JG.A.5 6832870 15-MAY-08 Checkin Released Not_Distributed
    jg R12.JG.A.6 7293726 04-NOV-08 Checkin Released Not_Distributed
    jg R12.JG.B 4565260 11-AUG-08 Checkin Released Not_Distributed
    jl R12.JL.A 4442869 18-JAN-07 Checkin Released Not_Distributed
    jl R12.JL.A.1 5884394 12-APR-07 Checkin Released Not_Distributed
    jl R12.JL.A.2 5999905 12-JUL-07 Checkin Released Not_Distributed
    jl R12.JL.A.3 6250450 13-OCT-07 Checkin Released Not_Distributed
    jl R12.JL.A.4 6493777 11-JAN-08 Checkin Released Not_Distributed
    jl R12.JL.A.5 6833180 15-MAY-08 Checkin Released Not_Distributed
    jl R12.JL.A.6 7293820 03-NOV-08 Checkin Released Not_Distributed
    jl R12.JL.B 4565264 11-AUG-08 Checkin Released Not_Distributed
    jmf R12.JMF.A 4510258 18-JAN-07 Checkin Released Not_Distributed
    jmf R12.JMF.A.1 5885843 13-APR-07 Checkin Released Not_Distributed
    jmf R12.JMF.A.2 6003695 12-JUL-07 Checkin Released Not_Distributed
    jmf R12.JMF.A.3 6258871 12-OCT-07 Checkin Released Not_Distributed
    jmf R12.JMF.A.4 6508192 11-JAN-08 Checkin Released Not_Distributed
    jmf R12.JMF.A.5 7289250 29-JUL-08 Checkin Released Not_Distributed
    jmf R12.JMF.A.6 7289526 03-NOV-08 Checkin Released Not_Distributed
    jmf R12.JMF.B 6658940 11-AUG-08 Checkin Released Not_Distributed
    jta R12.JTA.A 4497250 18-JAN-07 Checkin Released Not_Distributed
    jta R12.JTA.A.1 5907573 13-APR-07 Checkin Released Not_Distributed
    jta R12.JTA.A.2 5917330 13-JUL-07 Checkin Released Not_Distributed
    jta R12.JTA.A.3 6077589 11-OCT-07 Checkin Released Not_Distributed
    jta R12.JTA.A.4 6354137 11-JAN-08 Checkin Released Not_Distributed
    jta R12.JTA.A.5 6594777 29-JUL-08 Checkin Released Not_Distributed
    jta R12.JTA.A.6 7237223 03-NOV-08 Checkin Released Not_Distributed
    jta R12.JTA.B 6430094 11-AUG-08 Checkin Released Not_Distributed
    jtf R12.JTF.A 6353614 20-AUG-07 Checkin Released Not_Distributed
    jtf R12.JTF.A.1 6353654 20-AUG-07 Checkin Released Not_Distributed
    jtf R12.JTF.A.2 6353677 20-AUG-07 Checkin Released Not_Distributed
    jtf R12.JTF.A.3 6353703 11-OCT-07 Checkin Released Not_Distributed
    jtf R12.JTF.A.4 6354326 11-JAN-08 Checkin Released Not_Distributed
    jtf R12.JTF.A.5 6594791 30-JUL-08 Checkin Released Not_Distributed
    jtf R12.JTF.A.6 7237251 03-NOV-08 Checkin Released Not_Distributed
    jtf R12.JTF.B 6430101 11-AUG-08 Checkin Released Not_Distributed
    jth R12.JTH.A 4464555 18-JAN-07 Checkin Released Not_Distributed
    jth R12.JTH.A.1 5884777 12-APR-07 Checkin Released Not_Distributed
    jth R12.JTH.A.2 6000398 12-JUL-07 Checkin Released Not_Distributed
    jth R12.JTH.A.3 6262349 11-OCT-07 Checkin Released Not_Distributed
    jth R12.JTH.A.4 6496892 11-JAN-08 Checkin Released Not_Distributed
    jth R12.JTH.A.5 7299988 04-AUG-08 Checkin Released Not_Distributed
    jth R12.JTH.A.6 7300352 04-NOV-08 Checkin Released Not_Distributed
    jth R12.JTH.B 4561647 11-AUG-08 Checkin Released Not_Distributed
    jtm R12.JTM.A 4510080 18-JAN-07 Checkin Released Not_Distributed
    jtm R12.JTM.A.1 5889825 13-APR-07 Checkin Released Not_Distributed
    jtm R12.JTM.A.2 6000093 13-JUL-07 Checkin Released Not_Distributed
    jtm R12.JTM.A.3 6263303 12-OCT-07 Checkin Released Not_Distributed
    jtm R12.JTM.A.4 6506738 10-JAN-08 Checkin Released Not_Distributed
    jtm R12.JTM.A.5 7300413 04-AUG-08 Checkin Released Not_Distributed
    jtm R12.JTM.A.6 7300418 03-NOV-08 Checkin Released Not_Distributed
    jtm R12.JTM.B 6657100 11-AUG-08 Checkin Released Not_Distributed
    jto R12.JTO.A 4464552 18-JAN-07 Checkin Released Not_Distributed
    jto R12.JTO.A.1 5884690 12-APR-07 Checkin Released Not_Distributed
    jto R12.JTO.A.2 6000316 12-JUL-07 Checkin Released Not_Distributed
    jto R12.JTO.A.3 6261952 10-OCT-07 Checkin Released Not_Distributed
    jto R12.JTO.A.4 6494534 11-JAN-08 Checkin Released Not_Distributed
    jto R12.JTO.A.5 7299987 04-AUG-08 Checkin Released Not_Distributed
    jto R12.JTO.A.6 7300343 04-NOV-08 Checkin Released Not_Distributed
    jto R12.JTO.B 4561646 11-AUG-08 Checkin Released Not_Distributed
    jtt R12.JTT.A 4495182 18-JAN-07 Checkin Released Not_Distributed
    jtt R12.JTT.A.1 5907567 13-APR-07 Checkin Released Not_Distributed
    jtt R12.JTT.A.2 5917328 13-JUL-07 Checkin Released Not_Distributed
    jtt R12.JTT.A.3 6077540 11-OCT-07 Checkin Released Not_Distributed
    jtt R12.JTT.A.4 6272402 11-JAN-08 Checkin Released Not_Distributed
    jtt R12.JTT.A.5 6594763 29-JUL-08 Checkin Released Not_Distributed
    jtt R12.JTT.A.6 7237189 03-NOV-08 Checkin Released Not_Distributed
    jtt R12.JTT.B 6430079 11-AUG-08 Checkin Released Not_Distributed
    jty R12.JTY.A 4455999 18-JAN-07 Checkin Released Not_Distributed
    jty R12.JTY.A.1 5884190 12-APR-07 Checkin Released Not_Distributed
    jty R12.JTY.A.2 6000179 12-JUL-07 Checkin Released Not_Distributed
    jty R12.JTY.A.3 6261747 10-OCT-07 Checkin Released Not_Distributed
    jty R12.JTY.A.4 6494540 11-JAN-08 Checkin Released Not_Distributed
    jty R12.JTY.A.5 7300301 04-AUG-08 Checkin Released Not_Distributed
    jty R12.JTY.A.6 7303726 03-NOV-08 Checkin Released Not_Distributed
    jty R12.JTY.B 4547900 11-AUG-08 Checkin Released Not_Distributed
    lns R12.LNS.A 4442878 18-JAN-07 Checkin Released Not_Distributed
    lns R12.LNS.A.1 5884400 12-APR-07 Checkin Released Not_Distributed
    lns R12.LNS.A.2 5999935 12-JUL-07 Checkin Released Not_Distributed
    lns R12.LNS.A.3 6250233 13-OCT-07 Checkin Released Not_Distributed
    lns R12.LNS.A.4 6493792 11-JAN-08 Checkin Released Not_Distributed
    lns R12.LNS.A.5 6832878 15-MAY-08 Checkin Released Not_Distributed
    lns R12.LNS.A.6 7293729 04-NOV-08 Checkin Released Not_Distributed
    lns R12.LNS.B 4565269 11-AUG-08 Checkin Released Not_Distributed
    mas_pf R12.MAS_PF.A 4456002 18-JAN-07 Checkin Released Not_Distributed
    mas_pf R12.MAS_PF.A.1 5884992 13-APR-07 Checkin Released Not_Distributed
    mas_pf R12.MAS_PF.A.2 6000379 16-JUL-07 Checkin Released Not_Distributed
    mas_pf R12.MAS_PF.A.3 6261519 12-OCT-07 Checkin Released Not_Distributed
    mas_pf R12.MAS_PF.A.4 6506236 14-JAN-08 Checkin Released Not_Distributed
    mas_pf R12.MAS_PF.A.5 7286724 04-AUG-08 Checkin Released Not_Distributed
    mas_pf R12.MAS_PF.A.6 7286728 05-NOV-08 Checkin Released Not_Distributed
    mas_pf R12.MAS_PF.B 6654877 13-AUG-08 Checkin Released Not_Distributed
    mfg R12.MFG.A 4510255 18-JAN-07 Checkin Released Not_Distributed
    mfg R12.MFG.A.1 4279603 13-APR-07 Checkin Released Not_Distributed
    mfg R12.MFG.A.2 6003707 12-JUL-07 Checkin Released Not_Distributed
    mfg R12.MFG.A.3 6258894 12-OCT-07 Checkin Released Not_Distributed
    mfg R12.MFG.A.4 6508203 11-JAN-08 Checkin Released Not_Distributed
    mfg R12.MFG.A.5 7289253 29-JUL-08 Checkin Released Not_Distributed
    mfg R12.MFG.A.6 7289565 03-NOV-08 Checkin Released Not_Distributed
    mfg R12.MFG.B 6658950 11-AUG-08 Checkin Released Not_Distributed
    mrp R12.MRP.A 4510298 18-JAN-07 Checkin Released Not_Distributed
    mrp R12.MRP.A.1 5889791 13-APR-07 Checkin Released Not_Distributed
    mrp R12.MRP.A.2 6002101 13-JUL-07 Checkin Released Not_Distributed
    mrp R12.MRP.A.3 6262170 12-OCT-07 Checkin Released Not_Distributed
    mrp R12.MRP.A.4 6506336 11-JAN-08 Checkin Released Not_Distributed
    mrp R12.MRP.A.5 7289236 29-JUL-08 Checkin Released Not_Distributed
    mrp R12.MRP.A.6 7289512 03-NOV-08 Checkin Released Not_Distributed
    mrp R12.MRP.B 6657459 11-AUG-08 Checkin Released Not_Distributed
    msc R12.MSC.A 4510453 18-JAN-07 Checkin Released Not_Distributed
    msc R12.MSC.A.1 5890874 13-APR-07 Checkin Released Not_Distributed
    msc R12.MSC.A.2 6001479 12-JUL-07 Checkin Released Not_Distributed
    msc R12.MSC.A.3 6264411 12-OCT-07 Checkin Released Not_Distributed
    msc R12.MSC.A.4 6503839 11-JAN-08 Checkin Released Not_Distributed
    msc R12.MSC.A.5 7290847 29-JUL-08 Checkin Released Not_Distributed
    msc R12.MSC.A.6 7291438 03-NOV-08 Checkin Released Not_Distributed
    msc R12.MSC.B 6659478 29-APR-08 Checkin Released Not_Distributed
    msc R12.MSC.B.1 7038963 12-AUG-08 Checkin Released Not_Distributed
    msd R12.MSD.A 4510458 18-JAN-07 Checkin Released Not_Distributed
    msd R12.MSD.A.1 5887284 13-APR-07 Checkin Released Not_Distributed
    msd R12.MSD.A.2 6002346 12-JUL-07 Checkin Released Not_Distributed
    msd R12.MSD.A.3 6262767 12-OCT-07 Checkin Released Not_Distributed
    msd R12.MSD.A.4 6504722 10-JAN-08 Checkin Released Not_Distributed
    msd R12.MSD.A.5 7290835 29-JUL-08 Checkin Released Not_Distributed
    msd R12.MSD.A.6 7291428 03-NOV-08 Checkin Released Not_Distributed
    msd R12.MSD.B 6657478 29-APR-08 Checkin Released Not_Distributed
    msd R12.MSD.B.1 7038964 12-AUG-08 Checkin Released Not_Distributed
    mse R12.MSE.A 4510465 18-JAN-07 Checkin Released Not_Distributed
    mso R12.MSO.A 4510476 18-JAN-07 Checkin Released Not_Distributed
    mso R12.MSO.A.1 5887292 13-APR-07 Checkin Released Not_Distributed
    mso R12.MSO.A.2 6002358 12-JUL-07 Checkin Released Not_Distributed
    mso R12.MSO.A.3 6262830 12-OCT-07 Checkin Released Not_Distributed
    mso R12.MSO.A.4 6507010 10-JAN-08 Checkin Released Not_Distributed
    mso R12.MSO.A.5 7290855 29-JUL-08 Checkin Released Not_Distributed
    mso R12.MSO.A.6 7291454 03-NOV-08 Checkin Released Not_Distributed
    mso R12.MSO.B 6657579 29-APR-08 Checkin Released Not_Distributed
    mso R12.MSO.B.1 7038965 12-AUG-08 Checkin Released Not_Distributed
    msr R12.MSR.A 4510484 18-JAN-07 Checkin Released Not_Distributed
    msr R12.MSR.A.1 5887308 13-APR-07 Checkin Released Not_Distributed
    msr R12.MSR.A.2 6002362 12-JUL-07 Checkin Released Not_Distributed
    msr R12.MSR.A.3 6263000 12-OCT-07 Checkin Released Not_Distributed
    msr R12.MSR.A.4 6507013 10-JAN-08 Checkin Released Not_Distributed
    msr R12.MSR.A.5 7290884 29-JUL-08 Checkin Released Not_Distributed
    msr R12.MSR.A.6 7291461 03-NOV-08 Checkin Released Not_Distributed
    msr R12.MSR.B 6657589 29-APR-08 Checkin Released Not_Distributed
    msr R12.MSR.B.1 7038966 12-AUG-08 Checkin Released Not_Distributed
    mst R12.MST.A 4510214 18-JAN-07 Checkin Released Not_Distributed
    mst R12.MST.A.1 5889797 13-APR-07 Checkin Released Not_Distributed
    mst R12.MST.A.2 6002115 12-JUL-07 Checkin Released Not_Distributed
    mst R12.MST.A.3 6261594 12-OCT-07 Checkin Released Not_Distributed
    mst R12.MST.A.4 6506778 10-JAN-08 Checkin Released Not_Distributed
    mst R12.MST.A.5 7290442 29-JUL-08 Checkin Released Not_Distributed
    mst R12.MST.A.6 7290452 04-NOV-08 Checkin Released Not_Distributed
    mst R12.MST.B 6657162 11-AUG-08 Checkin Released Not_Distributed
    mth R12.MTH.A 6613769 29-NOV-07 Checkin Released Not_Distributed
    mth R12.MTH.B 6659488 29-APR-08 Checkin Released Not_Distributed
    mth R12.MTH.B.1 7038969 12-AUG-08 Checkin Released Not_Distributed
    mwa R12.MWA.A 4508557 18-JAN-07 Checkin Released Not_Distributed
    mwa R12.MWA.A.1 5883815 13-APR-07 Checkin Released Not_Distributed
    mwa R12.MWA.A.2 6003709 12-JUL-07 Checkin Released Not_Distributed
    mwa R12.MWA.A.3 6258881 12-OCT-07 Checkin Released Not_Distributed
    mwa R12.MWA.A.4 6508195 11-JAN-08 Checkin Released Not_Distributed
    mwa R12.MWA.A.5 7289251 29-JUL-08 Checkin Released Not_Distributed
    mwa R12.MWA.A.6 7289554 03-NOV-08 Checkin Released Not_Distributed
    mwa R12.MWA.B 6658944 11-AUG-08 Checkin Released Not_Distributed
    oam R12.OAM.A 4494347 18-JAN-07 Checkin Released Not_Distributed
    oam R12.OAM.A.1 5907575 13-APR-07 Checkin Released Not_Distributed
    oam R12.OAM.A.2 5917332 13-JUL-07 Checkin Released Not_Distributed
    oam R12.OAM.A.3 6077531 11-OCT-07 Checkin Released Not_Distributed
    oam R12.OAM.A.4 6272394 11-JAN-08 Checkin Released Not_Distributed
    oam R12.OAM.A.5 6594767 29-JUL-08 Checkin Released Not_Distributed
    oam R12.OAM.A.6 7237193 03-NOV-08 Checkin Released Not_Distributed
    oam R12.OAM.B 6430080 11-AUG-08 Checkin Released Not_Distributed
    ocm R12.OCM.A 4442885 18-JAN-07 Checkin Released Not_Distributed
    ocm R12.OCM.A.1 5884338 12-APR-07 Checkin Released Not_Distributed
    ocm R12.OCM.A.2 5999610 12-JUL-07 Checkin Released Not_Distributed
    ocm R12.OCM.A.3 6250271 13-OCT-07 Checkin Released Not_Distributed
    ocm R12.OCM.A.4 6493799 11-JAN-08 Checkin Released Not_Distributed
    ocm R12.OCM.A.5 6833398 15-MAY-08 Checkin Released Not_Distributed
    ocm R12.OCM.A.6 7293811 03-NOV-08 Checkin Released Not_Distributed
    ocm R12.OCM.B 4565274 11-AUG-08 Checkin Released Not_Distributed
    oe R12.OE.A 4472588 18-JAN-07 Checkin Released Not_Distributed
    oe R12.OE.A.1 6014101 24-APR-07 Checkin Released Not_Distributed
    oe R12.OE.A.2 6014106 12-JUL-07 Checkin Released Not_Distributed
    oe R12.OE.A.3 6264412 12-OCT-07 Checkin Released Not_Distributed
    oe R12.OE.A.4 6508128 11-JAN-08 Checkin Released Not_Distributed
    oe R12.OE.A.5 7290907 29-JUL-08 Checkin Released Not_Distributed
    oe R12.OE.A.6 7290904 03-NOV-08 Checkin Released Not_Distributed
    oe R12.OE.B 4561581 12-AUG-08 Checkin Released Not_Distributed
    oie R12.OIE.A 4442891 18-JAN-07 Checkin Released Not_Distributed
    oie R12.OIE.A.1 5884349 12-APR-07 Checkin Released Not_Distributed
    oie R12.OIE.A.2 5999618 12-JUL-07 Checkin Released Not_Distributed
    oie R12.OIE.A.3 6250306 13-OCT-07 Checkin Released Not_Distributed
    oie R12.OIE.A.4 6493806 11-JAN-08 Checkin Released Not_Distributed
    oie R12.OIE.A.5 6833112 15-MAY-08 Checkin Released Not_Distributed
    oie R12.OIE.A.6 7293853 04-NOV-08 Checkin Released Not_Distributed
    oie R12.OIE.B 4565278 12-AUG-08 Checkin Released Not_Distributed
    oir R12.OIR.A 4442900 18-JAN-07 Checkin Released Not_Distributed
    oir R12.OIR.A.1 5884354 12-APR-07 Checkin Released Not_Distributed
    oir R12.OIR.A.2 6000570 12-JUL-07 Checkin Released Not_Distributed
    oir R12.OIR.A.3 6250329 13-OCT-07 Checkin Released Not_Distributed
    oir R12.OIR.A.4 6493811 11-JAN-08 Checkin Released Not_Distributed
    oir R12.OIR.A.5 6833136 15-MAY-08 Checkin Released Not_Distributed
    oir R12.OIR.A.6 7293858 04-NOV-08 Checkin Released Not_Distributed
    oir R12.OIR.B 4565284 12-AUG-08 Checkin Released Not_Distributed
    okc R12.OKC.A 4510204 18-JAN-07 Checkin Released Not_Distributed
    okc R12.OKC.A.1 5889850 13-APR-07 Checkin Released Not_Distributed
    okc R12.OKC.A.2 6002201 12-JUL-07 Checkin Released Not_Distributed
    okc R12.OKC.A.3 6263801 12-OCT-07 Checkin Released Not_Distributed
    okc R12.OKC.A.4 6507003 10-JAN-08 Checkin Released Not_Distributed
    okc R12.OKC.A.5 7290853 29-JUL-08 Checkin Released Not_Distributed
    okc R12.OKC.A.6 7291445 03-NOV-08 Checkin Released Not_Distributed
    okc R12.OKC.B 6657551 12-AUG-08 Checkin Released Not_Distributed
    oke R12.OKE.A 4510206 18-JAN-07 Checkin Released Not_Distributed
    oke R12.OKE.A.1 5889888 13-APR-07 Checkin Released Not_Distributed
    oke R12.OKE.A.2 6002316 12-JUL-07 Checkin Released Not_Distributed
    oke R12.OKE.A.3 6263875 12-OCT-07 Checkin Released Not_Distributed
    oke R12.OKE.A.4 6507021 10-JAN-08 Checkin Released Not_Distributed
    oke R12.OKE.A.5 7290912 29-JUL-08 Checkin Released Not_Distributed
    oke R12.OKE.A.6 7291482 03-NOV-08 Checkin Released Not_Distributed
    oke R12.OKE.B 6657598 12-AUG-08 Checkin Released Not_Distributed
    oki R12.OKI.A 4510209 18-JAN-07 Checkin Released Not_Distributed
    oki R12.OKI.A.1 5890921 13-APR-07 Checkin Released Not_Distributed
    oki R12.OKI.A.2 6001481 12-JUL-07 Checkin Released Not_Distributed
    oki R12.OKI.A.3 6264401 12-OCT-07 Checkin Released Not_Distributed
    oki R12.OKI.A.4 6508119 11-JAN-08 Checkin Released Not_Distributed
    oki R12.OKI.A.5 7291003 29-JUL-08 Checkin Released Not_Distributed
    oki R12.OKI.A.6 7291512 03-NOV-08 Checkin Released Not_Distributed
    oki R12.OKI.B 6659473 12-AUG-08 Checkin Released Not_Distributed
    okl R12.OKL.A 4442911 18-JAN-07 Checkin Released Not_Distributed
    okl R12.OKL.A.1 5884359 12-APR-07 Checkin Released Not_Distributed
    okl R12.OKL.A.2 5999889 12-JUL-07 Checkin Released Not_Distributed
    okl R12.OKL.A.3 6250354 13-OCT-07 Checkin Released Not_Distributed
    okl R12.OKL.A.4 6493818 11-JAN-08 Checkin Released Not_Distributed
    okl R12.OKL.A.5 6832879 15-MAY-08 Checkin Released Not_Distributed
    okl R12.OKL.A.6 7293733 04-NOV-08 Checkin Released Not_Distributed
    okl R12.OKL.B 4728614 11-AUG-08 Checkin Released Not_Distributed
    oks R12.OKS.A 4510212 18-JAN-07 Checkin Released Not_Distributed
    oks R12.OKS.A.1 5890868 13-APR-07 Checkin Released Not_Distributed
    oks R12.OKS.A.2 6001475 12-JUL-07 Checkin Released Not_Distributed
    oks R12.OKS.A.3 6264399 12-OCT-07 Checkin Released Not_Distributed
    oks R12.OKS.A.4 6508104 11-JAN-08 Checkin Released Not_Distributed
    oks R12.OKS.A.5 7290890 29-JUL-08 Checkin Released Not_Distributed
    oks R12.OKS.A.6 7291475 03-NOV-08 Checkin Released Not_Distributed
    oks R12.OKS.B 6659470 12-AUG-08 Checkin Released Not_Distributed
    okx R12.OKX.A 4510213 18-JAN-07 Checkin Released Not_Distributed
    okx R12.OKX.A.1 5889868 13-APR-07 Checkin Released Not_Distributed
    okx R12.OKX.A.2 6002299 13-JUL-07 Checkin Released Not_Distributed
    okx R12.OKX.A.3 6264057 12-OCT-07 Checkin Released Not_Distributed
    okx R12.OKX.A.4 6507038 10-JAN-08 Checkin Released Not_Distributed
    okx R12.OKX.A.5 7290928 29-JUL-08 Checkin Released Not_Distributed
    okx R12.OKX.A.6 7291489 03-NOV-08 Checkin Released Not_Distributed
    okx R12.OKX.B 6657607 12-AUG-08 Checkin Released Not_Distributed
    ok_pf R12.OK_PF.A 4510215 18-JAN-07 Checkin Released Not_Distributed
    ok_pf R12.OK_PF.A.1 5890895 13-APR-07 Checkin Released Not_Distributed
    ok_pf R12.OK_PF.A.2 6002662 16-JUL-07 Checkin Released Not_Distributed
    ok_pf R12.OK_PF.A.3 6264415 15-OCT-07 Checkin Released Not_Distributed
    ok_pf R12.OK_PF.A.4 6508121 14-JAN-08 Checkin Released Not_Distributed
    ok_pf R12.OK_PF.A.5 7291332 29-JUL-08 Checkin Released Not_Distributed
    ok_pf R12.OK_PF.A.6 7291526 06-NOV-08 Checkin Released Not_Distributed
    ok_pf R12.OK_PF.B 6659486 12-AUG-08 Checkin Released Not_Distributed
    om_pf R12.OM_PF.A 4464619 18-JAN-07 Checkin Released Not_Distributed
    om_pf R12.OM_PF.A.1 5890897 13-APR-07 Checkin Released Not_Distributed
    om_pf R12.OM_PF.A.2 6003803 16-JUL-07 Checkin Released Not_Distributed
    om_pf R12.OM_PF.A.3 6264421 15-OCT-07 Checkin Released Not_Distributed
    om_pf R12.OM_PF.A.4 6508129 14-JAN-08 Checkin Released Not_Distributed
    om_pf R12.OM_PF.A.5 7290964 29-JUL-08 Checkin Released Not_Distributed
    om_pf R12.OM_PF.A.6 7290941 06-NOV-08 Checkin Released Not_Distributed
    om_pf R12.OM_PF.B 6659484 13-AUG-08 Checkin Released Not_Distributed
    ont R12.ONT.A 4467708 18-JAN-07 Checkin Released Not_Distributed
    ont R12.ONT.A.1 5890871 13-APR-07 Checkin Released Not_Distributed
    ont R12.ONT.A.2 6001476 12-JUL-07 Checkin Released Not_Distributed
    ont R12.ONT.A.3 6264405 12-OCT-07 Checkin Released Not_Distributed
    ont R12.ONT.A.4 6508123 11-JAN-08 Checkin Released Not_Distributed
    ont R12.ONT.A.5 7290860 29-JUL-08 Checkin Released Not_Distributed
    ont R12.ONT.A.6 7290857 03-NOV-08 Checkin Released Not_Distributed
    ont R12.ONT.B 4561577 12-AUG-08 Checkin Released Not_Distributed
    opi R12.OPI.A 4510326 18-JAN-07 Checkin Released Not_Distributed
    opi R12.OPI.A.1 5886963 13-APR-07 Checkin Released Not_Distributed
    opi R12.OPI.A.2 6002062 12-JUL-07 Checkin Released Not_Distributed
    opi R12.OPI.A.3 6262299 12-OCT-07 Checkin Released Not_Distributed
    opi R12.OPI.A.4 6506339 11-JAN-08 Checkin Released Not_Distributed
    opi R12.OPI.A.5 7289235 29-JUL-08 Checkin Released Not_Distributed
    opi R12.OPI.A.6 7289510 03-NOV-08 Checkin Released Not_Distributed
    opi R12.OPI.B 6657463 11-AUG-08 Checkin Released Not_Distributed
    opm_pf R12.OPM_PF.A 4510794 18-JAN-07 Checkin Released Not_Distributed
    opm_pf R12.OPM_PF.A.1 5888215 13-APR-07 Checkin Released Not_Distributed
    opm_pf R12.OPM_PF.A.2 6002602 16-JUL-07 Checkin Released Not_Distributed
    opm_pf R12.OPM_PF.A.3 6264416 15-OCT-07 Checkin Released Not_Distributed
    opm_pf R12.OPM_PF.A.4 6506932 14-JAN-08 Checkin Released Not_Distributed
    opm_pf R12.OPM_PF.A.5 7290974 29-JUL-08 Checkin Released Not_Distributed
    opm_pf R12.OPM_PF.A.6 7290970 06-NOV-08 Checkin Released Not_Distributed
    opm_pf R12.OPM_PF.B 6659485 13-AUG-08 Checkin Released Not_Distributed
    ota R12.OTA.A 5348582 18-JAN-07 Checkin Released Not_Distributed
    ota R12.OTA.A.1 5889686 13-APR-07 Checkin Released Not_Distributed
    ota R12.OTA.A.2 5997248 12-JUL-07 Checkin Released Not_Distributed
    ota R12.OTA.A.3 6196267 12-OCT-07 Checkin Released Not_Distributed
    ota R12.OTA.A.4 6506492 11-JAN-08 Checkin Released Not_Distributed
    ota R12.OTA.A.5 6835795 15-MAY-08 Checkin Released Not_Distributed
    ota R12.OTA.A.6 7291412 04-NOV-08 Checkin Released Not_Distributed
    ota R12.OTA.B 6658018 12-AUG-08 Checkin Released Not_Distributed
    owf R12.OWF.A 4494407 18-JAN-07 Checkin Released Not_Distributed
    owf R12.OWF.A.1 5907576 13-APR-07 Checkin Released Not_Distributed
    owf R12.OWF.A.2 5917333 13-JUL-07 Checkin Released Not_Distributed
    owf R12.OWF.A.3 6077516 11-OCT-07 Checkin Released Not_Distributed
    owf R12.OWF.A.4 6272378 11-JAN-08 Checkin Released Not_Distributed
    owf R12.OWF.A.5 6594770 29-JUL-08 Checkin Released Not_Distributed
    owf R12.OWF.A.6 7237208 03-NOV-08 Checkin Released Not_Distributed
    owf R12.OWF.B 6430081 11-AUG-08 Checkin Released Not_Distributed
    ozf R12.OZF.A 4460152 18-JAN-07 Checkin Released Not_Distributed
    ozf R12.OZF.A.1 5884309 12-APR-07 Checkin Released Not_Distributed
    ozf R12.OZF.A.2 6000261 12-JUL-07 Checkin Released Not_Distributed
    ozf R12.OZF.A.3 6261915 10-OCT-07 Checkin Released Not_Distributed
    ozf R12.OZF.A.4 6494548 11-JAN-08 Checkin Released Not_Distributed
    ozf R12.OZF.A.5 7300304 04-AUG-08 Checkin Released Not_Distributed
    ozf R12.OZF.A.6 7303727 03-NOV-08 Checkin Released Not_Distributed
    ozf R12.OZF.B 4562240 11-AUG-08 Checkin Released Not_Distributed
    pa R12.PA.A 4420088 18-JAN-07 Checkin Released Not_Distributed
    pa R12.PA.A.1 5911133 13-APR-07 Checkin Released Not_Distributed
    pa R12.PA.A.2 6022678 12-JUL-07 Checkin Released Not_Distributed
    pa R12.PA.A.3 6266109 11-OCT-07 Checkin Released Not_Distributed
    pa R12.PA.A.4 6513018 11-JAN-08 Checkin Released Not_Distributed
    pa R12.PA.A.5 7292445 29-JUL-08 Checkin Released Not_Distributed
    pa R12.PA.A.6 7292451 03-NOV-08 Checkin Released Not_Distributed
    pa R12.PA.B 5873859 09-AUG-08 Checkin Released Not_Distributed
    pay R12.PAY.A 5348547 18-JAN-07 Checkin Released Not_Distributed
    pay R12.PAY.A.1 5881935 13-APR-07 Checkin Released Not_Distributed
    pay R12.PAY.A.2 5997253 12-JUL-07 Checkin Released Not_Distributed
    pay R12.PAY.A.3 6196253 12-OCT-07 Checkin Released Not_Distributed
    pay R12.PAY.A.4 6506481 11-JAN-08 Checkin Released Not_Distributed
    pay R12.PAY.A.5 6835783 15-MAY-08 Checkin Released Not_Distributed
    pay R12.PAY.A.6 7291401 04-NOV-08 Checkin Released Not_Distributed
    pay R12.PAY.B 6658005 12-AUG-08 Checkin Released Not_Distributed
    per R12.PER.A 5348553 18-JAN-07 Checkin Released Not_Distributed
    per R12.PER.A.1 5881920 13-APR-07 Checkin Released Not_Distributed
    per R12.PER.A.2 5997255 12-JUL-07 Checkin Released Not_Distributed
    per R12.PER.A.3 6196254 12-OCT-07 Checkin Released Not_Distributed
    per R12.PER.A.4 6506482 11-JAN-08 Checkin Released Not_Distributed
    per R12.PER.A.5 6835784 15-MAY-08 Checkin Released Not_Distributed
    per R12.PER.A.6 7291402 04-NOV-08 Checkin Released Not_Distributed
    per R12.PER.B 6658006 12-AUG-08 Checkin Released Not_Distributed
    pft R12.PFT.A 4455850 18-JAN-07 Checkin Released Not_Distributed
    pft R12.PFT.A.1 5884420 12-APR-07 Checkin Released Not_Distributed
    pft R12.PFT.A.2 5999562 12-JUL-07 Checkin Released Not_Distributed
    pft R12.PFT.A.3 6251436 13-OCT-07 Checkin Released Not_Distributed
    pft R12.PFT.A.4 6494188 10-JAN-08 Checkin Released Not_Distributed
    pft R12.PFT.A.5 6833411 15-MAY-08 Checkin Released Not_Distributed
    pft R12.PFT.A.6 7293813 03-NOV-08 Checkin Released Not_Distributed
    pft R12.PFT.B 4565442 11-AUG-08 Checkin Released Not_Distributed
    pjb R12.PJB.A 5908174 13-APR-07 Checkin Released Not_Distributed
    pjb R12.PJB.A.1 5908183 13-APR-07 Checkin Released Not_Distributed
    pjb R12.PJB.A.2 6022680 12-JUL-07 Checkin Released Not_Distributed
    pjb R12.PJB.A.3 6266106 11-OCT-07 Checkin Released Not_Distributed
    pjb R12.PJB.A.4 6513021 11-JAN-08 Checkin Released Not_Distributed
    pjb R12.PJB.A.5 7292462 29-JUL-08 Checkin Released Not_Distributed
    pjb R12.PJB.A.6 7292466 03-NOV-08 Checkin Released Not_Distributed
    pjb R12.PJB.B 6664672 09-AUG-08 Checkin Released Not_Distributed
    pjc R12.PJC.A 5908254 13-APR-07 Checkin Released Not_Distributed
    pjc R12.PJC.A.1 5908550 13-APR-07 Checkin Released Not_Distributed
    pjc R12.PJC.A.2 6022693 12-JUL-07 Checkin Released Not_Distributed
    pjc R12.PJC.A.3 6266107 11-OCT-07 Checkin Released Not_Distributed
    pjc R12.PJC.A.4 6513014 11-JAN-08 Checkin Released Not_Distributed
    pjc R12.PJC.A.5 7292429 29-JUL-08 Checkin Released Not_Distributed
    pjc R12.PJC.A.6 7292432 03-NOV-08 Checkin Released Not_Distributed
    pjc R12.PJC.B 6664674 09-AUG-08 Checkin Released Not_Distributed
    pjf R12.PJF.A 5908635 13-APR-07 Checkin Released Not_Distributed
    pjf R12.PJF.A.1 5908665 13-APR-07 Checkin Released Not_Distributed
    pjf R12.PJF.A.2 6022686 12-JUL-07 Checkin Released Not_Distributed
    pjf R12.PJF.A.3 6266100 11-OCT-07 Checkin Released Not_Distributed
    pjf R12.PJF.A.4 6512974 11-JAN-08 Checkin Released Not_Distributed
    pjf R12.PJF.A.5 7292349 29-JUL-08 Checkin Released Not_Distributed
    pjf R12.PJF.A.6 7292379 03-NOV-08 Checkin Released Not_Distributed
    pjf R12.PJF.B 6664650 09-AUG-08 Checkin Released Not_Distributed
    pji R12.PJI.A 4550222 18-JAN-07 Checkin Released Not_Distributed
    pji R12.PJI.A.1 5911154 13-APR-07 Checkin Released Not_Distributed
    pji R12.PJI.A.2 6022713 12-JUL-07 Checkin Released Not_Distributed
    pji R12.PJI.A.3 6266105 11-OCT-07 Checkin Released Not_Distributed
    pji R12.PJI.A.4 6513009 11-JAN-08 Checkin Released Not_Distributed
    pji R12.PJI.A.5 7292404 29-JUL-08 Checkin Released Not_Distributed
    pji R12.PJI.A.6 7292423 03-NOV-08 Checkin Released Not_Distributed
    pji R12.PJI.B 5873863 09-AUG-08 Checkin Released Not_Distributed
    pjl R12.PJL.A 5908866 13-APR-07 Checkin Released Not_Distributed
    pjl R12.PJL.A.1 5908871 13-APR-07 Checkin Released Not_Distributed
    pjl R12.PJL.A.2 6022698 12-JUL-07 Checkin Released Not_Distributed
    pjl R12.PJL.A.3 6266112 11-OCT-07 Checkin Released Not_Distributed
    pjl R12.PJL.A.4 6513016 11-JAN-08 Checkin Released Not_Distributed
    pjl R12.PJL.A.5 7292433 29-JUL-08 Checkin Released Not_Distributed
    pjl R12.PJL.A.6 7292437 03-NOV-08 Checkin Released Not_Distributed
    pjl R12.PJL.B 6664669 09-AUG-08 Checkin Released Not_Distributed
    pjm R12.PJM.A 4508559 18-JAN-07 Checkin Released Not_Distributed
    pjm R12.PJM.A.1 5889780 13-APR-07 Checkin Released Not_Distributed
    pjm R12.PJM.A.2 6002170 12-JUL-07 Checkin Released Not_Distributed
    pjm R12.PJM.A.3 6261998 12-OCT-07 Checkin Released Not_Distributed
    pjm R12.PJM.A.4 6506329 11-JAN-08 Checkin Released Not_Distributed
    pjm R12.PJM.A.5 7289240 29-JUL-08 Checkin Released Not_Distributed
    pjm R12.PJM.A.6 7289525 03-NOV-08 Checkin Released Not_Distributed
    pjm R12.PJM.B 6657451 11-AUG-08 Checkin Released Not_Distributed
    pjr R12.PJR.A 5908892 13-APR-07 Checkin Released Not_Distributed
    pjr R12.PJR.A.1 5908900 13-APR-07 Checkin Released Not_Distributed
    pjr R12.PJR.A.2 6022705 12-JUL-07 Checkin Released Not_Distributed
    pjr R12.PJR.A.3 6266108 11-OCT-07 Checkin Released Not_Distributed
    pjr R12.PJR.A.4 6513019 11-JAN-08 Checkin Released Not_Distributed
    pjr R12.PJR.A.5 7292454 29-JUL-08 Checkin Released Not_Distributed
    pjr R12.PJR.A.6 7292459 03-NOV-08 Checkin Released Not_Distributed
    pjr R12.PJR.B 6664673 09-AUG-08 Checkin Released Not_Distributed
    pjt R12.PJT.A 5910989 13-APR-07 Checkin Released Not_Distributed
    pjt R12.PJT.A.1 5911053 13-APR-07 Checkin Released Not_Distributed
    pjt R12.PJT.A.2 6022707 12-JUL-07 Checkin Released Not_Distributed
    pjt R12.PJT.A.3 6266111 11-OCT-07 Checkin Released Not_Distributed
    pjt R12.PJT.A.4 6513017 11-JAN-08 Checkin Released Not_Distributed
    pjt R12.PJT.A.5 7292438 29-JUL-08 Checkin Released Not_Distributed
    pjt R12.PJT.A.6 7292443 03-NOV-08 Checkin Released Not_Distributed
    pjt R12.PJT.B 6664679 09-AUG-08 Checkin Released Not_Distributed
    pj_pf R12.PJ_PF.A 4420055 13-APR-07 Checkin Released Not_Distributed
    pj_pf R12.PJ_PF.A.1 5911082 13-APR-07 Checkin Released Not_Distributed
    pj_pf R12.PJ_PF.A.2 6022657 16-JUL-07 Checkin Released Not_Distributed
    pj_pf R12.PJ_PF.A.3 6266113 15-OCT-07 Checkin Released Not_Distributed
    pj_pf R12.PJ_PF.A.4 6512963 13-JAN-08 Checkin Released By_Metalink
    pj_pf R12.PJ_PF.A.5 7292371 29-JUL-08 Checkin Released Not_Distributed
    pj_pf R12.PJ_PF.A.6 7292354 06-NOV-08 Checkin Released By_Metalink
    pj_pf R12.PJ_PF.B 6664666 13-AUG-08 Checkin Released Not_Distributed
    plm_pf R12.PLM_PF.A 4508296 18-JAN-07 Checkin Released Not_Distributed
    plm_pf R12.PLM_PF.A.1 5888176 13-APR-07 Checkin Released Not_Distributed
    plm_pf R12.PLM_PF.A.2 6003958 16-JUL-07 Checkin Released Not_Distributed
    plm_pf R12.PLM_PF.A.3 6264541 15-OCT-07 Checkin Released Not_Distributed
    plm_pf R12.PLM_PF.A.4 6506844 14-JAN-08 Checkin Released Not_Distributed
    plm_pf R12.PLM_PF.A.5 7291278 29-JUL-08 Checkin Released Not_Distributed
    plm_pf R12.PLM_PF.A.6 7291283 06-NOV-08 Checkin Released Not_Distributed
    plm_pf R12.PLM_PF.B 6658960 13-AUG-08 Checkin Released Not_Distributed
    pmi R12.PMI.A 4510825 18-JAN-07 Checkin Released Not_Distributed
    pmi R12.PMI.A.1 5887151 13-APR-07 Checkin Released Not_Distributed
    pmi R12.PMI.A.2 6002284 12-JUL-07 Checkin Released Not_Distributed
    pmi R12.PMI.A.3 6262587 12-OCT-07 Checkin Released Not_Distributed
    pmi R12.PMI.A.4 6506770 10-JAN-08 Checkin Released Not_Distributed
    pmi R12.PMI.A.5 7290618 29-JUL-08 Checkin Released Not_Distributed
    pmi R12.PMI.A.6 7290610 03-NOV-08 Checkin Released Not_Distributed
    pmi R12.PMI.B 6657392 12-AUG-08 Checkin Released Not_Distributed
    pn R12.PN.A 4420096 18-JAN-07 Checkin Released Not_Distributed
    pn R12.PN.A.1 5911164 13-APR-07 Checkin Released Not_Distributed
    pn R12.PN.A.2 6022716 12-JUL-07 Checkin Released Not_Distributed
    pn R12.PN.A.3 6266102 11-OCT-07 Checkin Released Not_Distributed
    pn R12.PN.A.4 6512982 11-JAN-08 Checkin Released Not_Distributed
    pn R12.PN.A.5 7292392 29-JUL-08 Checkin Released Not_Distributed
    pn R12.PN.A.6 7292393 03-NOV-08 Checkin Released Not_Distributed
    pn R12.PN.B 6664663 09-AUG-08 Checkin Released Not_Distributed
    po R12.PO.A 4445657 18-JAN-07 Checkin Released Not_Distributed
    po R12.PO.A.1 5884385 12-APR-07 Checkin Released Not_Distributed
    po R12.PO.A.2 6000195 12-JUL-07 Checkin Released Not_Distributed
    po R12.PO.A.3 6261683 10-OCT-07 Checkin Released Not_Distributed
    po R12.PO.A.4 6496854 11-JAN-08 Checkin Released Not_Distributed
    po R12.PO.A.5 7299998 04-AUG-08 Checkin Released Not_Distributed
    po R12.PO.A.6 7300356 04-NOV-08 Checkin Released Not_Distributed
    po R12.PO.B 4565365 12-AUG-08 Checkin Released Not_Distributed
    poa R12.POA.A 4445660 18-JAN-07 Checkin Released Not_Distributed
    poa R12.POA.A.1 5884393 12-APR-07 Checkin Released Not_Distributed
    poa R12.POA.A.2 6000250 12-JUL-07 Checkin Released Not_Distributed
    poa R12.POA.A.3 6261760 10-OCT-07 Checkin Released Not_Distributed
    poa R12.POA.A.4 6496815 11-JAN-08 Checkin Released Not_Distributed
    poa R12.POA.A.5 7300041 04-AUG-08 Checkin Released Not_Distributed
    poa R12.POA.A.6 7300360 04-NOV-08 Checkin Released Not_Distributed
    poa R12.POA.B 4577103 11-AUG-08 Checkin Released Not_Distributed
    pom R12.POM.A 5368966 18-JAN-07 Checkin Released Not_Distributed
    pom R12.POM.A.1 5884430 12-APR-07 Checkin Released Not_Distributed
    pom R12.POM.A.2 6000205 12-JUL-07 Checkin Released Not_Distributed
    pom R12.POM.A.3 6261695 10-OCT-07 Checkin Released Not_Distributed
    pom R12.POM.A.4 6496846 11-JAN-08 Checkin Released Not_Distributed
    pom R12.POM.A.5 7300000 04-AUG-08 Checkin Released Not_Distributed
    pom R12.POM.A.6 7300358 04-NOV-08 Checkin Released Not_Distributed
    pom R12.POM.B 6652362 11-AUG-08 Checkin Released Not_Distributed
    pon R12.PON.A 4445663 18-JAN-07 Checkin Released Not_Distributed
    pon R12.PON.A.1 5884401 12-APR-07 Checkin Released Not_Distributed
    pon R12.PON.A.2 6000227 12-JUL-07 Checkin Released Not_Distributed
    pon R12.PON.A.3 6261732 10-OCT-07 Checkin Released Not_Distributed
    pon R12.PON.A.4 6496820 11-JAN-08 Checkin Released Not_Distributed
    pon R12.PON.A.5 7299999 04-AUG-08 Checkin Released Not_Distributed
    pon R12.PON.A.6 7300357 04-NOV-08 Checkin Released Not_Distributed
    pon R12.PON.B 4565362 11-AUG-08 Checkin Released Not_Distributed
    pos R12.POS.A 4445667 18-JAN-07 Checkin Released Not_Distributed
    pos R12.POS.A.1 5884405 12-APR-07 Checkin Released Not_Distributed
    pos R12.POS.A.2 6000185 12-JUL-07 Checkin Released Not_Distributed
    pos R12.POS.A.3 6261657 10-OCT-07 Checkin Released Not_Distributed
    pos R12.POS.A.4 6496859 11-JAN-08 Checkin Released Not_Distributed
    pos R12.POS.A.5 7300038 04-AUG-08 Checkin Released Not_Distributed
    pos R12.POS.A.6 7300359 04-NOV-08 Checkin Released Not_Distributed
    pos R12.POS.B 4565358 11-AUG-08 Checkin Released Not_Distributed
    pqh R12.PQH.A 5348603 18-JAN-07 Checkin Released Not_Distributed
    pqh R12.PQH.A.1 5889695 13-APR-07 Checkin Released Not_Distributed
    pqh R12.PQH.A.2 5997259 12-JUL-07 Checkin Released Not_Distributed
    pqh R12.PQH.A.3 6196251 12-OCT-07 Checkin Released Not_Distributed
    pqh R12.PQH.A.4 6506480 11-JAN-08 Checkin Released Not_Distributed
    pqh R12.PQH.A.5 6835782 15-MAY-08 Checkin Released Not_Distributed
    pqh R12.PQH.A.6 7291400 04-NOV-08 Checkin Released Not_Distributed
    pqh R12.PQH.B 6658004 12-AUG-08 Checkin Released Not_Distributed
    pqp R12.PQP.A 5348600 18-JAN-07 Checkin Released Not_Distributed
    pqp R12.PQP.A.1 5889701 13-APR-07 Checkin Released Not_Distributed
    pqp R12.PQP.A.2 5997263 12-JUL-07 Checkin Released Not_Distributed
    pqp R12.PQP.A.3 6196262 12-OCT-07 Checkin Released Not_Distributed
    pqp R12.PQP.A.4 6506490 11-JAN-08 Checkin Released Not_Distributed
    pqp R12.PQP.A.5 6835791 15-MAY-08 Checkin Released Not_Distributed
    pqp R12.PQP.A.6 7291409 04-NOV-08 Checkin Released Not_Distributed
    pqp R12.PQP.B 6658015 12-AUG-08 Checkin Released Not_Distributed
    prc_pf R12.PRC_PF.A 4172000 18-JAN-07 Checkin Released Not_Distributed
    prc_pf R12.PRC_PF.A.1 5884590 12-APR-07 Checkin Released Not_Distributed
    prc_pf R12.PRC_PF.A.2 6000373 16-JUL-07 Checkin Released Not_Distributed
    prc_pf R12.PRC_PF.A.3 6261824 15-OCT-07 Checkin Released Not_Distributed
    prc_pf R12.PRC_PF.A.4 6497749 14-JAN-08 Checkin Released By_Metalink
    prc_pf R12.PRC_PF.A.5 7291084 04-AUG-08 Checkin Released Not_Distributed
    prc_pf R12.PRC_PF.A.6 7291091 06-NOV-08 Checkin Released By_Metalink
    prc_pf R12.PRC_PF.B 4565514 13-AUG-08 Checkin Released Not_Distributed
    prp R12.PRP.A 4459013 18-JAN-07 Checkin Released Not_Distributed
    prp R12.PRP.A.1 5884208 12-APR-07 Checkin Released Not_Distributed
    prp R12.PRP.A.2 6000207 12-JUL-07 Checkin Released Not_Distributed
    prp R12.PRP.A.3 6261830 10-OCT-07 Checkin Released Not_Distributed
    prp R12.PRP.A.4 6494558 11-JAN-08 Checkin Released Not_Distributed
    prp R12.PRP.A.5 7300307 04-AUG-08 Checkin Released Not_Distributed
    prp R12.PRP.A.6 7303728 03-NOV-08 Checkin Released Not_Distributed
    prp R12.PRP.B 4547893 11-AUG-08 Checkin Released Not_Distributed
    psa R12.PSA.A 4442922 18-JAN-07 Checkin Released Not_Distributed
    psa R12.PSA.A.1 5884362 12-APR-07 Checkin Released Not_Distributed
    psa R12.PSA.A.2 5999898 12-JUL-07 Checkin Released Not_Distributed
    psa R12.PSA.A.3 6250386 13-OCT-07 Checkin Released Not_Distributed
    psa R12.PSA.A.4 6493826 11-JAN-08 Checkin Released Not_Distributed
    psa R12.PSA.A.5 6833142 15-MAY-08 Checkin Released Not_Distributed
    psa R12.PSA.A.6 7293860 04-NOV-08 Checkin Released Not_Distributed
    psa R12.PSA.B 4565333 12-AUG-08 Checkin Released Not_Distributed
    psb R12.PSB.A 4442925 18-JAN-07 Checkin Released Not_Distributed
    psb R12.PSB.A.1 5884369 12-APR-07 Checkin Released Not_Distributed
    psb R12.PSB.A.2 5999943 12-JUL-07 Checkin Released Not_Distributed
    psb R12.PSB.A.3 6250477 13-OCT-07 Checkin Released Not_Distributed
    psb R12.PSB.A.4 6493833 11-JAN-08 Checkin Released Not_Distributed
    psb R12.PSB.A.5 6833147 15-MAY-08 Checkin Released Not_Distributed
    psb R12.PSB.A.6 7293864 04-NOV-08 Checkin Released Not_Distributed
    psb R12.PSB.B 4565336 12-AUG-08 Checkin Released Not_Distributed
    psp R12.PSP.A 5348607 18-JAN-07 Checkin Released Not_Distributed
    psp R12.PSP.A.1 5889704 13-APR-07 Checkin Released Not_Distributed
    psp R12.PSP.A.2 5997266 12-JUL-07 Checkin Released Not_Distributed
    psp R12.PSP.A.3 6196266 12-OCT-07 Checkin Released Not_Distributed
    psp R12.PSP.A.4 6506493 11-JAN-08 Checkin Released Not_Distributed
    psp R12.PSP.A.5 6835794 15-MAY-08 Checkin Released Not_Distributed
    psp R12.PSP.A.6 7291411 04-NOV-08 Checkin Released Not_Distributed
    psp R12.PSP.B 6658017 12-AUG-08 Checkin Released Not_Distributed
    pv R12.PV.A 4460179 18-JAN-07 Checkin Released Not_Distributed
    pv R12.PV.A.1 5884326 12-APR-07 Checkin Released Not_Distributed
    pv R12.PV.A.2 6000267 12-JUL-07 Checkin Released Not_Distributed
    pv R12.PV.A.3 6261921 10-OCT-07 Checkin Released Not_Distributed
    pv R12.PV.A.4 6494562 11-JAN-08 Checkin Released Not_Distributed
    pv R12.PV.A.5 7300309 04-AUG-08 Checkin Released Not_Distributed
    pv R12.PV.A.6 7303729 03-NOV-08 Checkin Released Not_Distributed
    pv R12.PV.B 4562243 11-AUG-08 Checkin Released Not_Distributed
    qa R12.QA.A 4510295 18-JAN-07 Checkin Released Not_Distributed
    qa R12.QA.A.1 5891105 13-APR-07 Checkin Released Not_Distributed
    qa R12.QA.A.2 6002172 12-JUL-07 Checkin Released Not_Distributed
    qa R12.QA.A.3 6261869 12-OCT-07 Checkin Released Not_Distributed
    qa R12.QA.A.4 6506331 11-JAN-08 Checkin Released Not_Distributed
    qa R12.QA.A.5 7289239 29-JUL-08 Checkin Released Not_Distributed
    qa R12.QA.A.6 7289520 03-NOV-08 Checkin Released Not_Distributed
    qa R12.QA.B 6657455 11-AUG-08 Checkin Released Not_Distributed
    qot R12.QOT.A 4459034 18-JAN-07 Checkin Released Not_Distributed
    qot R12.QOT.A.1 5884227 12-APR-07 Checkin Released Not_Distributed
    qot R12.QOT.A.2 6000221 12-JUL-07 Checkin Released Not_Distributed
    qot R12.QOT.A.3 6261871 10-OCT-07 Checkin Released Not_Distributed
    qot R12.QOT.A.4 6494570 11-JAN-08 Checkin Released Not_Distributed
    qot R12.QOT.A.5 7300311 04-AUG-08 Checkin Released Not_Distributed
    qot R12.QOT.A.6 7303730 03-NOV-08 Checkin Released Not_Distributed
    qot R12.QOT.B 4545524 11-AUG-08 Checkin Released Not_Distributed
    qp R12.QP.A 4464363 18-JAN-07 Checkin Released Not_Distributed
    qp R12.QP.A.1 5890872 13-APR-07 Checkin Released Not_Distributed
    qp R12.QP.A.2 6001477 12-JUL-07 Checkin Released Not_Distributed
    qp R12.QP.A.3 6264408 12-OCT-07 Checkin Released Not_Distributed
    qp R12.QP.A.4 6508124 11-JAN-08 Checkin Released Not_Distributed
    qp R12.QP.A.5 7290875 29-JUL-08 Checkin Released Not_Distributed
    qp R12.QP.A.6 7290871 03-NOV-08 Checkin Released Not_Distributed
    qp R12.QP.B 4561556 12-AUG-08 Checkin Released Not_Distributed
    qpr R12.QPR.A 6659492 30-JAN-08 Checkin Released Not_Distributed
    qpr R12.QPR.B 6659495 30-JAN-08 Checkin Released By_Dev
    qpr R12.QPR.C 7019417 12-AUG-08 Checkin Released Not_Distributed
    qrm R12.QRM.A 4442928 18-JAN-07 Checkin Released Not_Distributed
    qrm R12.QRM.A.1 5884375 12-APR-07 Checkin Released Not_Distributed
    qrm R12.QRM.A.2 5999972 12-JUL-07 Checkin Released Not_Distributed
    qrm R12.QRM.A.3 6250498 13-OCT-07 Checkin Released Not_Distributed
    qrm R12.QRM.A.4 6493839 11-JAN-08 Checkin Released Not_Distributed
    qrm R12.QRM.A.5 6832880 15-MAY-08 Checkin Released Not_Distributed
    qrm R12.QRM.A.6 7293741 04-NOV-08 Checkin Released Not_Distributed
    qrm R12.QRM.B 4565348 11-AUG-08 Checkin Released Not_Distributed
    rci R12.RCI.A 5369053 18-JAN-07 Checkin Released Not_Distributed
    rci R12.RCI.A.1 5884426 12-APR-07 Checkin Released Not_Distributed
    rci R12.RCI.A.2 5999962 12-JUL-07 Checkin Released Not_Distributed
    rci R12.RCI.A.3 6251861 13-OCT-07 Checkin Released Not_Distributed
    rci R12.RCI.A.4 6494126 11-JAN-08 Checkin Released Not_Distributed
    rci R12.RCI.A.5 6832885 15-MAY-08 Checkin Released Not_Distributed
    rci R12.RCI.A.6 7293744 04-NOV-08 Checkin Released Not_Distributed
    rci R12.RCI.B 6651710 11-AUG-08 Checkin Released Not_Distributed
    rg R12.RG.A 4442934 18-JAN-07 Checkin Released Not_Distributed
    rg R12.RG.A.1 5884380 12-APR-07 Checkin Released Not_Distributed
    rg R12.RG.A.2 5999611 12-JUL-07 Checkin Released Not_Distributed
    rg R12.RG.A.3 6250517 13-OCT-07 Checkin Released Not_Distributed
    rg R12.RG.A.4 6493829 11-JAN-08 Checkin Released Not_Distributed
    rg R12.RG.A.5 6833443 15-MAY-08 Checkin Released Not_Distributed
    rg R12.RG.A.6 7293690 03-NOV-08 Checkin Released Not_Distributed
    rg R12.RG.B 4565419 11-AUG-08 Checkin Released Not_Distributed
    rlm R12.RLM.A 4510427 18-JAN-07 Checkin Released Not_Distributed
    rlm R12.RLM.A.1 4691020 13-APR-07 Checkin Released Not_Distributed
    rlm R12.RLM.A.2 6001776 12-JUL-07 Checkin Released Not_Distributed
    rlm R12.RLM.A.3 6258195 12-OCT-07 Checkin Released Not_Distributed
    rlm R12.RLM.A.4 6506765 10-JAN-08 Checkin Released Not_Distributed
    rlm R12.RLM.A.5 7290313 29-JUL-08 Checkin Released Not_Distributed
    rlm R12.RLM.A.6 7290326 04-NOV-08 Checkin Released Not_Distributed
    rlm R12.RLM.B 6657126 11-AUG-08 Checkin Released Not_Distributed
    rrs R12.RRS.A 4508570 29-NOV-07 Checkin Released Not_Distributed
    rrs R12.RRS.B 6657892 11-AUG-08 Checkin Released Not_Distributed
    scm_pf R12.SCM_PF.A 4514188 18-JAN-07 Checkin Released Not_Distributed
    scm_pf R12.SCM_PF.A.1 5891335 13-APR-07 Checkin Released Not_Distributed
    scm_pf R12.SCM_PF.A.2 6004034 16-JUL-07 Checkin Released Not_Distributed
    scm_pf R12.SCM_PF.A.3 6264660 15-OCT-07 Checkin Released Not_Distributed
    scm_pf R12.SCM_PF.A.4 6508212 14-JAN-08 Checkin Released By_Metalink
    scm_pf R12.SCM_PF.A.5 7292226 06-NOV-08 Checkin Released Not_Distributed
    scm_pf R12.SCM_PF.A.6 7292303 06-NOV-08 Checkin Released By_Metalink
    scm_pf R12.SCM_PF.B 6658964 13-AUG-08 Checkin Released Not_Distributed
    scp_pf R12.SCP_PF.A 4510600 18-JAN-07 Checkin Released Not_Distributed
    scp_pf R12.SCP_PF.A.1 5890899 13-APR-07 Checkin Released Not_Distributed
    scp_pf R12.SCP_PF.A.2 6002703 16-JUL-07 Checkin Released Not_Distributed
    scp_pf R12.SCP_PF.A.3 6264419 15-OCT-07 Checkin Released Not_Distributed
    scp_pf R12.SCP_PF.A.4 6508131 14-JAN-08 Checkin Released By_Metalink
    scp_pf R12.SCP_PF.A.5 7291368 29-JUL-08 Checkin Released Not_Distributed
    scp_pf R12.SCP_PF.A.6 7291531 06-NOV-08 Checkin Released By_Metalink
    scp_pf R12.SCP_PF.B 6659487 29-APR-08 Checkin Released By_Dev
    scp_pf R12.SCP_PF.B.1 7039001 13-AUG-08 Checkin Released Not_Distributed
    sem_pf R12.SEM_PF.A 4455884 18-JAN-07 Checkin Released Not_Distributed
    sem_pf R12.SEM_PF.A.1 5884594 12-APR-07 Checkin Released Not_Distributed
    sem_pf R12.SEM_PF.A.2 6000059 16-JUL-07 Checkin Released Not_Distributed
    sem_pf R12.SEM_PF.A.3 6252042 14-OCT-07 Checkin Released Not_Distributed
    sem_pf R12.SEM_PF.A.4 6493617 13-JAN-08 Checkin Released Not_Distributed
    sem_pf R12.SEM_PF.A.5 6836352 15-MAY-08 Checkin Released Not_Distributed
    sem_pf R12.SEM_PF.A.6 7293618 05-NOV-08 Checkin Released Not_Distributed
    sem_pf R12.SEM_PF.B 4565524 12-AUG-08 Checkin Released Not_Distributed
    sht R12.SHT.A 4510611 18-JAN-07 Checkin Released Not_Distributed
    sht R12.SHT.A.1 5887313 13-APR-07 Checkin Released Not_Distributed
    sht R12.SHT.A.2 6002287 12-JUL-07 Checkin Released Not_Distributed
    sht R12.SHT.A.3 6263073 12-OCT-07 Checkin Released Not_Distributed
    sht R12.SHT.A.4 6507049 10-JAN-08 Checkin Released Not_Distributed
    sht R12.SHT.A.5 7290980 29-JUL-08 Checkin Released Not_Distributed
    sht R12.SHT.A.6 7291507 03-NOV-08 Checkin Released Not_Distributed
    sht R12.SHT.B 6657622 29-APR-08 Checkin Released Not_Distributed
    sht R12.SHT.B.1 7038971 12-AUG-08 Checkin Released Not_Distributed
    srv_pf R12.SRV_PF.A 4464549 18-JAN-07 Checkin Released Not_Distributed
    srv_pf R12.SRV_PF.A.1 5884998 13-APR-07 Checkin Released Not_Distributed
    srv_pf R12.SRV_PF.A.2 6000357 16-JUL-07 Checkin Released Not_Distributed
    srv_pf R12.SRV_PF.A.3 6261907 12-OCT-07 Checkin Released Not_Distributed
    srv_pf R12.SRV_PF.A.4 6506461 14-JAN-08 Checkin Released Not_Distributed
    srv_pf R12.SRV_PF.A.5 7291337 04-AUG-08 Checkin Released Not_Distributed
    srv_pf R12.SRV_PF.A.6 7291434 05-NOV-08 Checkin Released Not_Distributed
    srv_pf R12.SRV_PF.B 6657060 13-AUG-08 Checkin Released Not_Distributed
    ssp R12.SSP.A 5348615 18-JAN-07 Checkin Released Not_Distributed
    ssp R12.SSP.A.1 5889729 13-APR-07 Checkin Released Not_Distributed
    ssp R12.SSP.A.2 5997270 12-JUL-07 Checkin Released Not_Distributed
    ssp R12.SSP.A.3 6196257 12-OCT-07 Checkin Released Not_Distributed
    ssp R12.SSP.A.4 6506485 11-JAN-08 Checkin Released Not_Distributed
    ssp R12.SSP.A.5 6835787 15-MAY-08 Checkin Released Not_Distributed
    ssp R12.SSP.A.6 7291405 04-NOV-08 Checkin Released Not_Distributed
    ssp R12.SSP.B 6658011 12-AUG-08 Checkin Released Not_Distributed
    txk R12.TXK.A 4494373 18-JAN-07 Checkin Released Not_Distributed
    txk R12.TXK.A.1 5909746 13-APR-07 Checkin Released Not_Distributed
    txk R12.TXK.A.2 5917601 13-JUL-07 Checkin Released Not_Distributed
    txk R12.TXK.A.3 6077487 11-OCT-07 Checkin Released Not_Distributed
    txk R12.TXK.A.4 6329757 11-JAN-08 Checkin Released By_Metalink
    txk R12.TXK.A.5 6594792 30-JUL-08 Checkin Released Not_Distributed
    txk R12.TXK.A.6 7237313 03-NOV-08 Checkin Released By_Metalink
    txk R12.TXK.B 6430145 11-AUG-08 Checkin Released Not_Distributed
    umx R12.UMX.A 4495281 18-JAN-07 Checkin Released Not_Distributed
    umx R12.UMX.A.1 5907564 13-APR-07 Checkin Released Not_Distributed
    umx R12.UMX.A.2 5917323 13-JUL-07 Checkin Released Not_Distributed
    umx R12.UMX.A.3 6077616 11-OCT-07 Checkin Released Not_Distributed
    umx R12.UMX.A.4 6354143 11-JAN-08 Checkin Released Not_Distributed
    umx R12.UMX.A.5 6594784 30-JUL-08 Checkin Released Not_Distributed
    umx R12.UMX.A.6 7237243 03-NOV-08 Checkin Released Not_Distributed
    umx R12.UMX.B 6430099 11-AUG-08 Checkin Released Not_Distributed
    unv_pf R12.UNV_PF.A 4956355 18-JAN-07 Checkin Released Not_Distributed
    unv_pf R12.UNV_PF.A.1 5922134 13-APR-07 Checkin Released Not_Distributed
    unv_pf R12.UNV_PF.A.2 6040143 16-JUL-07 Checkin Released Not_Distributed
    unv_pf R12.UNV_PF.A.3 6322217 15-OCT-07 Checkin Released Not_Distributed
    unv_pf R12.UNV_PF.A.4 6512384 11-JAN-08 Checkin Released Not_Distributed
    unv_pf R12.UNV_PF.A.5 7315544 08-AUG-08 Checkin Released Not_Distributed
    unv_pf R12.UNV_PF.A.6 7315606 06-NOV-08 Checkin Released Not_Distributed
    vea R12.VEA.A 4510810 18-JAN-07 Checkin Released Not_Distributed
    vea R12.VEA.A.1 4253719 13-APR-07 Checkin Released Not_Distributed
    vea R12.VEA.A.2 6001788 12-JUL-07 Checkin Released Not_Distributed
    vea R12.VEA.A.3 6258630 12-OCT-07 Checkin Released Not_Distributed
    vea R12.VEA.A.4 6506773 10-JAN-08 Checkin Released Not_Distributed
    vea R12.VEA.A.5 7290391 29-JUL-08 Checkin Released Not_Distributed
    vea R12.VEA.A.6 7290413 04-NOV-08 Checkin Released Not_Distributed
    vea R12.VEA.B 6657143 11-AUG-08 Checkin Released Not_Distributed
    wip R12.WIP.A 4510245 18-JAN-07 Checkin Released Not_Distributed
    wip R12.WIP.A.1 5885844 13-APR-07 Checkin Released Not_Distributed
    wip R12.WIP.A.2 6003694 12-JUL-07 Checkin Released Not_Distributed
    wip R12.WIP.A.3 6258864 12-OCT-07 Checkin Released Not_Distributed
    wip R12.WIP.A.4 6508189 11-JAN-08 Checkin Released Not_Distributed
    wip R12.WIP.A.5 7289248 29-JUL-08 Checkin Released Not_Distributed
    wip R12.WIP.A.6 7289550 03-NOV-08 Checkin Released Not_Distributed
    wip R12.WIP.B 6658938 12-AUG-08 Checkin Released Not_Distributed
    wms R12.WMS.A 4508552 18-JAN-07 Checkin Released Not_Distributed
    wms R12.WMS.A.1 5889775 13-APR-07 Checkin Released Not_Distributed
    wms R12.WMS.A.2 6002090 13-JUL-07 Checkin Released Not_Distributed
    wms R12.WMS.A.3 6261537 12-OCT-07 Checkin Released Not_Distributed
    wms R12.WMS.A.4 6506314 11-JAN-08 Checkin Released Not_Distributed
    wms R12.WMS.A.5 7289245 29-JUL-08 Checkin Released Not_Distributed
    wms R12.WMS.A.6 7289542 03-NOV-08 Checkin Released Not_Distributed
    wms R12.WMS.B 6657444 12-AUG-08 Checkin Released Not_Distributed
    wps R12.WPS.A 4510248 18-JAN-07 Checkin Released Not_Distributed
    wps R12.WPS.A.1 5886972 13-APR-07 Checkin Released Not_Distributed
    wps R12.WPS.A.2 6002174 12-JUL-07 Checkin Released Not_Distributed
    wps R12.WPS.A.3 6262039 12-OCT-07 Checkin Released Not_Distributed
    wps R12.WPS.A.4 6506333 11-JAN-08 Checkin Released Not_Distributed
    wps R12.WPS.A.5 7289237 29-JUL-08 Checkin Released Not_Distributed
    wps R12.WPS.A.6 7289516 03-NOV-08 Checkin Released Not_Distributed
    wps R12.WPS.B 6657457 11-AUG-08 Checkin Released Not_Distributed
    wsh R12.WSH.A 4510435 18-JAN-07 Checkin Released Not_Distributed
    wsh R12.WSH.A.1 5889792 13-APR-07 Checkin Released Not_Distributed
    wsh R12.WSH.A.2 6002113 12-JUL-07 Checkin Released Not_Distributed
    wsh R12.WSH.A.3 6261597 12-OCT-07 Checkin Released Not_Distributed
    wsh R12.WSH.A.4 6504762 10-JAN-08 Checkin Released Not_Distributed
    wsh R12.WSH.A.5 7290280 29-JUL-08 Checkin Released Not_Distributed
    wsh R12.WSH.A.6 7290291 04-NOV-08 Checkin Released Not_Distributed
    wsh R12.WSH.B 6657114 12-AUG-08 Checkin Released Not_Distributed
    wsm R12.WSM.A 4510320 18-JAN-07 Checkin Released Not_Distributed
    wsm R12.WSM.A.1 5889772 13-APR-07 Checkin Released Not_Distributed
    wsm R12.WSM.A.2 6002091 13-JUL-07 Checkin Released Not_Distributed
    wsm R12.WSM.A.3 6261586 12-OCT-07 Checkin Released Not_Distributed
    wsm R12.WSM.A.4 6506324 11-JAN-08 Checkin Released Not_Distributed
    wsm R12.WSM.A.5 7289244 29-JUL-08 Checkin Released Not_Distributed
    wsm R12.WSM.A.6 7289535 03-NOV-08 Checkin Released Not_Distributed
    wsm R12.WSM.B 6657446 11-AUG-08 Checkin Released Not_Distributed
    xdo R12.XDO.A 4495174 18-JAN-07 Checkin Released Not_Distributed
    xdo R12.XDO.A.1 5907579 13-APR-07 Checkin Released Not_Distributed
    xdo R12.XDO.A.2 5917336 13-JUL-07 Checkin Released Not_Distributed
    xdo R12.XDO.A.3 6077632 11-OCT-07 Checkin Released Not_Distributed
    xdo R12.XDO.A.4 6354146 11-JAN-08 Checkin Released Not_Distributed
    xdo R12.XDO.A.5 6594787 30-JUL-08 Checkin Released Not_Distributed
    xdo R12.XDO.A.6 7237308 03-NOV-08 Checkin Released Not_Distributed
    xdo R12.XDO.B 6430103 11-AUG-08 Checkin Released Not_Distributed
    xdp R12.XDP.A 4464408 18-JAN-07 Checkin Released Not_Distributed
    xdp R12.XDP.A.1 5884209 12-APR-07 Checkin Released Not_Distributed
    xdp R12.XDP.A.2 6000269 12-JUL-07 Checkin Released Not_Distributed
    xdp R12.XDP.A.3 6261855 10-OCT-07 Checkin Released Not_Distributed
    xdp R12.XDP.A.4 6496924 11-JAN-08 Checkin Released Not_Distributed
    xdp R12.XDP.A.5 7300280 04-AUG-08 Checkin Released Not_Distributed
    xdp R12.XDP.A.6 7300339 03-NOV-08 Checkin Released Not_Distributed
    xdp R12.XDP.B 4561608 11-AUG-08 Checkin Released Not_Distributed
    xla R12.XLA.A 4442938 18-JAN-07 Checkin Released Not_Distributed
    xla R12.XLA.A.1 5884382 12-APR-07 Checkin Released Not_Distributed
    xla R12.XLA.A.2 5999866 12-JUL-07 Checkin Released Not_Distributed
    xla R12.XLA.A.3 6250428 13-OCT-07 Checkin Released Not_Distributed
    xla R12.XLA.A.4 6493835 11-JAN-08 Checkin Released Not_Distributed
    xla R12.XLA.A.5 6833185 15-MAY-08 Checkin Released Not_Distributed
    xla R12.XLA.A.6 7293694 03-NOV-08 Checkin Released Not_Distributed
    xla R12.XLA.B 4565349 11-AUG-08 Checkin Released Not_Distributed
    xle R12.XLE.A 4442940 18-JAN-07 Checkin Released Not_Distributed
    xle R12.XLE.A.1 5884387 12-APR-07 Checkin Released Not_Distributed
    xle R12.XLE.A.2 5999882 12-JUL-07 Checkin Released Not_Distributed
    xle R12.XLE.A.3 6251026 13-OCT-07 Checkin Released Not_Distributed
    xle R12.XLE.A.4 6494085 11-JAN-08 Checkin Released Not_Distributed
    xle R12.XLE.A.5 6833154 15-MAY-08 Checkin Released Not_Distributed
    xle R12.XLE.A.6 7293867 04-NOV-08 Checkin Released Not_Distributed
    xle R12.XLE.B 4565354 12-AUG-08 Checkin Released Not_Distributed
    xnb R12.XNB.A 4464401 18-JAN-07 Checkin Released Not_Distributed
    xnb R12.XNB.A.1 5884197 12-APR-07 Checkin Released Not_Distributed
    xnb R12.XNB.A.2 6000259 12-JUL-07 Checkin Released Not_Distributed
    xnb R12.XNB.A.3 6261790 10-OCT-07 Checkin Released Not_Distributed
    xnb R12.XNB.A.4 6496926 11-JAN-08 Checkin Released Not_Distributed
    xnb R12.XNB.A.5 7300283 04-AUG-08 Checkin Released Not_Distributed
    xnb R12.XNB.A.6 7300344 03-NOV-08 Checkin Released Not_Distributed
    xnb R12.XNB.B 4561615 11-AUG-08 Checkin Released Not_Distributed
    xnp R12.XNP.A 4464509 18-JAN-07 Checkin Released Not_Distributed
    xnp R12.XNP.A.1 5884223 12-APR-07 Checkin Released Not_Distributed
    xnp R12.XNP.A.2 6000282 12-JUL-07 Checkin Released Not_Distributed
    xnp R12.XNP.A.3 6261862 10-OCT-07 Checkin Released Not_Distributed
    xnp R12.XNP.A.4 6496931 11-JAN-08 Checkin Released Not_Distributed
    xnp R12.XNP.A.5 7300284 04-AUG-08 Checkin Released Not_Distributed
    xnp R12.XNP.A.6 7300345 03-NOV-08 Checkin Released Not_Distributed
    xnp R12.XNP.B 4561618 11-AUG-08 Checkin Released Not_Distributed
    xtr R12.XTR.A 4442946 18-JAN-07 Checkin Released Not_Distributed
    xtr R12.XTR.A.1 5884395 12-APR-07 Checkin Released Not_Distributed
    xtr R12.XTR.A.2 5999916 12-JUL-07 Checkin Released Not_Distributed
    xtr R12.XTR.A.3 6251061 13-OCT-07 Checkin Released Not_Distributed
    xtr R12.XTR.A.4 6494093 11-JAN-08 Checkin Released Not_Distributed
    xtr R12.XTR.A.5 6832891 15-MAY-08 Checkin Released Not_Distributed
    xtr R12.XTR.A.6 7293751 04-NOV-08 Checkin Released Not_Distributed
    xtr R12.XTR.B 4539979 11-AUG-08 Checkin Released Not_Distributed
    zpb R12.ZPB.A 4448752 18-JAN-07 Checkin Released Not_Distributed
    zpb R12.ZPB.A.1 5633196 12-APR-07 Checkin Released Not_Distributed
    zpb R12.ZPB.A.2 5999537 12-JUL-07 Checkin Released Not_Distributed
    zpb R12.ZPB.A.3 6251476 13-OCT-07 Checkin Released Not_Distributed
    zpb R12.ZPB.A.4 6494196 10-JAN-08 Checkin Released Not_Distributed
    zpb R12.ZPB.A.5 6833198 15-MAY-08 Checkin Released Not_Distributed
    zpb R12.ZPB.A.6 7293699 03-NOV-08 Checkin Released Not_Distributed
    zpb R12.ZPB.B 6651737 12-AUG-08 Checkin Released Not_Distributed
    zx R12.ZX.A 4442948 18-JAN-07 Checkin Released Not_Distributed
    zx R12.ZX.A.1 5884403 12-APR-07 Checkin Released Not_Distributed
    zx R12.ZX.A.2 5999947 12-JUL-07 Checkin Released Not_Distributed
    zx R12.ZX.A.3 6251141 13-OCT-07 Checkin Released Not_Distributed
    zx R12.ZX.A.4 6494106 11-JAN-08 Checkin Released Not_Distributed
    zx R12.ZX.A.5 6833170 15-MAY-08 Checkin Released Not_Distributed
    zx R12.ZX.A.6 7293871 04-NOV-08 Checkin Released Not_Distributed
    zx R12.ZX.B 4565356 12-AUG-08 Checkin Released Not_Distributed
    " > ${OUT_DIR}/R12_patchsets.txt

    chmod 777 ${OUT_DIR}/R12_patchsets.txt 2>/dev/null

    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

    chmod 777 ${OUT_DIR}/1200_Base.txt 2>/dev/null

    ##
    ## End R12 Support
    ##

    REL115_DATE="Feb 11 22:30"

    echo "

    Patchset
    Product Name Bug_number RELEASED_ Status DISTRIBUTION
    --------- ---------------- ---------- --------- -------------------- -------------------
    abm 11i.ABM.A 1486865 15-NOV-00 Checkin Obsoleted By_Metalink
    abm 11i.ABM.B 1529214 26-DEC-00 Checkin Obsoleted By_Oracle_Store
    abm 11i.ABM.C 1588595 25-JAN-01 Checkin Obsoleted By_Metalink
    abm 11i.ABM.D 1741310 31-MAY-01 Checkin Released By_Dev
    abm 11i.ABM.E 1950271 04-SEP-01 Checkin Released By_Dev
    abm 11i.ABM.F 2021911 06-NOV-01 Checkin Released By_Dev
    abm 11i.ABM.G.4 3452690 27-FEB-04 Checkin Released By_Metalink
    ad 11i.AD.A 1351004 07-OCT-00 Checkin Released By_Metalink
    ad 11i.AD.B 1460640 13-OCT-00 Checkin Obsoleted By_Metalink
    ad 11i.AD.C 1475426 19-JAN-01 Checkin Released By_Metalink
    ad 11i.AD.D 1627493 04-FEB-01 Checkin Released By_Metalink
    ad 11i.AD.E 1945611 02-NOV-01 Checkin Released By_Metalink
    ad 11i.AD.F 2141471 21-FEB-02 Checkin Released By_Metalink
    ad 11i.AD.G 2344175 05-NOV-02 Checkin Released By_Metalink
    ad 11i.AD.H 2673262 30-JUN-03 Checkin Released By_Metalink
    ad 11i.AD.I.1 4038964 02-DEC-04 Checkin Released By_Metalink
    ad 11i.AD.I.2 4229931 27-JUL-05 Checkin Released By_Metalink
    ad 11i.AD.I.2 4337683 27-JUL-05 Checkin Released By_Metalink
    ad 11i.AD.I.3 4502904 01-SEP-05 Checkin Released By_Metalink
    ad 11i.AD.I.3 4712847 29-MAR-06 Checkin Released Not_Distributed
    ad 11i.AD.I.4 4605654 29-MAR-06 Checkin Released By_Metalink
    ad 11i.AD.I.4 4712852 29-MAR-06 Checkin Released By_Metalink
    ad 11i.AD.I.5 5161680 18-MAY-07 Checkin Released By_Metalink
    ad 11i.AD.I.5 5161676 18-MAY-07 Checkin Released By_Metalink
    ad 11i.AD.I.6 6502079 18-JAN-08 Checkin Released By_Metalink
    ad 11i.AD.I.6 6502082 18-JAN-08 Checkin Released By_Metalink
    adx 11i.ADX.A 2488995 23-OCT-02 Checkin Obsoleted By_Metalink
    adx 11i.ADX.B 2682177 11-JUN-03 Checkin Released By_Dev
    adx 11i.ADX.C 3002409 20-JUN-03 Checkin Obsoleted By_Metalink
    adx 11i.ADX.D 3130740 23-OCT-03 Checkin Obsoleted By_Metalink
    adx 11i.ADX.E.1 3817226 10-AUG-04 Checkin Released By_Metalink
    adx 11i.ADX.F 3453499 14-OCT-05 Checkin Released By_Metalink
    ahl 11i.AHL.A 1838464 25-JUN-01 Checkin Obsoleted Not_Distributed
    ahl 11i.AHL.B 1849837 25-JUN-01 Checkin Released By_Dev
    ahl 11i.AHL.C 1879958 23-JUL-01 Checkin Released By_Dev
    ahl 11i.AHL.D 1901700 08-AUG-01 Checkin Released By_Dev
    ahl 11i.AHL.E 1929710 15-AUG-01 Checkin Released By_Dev
    ahl 11i.AHL.F 1939822 23-AUG-01 Checkin Released By_Dev
    ahl 11i.AHL.G 1956651 07-SEP-01 Checkin Released By_Dev
    ahl 11i.AHL.H 1985831 02-OCT-01 Checkin Released By_Dev
    ahl 11i.AHL.I 2024370 06-OCT-01 Checkin Released By_Dev
    ahl 11i.AHL.J 2139197 10-DEC-01 Checkin Released By_Dev
    ahl 11i.AHL.K 2173447 01-FEB-02 Checkin Released By_Dev
    ahl 11i.AHL.L 2221033 08-MAR-02 Checkin Released By_Dev
    ahl 11i.AHL.M 2269046 29-MAR-02 Checkin Released By_Dev
    ahl 11i.AHL.N 2322414 01-MAY-02 Checkin Released By_Dev
    ahl 11i.AHL.O 2568989 11-DEC-02 Checkin Released By_Dev
    ahl 11i.AHL.P 2700563 10-JUN-03 Checkin Released By_Dev
    ahl 11i.AHL.Q 3132184 17-SEP-04 Checkin Released Not_Distributed
    ahm 11i.AHM.A 2004002 02-NOV-01 Checkin Released By_Dev
    ahm 11i.AHM.B 2197656 31-JAN-02 Checkin Released By_Dev
    ahm 11i.AHM.C 2298383 21-MAY-02 Checkin Released By_Dev
    ahm 11i.AHM.D 2384215 23-OCT-02 Checkin Released By_Dev
    ak 11i.AK.A 1343449 05-SEP-00 Checkin Released By_Metalink
    ak 11i.AK.B 1455027 15-DEC-00 Checkin Released By_Metalink
    ak 11i.AK.C 1553747 05-FEB-01 Checkin Released By_Metalink
    ak 11i.AK.D 1931844 10-SEP-01 Checkin Released By_Metalink
    ak 11i.AK.E 2404795 04-SEP-02 Checkin Released By_Metalink
    ak 11i.AK.F 2657511 11-JUN-03 Checkin Released By_Metalink
    ak 11i.AK.G 3263645 04-NOV-04 Checkin Released By_Metalink
    alr 11i.ALR.A 1348277 07-SEP-00 Checkin Released By_Metalink
    alr 11i.ALR.B 1459186 12-OCT-00 Checkin Released By_Metalink
    alr 11i.ALR.C 1575525 02-FEB-01 Checkin Released By_Metalink
    alr 11i.ALR.D 1931404 04-SEP-01 Checkin Released By_Metalink
    alr 11i.ALR.E 2404398 05-SEP-02 Checkin Released By_Metalink
    alr 11i.ALR.F 2464368 11-JUN-03 Checkin Released By_Metalink
    alr 11i.ALR.G 3261254 04-NOV-04 Checkin Released By_Metalink
    ame 11i.AME.A 3962268 01-DEC-04 Checkin Released By_Metalink
    ame 11i.AME.B 4428060 30-SEP-05 Checkin Released By_Metalink
    ame 11i.AME.B.1 6975336 02-JUL-08 Checkin Released Not_Distributed
    amf 11i.AMF.A 2395526 11-OCT-02 Checkin Released By_Dev
    amf 11i.AMF.B 2640735 11-JUN-03 Checkin Released By_Dev
    amf 11i.AMF.C 3134002 07-OCT-04 Checkin Released Not_Distributed
    aml 11i.AML.A 2728964 12-JUN-03 Checkin Released By_Metalink
    aml 11i.AML.B 3236242 08-OCT-04 Checkin Released Not_Distributed
    ams 11i.AMS.A 1306417 21-JUN-00 Checkin Released Not_Distributed
    ams 11i.AMS.B 1339203 07-OCT-00 Checkin Released Not_Distributed
    ams 11i.AMS.C 1568669 18-FEB-01 Checkin Released By_Dev
    ams 11i.AMS.D 1888970 05-OCT-01 Checkin Released By_Dev
    ams 11i.AMS.E 2205116 03-APR-02 Checkin Released By_Metalink
    ams 11i.AMS.F 2304444 09-MAY-02 Checkin Released By_Metalink
    ams 11i.AMS.G 2375183 11-OCT-02 Checkin Released By_Dev
    ams 11i.AMS.H 2460403 11-JUN-03 Checkin Released By_Dev
    ams 11i.AMS.I 3025816 08-OCT-04 Checkin Released Not_Distributed
    amv 11i.AMV.A 1306440 21-JUN-00 Checkin Released Not_Distributed
    amv 11i.AMV.B 1339544 07-OCT-00 Checkin Released Not_Distributed
    amv 11i.AMV.C 1492451 05-JAN-01 Checkin Released By_Metalink
    amv 11i.AMV.D 1615230 27-FEB-01 Checkin Released By_Metalink
    amv 11i.AMV.E 1838218 02-NOV-01 Checkin Released By_Dev
    amv 11i.AMV.F 2223748 28-FEB-02 Checkin Released By_Metalink
    amv 11i.AMV.G 2440207 10-OCT-02 Checkin Released By_Dev
    amv 11i.AMV.H 2630030 11-JUN-03 Checkin Released By_Dev
    amv 11i.AMV.I 3134012 07-OCT-04 Checkin Released Not_Distributed
    amw 11i.AMW.A 2972149 31-OCT-03 Checkin Released By_Support
    amw 11i.AMW.B 3232451 03-MAR-04 Checkin Released By_Support
    amw 11i.AMW.C 3485924 05-NOV-04 Checkin Released By_Metalink
    amw 11i.AMW.D 4016750 02-JUN-05 Checkin Released By_Metalink
    amw 11i.AMW.E 4483674 13-FEB-06 Checkin Released By_Metalink
    ap 11i.AP.A 1341007 01-SEP-00 Checkin Obsoleted By_Metalink
    ap 11i.AP.B 1380728 20-OCT-00 Checkin Obsoleted By_Metalink
    ap 11i.AP.C 1476751 05-JAN-01 Checkin Obsoleted By_Metalink
    ap 11i.AP.D 1571201 27-MAR-01 Checkin Released Not_Distributed
    ap 11i.AP.E 1715446 25-MAY-01 Checkin Released Not_Distributed
    ap 11i.AP.F 1816560 27-JUL-01 Checkin Released Not_Distributed
    ap 11i.AP.G 1986982 27-NOV-01 Checkin Released Not_Distributed
    ap 11i.AP.H 2145557 05-MAR-02 Checkin Released Not_Distributed
    ap 11i.AP.I 2266561 06-MAY-02 Checkin Released Not_Distributed
    ap 11i.AP.J 2375849 02-JUL-02 Checkin Released By_Dev
    ap 11i.AP.K 2488725 02-APR-03 Checkin Released By_Dev
    ap 11i.AP.L 2864907 12-DEC-03 Checkin Released By_Dev
    ap 11i.AP.M 3151444 18-OCT-04 Checkin Released Not_Distributed
    ap 11i.AP.N 3617668 29-APR-05 Checkin Released Not_Distributed
    ap 11i.AP.O 4551936 23-FEB-07 Checkin Released By_Metalink
    ar 11i.AR.A 1338891 01-SEP-00 Checkin Released Not_Distributed
    ar 11i.AR.B 1393884 15-OCT-00 Checkin Released Not_Distributed
    ar 11i.AR.C 1403734 23-JAN-01 Checkin Released Not_Distributed
    ar 11i.AR.D 1529296 30-MAR-01 Checkin Released Not_Distributed
    ar 11i.AR.E 1608938 15-JUN-01 Checkin Released Not_Distributed
    ar 11i.AR.F 1763786 17-AUG-01 Checkin Released Not_Distributed
    ar 11i.AR.G 1966026 05-NOV-01 Checkin Released Not_Distributed
    ar 11i.AR.H 1991140 28-DEC-01 Checkin Released Not_Distributed
    ar 11i.AR.I 2100663 01-MAR-02 Checkin Released Not_Distributed
    ar 11i.AR.J 2182030 20-MAY-02 Checkin Released By_Metalink
    ar 11i.AR.K 2396506 16-AUG-02 Checkin Released By_Dev
    ar 11i.AR.L 2488726 02-APR-03 Checkin Released By_Dev
    ar 11i.AR.M 2864959 12-DEC-03 Checkin Released By_Dev
    ar 11i.AR.N 3151465 18-OCT-04 Checkin Released Not_Distributed
    ar 11i.AR.O 3617855 29-APR-05 Checkin Released Not_Distributed
    as 11i.AS.A 1339726 07-OCT-00 Checkin Released Not_Distributed
    as 11i.AS.B 1567507 18-FEB-01 Checkin Released By_Dev
    as 11i.AS.C 1647480 27-FEB-01 Checkin Released By_Metalink
    as 11i.AS.D 1886136 02-OCT-01 Checkin Released By_Dev
    as 11i.AS.E 2054419 13-NOV-01 Checkin Obsoleted By_Dev
    as 11i.AS.F 2206559 11-FEB-02 Checkin Released By_Dev
    as 11i.AS.G 2404253 11-OCT-02 Checkin Released By_Dev
    as 11i.AS.H 2640001 11-JUN-03 Checkin Released By_Dev
    as 11i.AS.I 3046981 08-OCT-04 Checkin Released Not_Distributed
    asf 11i.ASF.A 1338602 07-OCT-00 Checkin Released Not_Distributed
    asf 11i.ASF.B 1567517 18-FEB-01 Checkin Released By_Dev
    asf 11i.ASF.C 1898271 05-OCT-01 Checkin Released By_Dev
    asf 11i.ASF.D 2084023 04-NOV-01 Checkin Released By_Dev
    asf 11i.ASF.E 2209019 11-FEB-02 Checkin Released By_Dev
    asf 11i.ASF.F 2404440 11-OCT-02 Checkin Released By_Dev
    asf 11i.ASF.G 2640034 11-JUN-03 Checkin Released By_Dev
    asf 11i.ASF.H 3046985 08-OCT-04 Checkin Released Not_Distributed
    asg 11i.ASG.A 1306793 21-JUN-00 Checkin Released Not_Distributed
    asg 11i.ASG.B 1340230 07-OCT-00 Checkin Released Not_Distributed
    asg 11i.ASG.C 1510068 01-DEC-00 Checkin Released By_Metalink
    asg 11i.ASG.D 1580949 27-FEB-01 Checkin Released By_Metalink
    asg 11i.ASG.E 1778801 25-JUN-01 Checkin Released By_Dev
    asg 11i.ASG.F 1883359 23-JUL-01 Checkin Released Not_Distributed
    asg 11i.ASG.G 1898321 06-AUG-01 Checkin Released By_Dev
    asg 11i.ASG.H 1922718 07-SEP-01 Checkin Released By_Dev
    asg 11i.ASG.I 1982737 01-OCT-01 Checkin Released By_Dev
    asg 11i.ASG.J 2022254 07-OCT-01 Checkin Released By_Dev
    asg 11i.ASG.K 2080734 04-NOV-01 Checkin Released By_Dev
    asg 11i.ASG.M 2294853 09-APR-02 Checkin Released By_Dev
    asg 11i.ASG.N 2365376 09-MAY-02 Checkin Released By_Dev
    asg 11i.ASG.O 2421058 29-AUG-02 Checkin Released By_Dev
    asg 11i.ASG.P 2501175 15-OCT-02 Checkin Released By_Metalink
    asg 11i.ASG.Q 2661232 11-JUN-03 Checkin Released By_Metalink
    asg 11i.ASG.R 3263401 04-NOV-04 Checkin Released By_Metalink
    asl 11i.ASL.A 1477136 25-JAN-01 Checkin Obsoleted Not_Distributed
    asl 11i.ASL.B 1612644 06-MAR-01 Checkin Obsoleted By_Metalink
    asl 11i.ASL.C 1905213 12-OCT-01 Checkin Obsoleted By_Dev
    asl 11i.ASL.E 2354450 01-MAY-02 Checkin Obsoleted By_Metalink
    asl 11i.ASL.F 2359042 05-MAY-02 Checkin Obsoleted By_Metalink
    asl 11i.ASL.G 2509464 11-OCT-02 Checkin Released By_Dev
    asl 11i.ASL.H 2642511 11-JUN-03 Checkin Released By_Metalink
    asl 11i.ASL.I 3780558 08-OCT-04 Checkin Released Not_Distributed
    asl 11i.ASL.J 4111404 06-MAY-05 Checkin Released By_Metalink
    asn 11i.ASN.A 3293018 13-OCT-04 Checkin Released Not_Distributed
    asn 11i.ASN.B 3955219 29-APR-05 Checkin Released By_Metalink
    aso 11i.ASO.A 1307100 21-JUN-00 Checkin Released Not_Distributed
    aso 11i.ASO.B 1349836 07-OCT-00 Checkin Released Not_Distributed
    aso 11i.ASO.C 1522814 03-JAN-01 Checkin Released By_Metalink
    aso 11i.ASO.D 1615185 27-FEB-01 Checkin Released By_Metalink
    aso 11i.ASO.E 1665062 30-MAR-01 Checkin Released By_Metalink
    aso 11i.ASO.F 1716551 29-MAY-01 Checkin Released By_Metalink
    aso 11i.ASO.G 1808269 23-JUL-01 Checkin Released By_Metalink
    aso 11i.ASO.H 1912652 29-AUG-01 Checkin Released By_Dev
    aso 11i.ASO.I 1970707 02-NOV-01 Checkin Released By_Dev
    aso 11i.ASO.J 2171630 31-MAY-02 Checkin Released By_Metalink
    aso 11i.ASO.K 2374852 31-AUG-02 Checkin Released By_Metalink
    aso 11i.ASO.L 2412097 04-APR-03 Checkin Released By_Metalink
    aso 11i.ASO.M 2937137 21-JUN-04 Checkin Released By_Metalink
    asp 11i.ASP.A 1905229 12-OCT-01 Checkin Obsoleted By_Dev
    asp 11i.ASP.B 2212166 08-OCT-04 Checkin Released Not_Distributed
    asp 11i.ASP.C 4111409 28-JUL-05 Checkin Released By_Metalink
    ast 11i.AST.A 1306443 21-JUN-00 Checkin Released Not_Distributed
    ast 11i.AST.B 1339472 07-OCT-00 Checkin Released Not_Distributed
    ast 11i.AST.C 1574004 18-FEB-01 Checkin Released By_Dev
    ast 11i.AST.D 1903462 05-OCT-01 Checkin Released By_Dev
    ast 11i.AST.E 2210188 11-FEB-02 Checkin Released By_Dev
    ast 11i.AST.F 2405522 11-OCT-02 Checkin Released By_Dev
    ast 11i.AST.G 2642510 11-JUN-03 Checkin Released By_Dev
    ast 11i.AST.H 3046996 08-OCT-04 Checkin Released Not_Distributed
    atg_pf 11i.ATG_PF.H 3438354 11-NOV-04 Checkin Released By_Metalink
    atg_pf 11i.ATG_PF.H.5 5473858 30-APR-07 Checkin Released By_Metalink
    atg_pf 11i.ATG_PF.H.6 5903765 11-OCT-07 Checkin Released By_Metalink
    ax 11i.AX.A 1329016 03-SEP-00 Checkin Released Not_Distributed
    ax 11i.AX.B 1356868 13-OCT-00 Checkin Released Not_Distributed
    ax 11i.AX.C 1480962 03-NOV-00 Checkin Released Not_Distributed
    ax 11i.AX.D 1797013 11-JUN-01 Checkin Released Not_Distributed
    ax 11i.AX.E 2092219 28-DEC-01 Checkin Released By_Metalink
    ax 11i.AX.F 2397665 16-AUG-02 Checkin Released By_Dev
    ax 11i.AX.G 2646044 02-APR-03 Checkin Released By_Dev
    ax 11i.AX.H 2865270 12-DEC-03 Checkin Released By_Dev
    ax 11i.AX.I 3151359 18-OCT-04 Checkin Released Not_Distributed
    ax 11i.AX.J 3617516 29-APR-05 Checkin Released Not_Distributed
    az 11i.AZ.A 1344783 05-SEP-00 Checkin Released By_Metalink
    az 11i.AZ.B 1569738 02-FEB-01 Checkin Released By_Metalink
    az 11i.AZ.C 1935117 04-SEP-01 Checkin Released By_Metalink
    az 11i.AZ.D 2414932 22-OCT-02 Checkin Released By_Metalink
    az 11i.AZ.E 2707397 11-JUN-03 Checkin Released By_Dev
    az 11i.AZ.F 3251003 05-NOV-04 Checkin Released By_Dev
    az 11i.AZ.G 4590175 20-OCT-05 Checkin Released Not_Distributed
    az 11i.AZ.H 5140723 25-MAY-06 Checkin Released By_Metalink
    az 11i.AZ.H.1 5525463 21-DEC-06 Checkin Released By_Metalink
    az 11i.AZ.H.2 7293818 03-AUG-08 Checkin Released By_Metalink
    ben 11i.BEN.A 1343092 01-SEP-00 Checkin Released By_Metalink
    ben 11i.BEN.B 1476542 28-NOV-00 Checkin Released By_Metalink
    ben 11i.BEN.C 1566786 05-FEB-01 Checkin Released By_Metalink
    ben 11i.BEN.D 1663184 07-MAY-01 Checkin Released By_Metalink
    ben 11i.BEN.E 1849555 18-AUG-01 Checkin Released By_Metalink
    ben 11i.BEN.F 2004047 20-NOV-01 Checkin Released By_Metalink
    ben 11i.BEN.G 2156736 21-FEB-02 Checkin Released Not_Distributed
    ben 11i.BEN.H 2268439 09-MAY-02 Checkin Released Not_Distributed
    ben 11i.BEN.I 2410055 02-AUG-02 Checkin Released Not_Distributed
    ben 11i.BEN.J 2632482 27-NOV-02 Checkin Released Not_Distributed
    ben 11i.BEN.K 2803591 19-MAY-03 Checkin Released Not_Distributed
    ben 11i.BEN.L 3125827 05-DEC-03 Checkin Released Not_Distributed
    ben 11i.BEN.M 3418234 27-JUL-04 Checkin Released Not_Distributed
    ben 11i.BEN.N 3988377 08-MAR-05 Checkin Released Not_Distributed
    ben 11i.BEN.O 4289992 30-JUN-05 Checkin Released Not_Distributed
    ben 11i.BEN.O.1 5059523 31-MAY-06 Checkin Released Not_Distributed
    ben 11i.BEN.O.2 5917495 22-JUN-07 Checkin Released Not_Distributed
    ben 11i.BEN.O.3 6964718 02-JUL-08 Checkin Released Not_Distributed
    bic 11i.BIC.A 1306874 21-JUN-00 Checkin Released Not_Distributed
    bic 11i.BIC.B 1339886 07-OCT-00 Checkin Released Not_Distributed
    bic 11i.BIC.C 1482403 09-NOV-00 Checkin Obsoleted By_Metalink
    bic 11i.BIC.D 1495622 21-NOV-00 Checkin Obsoleted By_Metalink
    bic 11i.BIC.E 1511930 13-DEC-00 Checkin Obsoleted By_Metalink
    bic 11i.BIC.F 1543650 27-DEC-00 Checkin Obsoleted By_Metalink
    bic 11i.BIC.G 1562690 10-JAN-01 Checkin Obsoleted By_Metalink
    bic 11i.BIC.H 1578152 24-JAN-01 Checkin Obsoleted By_Metalink
    bic 11i.BIC.I 1612182 27-FEB-01 Checkin Released Not_Distributed
    bic 11i.BIC.J 1676540 23-MAR-01 Checkin Released Not_Distributed
    bic 11i.BIC.K 1907256 08-AUG-01 Checkin Released Not_Distributed
    bic 11i.BIC.L 1925567 14-AUG-01 Checkin Released Not_Distributed
    bic 11i.BIC.M 1937599 10-SEP-01 Checkin Released By_Dev
    bic 11i.BIC.N 1986675 28-SEP-01 Checkin Released By_Dev
    bic 11i.BIC.O 2022211 06-OCT-01 Checkin Released By_Dev
    bic 11i.BIC.P 2139157 29-OCT-02 Checkin Released By_Dev
    bic 11i.BIC.Q 2706853 19-FEB-03 Checkin Released By_Metalink
    bic 11i.BIC.R 3293766 09-JAN-04 Checkin Released Not_Distributed
    bic 11i.BIC.S 3367777 05-NOV-04 Checkin Released By_Metalink
    bic 11i.BIC.T 4016830 29-APR-05 Checkin Released By_Metalink
    bil 11i.BIL.A 1338344 07-OCT-00 Checkin Released Not_Distributed
    bil 11i.BIL.B 1482460 09-NOV-00 Checkin Obsoleted By_Metalink
    bil 11i.BIL.C 1495702 21-NOV-00 Checkin Obsoleted By_Metalink
    bil 11i.BIL.D 1511823 13-DEC-00 Checkin Obsoleted By_Metalink
    bil 11i.BIL.E 1542648 27-DEC-00 Checkin Obsoleted By_Metalink
    bil 11i.BIL.F 1562647 10-JAN-01 Checkin Obsoleted By_Metalink
    bil 11i.BIL.G 1578183 24-JAN-01 Checkin Obsoleted By_Metalink
    bil 11i.BIL.H 1611454 25-JAN-01 Checkin Obsoleted By_Metalink
    bil 11i.BIL.I 1612601 27-FEB-01 Checkin Released By_Metalink
    bil 11i.BIL.J 1675565 23-MAR-01 Checkin Released By_Metalink
    bil 11i.BIL.K 1926686 05-OCT-01 Checkin Released By_Dev
    bil 11i.BIL.L 2206086 11-FEB-02 Checkin Released By_Dev
    bil 11i.BIL.M 2395116 11-OCT-02 Checkin Released By_Dev
    bil 11i.BIL.N 2642409 11-JUN-03 Checkin Released By_Dev
    bil 11i.BIL.O 3061845 08-OCT-04 Checkin Released Not_Distributed
    bim 11i.BIM.A 1306975 21-JUN-00 Checkin Released Not_Distributed
    bim 11i.BIM.B 1338414 07-OCT-00 Checkin Released Not_Distributed
    bim 11i.BIM.C 1482411 09-NOV-00 Checkin Released By_Metalink
    bim 11i.BIM.D 1494460 21-NOV-00 Checkin Released By_Metalink
    bim 11i.BIM.E 1510753 13-DEC-00 Checkin Obsoleted By_Metalink
    bim 11i.BIM.F 1543047 27-DEC-00 Checkin Released By_Metalink
    bim 11i.BIM.G 1560518 25-JAN-01 Checkin Released By_Metalink
    bim 11i.BIM.H 1610593 27-FEB-01 Checkin Released By_Metalink
    bim 11i.BIM.I 1678712 23-MAR-01 Checkin Released By_Metalink
    bim 11i.BIM.J 1903380 30-JUL-01 Checkin Released By_Dev
    bim 11i.BIM.K 1950770 04-OCT-01 Checkin Released By_Dev
    bim 11i.BIM.L 2032764 08-OCT-01 Checkin Released By_Dev
    bim 11i.BIM.M 2454061 10-OCT-02 Checkin Released By_Dev
    bim 11i.BIM.N 2630063 11-JUN-03 Checkin Released By_Dev
    bim 11i.BIM.O 3025758 07-OCT-04 Checkin Released Not_Distributed
    bis 11i.BIS.A 1332650 05-OCT-00 Checkin Obsoleted By_Metalink
    bis 11i.BIS.B 1455252 04-JAN-01 Checkin Obsoleted By_Metalink
    bis 11i.BIS.C 1573079 30-JAN-01 Checkin Obsoleted By_Metalink
    bis 11i.BIS.D 1865844 04-SEP-01 Checkin Obsoleted By_Metalink
    bis 11i.BIS.E 2188903 30-AUG-02 Checkin Obsoleted By_Metalink
    bis 11i.BIS.F 2598853 01-OCT-02 Checkin Obsoleted By_Metalink
    bis 11i.BIS.G 2692848 16-APR-03 Checkin Released By_Metalink
    bis 11i.BIS.H 3053018 17-OCT-03 Checkin Obsoleted By_Metalink
    bis 11i.BIS.I 3335090 16-MAR-04 Checkin Released By_Dev
    bis 11i.BIS.I.6 4475819 07-JUL-05 Checkin Released By_Dev
    bis 11i.BIS.J 3673034 15-OCT-04 Checkin Obsoleted By_Metalink
    bis 11i.BIS.K 3894718 21-JAN-05 Checkin Released By_Metalink
    bis 11i.BIS.K.1 4429907 13-JUN-05 Checkin Obsoleted Not_Distributed
    bis 11i.BIS.K.10 4907667 17-FEB-06 Checkin Released By_Metalink
    bis 11i.BIS.K.11 5046300 24-MAY-06 Checkin Released By_Metalink
    bis 11i.BIS.K.12 5244165 19-JUL-06 Checkin Released By_Metalink
    bis 11i.BIS.K.2 4053599 14-JUN-05 Checkin Obsoleted Not_Distributed
    bis 11i.BIS.K.3 4429908 11-JUL-05 Checkin Obsoleted By_Metalink
    bis 11i.BIS.K.4 4486887 04-AUG-05 Checkin Obsoleted By_Metalink
    bis 11i.BIS.K.5 4537118 01-SEP-05 Checkin Obsoleted By_Metalink
    bis 11i.BIS.K.6 4588399 16-SEP-05 Checkin Obsoleted By_Metalink
    bis 11i.BIS.K.7 4616240 28-OCT-05 Checkin Obsoleted By_Metalink
    bis 11i.BIS.K.8 4696627 30-NOV-05 Checkin Obsoleted By_Metalink
    bis 11i.BIS.K.9 4869030 23-DEC-05 Checkin Obsoleted By_Metalink
    bis 11i.BIS.L 4429906 16-DEC-05 Checkin Released By_Metalink
    bis 11i.BIS.L.1 4891131 08-FEB-06 Checkin Obsoleted Not_Distributed
    bis 11i.BIS.L.10 6617445 20-NOV-07 Checkin Released By_Metalink
    bis 11i.BIS.L.2 5025065 31-MAR-06 Checkin Released By_Metalink
    bis 11i.BIS.L.3 5117572 11-MAY-06 Checkin Released By_Metalink
    bis 11i.BIS.L.4 5212746 26-JUN-06 Checkin Released By_Metalink
    bis 11i.BIS.L.5 5357902 28-JUL-06 Checkin Released By_Metalink
    bis 11i.BIS.L.6 5417050 01-SEP-06 Checkin Released By_Metalink
    bis 11i.BIS.L.7 5506389 22-NOV-06 Checkin Released By_Metalink
    bis 11i.BIS.L.8 5702526 21-FEB-07 Checkin Released By_Metalink
    bis 11i.BIS.L.9 5912291 14-JUN-07 Checkin Released By_Metalink
    bis_pf 11i.BIS_PF.A 2594505 28-FEB-03 Checkin Released By_Dev
    bis_pf 11i.BIS_PF.B 2910183 15-JUL-03 Checkin Released By_Dev
    bis_pf 11i.BIS_PF.C 3086726 25-NOV-03 Checkin Released By_Metalink
    bis_pf 11i.BIS_PF.C.1 4084433 25-FEB-05 Checkin Released By_Metalink
    bis_pf 11i.BIS_PF.C.6 4463950 27-SEP-05 Checkin Released By_Metalink
    bis_pf 11i.BIS_PF.D 3358654 29-OCT-04 Checkin Released By_Dev
    bis_pf 11i.BIS_PF.D.1 4054609 21-JAN-05 Checkin Released By_Metalink
    bis_pf 11i.BIS_PF.E 4143498 19-MAY-05 Checkin Released By_Metalink
    bis_pf 11i.BIS_PF.E.1 4429228 29-JUL-05 Checkin Released By_Metalink
    bis_pf 11i.BIS_PF.E.2 4458450 21-OCT-05 Checkin Released By_Metalink
    bis_pf 11i.BIS_PF.F 4887502 27-JAN-06 Checkin Released By_Metalink
    bis_pf 11i.BIS_PF.F.1 5004590 18-JUL-06 Checkin Released By_Metalink
    bis_pf 11i.BIS_PF.G 5404886 02-OCT-06 Checkin Released By_Metalink
    bis_pf 11i.BIS_PF.H 5565583 02-FEB-07 Checkin Released By_Metalink
    biv 11i.BIV.A 1927612 08-AUG-01 Checkin Released Not_Distributed
    biv 11i.BIV.B 1927707 08-AUG-01 Checkin Released Not_Distributed
    biv 11i.BIV.C 1927744 08-AUG-01 Checkin Released Not_Distributed
    biv 11i.BIV.D 1925794 08-AUG-01 Checkin Released Not_Distributed
    biv 11i.BIV.E 1937617 23-AUG-01 Checkin Released Not_Distributed
    biv 11i.BIV.F 1953470 10-SEP-01 Checkin Released By_Dev
    biv 11i.BIV.G 1986678 28-SEP-01 Checkin Released By_Dev
    biv 11i.BIV.H 2022213 06-OCT-01 Checkin Released By_Dev
    biv 11i.BIV.I 2139162 01-FEB-02 Checkin Released By_Dev
    biv 11i.BIV.J 2221044 08-MAR-02 Checkin Released By_Dev
    biv 11i.BIV.K 2267084 29-MAR-02 Checkin Released By_Dev
    biv 11i.BIV.L 2319941 26-APR-02 Checkin Released By_Dev
    biv 11i.BIV.M 2380839 23-MAY-02 Checkin Released By_Dev
    biv 11i.BIV.N 2415896 28-JUN-02 Checkin Released By_Dev
    biv 11i.BIV.O 2482714 26-JUL-02 Checkin Released By_Dev
    biv 11i.BIV.P 2484904 31-JUL-02 Checkin Released By_Dev
    biv 11i.BIV.Q 2592038 10-DEC-02 Checkin Released By_Dev
    biv 11i.BIV.R 2707184 10-JUN-03 Checkin Released By_Dev
    biv 11i.BIV.S 3014204 17-SEP-04 Checkin Released Not_Distributed
    bix 11i.BIX.A 1306836 21-JUN-00 Checkin Obsoleted Not_Distributed
    bix 11i.BIX.B 1338332 07-OCT-00 Checkin Obsoleted Not_Distributed
    bix 11i.BIX.C 1482410 09-NOV-00 Checkin Obsoleted By_Metalink
    bix 11i.BIX.D 1496190 21-NOV-00 Checkin Obsoleted By_Metalink
    bix 11i.BIX.E 1510643 13-DEC-00 Checkin Obsoleted By_Metalink
    bix 11i.BIX.F 1543059 27-DEC-00 Checkin Obsoleted By_Metalink
    bix 11i.BIX.G 1560551 10-JAN-01 Checkin Obsoleted By_Metalink
    bix 11i.BIX.H 1577712 24-JAN-01 Checkin Obsoleted By_Metalink
    bix 11i.BIX.I 1610902 27-FEB-01 Checkin Obsoleted By_Metalink
    bix 11i.BIX.J 1662853 23-MAR-01 Checkin Obsoleted By_Metalink
    bix 11i.BIX.K 1791967 01-JUN-01 Checkin Obsoleted By_Metalink
    bix 11i.BIX.L 1829087 22-JUN-01 Checkin Released By_Dev
    bix 11i.BIX.M 1856888 18-JUL-01 Checkin Released By_Dev
    bix 11i.BIX.N 1905373 27-SEP-01 Checkin Released By_Dev
    bix 11i.BIX.O 2163294 28-DEC-01 Checkin Released By_Dev
    bix 11i.BIX.P 2241899 26-FEB-02 Checkin Released By_Dev
    bix 11i.BIX.Q 2387256 23-MAY-02 Checkin Released By_Dev
    bix 11i.BIX.R 2483831 27-JUL-02 Checkin Released By_Dev
    bix 11i.BIX.S 2685978 27-NOV-02 Checkin Released By_Dev
    bix 11i.BIX.T 3112625 29-OCT-03 Checkin Released By_Dev
    blc 11i.BLC.A 3965553 29-APR-05 Checkin Released By_Dev
    blc 11i.BLC.B 4594554 06-FEB-06 Checkin Released By_Dev
    bne 11i.BNE.A 2443697 10-OCT-02 Checkin Released By_Dev
    bne 11i.BNE.B 2677750 24-FEB-03 Checkin Released By_Metalink
    bne 11i.BNE.C 2819091 15-SEP-03 Checkin Released By_Metalink
    bne 11i.BNE.D 3218526 14-MAR-05 Checkin Released By_Metalink
    bom 11i.BOM.A 1288573 23-MAY-00 Checkin Released Not_Distributed
    bom 11i.BOM.B 1348543 05-SEP-00 Checkin Released By_Metalink
    bom 11i.BOM.C 1426184 13-NOV-00 Checkin Released By_Metalink
    bom 11i.BOM.D 1538064 19-DEC-00 Checkin Released Not_Distributed
    bom 11i.BOM.E 1697764 01-MAY-01 Checkin Released Not_Distributed
    bom 11i.BOM.F 1886016 20-AUG-01 Checkin Released Not_Distributed
    bom 11i.BOM.G 2065003 30-JAN-02 Checkin Released Not_Distributed
    bom 11i.BOM.H 2248494 27-JUN-02 Checkin Released Not_Distributed
    bom 11i.BOM.I 2691149 10-JUN-03 Checkin Released By_Dev
    bom 11i.BOM.J 2768762 17-SEP-04 Checkin Released Not_Distributed
    bpa 11i.BPA.A 3391562 06-FEB-04 Checkin Released By_Metalink
    bpa 11i.BPA.B 3388258 05-NOV-04 Checkin Released By_Metalink
    bpa 11i.BPA.C 4017028 29-APR-05 Checkin Released By_Metalink
    bsc 11i.BSC.A 1289916 07-JUL-00 Checkin Released Not_Distributed
    bsc 11i.BSC.B 1351647 15-FEB-01 Checkin Released By_Dev
    bsc 11i.BSC.C 1880500 31-AUG-01 Checkin Obsoleted By_Metalink
    bsc 11i.BSC.D 2176458 30-AUG-02 Checkin Obsoleted By_Metalink
    bsc 11i.BSC.E 2692588 16-APR-03 Checkin Released By_Metalink
    bsc 11i.BSC.F 3053020 17-OCT-03 Checkin Obsoleted By_Metalink
    bsc 11i.BSC.G 3335097 14-APR-04 Checkin Released By_Metalink
    bsc 11i.BSC.H 3673035 15-OCT-04 Checkin Released By_Dev
    bsc 11i.BSC.I 3894719 14-FEB-05 Checkin Released By_Metalink
    bsc 11i.BSC.I.1 4430295 24-JUN-05 Checkin Obsoleted Not_Distributed
    bsc 11i.BSC.I.10 5046305 27-FEB-06 Checkin Released By_Metalink
    bsc 11i.BSC.I.11 5065464 16-MAR-06 Checkin Obsoleted By_Dev
    bsc 11i.BSC.I.12 5100729 05-APR-06 Checkin Released By_Metalink
    bsc 11i.BSC.I.2 4432193 24-JUN-05 Checkin Obsoleted By_Metalink
    bsc 11i.BSC.I.3 4455880 27-JUL-05 Checkin Obsoleted By_Metalink
    bsc 11i.BSC.I.4 4520849 01-AUG-05 Checkin Obsoleted By_Metalink
    bsc 11i.BSC.I.5 4537117 30-SEP-05 Checkin Obsoleted By_Metalink
    bsc 11i.BSC.I.6 4643886 28-OCT-05 Checkin Obsoleted By_Metalink
    bsc 11i.BSC.I.7 4696636 30-NOV-05 Checkin Obsoleted By_Metalink
    bsc 11i.BSC.I.8 4869037 23-DEC-05 Checkin Obsoleted By_Metalink
    bsc 11i.BSC.I.9 4907668 17-FEB-06 Checkin Obsoleted By_Metalink
    bsc 11i.BSC.J 4455179 21-APR-06 Checkin Released By_Metalink
    bsc 11i.BSC.J.1 5173643 18-MAY-06 Checkin Released By_Metalink
    bsc 11i.BSC.J.2 5229796 27-JUN-06 Checkin Released By_Metalink
    bsc 11i.BSC.J.3 5358428 28-JUL-06 Checkin Released By_Metalink
    bsc 11i.BSC.J.4 5417064 01-SEP-06 Checkin Released By_Metalink
    bsc 11i.BSC.J.5 5506382 22-NOV-06 Checkin Released By_Metalink
    bsc 11i.BSC.J.6 5702530 21-FEB-07 Checkin Released By_Metalink
    bsc 11i.BSC.J.7 5912304 14-JUN-07 Checkin Released By_Metalink
    bsc 11i.BSC.J.8 6617861 20-NOV-07 Checkin Released By_Metalink
    cac 11i.CAC.A 3234006 12-DEC-03 Checkin Released By_Metalink
    cac 11i.CAC.B 3264822 04-NOV-04 Checkin Released By_Metalink
    cac 11i.CAC.C 3995315 28-JUL-05 Checkin Released By_Metalink
    cct 11i.CCT.A 1306441 21-JUN-00 Checkin Obsoleted Not_Distributed
    cct 11i.CCT.B 1339470 07-OCT-00 Checkin Obsoleted Not_Distributed
    cct 11i.CCT.C 1486477 04-DEC-00 Checkin Obsoleted By_Metalink
    cct 11i.CCT.D 1531338 04-JAN-01 Checkin Obsoleted By_Metalink
    cct 11i.CCT.E 1563322 27-FEB-01 Checkin Obsoleted By_Metalink
    cct 11i.CCT.F 1671900 20-MAR-01 Checkin Obsoleted By_Metalink
    cct 11i.CCT.G 1699613 19-APR-01 Checkin Obsoleted By_Metalink
    cct 11i.CCT.H 1717715 06-MAY-01 Checkin Obsoleted By_Metalink
    cct 11i.CCT.I 1770998 21-MAY-01 Checkin Obsoleted By_Metalink
    cct 11i.CCT.J 1794645 26-JUN-01 Checkin Released By_Dev
    cct 11i.CCT.K 1862721 19-JUL-01 Checkin Obsoleted By_Dev
    cct 11i.CCT.L 1912585 27-SEP-01 Checkin Released By_Dev
    cct 11i.CCT.M 2160934 31-DEC-01 Checkin Released By_Dev
    cct 11i.CCT.N 2165879 27-FEB-02 Checkin Released By_Dev
    cct 11i.CCT.O 2242802 24-MAY-02 Checkin Released By_Dev
    cct 11i.CCT.P 2481890 28-JUL-02 Checkin Released By_Dev
    cct 11i.CCT.Q 2485142 02-DEC-02 Checkin Released By_Dev
    cct 11i.CCT.R 2687381 29-OCT-03 Checkin Released By_Dev
    cc_pf 11i.CC_PF.A 2208036 01-FEB-02 Checkin Released By_Metalink
    cc_pf 11i.CC_PF.B 2213770 11-APR-02 Checkin Released By_Dev
    cc_pf 11i.CC_PF.C 2374818 15-JUL-02 Checkin Released By_Metalink
    cc_pf 11i.CC_PF.P 2484627 22-OCT-02 Checkin Released By_Metalink
    cc_pf 11i.CC_PF.Q 2644375 18-JUN-03 Checkin Released By_Metalink
    cc_pf 11i.CC_PF.R 3202573 05-NOV-04 Checkin Released By_Metalink
    cdr 11i.CDR.A 4189400 21-SEP-06 Checkin Released By_Dev
    cdr 11i.CDR.A.1 5447496 01-DEC-06 Checkin Released Not_Distributed
    cdr 11i.CDR.A.2 5507719 01-DEC-06 Checkin Released Not_Distributed
    cdr 11i.CDR.A.3 5666810 01-DEC-06 Checkin Released By_Metalink
    cdr 11i.CDR.B 5460707 19-MAR-07 Checkin Released By_Dev
    cdr 11i.CDR.C 6138538 21-DEC-07 Checkin Released By_Dev
    cdr 11i.CDR.C.1 6936773 02-JUN-08 Checkin Released By_Metalink
    ce 11i.CE.A 1289413 01-SEP-00 Checkin Released Not_Distributed
    ce 11i.CE.B 1421641 17-NOV-00 Checkin Released Not_Distributed
    ce 11i.CE.C 1476747 29-DEC-00 Checkin Released Not_Distributed
    ce 11i.CE.D 1527618 30-APR-01 Checkin Released Not_Distributed
    ce 11i.CE.E 1907478 07-SEP-01 Checkin Released Not_Distributed
    ce 11i.CE.F 2167032 13-FEB-02 Checkin Released Not_Distributed
    ce 11i.CE.G 2243908 01-APR-02 Checkin Released By_Dev
    ce 11i.CE.H 2488730 02-APR-03 Checkin Released By_Dev
    ce 11i.CE.I 2864454 12-DEC-03 Checkin Released By_Dev
    ce 11i.CE.J 3151412 18-OCT-04 Checkin Released Not_Distributed
    ce 11i.CE.K 3617940 29-APR-05 Checkin Released Not_Distributed
    chv 11i.CHV.A 1716488 02-MAY-01 Checkin Released Not_Distributed
    chv 11i.CHV.B 1885987 22-AUG-01 Checkin Released Not_Distributed
    chv 11i.CHV.C 2103370 30-JAN-02 Checkin Released Not_Distributed
    chv 11i.CHV.D 2236039 15-AUG-02 Checkin Released Not_Distributed
    chv 11i.CHV.E 2478612 10-JUN-03 Checkin Released By_Dev
    chv 11i.CHV.F 3212221 17-SEP-04 Checkin Released Not_Distributed
    cle 11i.CLE.A 5093864 26-MAY-06 Checkin Obsoleted By_Metalink
    cle 11i.CLE.B 5251736 01-JUN-06 Checkin Obsoleted By_Metalink
    cln 11i.CLN.A 2471486 26-JUN-03 Checkin Released By_Metalink
    cln 11i.CLN.B 2734844 20-NOV-03 Checkin Released By_Metalink
    cln 11i.CLN.C 3231176 11-OCT-04 Checkin Released Not_Distributed
    cn 11i.CN.A 1306448 21-JUN-00 Checkin Released Not_Distributed
    cn 11i.CN.B 1339127 07-OCT-00 Checkin Released Not_Distributed
    cn 11i.CN.C 1566230 18-FEB-01 Checkin Released By_Dev
    cn 11i.CN.D 1903542 03-OCT-01 Checkin Released By_Dev
    cn 11i.CN.E 2205314 11-FEB-02 Checkin Released By_Dev
    cn 11i.CN.F 2384176 11-OCT-02 Checkin Released By_Dev
    cn 11i.CN.G 2642404 11-JUN-03 Checkin Released By_Dev
    cn 11i.CN.H 3061842 18-MAR-04 Checkin Released By_Metalink
    com_pf 11i.COM_PF.A 2036253 04-NOV-01 Checkin Released By_Dev
    crp 11i.CRP.A 1354041 07-OCT-00 Checkin Released By_Metalink
    crp 11i.CRP.B 1703090 01-MAY-01 Checkin Released Not_Distributed
    crp 11i.CRP.C 2075371 30-JAN-02 Checkin Released Not_Distributed
    crp 11i.CRP.D 2248435 27-JUN-02 Checkin Released By_Dev
    crp 11i.CRP.E 2691177 10-JUN-03 Checkin Released By_Dev
    crp 11i.CRP.F 2770107 17-SEP-04 Checkin Released Not_Distributed
    cs 11i.CS.A 1307411 21-JUN-00 Checkin Released Not_Distributed
    cs 11i.CS.B 1338804 07-OCT-00 Checkin Released Not_Distributed
    cs 11i.CS.C 1581141 27-FEB-01 Checkin Released By_Metalink
    cs 11i.CS.D 1779170 06-AUG-01 Checkin Released By_Dev
    cs 11i.CS.E 1921092 29-AUG-01 Checkin Released By_Dev
    cs 11i.CS.F 1965312 18-SEP-01 Checkin Released By_Dev
    cs 11i.CS.G 2013123 07-OCT-01 Checkin Released By_Dev
    cs 11i.CS.H 2139888 31-JAN-02 Checkin Released By_Dev
    cs 11i.CS.I 2221042 08-MAR-02 Checkin Released By_Dev
    cs 11i.CS.J 2269057 30-MAR-02 Checkin Released By_Dev
    cs 11i.CS.K 2320293 02-MAY-02 Checkin Released By_Dev
    cs 11i.CS.L 2381835 04-JUN-02 Checkin Released By_Dev
    cs 11i.CS.M 2419063 01-JUL-02 Checkin Released By_Dev
    cs 11i.CS.N 2483732 05-AUG-02 Checkin Released By_Dev
    cs 11i.CS.O 2315582 11-DEC-02 Checkin Released By_Dev
    cs 11i.CS.P 2707706 11-JUN-03 Checkin Released By_Dev
    cs 11i.CS.Q 3022934 17-SEP-04 Checkin Released Not_Distributed
    csc 11i.CSC.A 1306747 21-JUN-00 Checkin Released Not_Distributed
    csc 11i.CSC.B 1339847 07-OCT-00 Checkin Released Not_Distributed
    csc 11i.CSC.C 1581135 27-FEB-01 Checkin Released By_Metalink
    csc 11i.CSC.D 1695227 06-AUG-01 Checkin Released By_Dev
    csc 11i.CSC.E 1921294 27-AUG-01 Checkin Released By_Dev
    csc 11i.CSC.F 1960898 02-OCT-01 Checkin Released By_Dev
    csc 11i.CSC.G 2026527 06-OCT-01 Checkin Released By_Dev
    csc 11i.CSC.H 2141380 01-FEB-02 Checkin Released By_Dev
    csc 11i.CSC.I 2228368 08-MAR-02 Checkin Released By_Dev
    csc 11i.CSC.J 2268815 29-MAR-02 Checkin Released By_Dev
    csc 11i.CSC.K 2320389 01-MAY-02 Checkin Released By_Dev
    csc 11i.CSC.L 2381837 04-JUN-02 Checkin Released By_Dev
    csc 11i.CSC.M 2419069 01-JUL-02 Checkin Released By_Dev
    csc 11i.CSC.N 2483733 05-AUG-02 Checkin Released By_Dev
    csc 11i.CSC.O 2592183 10-DEC-02 Checkin Released By_Dev
    csc 11i.CSC.P 2707217 10-JUN-03 Checkin Released By_Dev
    csc 11i.CSC.Q 3014206 17-SEP-04 Checkin Released Not_Distributed
    csd 11i.CSD.A 1306794 21-JUN-00 Checkin Released Not_Distributed
    csd 11i.CSD.B 1339668 07-OCT-00 Checkin Released Not_Distributed
    csd 11i.CSD.C 1580944 27-FEB-01 Checkin Released By_Metalink
    csd 11i.CSD.D 1806155 08-AUG-01 Checkin Released Not_Distributed
    csd 11i.CSD.E 1957339 06-SEP-01 Checkin Released By_Dev
    csd 11i.CSD.F 1980409 10-SEP-01 Checkin Released By_Dev
    csd 11i.CSD.G 1986689 28-SEP-01 Checkin Released By_Dev
    csd 11i.CSD.H 2022223 06-OCT-01 Checkin Released By_Dev
    csd 11i.CSD.I 2139165 31-JAN-02 Checkin Released By_Dev
    csd 11i.CSD.J 2221056 08-MAR-02 Checkin Released By_Dev
    csd 11i.CSD.K 2269011 29-MAR-02 Checkin Released By_Dev
    csd 11i.CSD.L 2318184 26-APR-02 Checkin Released By_Dev
    csd 11i.CSD.M 2381856 23-MAY-02 Checkin Released By_Dev
    csd 11i.CSD.N 2417990 28-JUN-02 Checkin Released By_Dev
    csd 11i.CSD.O 2480165 26-JUL-02 Checkin Released By_Dev
    csd 11i.CSD.P 2485133 31-JUL-02 Checkin Released By_Dev
    csd 11i.CSD.Q 2592184 13-DEC-02 Checkin Released By_Dev
    csd 11i.CSD.R 2712429 10-JUN-03 Checkin Released By_Dev
    csd 11i.CSD.S 3215147 17-SEP-04 Checkin Released Not_Distributed
    cse 11i.CSE.A 1846997 25-JUN-01 Checkin Released By_Dev
    cse 11i.CSE.B 1895339 08-AUG-01 Checkin Released Not_Distributed
    cse 11i.CSE.C 1925381 15-AUG-01 Checkin Released By_Dev
    cse 11i.CSE.D 1937978 06-SEP-01 Checkin Released By_Dev
    cse 11i.CSE.E 1979670 28-SEP-01 Checkin Released By_Dev
    cse 11i.CSE.F 2022458 05-OCT-01 Checkin Released By_Dev
    cse 11i.CSE.G 2136959 01-FEB-02 Checkin Released By_Dev
    cse 11i.CSE.H 2242084 08-MAR-02 Checkin Released By_Dev
    cse 11i.CSE.I 2261036 29-MAR-02 Checkin Released By_Dev
    cse 11i.CSE.J 2323311 25-APR-02 Checkin Released Not_Distributed
    cse 11i.CSE.K 2382060 02-JUN-02 Checkin Released By_Dev
    cse 11i.CSE.L 2431115 04-JUL-02 Checkin Released By_Dev
    cse 11i.CSE.M 2460238 02-AUG-02 Checkin Released By_Dev
    cse 11i.CSE.N 2507649 30-AUG-02 Checkin Released By_Dev
    cse 11i.CSE.O 2696915 10-JUN-03 Checkin Released By_Dev
    cse 11i.CSE.P 3195218 17-SEP-04 Checkin Released Not_Distributed
    csf 11i.CSF.A 1306091 21-JUN-00 Checkin Released Not_Distributed
    csf 11i.CSF.B 1339243 07-OCT-00 Checkin Released Not_Distributed
    csf 11i.CSF.C 1580819 05-FEB-01 Checkin Obsoleted By_Metalink
    csf 11i.CSF.D 1634215 27-FEB-01 Checkin Released By_Metalink
    csf 11i.CSF.E 1668426 13-MAR-01 Checkin Released By_Metalink
    csf 11i.CSF.F 1718901 20-APR-01 Checkin Released By_Metalink
    csf 11i.CSF.G 1768618 23-MAY-01 Checkin Released By_Metalink
    csf 11i.CSF.H 1818541 19-JUN-01 Checkin Released By_Metalink
    csf 11i.CSF.I 1885277 24-JUL-01 Checkin Released Not_Distributed
    csf 11i.CSF.J 1900711 31-AUG-01 Checkin Released Not_Distributed
    csf 11i.CSF.K 1969294 05-OCT-01 Checkin Released By_Dev
    csf 11i.CSF.L 2139908 01-FEB-02 Checkin Released By_Dev
    csf 11i.CSF.M 2230013 29-MAR-02 Checkin Released By_Dev
    csf 11i.CSF.N 2341674 01-MAY-02 Checkin Released By_Dev
    csf 11i.CSF.O 2375508 04-JUN-02 Checkin Released By_Dev
    csf 11i.CSF.P 2415471 01-JUL-02 Checkin Released By_Dev
    csf 11i.CSF.Q 2595798 10-DEC-02 Checkin Released By_Dev
    csf 11i.CSF.R 2702303 10-JUN-03 Checkin Released By_Dev
    csf 11i.CSF.S 3132186 17-SEP-04 Checkin Released Not_Distributed
    csi 11i.CSI.A 1898287 08-AUG-01 Checkin Released Not_Distributed
    csi 11i.CSI.B 1925972 14-AUG-01 Checkin Released By_Dev
    csi 11i.CSI.C 1938341 17-AUG-01 Checkin Obsoleted By_Dev
    csi 11i.CSI.D 1944898 29-AUG-01 Checkin Released By_Dev
    csi 11i.CSI.E 1979759 14-SEP-01 Checkin Released By_Dev
    csi 11i.CSI.F 2023695 06-OCT-01 Checkin Released By_Dev
    csi 11i.CSI.G 2136956 01-FEB-02 Checkin Released By_Dev
    csi 11i.CSI.H 2242076 08-MAR-02 Checkin Released By_Metalink
    csi 11i.CSI.I 2271035 29-MAR-02 Checkin Released By_Metalink
    csi 11i.CSI.J 2323320 26-APR-02 Checkin Released By_Metalink
    csi 11i.CSI.K 2382071 04-JUN-02 Checkin Released By_Metalink
    csi 11i.CSI.L 2431149 04-JUL-02 Checkin Released By_Metalink
    csi 11i.CSI.M 2460244 02-AUG-02 Checkin Released By_Metalink
    csi 11i.CSI.N 2507613 30-AUG-02 Checkin Released By_Metalink
    csi 11i.CSI.O 2696911 20-JUN-03 Checkin Released By_Metalink
    csi 11i.CSI.P 3195214 17-SEP-04 Checkin Released Not_Distributed
    csk 11i.CSK.A 2712365 10-JUN-03 Checkin Released By_Dev
    csk 11i.CSK.B 3215230 17-SEP-04 Checkin Released Not_Distributed
    csl 11i.CSL.A 1969332 05-OCT-01 Checkin Released By_Dev
    csl 11i.CSL.D 2258969 10-MAR-02 Checkin Released By_Metalink
    csl 11i.CSL.E 2301142 03-APR-02 Checkin Released By_Metalink
    csl 11i.CSL.F 2354454 01-MAY-02 Checkin Released By_Metalink
    csl 11i.CSL.G 2385366 13-JUN-02 Checkin Released By_Metalink
    csl 11i.CSL.H 2426720 29-AUG-02 Checkin Released By_Dev
    csl 11i.CSL.I 2507689 15-OCT-02 Checkin Released By_Metalink
    csl 11i.CSL.J 2661236 11-JUN-03 Checkin Released By_Metalink
    csl 11i.CSL.K 3263427 04-NOV-04 Checkin Released By_Metalink
    csm 11i.CSM.A 2468093 29-AUG-02 Checkin Released By_Dev
    csm 11i.CSM.B 2508309 15-OCT-02 Checkin Released By_Metalink
    csm 11i.CSM.C 2661240 11-JUN-03 Checkin Released By_Metalink
    csm 11i.CSM.D 3263430 05-NOV-04 Checkin Released By_Metalink
    csp 11i.CSP.A 1306891 21-JUN-00 Checkin Released Not_Distributed
    csp 11i.CSP.B 1339729 07-OCT-00 Checkin Released Not_Distributed
    csp 11i.CSP.C 1580960 27-FEB-01 Checkin Released By_Metalink
    csp 11i.CSP.D 1883332 08-AUG-01 Checkin Released By_Dev
    csp 11i.CSP.E 1926092 06-SEP-01 Checkin Released By_Dev
    csp 11i.CSP.F 1980566 14-SEP-01 Checkin Released By_Dev
    csp 11i.CSP.G 2018211 01-OCT-01 Checkin Released By_Dev
    csp 11i.CSP.H 2022505 06-OCT-01 Checkin Released By_Dev
    csp 11i.CSP.I 2139921 31-JAN-02 Checkin Released By_Dev
    csp 11i.CSP.J 2221060 08-MAR-02 Checkin Released By_Dev
    csp 11i.CSP.K 2268782 29-MAR-02 Checkin Released By_Dev
    csp 11i.CSP.L 2320362 01-MAY-02 Checkin Released By_Dev
    csp 11i.CSP.M 2381839 04-JUN-02 Checkin Released By_Dev
    csp 11i.CSP.N 2419058 01-JUL-02 Checkin Released By_Dev
    csp 11i.CSP.O 2483735 05-AUG-02 Checkin Released By_Dev
    csp 11i.CSP.P 2592240 10-DEC-02 Checkin Released By_Dev
    csp 11i.CSP.Q 2707263 10-JUN-03 Checkin Released By_Dev
    csp 11i.CSP.R 3014210 17-SEP-04 Checkin Released Not_Distributed
    csr 11i.CSR.A 1297785 21-JUN-00 Checkin Released Not_Distributed
    csr 11i.CSR.B 1339240 07-OCT-00 Checkin Released Not_Distributed
    csr 11i.CSR.C 1580826 05-FEB-01 Checkin Obsoleted By_Metalink
    csr 11i.CSR.D 1634221 27-FEB-01 Checkin Released By_Metalink
    csr 11i.CSR.E 1668432 13-MAR-01 Checkin Released By_Metalink
    csr 11i.CSR.F 1718902 20-APR-01 Checkin Released By_Metalink
    csr 11i.CSR.G 1768619 23-MAY-01 Checkin Released By_Metalink
    csr 11i.CSR.H 1884278 31-AUG-01 Checkin Released Not_Distributed
    csr 11i.CSR.I 1969295 05-OCT-01 Checkin Released By_Dev
    csr 11i.CSR.J 2139913 31-JAN-02 Checkin Released By_Dev
    csr 11i.CSR.K 2595799 10-DEC-02 Checkin Released By_Dev
    csr 11i.CSR.L 2702306 10-JUN-03 Checkin Released By_Dev
    csr 11i.CSR.M 3132185 17-SEP-04 Checkin Released Not_Distributed
    css 11i.CSS.A 1306895 21-JUN-00 Checkin Released Not_Distributed
    css 11i.CSS.B 1338820 07-OCT-00 Checkin Released Not_Distributed
    css 11i.CSS.C 1581805 19-JUN-01 Checkin Released By_Metalink
    css 11i.CSS.D 1840954 02-AUG-01 Checkin Released By_Metalink
    css 11i.CSS.E 1917552 02-NOV-01 Checkin Released By_Dev
    css 11i.CSS.F 2139225 17-JUN-02 Checkin Released By_Dev
    css 11i.CSS.G 2420704 01-JUL-02 Checkin Released By_Dev
    css 11i.CSS.H 2569000 11-DEC-02 Checkin Released By_Dev
    css 11i.CSS.I 2708002 10-JUN-03 Checkin Released By_Dev
    css 11i.CSS.J 3214922 17-SEP-04 Checkin Released Not_Distributed
    csz 11i.CSZ.A 4378713 06-JUN-05 Checkin Released By_Metalink
    ctb 11i.CTB.A 2655715 23-DEC-02 Checkin Released Not_Distributed
    ctb 11i.CTB.B 2725762 06-JUN-03 Checkin Released By_Dev
    ctb 11i.CTB.C 2993316 22-SEP-03 Checkin Released By_Dev
    ctb 11i.CTB.D 3316717 01-APR-04 Checkin Released By_Dev
    ctb 11i.CTB.E 3435718 19-AUG-05 Checkin Released Not_Distributed
    ctb 11i.CTB.E.1 4570055 05-OCT-05 Checkin Released Not_Distributed
    ctb 11i.CTB.E.2 4620553 14-APR-06 Checkin Released Not_Distributed
    ctb 11i.CTB.E.3 5178840 16-FEB-07 Checkin Released Not_Distributed
    cua 11i.CUA.A 1345691 01-SEP-00 Checkin Released By_Metalink
    cua 11i.CUA.B 1422989 17-NOV-00 Checkin Released By_Metalink
    cue 11i.CUE.A 1656580 27-FEB-01 Checkin Released By_Dev
    cug 11i.CUG.A 1849856 25-JUN-01 Checkin Released By_Dev
    cug 11i.CUG.B 1901557 07-AUG-01 Checkin Released Not_Distributed
    cug 11i.CUG.C 1925503 08-AUG-01 Checkin Released Not_Distributed
    cug 11i.CUG.D 1927029 10-SEP-01 Checkin Released By_Dev
    cug 11i.CUG.E 1986682 28-SEP-01 Checkin Released By_Dev
    cug 11i.CUG.F 2022219 06-OCT-01 Checkin Released By_Dev
    cug 11i.CUG.G 2139170 01-FEB-02 Checkin Released By_Dev
    cug 11i.CUG.H 2221046 08-MAR-02 Checkin Released By_Dev
    cug 11i.CUG.I 2268941 29-MAR-02 Checkin Released By_Dev
    cug 11i.CUG.J 2320664 29-APR-02 Checkin Released By_Dev
    cug 11i.CUG.K 2380615 23-MAY-02 Checkin Released By_Dev
    cug 11i.CUG.L 2416933 28-JUN-02 Checkin Released By_Dev
    cug 11i.CUG.M 2483054 26-JUL-02 Checkin Released By_Dev
    cug 11i.CUG.N 2486390 31-JUL-02 Checkin Released By_Dev
    cug 11i.CUG.O 2592161 09-DEC-02 Checkin Released By_Dev
    cug 11i.CUG.P 2700678 10-JUN-03 Checkin Released By_Dev
    cug 11i.CUG.Q 3014213 17-SEP-04 Checkin Released Not_Distributed
    cun 11i.CUN.A 1306462 21-JUN-00 Checkin Released Not_Distributed
    cun 11i.CUN.B 1345781 07-OCT-00 Checkin Released Not_Distributed
    cun 11i.CUN.C 1581102 27-FEB-01 Checkin Released By_Metalink
    cun 11i.CUN.D 1838441 25-JUN-01 Checkin Released By_Dev
    cun 11i.CUN.E 1895475 08-AUG-01 Checkin Released Not_Distributed
    cun 11i.CUN.F 1927148 15-AUG-01 Checkin Released By_Dev
    cun 11i.CUN.G 1938197 06-SEP-01 Checkin Released By_Dev
    cun 11i.CUN.H 1980389 28-SEP-01 Checkin Released By_Dev
    cun 11i.CUN.I 2022453 05-OCT-01 Checkin Released By_Dev
    cun 11i.CUN.J 2136960 01-FEB-02 Checkin Released By_Dev
    cz 11i.CZ.A 1288132 25-MAY-00 Checkin Released By_Metalink
    cz 11i.CZ.B 1330649 11-SEP-00 Checkin Released By_Metalink
    cz 11i.CZ.C 1426250 13-NOV-00 Checkin Released By_Metalink
    cz 11i.CZ.D 1538246 23-JAN-01 Checkin Released By_Metalink
    cz 11i.CZ.E 1696608 10-MAY-01 Checkin Released By_Metalink
    cz 11i.CZ.F 1886047 28-AUG-01 Checkin Released By_Metalink
    cz 11i.CZ.G 2112122 29-JAN-02 Checkin Released By_Metalink
    cz 11i.CZ.H 2250291 09-AUG-02 Checkin Released By_Metalink
    cz 11i.CZ.I 2690432 20-JUN-03 Checkin Released By_Metalink
    cz 11i.CZ.J 2770105 17-SEP-04 Checkin Released Not_Distributed
    ddd 11i.DDD.A 2714479 28-MAY-03 Checkin Released By_Metalink
    ddd 11i.DDD.B 3001761 31-JUL-03 Checkin Released By_Metalink
    ddd 11i.DDD.C 3298209 08-OCT-04 Checkin Released By_Dev
    ddd 11i.DDD.D 3981538 01-FEB-05 Checkin Released By_Dev
    ddd 11i.DDD.E 4187155 27-APR-05 Checkin Released Not_Distributed
    dmf_pf 11i.DMF_PF.D 1551167 31-JAN-01 Checkin Released By_Metalink
    dmf_pf 11i.DMF_PF.E 1745355 24-MAY-01 Checkin Released By_Metalink
    dmf_pf 11i.DMF_PF.F 1891480 31-AUG-01 Checkin Released By_Metalink
    dmf_pf 11i.DMF_PF.G 2133107 01-FEB-02 Checkin Released By_Metalink
    dmf_pf 11i.DMF_PF.H 2248408 17-AUG-02 Checkin Released By_Metalink
    dmf_pf 11i.DMF_PF.I 2697753 23-JUN-03 Checkin Released By_Metalink
    dmf_pf 11i.DMF_PF.J 2771139 17-SEP-04 Checkin Released Not_Distributed
    dna 11i.DNA.A 4189507 27-APR-05 Checkin Released Not_Distributed
    dt 11i.DT.A 1343114 28-SEP-00 Checkin Released By_Metalink
    dt 11i.DT.B 1419413 08-MAY-01 Checkin Released Not_Distributed
    dt 11i.DT.C 2004061 03-OCT-01 Checkin Released Not_Distributed
    dt 11i.DT.D 2156866 21-FEB-02 Checkin Released Not_Distributed
    dt 11i.DT.E 2473476 27-NOV-02 Checkin Released Not_Distributed
    dt 11i.DT.F 2803505 19-MAY-03 Checkin Released Not_Distributed
    dt 11i.DT.G 3125842 05-DEC-03 Checkin Released Not_Distributed
    dt 11i.DT.H 3418248 27-JUL-04 Checkin Released Not_Distributed
    dt 11i.DT.I 3988383 08-MAR-05 Checkin Released Not_Distributed
    dt 11i.DT.J 4289862 30-JUN-05 Checkin Released Not_Distributed
    dt 11i.DT.J.1 5059518 31-MAY-06 Checkin Released Not_Distributed
    dt 11i.DT.J.2 5917513 22-JUN-07 Checkin Released Not_Distributed
    dt 11i.DT.J.3 6964728 02-JUL-08 Checkin Released Not_Distributed
    eaa 11i.EAA.A 1550940 02-JAN-01 Checkin Released By_Metalink
    eaa 11i.EAA.B 1950474 04-SEP-01 Checkin Released By_Metalink
    eam 11i.EAM.G 2128902 01-FEB-02 Checkin Released By_Dev
    eam 11i.EAM.H 2250401 19-AUG-02 Checkin Released By_Metalink
    eam 11i.EAM.I 2478472 23-JUN-03 Checkin Released By_Metalink
    eam 11i.EAM.J 3200674 17-SEP-04 Checkin Released Not_Distributed
    ec 11i.EC.A 1288209 24-MAY-00 Checkin Released By_Metalink
    ec 11i.EC.B 1352783 08-SEP-00 Checkin Released By_Metalink
    ec 11i.EC.C 1553933 02-FEB-01 Checkin Released By_Metalink
    ec 11i.EC.D 1931904 04-SEP-01 Checkin Released By_Metalink
    ec 11i.EC.E 2408170 05-SEP-02 Checkin Released By_Metalink
    ec 11i.EC.F 2662787 11-JUN-03 Checkin Released By_Metalink
    ec 11i.EC.G 3261243 04-NOV-04 Checkin Released By_Metalink
    ecx 11i.ECX.A 1960477 07-SEP-01 Checkin Released By_Metalink
    ecx 11i.ECX.B 2206836 06-MAR-02 Checkin Released By_Metalink
    ecx 11i.ECX.C 2440710 04-SEP-02 Checkin Released By_Metalink
    edr 11i.EDR.A 2591001 30-DEC-02 Checkin Released By_Metalink
    edr 11i.EDR.B 2663977 08-JUL-03 Checkin Released By_Metalink
    edr 11i.EDR.C 2922221 17-SEP-04 Checkin Released Not_Distributed
    edw 11i.EDW.A 1863365 04-SEP-01 Checkin Obsoleted By_Metalink
    edw 11i.EDW.B 2182987 30-AUG-02 Checkin Obsoleted By_Metalink
    edw 11i.EDW.C 2700670 16-MAY-03 Checkin Released By_Dev
    edw 11i.EDW.D 3295042 11-OCT-04 Checkin Released By_Dev
    ego 11i.EGO.A 2714179 11-JUN-03 Checkin Released By_Dev
    ego 11i.EGO.B 3001751 31-JUL-03 Checkin Released Not_Distributed
    ego 11i.EGO.C 3298205 08-OCT-04 Checkin Released By_Dev
    ego 11i.EGO.D 3961504 01-FEB-05 Checkin Released By_Dev
    ego 11i.EGO.E 4164205 27-APR-05 Checkin Released Not_Distributed
    eng 11i.ENG.A 1353483 05-SEP-00 Checkin Released By_Metalink
    eng 11i.ENG.B 1426213 13-NOV-00 Checkin Released By_Metalink
    eng 11i.ENG.C 1538273 19-DEC-00 Checkin Released Not_Distributed
    eng 11i.ENG.D 1697662 01-MAY-01 Checkin Released Not_Distributed
    eng 11i.ENG.E 1886068 21-AUG-01 Checkin Released Not_Distributed
    eng 11i.ENG.F 2065670 29-JAN-02 Checkin Released Not_Distributed
    eng 11i.ENG.G 2248518 27-JUN-02 Checkin Released By_Dev
    eng 11i.ENG.H 2371323 10-JUN-03 Checkin Released By_Dev
    eng 11i.ENG.I 2769980 17-SEP-04 Checkin Released Not_Distributed
    eni 11i.ENI.A 1801789 02-JUL-01 Checkin Released Not_Distributed
    eni 11i.ENI.B 1953413 08-SEP-01 Checkin Obsoleted By_Metalink
    eni 11i.ENI.C 1984648 17-OCT-01 Checkin Obsoleted By_Metalink
    eni 11i.ENI.D 2168529 15-JAN-02 Checkin Released By_Dev
    eni 11i.ENI.E 2184509 16-JUL-02 Checkin Obsoleted By_Metalink
    eni 11i.ENI.F 2714518 11-JUN-03 Checkin Released By_Dev
    eni 11i.ENI.G 3012003 31-JUL-03 Checkin Released Not_Distributed
    eni 11i.ENI.H 3315665 08-OCT-04 Checkin Released By_Dev
    ews 11i.EWS.A 1863414 04-SEP-01 Checkin Obsoleted By_Metalink
    ews 11i.EWS.B 2182833 30-AUG-02 Checkin Obsoleted By_Metalink
    ews 11i.EWS.C 2700672 16-MAY-03 Checkin Released By_Dev
    ews 11i.EWS.D 3295045 11-OCT-04 Checkin Released By_Dev
    exchg_pf 11i.EXCHG_PF.A 1865096 20-JUL-01 Checkin Released By_Metalink
    exchg_pf 11i.EXCHG_PF.B 1985958 25-SEP-01 Checkin Released By_Metalink
    exchg_pf 11i.EXCHG_PF.C 2147366 31-JAN-02 Checkin Released By_Metalink
    fa 11i.FA.A 1345671 01-SEP-00 Checkin Released Not_Distributed
    fa 11i.FA.B 1405177 15-OCT-00 Checkin Released Not_Distributed
    fa 11i.FA.C 1483543 10-NOV-00 Checkin Released Not_Distributed
    fa 11i.FA.D 1509971 15-JAN-01 Checkin Released Not_Distributed
    fa 11i.FA.E 1584277 02-FEB-01 Checkin Released Not_Distributed
    fa 11i.FA.F 1794240 21-JUN-01 Checkin Released Not_Distributed
    fa 11i.FA.G 1974812 12-NOV-01 Checkin Obsoleted By_Metalink
    fa 11i.FA.H 2115788 19-NOV-01 Checkin Released Not_Distributed
    fa 11i.FA.I 2117740 22-JAN-02 Checkin Released Not_Distributed
    fa 11i.FA.J 2230269 29-MAR-02 Checkin Released By_Dev
    fa 11i.FA.K 2398923 16-AUG-02 Checkin Released By_Dev
    fa 11i.FA.L 2488733 01-APR-03 Checkin Released By_Dev
    fa 11i.FA.M 2719046 30-APR-03 Checkin Released By_Metalink
    fa 11i.FA.N 2946358 12-DEC-03 Checkin Released By_Dev
    fa 11i.FA.O 3151587 18-OCT-04 Checkin Released Not_Distributed
    fa 11i.FA.P 3616017 29-APR-05 Checkin Released Not_Distributed
    fem 11i.FEM.A 1289912 05-MAY-00 Checkin Released By_Metalink
    fem 11i.FEM.B 3514740 27-AUG-04 Checkin Released Not_Distributed
    fem 11i.FEM.C 3701926 17-DEC-04 Checkin Released Not_Distributed
    fem 11i.FEM.D 4070479 13-SEP-05 Checkin Released Not_Distributed
    fem 11i.FEM.D.1 4684913 31-OCT-05 Checkin Released Not_Distributed
    fem 11i.FEM.D.1 5016223 26-MAY-06 Checkin Released By_Metalink
    fem 11i.FEM.D.10 6402403 31-DEC-07 Checkin Released By_Metalink
    fem 11i.FEM.D.2 4748190 01-DEC-05 Checkin Released Not_Distributed
    fem 11i.FEM.D.3 4862893 20-DEC-05 Checkin Released Not_Distributed
    fem 11i.FEM.D.4 4943697 01-FEB-06 Checkin Released Not_Distributed
    fem 11i.FEM.D.5 5015981 15-MAR-06 Checkin Released Not_Distributed
    fem 11i.FEM.D.6 5124355 14-APR-06 Checkin Released Not_Distributed
    fem 11i.FEM.D.7 5365609 14-JUL-06 Checkin Released By_Metalink
    fem 11i.FEM.D.8 5560579 24-OCT-06 Checkin Released By_Metalink
    fem 11i.FEM.D.9 5903364 03-MAY-07 Checkin Released By_Metalink
    ff 11i.FF.A 1343117 28-SEP-00 Checkin Released By_Metalink
    ff 11i.FF.B 1419422 08-MAY-01 Checkin Released Not_Distributed
    ff 11i.FF.C 2004077 03-OCT-01 Checkin Released Not_Distributed
    ff 11i.FF.D 2156864 21-FEB-02 Checkin Released Not_Distributed
    ff 11i.FF.E 2268446 09-MAY-02 Checkin Released Not_Distributed
    ff 11i.FF.F 2475632 27-NOV-02 Checkin Released Not_Distributed
    ff 11i.FF.G 2803574 19-MAY-03 Checkin Released Not_Distributed
    ff 11i.FF.H 3125846 05-DEC-03 Checkin Released Not_Distributed
    ff 11i.FF.I 3418286 27-JUL-04 Checkin Released Not_Distributed
    ff 11i.FF.J 3988387 08-MAR-05 Checkin Released Not_Distributed
    ff 11i.FF.K 4289856 30-JUN-05 Checkin Released Not_Distributed
    ff 11i.FF.K.1 5059541 31-MAY-06 Checkin Released Not_Distributed
    ff 11i.FF.K.2 5917523 22-JUN-07 Checkin Released Not_Distributed
    ff 11i.FF.K.3 6964733 02-JUL-08 Checkin Released Not_Distributed
    fii 11i.FII.A 1342177 01-SEP-00 Checkin Released Not_Distributed
    fii 11i.FII.B 1421650 17-NOV-00 Checkin Released Not_Distributed
    fii 11i.FII.C 1571062 02-FEB-01 Checkin Released Not_Distributed
    fii 11i.FII.D 1810489 24-AUG-01 Checkin Released Not_Distributed
    fii 11i.FII.E 2190434 16-AUG-02 Checkin Released Not_Distributed
    fii 11i.FII.F 2488736 18-APR-03 Checkin Released By_Metalink
    fii 11i.FII.G 2864462 05-NOV-04 Checkin Released By_Metalink
    finap_pf 11i.FINAP_PF.A 1712173 17-MAY-01 Checkin Obsoleted By_Metalink
    finar_pf 11i.FINAR_PF.A 1712197 17-MAY-01 Checkin Obsoleted By_Metalink
    fingb_pf 11i.FINGB_PF.A 1707601 17-MAY-01 Checkin Obsoleted By_Metalink
    fingb_pf 11i.FINGB_PF.B 1719741 09-APR-02 Checkin Obsoleted By_Metalink
    fin_pf 11i.FIN_PF.A 1807809 24-AUG-01 Checkin Released By_Metalink
    fin_pf 11i.FIN_PF.B 2218339 09-APR-02 Checkin Released By_Metalink
    fin_pf 11i.FIN_PF.C 2380068 16-AUG-02 Checkin Released By_Metalink
    fin_pf 11i.FIN_PF.D 2629235 01-APR-03 Patchset Closed Not_Distributed
    fin_pf 11i.FIN_PF.D.1 3016445 31-JUL-03 Checkin Released By_Metalink
    fin_pf 11i.FIN_PF.E 2842697 12-DEC-03 Checkin Released By_Metalink
    fin_pf 11i.FIN_PF.F 3153675 05-NOV-04 Checkin Released By_Metalink
    fin_pf 11i.FIN_PF.G 3653484 29-APR-05 Checkin Released By_Metalink
    flm 11i.FLM.A 1354044 05-SEP-00 Checkin Released By_Metalink
    flm 11i.FLM.B 1426170 13-NOV-00 Checkin Released By_Metalink
    flm 11i.FLM.C 1538271 20-DEC-00 Checkin Released Not_Distributed
    flm 11i.FLM.D 1697633 01-MAY-01 Checkin Released Not_Distributed
    flm 11i.FLM.E 1886265 21-AUG-01 Checkin Released Not_Distributed
    flm 11i.FLM.F 2075306 30-JAN-02 Checkin Released Not_Distributed
    flm 11i.FLM.G 2248440 27-JUN-02 Checkin Released By_Dev
    flm 11i.FLM.H 2479225 10-JUN-03 Checkin Released By_Dev
    flm 11i.FLM.I 2768757 17-SEP-04 Checkin Released Not_Distributed
    fnd 11i.FND.A 1344802 12-SEP-00 Checkin Released By_Metalink
    fnd 11i.FND.B 1454466 18-DEC-00 Checkin Released By_Metalink
    fnd 11i.FND.C 1553256 15-MAR-01 Checkin Released By_Metalink
    fnd 11i.FND.D 1932070 17-OCT-01 Checkin Released By_Metalink
    fnd 11i.FND.E 2154367 20-FEB-02 Checkin Released By_Metalink
    fnd 11i.FND.F 2404698 04-SEP-02 Checkin Released By_Metalink
    fnd 11i.FND.G 2655277 20-JUN-03 Checkin Released By_Metalink
    fnd 11i.FND.H 3262159 04-NOV-04 Checkin Released By_Metalink
    fpa 11i.FPA.B 4136223 15-MAY-05 Checkin Released By_Dev
    fpt 11i.FPT.A 1339478 07-OCT-00 Checkin Released Not_Distributed
    fpt 11i.FPT.B 1566176 27-FEB-01 Checkin Released By_Dev
    fpt 11i.FPT.C 1903552 10-JUL-02 Checkin Released By_Dev
    fpt 11i.FPT.D 2456473 11-OCT-02 Checkin Released By_Dev
    frm 11i.FRM.A 1338967 05-OCT-00 Checkin Released By_Metalink
    frm 11i.FRM.B 1512530 04-FEB-01 Checkin Released By_Metalink
    frm 11i.FRM.C 1931773 31-AUG-01 Checkin Released By_Metalink
    frm 11i.FRM.D 2450020 15-OCT-02 Checkin Released By_Dev
    frm 11i.FRM.E 2677848 21-NOV-02 Checkin Released By_Metalink
    frm 11i.FRM.F 2682790 24-NOV-02 Checkin Released By_Metalink
    frm 11i.FRM.G 3761838 15-NOV-04 Checkin Released By_Metalink
    frm 11i.FRM.H 4206794 20-SEP-06 Checkin Released By_Metalink
    fte 11i.FTE.A 1791728 02-JUL-01 Checkin Released Not_Distributed
    fte 11i.FTE.B 1952700 11-SEP-01 Checkin Released Not_Distributed
    fte 11i.FTE.C 2122883 30-JAN-02 Checkin Released Not_Distributed
    fte 11i.FTE.D 2254397 27-JUN-02 Checkin Released By_Dev
    fte 11i.FTE.E 2690445 10-JUN-03 Checkin Released By_Dev
    fte 11i.FTE.F 2770453 17-SEP-04 Checkin Released Not_Distributed
    ftp 11i.FTP.A 4069846 15-SEP-05 Checkin Released By_Dev
    ftp 11i.FTP.A.1 4688191 23-DEC-05 Checkin Released By_Dev
    ftp 11i.FTP.A.1 5147417 31-MAY-06 Checkin Released By_Dev
    ftp 11i.FTP.A.3 5258023 21-JUL-06 Checkin Released By_Dev
    ftp 11i.FTP.A.4 6711509 05-MAR-08 Checkin Released By_Metalink
    fv 11i.FV.A 1335577 15-DEC-00 Checkin Released By_Dev
    fv 11i.FV.B 1558776 05-FEB-01 Checkin Released Not_Distributed
    fv 11i.FV.C 1748881 25-JUN-01 Checkin Released Not_Distributed
    fv 11i.FV.D 1837509 27-AUG-01 Checkin Released Not_Distributed
    fv 11i.FV.E 1947442 29-NOV-01 Checkin Released Not_Distributed
    fv 11i.FV.F 2219341 17-MAY-02 Checkin Released Not_Distributed
    fv 11i.FV.G 2408789 02-APR-03 Checkin Released By_Dev
    fv 11i.FV.H 2750026 02-JUN-03 Checkin Released By_Metalink
    fv 11i.FV.I 2986214 12-DEC-03 Checkin Released By_Dev
    fv 11i.FV.J 3151594 18-OCT-04 Checkin Released Not_Distributed
    fv 11i.FV.K 3617912 29-APR-05 Checkin Released Not_Distributed
    fwk 11i.FWK.H 3262919 04-NOV-04 Checkin Released By_Metalink
    gcs 11i.GCS.A 3061521 22-DEC-03 Checkin Released By_Dev
    gcs 11i.GCS.B 3271405 05-NOV-04 Checkin Released By_Dev
    gcs 11i.GCS.C 4017392 29-APR-05 Checkin Released By_Dev
    gcs 11i.GCS.D 4616595 18-NOV-05 Checkin Released By_Dev
    ghr 11i.GHR.A 1343144 07-OCT-00 Checkin Released By_Metalink
    ghr 11i.GHR.B 1483299 05-FEB-01 Checkin Released By_Metalink
    ghr 11i.GHR.C 1663200 28-SEP-01 Checkin Released By_Metalink
    ghr 11i.GHR.D 2156846 21-FEB-02 Checkin Released Not_Distributed
    ghr 11i.GHR.E 2268587 09-MAY-02 Checkin Released Not_Distributed
    ghr 11i.GHR.F 2410056 02-AUG-02 Checkin Released Not_Distributed
    ghr 11i.GHR.G 2634729 27-NOV-02 Checkin Released Not_Distributed
    ghr 11i.GHR.H 2803596 19-MAY-03 Checkin Released Not_Distributed
    ghr 11i.GHR.I 3125839 05-DEC-03 Checkin Released Not_Distributed
    ghr 11i.GHR.J 3418292 27-JUL-04 Checkin Released Not_Distributed
    ghr 11i.GHR.K 3988392 08-MAR-05 Checkin Released Not_Distributed
    ghr 11i.GHR.L 4289874 30-JUN-05 Checkin Released Not_Distributed
    ghr 11i.GHR.L.1 5059529 31-MAY-06 Checkin Released Not_Distributed
    ghr 11i.GHR.L.2 5917526 22-JUN-07 Checkin Released Not_Distributed
    ghr 11i.GHR.L.3 6964735 02-JUL-08 Checkin Released Not_Distributed
    gl 11i.GL.A 1339658 05-SEP-00 Checkin Released Not_Distributed
    gl 11i.GL.B 1423378 28-DEC-00 Checkin Released Not_Distributed
    gl 11i.GL.C 1561690 01-FEB-01 Checkin Released Not_Distributed
    gl 11i.GL.D 1801257 31-MAY-01 Checkin Released Not_Distributed
    gl 11i.GL.E 1900156 24-AUG-01 Checkin Released Not_Distributed
    gl 11i.GL.F 2153419 30-JAN-02 Checkin Released Not_Distributed
    gl 11i.GL.G 2336010 24-MAY-02 Checkin Released By_Dev
    gl 11i.GL.H 2488743 02-APR-03 Checkin Released By_Dev
    gl 11i.GL.I 2864979 12-DEC-03 Checkin Released By_Dev
    gl 11i.GL.J 3151409 18-OCT-04 Checkin Released Not_Distributed
    gl 11i.GL.K 3617593 29-APR-05 Checkin Released Not_Distributed
    gma 11i.GMA.A 1339807 14-JUL-00 Checkin Released By_Metalink
    gma 11i.GMA.B 1355660 08-SEP-00 Checkin Released By_Dev
    gma 11i.GMA.C 1400635 13-NOV-00 Checkin Released By_Dev
    gma 11i.GMA.D 1498462 08-DEC-00 Checkin Released By_Metalink
    gma 11i.GMA.E 1559588 26-JAN-01 Checkin Released Not_Distributed
    gma 11i.GMA.F 1638883 14-MAR-01 Checkin Released Not_Distributed
    gma 11i.GMA.G 1770114 13-AUG-01 Checkin Released Not_Distributed
    gma 11i.GMA.H 1979212 11-JAN-02 Checkin Released Not_Distributed
    gma 11i.GMA.I 2192881 02-JUL-02 Checkin Released Not_Distributed
    gma 11i.GMA.J 2294171 26-DEC-02 Checkin Released Not_Distributed
    gma 11i.GMA.K 2663933 09-JUN-03 Checkin Released Not_Distributed
    gma 11i.GMA.L 2916578 17-SEP-04 Checkin Released Not_Distributed
    gmd 11i.GMD.A 1335501 11-JUL-00 Checkin Released Not_Distributed
    gmd 11i.GMD.B 1354561 13-JUL-00 Checkin Released Not_Distributed
    gmd 11i.GMD.C 1394145 04-OCT-00 Checkin Released Not_Distributed
    gmd 11i.GMD.D 1462582 10-NOV-00 Checkin Released Not_Distributed
    gmd 11i.GMD.E 1555262 25-JAN-01 Checkin Released Not_Distributed
    gmd 11i.GMD.F 1636482 14-MAR-01 Checkin Released Not_Distributed
    gmd 11i.GMD.G 1769533 13-AUG-01 Checkin Released Not_Distributed
    gmd 11i.GMD.H 1979534 12-JAN-02 Checkin Released Not_Distributed
    gmd 11i.GMD.I 2192885 03-JUL-02 Checkin Released Not_Distributed
    gmd 11i.GMD.J 2294175 26-DEC-02 Checkin Released Not_Distributed
    gmd 11i.GMD.K 2663936 09-JUN-03 Checkin Released Not_Distributed
    gmd 11i.GMD.L 2916585 17-SEP-04 Checkin Released Not_Distributed
    gme 11i.GME.A 1337890 11-JUL-00 Checkin Released Not_Distributed
    gme 11i.GME.B 1355056 13-JUL-00 Checkin Released Not_Distributed
    gme 11i.GME.C 1395171 04-OCT-00 Checkin Released Not_Distributed
    gme 11i.GME.D 1461671 10-NOV-00 Checkin Released Not_Distributed
    gme 11i.GME.E 1552818 25-JAN-01 Checkin Released Not_Distributed
    gme 11i.GME.F 1636252 14-MAR-01 Checkin Released Not_Distributed
    gme 11i.GME.G 1769596 13-AUG-01 Checkin Released Not_Distributed
    gme 11i.GME.H 1979540 12-JAN-02 Checkin Released Not_Distributed
    gme 11i.GME.I 2192904 03-JUL-02 Checkin Released Not_Distributed
    gme 11i.GME.J 2294178 26-DEC-02 Checkin Released Not_Distributed
    gme 11i.GME.K 2663939 09-JUN-03 Checkin Released Not_Distributed
    gme 11i.GME.L 2916589 17-SEP-04 Checkin Released Not_Distributed
    gmf 11i.GMF.A 1338389 11-JUL-00 Checkin Released Not_Distributed
    gmf 11i.GMF.B 1354629 13-JUL-00 Checkin Released Not_Distributed
    gmf 11i.GMF.C 1395599 04-OCT-00 Checkin Released Not_Distributed
    gmf 11i.GMF.D 1457409 10-NOV-00 Checkin Released Not_Distributed
    gmf 11i.GMF.E 1555222 25-JAN-01 Checkin Released Not_Distributed
    gmf 11i.GMF.F 1638749 14-MAR-01 Checkin Released Not_Distributed
    gmf 11i.GMF.G 1769518 13-AUG-01 Checkin Released Not_Distributed
    gmf 11i.GMF.H 1979547 11-JAN-02 Checkin Released Not_Distributed
    gmf 11i.GMF.I 2192909 02-JUL-02 Checkin Released Not_Distributed
    gmf 11i.GMF.J 2294183 26-DEC-02 Checkin Released Not_Distributed
    gmf 11i.GMF.K 2663940 09-JUN-03 Checkin Released Not_Distributed
    gmf 11i.GMF.L 2916592 17-SEP-04 Checkin Released Not_Distributed
    gmi 11i.GMI.A 1338383 11-JUL-00 Checkin Released Not_Distributed
    gmi 11i.GMI.B 1354513 13-JUL-00 Checkin Released Not_Distributed
    gmi 11i.GMI.C 1395221 04-OCT-00 Checkin Released Not_Distributed
    gmi 11i.GMI.D 1462591 10-NOV-00 Checkin Released Not_Distributed
    gmi 11i.GMI.E 1555187 25-JAN-01 Checkin Released Not_Distributed
    gmi 11i.GMI.F 1634764 14-MAR-01 Checkin Released Not_Distributed
    gmi 11i.GMI.G 1766259 13-AUG-01 Checkin Released Not_Distributed
    gmi 11i.GMI.H 1979552 12-JAN-02 Checkin Released Not_Distributed
    gmi 11i.GMI.I 2192912 03-JUL-02 Checkin Released Not_Distributed
    gmi 11i.GMI.J 2294188 26-DEC-02 Checkin Released Not_Distributed
    gmi 11i.GMI.K 2663941 09-JUN-03 Checkin Released Not_Distributed
    gmi 11i.GMI.L 2916596 17-SEP-04 Checkin Released Not_Distributed
    gml 11i.GML.A 1338340 11-JUL-00 Checkin Released Not_Distributed
    gml 11i.GML.B 1354721 13-JUL-00 Checkin Released Not_Distributed
    gml 11i.GML.C 1394777 04-OCT-00 Checkin Released Not_Distributed
    gml 11i.GML.D 1461727 10-NOV-00 Checkin Released Not_Distributed
    gml 11i.GML.E 1555150 25-JAN-01 Checkin Released Not_Distributed
    gml 11i.GML.F 1636264 14-MAR-01 Checkin Released Not_Distributed
    gml 11i.GML.G 1769528 13-AUG-01 Checkin Released Not_Distributed
    gml 11i.GML.H 1979561 11-JAN-02 Checkin Released Not_Distributed
    gml 11i.GML.I 2192913 03-JUL-02 Checkin Released Not_Distributed
    gml 11i.GML.J 2294192 26-DEC-02 Checkin Released Not_Distributed
    gml 11i.GML.K 2663943 09-JUN-03 Checkin Released Not_Distributed
    gml 11i.GML.L 2916602 17-SEP-04 Checkin Released Not_Distributed
    gmp 11i.GMP.A 1337983 11-JUL-00 Checkin Released Not_Distributed
    gmp 11i.GMP.B 1354570 13-JUL-00 Checkin Released Not_Distributed
    gmp 11i.GMP.C 1395547 04-OCT-00 Checkin Released Not_Distributed
    gmp 11i.GMP.D 1462033 10-NOV-00 Checkin Released Not_Distributed
    gmp 11i.GMP.E 1555186 25-JAN-01 Checkin Released Not_Distributed
    gmp 11i.GMP.F 1635708 14-MAR-01 Checkin Released Not_Distributed
    gmp 11i.GMP.G 1755479 13-AUG-01 Checkin Released Not_Distributed
    gmp 11i.GMP.H 1979568 11-JAN-02 Checkin Released Not_Distributed
    gmp 11i.GMP.I 2192921 03-JUL-02 Checkin Released Not_Distributed
    gmp 11i.GMP.J 2294225 26-DEC-02 Checkin Released Not_Distributed
    gmp 11i.GMP.K 2663944 09-JUN-03 Checkin Released Not_Distributed
    gmp 11i.GMP.L 2916603 17-SEP-04 Checkin Released Not_Distributed
    gms 11i.GMS.A 1351784 24-AUG-00 Checkin Obsoleted Not_Distributed
    gms 11i.GMS.B 1389216 07-OCT-00 Checkin Released By_Metalink
    gms 11i.GMS.C 1449654 14-DEC-00 Checkin Released By_Metalink
    gms 11i.GMS.D 1571096 05-FEB-01 Checkin Released By_Metalink
    gms 11i.GMS.E 1632922 23-MAR-01 Checkin Released By_Metalink
    gms 11i.GMS.F 1741469 27-JUL-01 Checkin Released By_Metalink
    gms 11i.GMS.G 1937576 07-SEP-01 Checkin Released By_Metalink
    gms 11i.GMS.H 1984680 04-DEC-01 Checkin Released By_Metalink
    gms 11i.GMS.I 2166451 31-MAR-02 Checkin Released By_Metalink
    gms 11i.GMS.J 2492776 25-NOV-02 Checkin Released By_Metalink
    gms 11i.GMS.K 2691082 12-MAY-03 Checkin Released By_Metalink
    gms 11i.GMS.L 3018908 05-DEC-03 Checkin Released By_Metalink
    gms 11i.GMS.M 3521076 15-MAY-05 Checkin Released Not_Distributed
    gr 11i.GR.A 1337917 11-JUL-00 Checkin Released Not_Distributed
    gr 11i.GR.B 1354516 13-JUL-00 Checkin Released Not_Distributed
    gr 11i.GR.C 1395236 04-OCT-00 Checkin Released Not_Distributed
    gr 11i.GR.D 1461822 10-NOV-00 Checkin Released Not_Distributed
    gr 11i.GR.E 1555158 25-JAN-01 Checkin Released Not_Distributed
    gr 11i.GR.F 1635886 14-MAR-01 Checkin Released Not_Distributed
    gr 11i.GR.G 1766734 13-AUG-01 Checkin Released Not_Distributed
    gr 11i.GR.H 1979575 11-JAN-02 Checkin Released Not_Distributed
    gr 11i.GR.I 2192926 03-JUL-02 Checkin Released Not_Distributed
    gr 11i.GR.J 2294228 26-DEC-02 Checkin Released Not_Distributed
    gr 11i.GR.K 2663945 09-JUN-03 Checkin Released Not_Distributed
    gr 11i.GR.L 2916605 17-SEP-04 Checkin Released Not_Distributed
    hcp 11i.HCP.A 4186798 19-AUG-05 Checkin Released Not_Distributed
    hcp 11i.HCP.A.1 4570063 05-OCT-05 Checkin Released Not_Distributed
    hcp 11i.HCP.A.2 4620559 14-APR-06 Checkin Released Not_Distributed
    hcp 11i.HCP.A.3 5178876 16-FEB-07 Checkin Released Not_Distributed
    hct 11i.HCT.A 2660832 23-DEC-02 Checkin Released Not_Distributed
    hct 11i.HCT.B 2725765 22-MAY-03 Checkin Released By_Dev
    hct 11i.HCT.C 3002052 22-SEP-03 Checkin Released By_Dev
    hct 11i.HCT.D 3316737 01-APR-04 Checkin Released By_Dev
    hct 11i.HCT.E 4176283 19-AUG-05 Checkin Released Not_Distributed
    hct 11i.HCT.E.1 4570066 05-OCT-05 Checkin Released Not_Distributed
    hct 11i.HCT.E.2 4620563 14-APR-06 Checkin Released Not_Distributed
    hct 11i.HCT.E.3 5178908 16-FEB-07 Checkin Released Not_Distributed
    hc_pf 11i.HC_PF.A 2719586 23-DEC-02 Checkin Released By_Metalink
    hc_pf 11i.HC_PF.B 2871064 06-JUN-03 Checkin Released By_Metalink
    hc_pf 11i.HC_PF.C 3032405 22-SEP-03 Checkin Released By_Metalink
    hc_pf 11i.HC_PF.D 3254355 01-APR-04 Checkin Released By_Metalink
    hc_pf 11i.HC_PF.E 4178883 19-AUG-05 Checkin Released By_Metalink
    hc_pf 11i.HC_PF.E.1 4567082 05-OCT-05 Checkin Released By_Metalink
    hc_pf 11i.HC_PF.E.2 4620608 14-APR-06 Checkin Released By_Metalink
    hc_pf 11i.HC_PF.E.3 5178799 16-FEB-07 Checkin Released By_Metalink
    hri 11i.HRI.A 1343148 07-OCT-00 Checkin Released By_Metalink
    hri 11i.HRI.B 1566836 05-FEB-01 Checkin Released By_Metalink
    hri 11i.HRI.C 1663218 06-NOV-01 Checkin Released By_Metalink
    hri 11i.HRI.D 2373387 16-JUL-02 Checkin Released By_Metalink
    hri 11i.HRI.E 2483421 10-OCT-02 Checkin Released By_Metalink
    hri 11i.HRI.F 3177666 05-FEB-04 Checkin Released By_Metalink
    hri 11i.HRI.G 4001448 04-NOV-05 Checkin Released By_Metalink
    hr_pf 11i.HR_PF.A 2115771 24-FEB-02 Checkin Released By_Metalink
    hr_pf 11i.HR_PF.B 2268451 09-MAY-02 Checkin Released By_Metalink
    hr_pf 11i.HR_PF.C.1 2502761 08-AUG-02 Checkin Released By_Metalink
    hr_pf 11i.HR_PF.D 2632500 20-DEC-02 Checkin Released By_Metalink
    hr_pf 11i.HR_PF.E 2803988 30-MAY-03 Checkin Released By_Metalink
    hr_pf 11i.HR_PF.F 2968701 31-JUL-03 Checkin Released By_Metalink
    hr_pf 11i.HR_PF.G 3116666 05-DEC-03 Checkin Released By_Metalink
    hr_pf 11i.HR_PF.H 3233333 31-JUL-04 Checkin Released By_Metalink
    hr_pf 11i.HR_PF.I 3127777 04-NOV-04 Checkin Released Not_Distributed
    hr_pf 11i.HR_PF.J 3333633 14-MAR-05 Checkin Released By_Metalink
    hr_pf 11i.HR_PF.K 3500000 05-JUL-05 Checkin Released By_Metalink
    hr_pf 11i.HR_PF.K.1 5055050 31-MAY-06 Checkin Released By_Metalink
    hr_pf 11i.HR_PF.K.2 5337777 22-JUN-07 Checkin Released By_Metalink
    hr_pf 11i.HR_PF.K.3 6699770 02-JUL-08 Checkin Released By_Metalink
    hxc 11i.HXC.A 1346739 07-OCT-00 Checkin Released Not_Distributed
    hxc 11i.HXC.B 2398786 31-MAY-02 Checkin Released Not_Distributed
    hxc 11i.HXC.C 2717041 27-MAR-03 Checkin Obsoleted Not_Distributed
    hxt 11i.HXT.A 1343155 07-OCT-00 Checkin Released By_Metalink
    hxt 11i.HXT.B 1483168 05-FEB-01 Checkin Released By_Metalink
    hxt 11i.HXT.C 1663255 03-MAR-02 Checkin Released By_Metalink
    hxt 11i.HXT.D 2398780 09-AUG-02 Checkin Released By_Metalink
    hxt 11i.HXT.E 2716711 12-JUN-03 Checkin Released By_Dev
    hxt 11i.HXT.F 3042947 25-JUL-03 Checkin Released By_Metalink
    hxt 11i.HXT.G 3285055 15-MAR-04 Checkin Released By_Metalink
    hxt 11i.HXT.H 3530830 04-NOV-04 Checkin Released By_Metalink
    hxt 11i.HXT.I 4188854 09-MAY-05 Checkin Released By_Metalink
    hxt 11i.HXT.J 4428056 18-DEC-05 Checkin Released By_Metalink
    hz 11i.HZ.A 1581138 16-JAN-01 Checkin Released By_Metalink
    hz 11i.HZ.B 1586130 05-MAR-01 Checkin Released By_Metalink
    hz 11i.HZ.C 1697181 18-APR-01 Checkin Released By_Metalink
    hz 11i.HZ.D 1808048 21-JUN-01 Checkin Released By_Metalink
    hz 11i.HZ.E 1886227 07-SEP-01 Checkin Obsoleted By_Metalink
    hz 11i.HZ.F 1921951 28-SEP-01 Checkin Released By_Metalink
    hz 11i.HZ.G 2111967 31-JAN-02 Checkin Released By_Metalink
    hz 11i.HZ.H 2116159 19-APR-02 Checkin Released By_Metalink
    hz 11i.HZ.I 2239222 16-AUG-02 Checkin Released By_Metalink
    hz 11i.HZ.J 2488745 02-APR-03 Checkin Released By_Metalink
    hz 11i.HZ.K 2790616 03-JUL-03 Checkin Released By_Metalink
    hz 11i.HZ.L 3036401 12-DEC-03 Checkin Released By_Metalink
    hz 11i.HZ.M 3151672 04-NOV-04 Checkin Released By_Metalink
    hz 11i.HZ.N 3618299 29-APR-05 Checkin Released By_Metalink
    ia 11i.IA.A 3289862 05-NOV-04 Checkin Released By_Metalink
    ia 11i.IA.B 4056377 29-APR-05 Checkin Released Not_Distributed
    iba 11i.IBA.A 1306459 21-JUN-00 Checkin Released Not_Distributed
    iba 11i.IBA.B 1341602 07-OCT-00 Checkin Released Not_Distributed
    iba 11i.IBA.C 1491331 27-FEB-01 Checkin Released By_Metalink
    iba 11i.IBA.D 1903260 05-OCT-01 Checkin Released By_Dev
    ibc 11i.IBC.A 2417049 10-OCT-02 Checkin Released By_Support
    ibc 11i.IBC.B 2629974 24-APR-03 Checkin Released By_Metalink
    ibc 11i.IBC.C 3025788 05-NOV-04 Checkin Released By_Metalink
    ibe 11i.IBE.A 1306469 21-JUN-00 Checkin Released Not_Distributed
    ibe 11i.IBE.B 1340318 07-OCT-00 Checkin Released Not_Distributed
    ibe 11i.IBE.C 1492849 12-JAN-01 Checkin Obsoleted By_Metalink
    ibe 11i.IBE.D 1592471 22-JAN-01 Checkin Released By_Metalink
    ibe 11i.IBE.E 1613014 27-FEB-01 Checkin Released By_Metalink
    ibe 11i.IBE.F 1665065 30-MAR-01 Checkin Released By_Metalink
    ibe 11i.IBE.G 1715488 29-MAY-01 Checkin Released By_Metalink
    ibe 11i.IBE.H 1808300 29-AUG-01 Checkin Obsoleted By_Dev
    ibe 11i.IBE.I 1971029 02-NOV-01 Checkin Released By_Dev
    ibe 11i.IBE.J 2168901 18-FEB-02 Checkin Released By_Metalink
    ibe 11i.IBE.K 2234708 14-MAY-02 Checkin Released By_Metalink
    ibe 11i.IBE.L 2376394 31-MAY-02 Checkin Released By_Metalink
    ibe 11i.IBE.M 2400949 31-AUG-02 Checkin Released By_Metalink
    ibe 11i.IBE.N 2400955 25-OCT-02 Checkin Released By_Metalink
    ibe 11i.IBE.O 2636442 01-APR-03 Checkin Released By_Metalink
    ibe 11i.IBE.P 3071058 21-JUN-04 Checkin Released By_Metalink
    ibu 11i.IBU.A 1306883 21-JUN-00 Checkin Released Not_Distributed
    ibu 11i.IBU.B 1338815 07-OCT-00 Checkin Released Not_Distributed
    ibu 11i.IBU.C 1581146 27-FEB-01 Checkin Released By_Metalink
    ibu 11i.IBU.D 1678144 02-APR-01 Checkin Released By_Dev
    ibu 11i.IBU.E 1717459 27-APR-01 Checkin Released By_Metalink
    ibu 11i.IBU.F 1753403 04-JUN-01 Checkin Released By_Metalink
    ibu 11i.IBU.G 1815583 20-SEP-01 Checkin Released By_Dev
    ibu 11i.IBU.H 2009497 02-NOV-01 Checkin Released By_Dev
    ibu 11i.IBU.I 2136774 31-MAY-02 Checkin Released By_Metalink
    ibu 11i.IBU.J 2418799 02-JUL-02 Checkin Released By_Dev
    ibu 11i.IBU.K 2484557 02-AUG-02 Checkin Released By_Dev
    ibu 11i.IBU.L 2505350 08-AUG-02 Checkin Released By_Dev
    ibu 11i.IBU.M 2569009 13-SEP-02 Checkin Released By_Dev
    ibu 11i.IBU.N 2594194 12-DEC-02 Checkin Released By_Dev
    ibu 11i.IBU.O 2709518 10-JUN-03 Checkin Released By_Dev
    ibu 11i.IBU.P 3215243 17-SEP-04 Checkin Released Not_Distributed
    iby 11i.IBY.A 1306470 21-JUN-00 Checkin Released Not_Distributed
    iby 11i.IBY.B 1340371 07-OCT-00 Checkin Released Not_Distributed
    iby 11i.IBY.C 1489498 12-JAN-01 Checkin Released Not_Distributed
    iby 11i.IBY.D 1593795 27-FEB-01 Checkin Released Not_Distributed
    iby 11i.IBY.E 1806015 24-JUL-01 Checkin Released Not_Distributed
    iby 11i.IBY.F 1901319 08-AUG-01 Checkin Released Not_Distributed
    iby 11i.IBY.G 1924412 15-AUG-01 Checkin Released By_Dev
    iby 11i.IBY.H 1939825 07-SEP-01 Checkin Released By_Dev
    iby 11i.IBY.I 1982049 28-SEP-01 Checkin Released By_Dev
    iby 11i.IBY.J 2022617 04-NOV-01 Checkin Released By_Dev
    iby 11i.IBY.K 2173029 01-FEB-02 Checkin Released Not_Distributed
    iby 11i.IBY.L 2268040 22-AUG-02 Checkin Released By_Dev
    iby 11i.IBY.M 2527157 13-SEP-02 Checkin Released Not_Distributed
    iby 11i.IBY.N 2683795 02-APR-03 Checkin Released By_Metalink
    iby 11i.IBY.O 3042827 12-DEC-03 Checkin Released By_Metalink
    iby 11i.IBY.P 3151563 18-OCT-04 Checkin Released Not_Distributed
    iby 11i.IBY.Q 3616207 29-APR-05 Checkin Released By_Dev
    icx 11i.ICX.A 1348546 12-SEP-00 Checkin Released By_Metalink
    icx 11i.ICX.B 1426045 13-NOV-00 Checkin Released By_Metalink
    icx 11i.ICX.C 1538792 21-DEC-00 Checkin Released Not_Distributed
    icx 11i.ICX.D 1706806 02-MAY-01 Checkin Released Not_Distributed
    icx 11i.ICX.E 1886211 22-AUG-01 Checkin Released Not_Distributed
    icx 11i.ICX.F 2096654 31-JAN-02 Checkin Released Not_Distributed
    icx 11i.ICX.G 2319967 15-AUG-02 Checkin Released Not_Distributed
    icx 11i.ICX.H 2478494 10-JUN-03 Checkin Released By_Dev
    icx 11i.ICX.I 3212296 17-SEP-04 Checkin Released Not_Distributed
    ieb 11i.IEB.A 1306746 21-JUN-00 Checkin Obsoleted Not_Distributed
    ieb 11i.IEB.B 1336610 07-OCT-00 Checkin Obsoleted Not_Distributed
    ieb 11i.IEB.C 1486486 04-DEC-00 Checkin Obsoleted By_Metalink
    ieb 11i.IEB.D 1524486 04-JAN-01 Checkin Obsoleted By_Metalink
    ieb 11i.IEB.E 1563319 27-FEB-01 Checkin Obsoleted By_Metalink
    ieb 11i.IEB.F 1666997 20-MAR-01 Checkin Obsoleted By_Metalink
    ieb 11i.IEB.G 1700497 19-APR-01 Checkin Obsoleted By_Metalink
    ieb 11i.IEB.H 1748807 06-MAY-01 Checkin Obsoleted By_Metalink
    ieb 11i.IEB.I 1771573 21-MAY-01 Checkin Obsoleted By_Metalink
    ieb 11i.IEB.J 1796340 22-JUN-01 Checkin Released By_Dev
    ieb 11i.IEB.K 1868632 19-JUL-01 Checkin Released By_Dev
    ieb 11i.IEB.L 1916617 27-SEP-01 Checkin Released By_Dev
    ieb 11i.IEB.M 2161778 28-DEC-01 Checkin Released By_Dev
    ieb 11i.IEB.N 2241284 27-FEB-02 Checkin Released By_Dev
    ieb 11i.IEB.O 2383615 23-MAY-02 Checkin Released By_Dev
    ieb 11i.IEB.P 2482290 29-JUL-02 Checkin Released By_Dev
    ieb 11i.IEB.Q 2682730 29-NOV-02 Checkin Released By_Dev
    ieb 11i.IEB.R 3103016 29-OCT-03 Checkin Released By_Dev
    iec 11i.IEC.A 1917946 27-SEP-01 Checkin Obsoleted By_Metalink
    iec 11i.IEC.B 2151089 29-DEC-01 Checkin Released By_Dev
    iec 11i.IEC.C 2241598 27-FEB-02 Checkin Released By_Dev
    iec 11i.IEC.D 2288033 23-MAY-02 Checkin Released By_Dev
    iec 11i.IEC.F 2394621 29-MAY-02 Checkin Released By_Dev
    iec 11i.IEC.G 2481366 29-JUL-02 Checkin Released By_Dev
    iec 11i.IEC.H 2687987 29-NOV-02 Checkin Released By_Dev
    iec 11i.IEC.R 3103006 29-OCT-03 Checkin Released By_Dev
    iem 11i.IEM.A 1306447 21-JUN-00 Checkin Obsoleted Not_Distributed
    iem 11i.IEM.B 1339474 07-OCT-00 Checkin Obsoleted Not_Distributed
    iem 11i.IEM.C 1486479 04-DEC-00 Checkin Obsoleted By_Metalink
    iem 11i.IEM.D 1524497 04-JAN-01 Checkin Obsoleted By_Metalink
    iem 11i.IEM.E 1563325 27-FEB-01 Checkin Obsoleted By_Metalink
    iem 11i.IEM.F 1667085 20-MAR-01 Checkin Obsoleted By_Metalink
    iem 11i.IEM.G 1698585 19-APR-01 Checkin Obsoleted By_Metalink
    iem 11i.IEM.H 1748976 06-MAY-01 Checkin Obsoleted By_Metalink
    iem 11i.IEM.I 1769721 21-MAY-01 Checkin Released By_Metalink
    iem 11i.IEM.J 1794781 26-JUN-01 Checkin Released By_Dev
    iem 11i.IEM.K 1873056 19-JUL-01 Checkin Released By_Dev
    iem 11i.IEM.L 1915274 27-SEP-01 Checkin Released By_Dev
    iem 11i.IEM.M 2135496 28-DEC-01 Checkin Released By_Dev
    iem 11i.IEM.N 2240514 27-FEB-02 Checkin Released By_Dev
    iem 11i.IEM.O 2387043 24-MAY-02 Checkin Released By_Dev
    iem 11i.IEM.P 2484317 28-JUL-02 Checkin Released By_Dev
    iem 11i.IEM.Q 2688479 28-NOV-02 Checkin Released By_Dev
    iem 11i.IEM.R 3105039 29-OCT-03 Checkin Released Not_Distributed
    ieo 11i.IEO.A 1306731 21-JUN-00 Checkin Obsoleted Not_Distributed
    ieo 11i.IEO.B 1336609 07-OCT-00 Checkin Obsoleted Not_Distributed
    ieo 11i.IEO.C 1486496 30-NOV-00 Checkin Obsoleted By_Metalink
    ieo 11i.IEO.D 1524482 04-JAN-01 Checkin Obsoleted By_Metalink
    ieo 11i.IEO.E 1563315 27-FEB-01 Checkin Obsoleted By_Metalink
    ieo 11i.IEO.F 1665218 20-MAR-01 Checkin Obsoleted By_Metalink
    ieo 11i.IEO.G 1697467 19-APR-01 Checkin Obsoleted By_Metalink
    ieo 11i.IEO.H 1746884 06-MAY-01 Checkin Obsoleted By_Metalink
    ieo 11i.IEO.I 1771450 21-MAY-01 Checkin Released By_Metalink
    ieo 11i.IEO.J 1796627 22-JUN-01 Checkin Released By_Dev
    ieo 11i.IEO.K 1863663 19-JUL-01 Checkin Released By_Dev
    ieo 11i.IEO.L 1918151 27-SEP-01 Checkin Released By_Dev
    ieo 11i.IEO.M 2145418 31-DEC-01 Checkin Released By_Dev
    ieo 11i.IEO.N 2243184 27-FEB-02 Checkin Released By_Dev
    ieo 11i.IEO.O 2384304 23-MAY-02 Checkin Released By_Dev
    ieo 11i.IEO.P 2486037 29-JUL-02 Checkin Released By_Dev
    ieo 11i.IEO.Q 2690842 02-DEC-02 Checkin Released By_Dev
    ieo 11i.IEO.R 3112614 29-OCT-03 Checkin Released By_Dev
    ies 11i.IES.A 1306444 21-JUN-00 Checkin Obsoleted Not_Distributed
    ies 11i.IES.B 1339480 07-OCT-00 Checkin Obsoleted Not_Distributed
    ies 11i.IES.C 1486495 04-DEC-00 Checkin Obsoleted By_Metalink
    ies 11i.IES.D 1524492 04-JAN-01 Checkin Obsoleted By_Metalink
    ies 11i.IES.E 1563320 27-FEB-01 Checkin Obsoleted By_Metalink
    ies 11i.IES.F 1664607 20-MAR-01 Checkin Obsoleted By_Metalink
    ies 11i.IES.G 1698722 19-APR-01 Checkin Obsoleted By_Metalink
    ies 11i.IES.H 1746648 06-MAY-01 Checkin Obsoleted By_Metalink
    ies 11i.IES.I 1769679 21-MAY-01 Checkin Obsoleted By_Metalink
    ies 11i.IES.J 1794414 03-JUL-01 Checkin Released By_Metalink
    ies 11i.IES.K 1863440 30-JUL-01 Checkin Released By_Metalink
    ies 11i.IES.L 1914655 27-SEP-01 Checkin Released By_Dev
    ies 11i.IES.M 2162202 27-DEC-01 Checkin Released By_Dev
    ies 11i.IES.N 2348942 23-MAY-02 Checkin Released By_Dev
    ies 11i.IES.O 2474397 26-JUL-02 Checkin Released By_Dev
    ies 11i.IES.P 2688381 29-NOV-02 Checkin Released By_Dev
    ies 11i.IES.Q 2785906 04-FEB-03 Checkin Released Not_Distributed
    ies 11i.IES.R 3105044 29-OCT-03 Checkin Released By_Dev
    ieu 11i.IEU.A 1306717 21-JUN-00 Checkin Obsoleted Not_Distributed
    ieu 11i.IEU.B 1336613 07-OCT-00 Checkin Obsoleted Not_Distributed
    ieu 11i.IEU.C 1486489 04-DEC-00 Checkin Obsoleted By_Metalink
    ieu 11i.IEU.D 1524484 04-JAN-01 Checkin Obsoleted By_Metalink
    ieu 11i.IEU.E 1563317 27-FEB-01 Checkin Obsoleted By_Metalink
    ieu 11i.IEU.F 1664673 20-MAR-01 Checkin Obsoleted By_Metalink
    ieu 11i.IEU.G 1697090 19-APR-01 Checkin Obsoleted By_Metalink
    ieu 11i.IEU.H 1734173 06-MAY-01 Checkin Released By_Metalink
    ieu 11i.IEU.I 1770207 21-MAY-01 Checkin Released By_Metalink
    ieu 11i.IEU.J 1795055 03-JUL-01 Checkin Released By_Metalink
    ieu 11i.IEU.K 1868639 30-JUL-01 Checkin Released By_Metalink
    ieu 11i.IEU.L 1916618 27-SEP-01 Checkin Released By_Dev
    ieu 11i.IEU.M 2161777 29-DEC-01 Checkin Released By_Dev
    ieu 11i.IEU.N 2241283 27-FEB-02 Checkin Released By_Dev
    ieu 11i.IEU.O 2383611 23-MAY-02 Checkin Released By_Dev
    ieu 11i.IEU.P 2482288 29-JUL-02 Checkin Released By_Dev
    ieu 11i.IEU.Q 2682729 29-NOV-02 Checkin Released By_Dev
    ieu 11i.IEU.R 3101379 29-OCT-03 Checkin Released By_Dev
    iex 11i.IEX.A 1339484 07-OCT-00 Checkin Released Not_Distributed
    iex 11i.IEX.B 1577476 27-FEB-01 Checkin Released By_Dev
    iex 11i.IEX.C 1903536 04-JUN-02 Checkin Released By_Dev
    iex 11i.IEX.D 2402713 11-OCT-02 Checkin Released By_Dev
    iex 11i.IEX.E 2681531 13-JUN-03 Checkin Released By_Metalink
    iex 11i.IEX.F 2989439 16-DEC-03 Checkin Released By_Metalink
    iex 11i.IEX.G 3274195 05-NOV-04 Checkin Released By_Metalink
    iex 11i.IEX.H 3999182 13-MAY-05 Checkin Released By_Metalink
    igc 11i.IGC.A 1374061 16-NOV-00 Checkin Obsoleted By_Dev
    igc 11i.IGC.B 1519272 28-DEC-00 Checkin Obsoleted By_Dev
    igc 11i.IGC.C 1561263 05-JAN-01 Checkin Obsoleted By_Metalink
    igc 11i.IGC.D 1639381 20-FEB-01 Checkin Obsoleted By_Metalink
    igc 11i.IGC.E 1765048 16-MAY-01 Checkin Obsoleted By_Metalink
    igc 11i.IGC.F 1873209 24-AUG-01 Checkin Obsoleted By_Metalink
    igc 11i.IGC.G 2098428 12-DEC-01 Checkin Obsoleted By_Metalink
    igi 11i.IGI.A 1376900 24-AUG-00 Checkin Released By_Dev
    igi 11i.IGI.B 1368449 01-NOV-00 Checkin Obsoleted By_Metalink
    igi 11i.IGI.C 1486114 12-JAN-01 Checkin Obsoleted By_Metalink
    igi 11i.IGI.D 1582449 09-MAR-01 Checkin Released Not_Distributed
    igi 11i.IGI.E 1738222 30-MAY-01 Checkin Released Not_Distributed
    igi 11i.IGI.F 1830981 12-AUG-01 Checkin Released Not_Distributed
    igi 11i.IGI.G 1856104 28-AUG-01 Checkin Released Not_Distributed
    igi 11i.IGI.H 1949153 11-JAN-02 Checkin Released Not_Distributed
    igi 11i.IGI.I 2128662 06-MAR-02 Checkin Released Not_Distributed
    igi 11i.IGI.J 2419536 30-AUG-02 Checkin Released By_Metalink
    igi 11i.IGI.K 2459356 02-APR-03 Checkin Released By_Dev
    igi 11i.IGI.L 2766653 30-MAY-03 Checkin Released By_Metalink
    igi 11i.IGI.M 2986210 12-DEC-03 Checkin Released By_Dev
    igi 11i.IGI.N 3151665 18-OCT-04 Checkin Released Not_Distributed
    igi 11i.IGI.O 3615915 29-APR-05 Checkin Released Not_Distributed
    igp 11i.IGP.A 3570941 05-NOV-04 Checkin Released By_Metalink
    igr 11i.IGR.A 4233605 25-MAY-05 Checkin Released By_Metalink
    igr 11i.IGR.A.1 5311462 28-JUN-06 Checkin Released By_Metalink
    igr 11i.IGR.A.2 5837572 12-MAR-07 Checkin Released By_Metalink
    igs 11i.IGS.A 1512339 22-DEC-00 Checkin Released By_Dev
    igs 11i.IGS.B 1555586 09-FEB-01 Checkin Released By_Oracle_Store
    igs 11i.IGS.C 1567157 02-MAR-01 Checkin Released By_Metalink
    igs 11i.IGS.D 1786125 04-JUN-01 Checkin Released By_Metalink
    igs 11i.IGS.E 1949658 31-AUG-01 Checkin Released By_Metalink
    igs 11i.IGS.F 2245714 13-MAR-02 Checkin Released By_Metalink
    igs 11i.IGS.G 2266630 11-APR-02 Checkin Released By_Dev
    igs 11i.IGS.H 2319620 31-JUL-02 Checkin Released By_Metalink
    igs 11i.IGS.I 2658168 31-JAN-03 Checkin Released By_Metalink
    igs 11i.IGS.J 2799224 04-APR-03 Checkin Released By_Metalink
    igs 11i.IGS.K 2903331 01-AUG-03 Checkin Released By_Dev
    igs 11i.IGS.L 3082081 01-APR-04 Checkin Released By_Dev
    igs 11i.IGS.L.1 5014084 06-MAR-06 Checkin Released By_Metalink
    igs 11i.IGS.M 4531385 22-DEC-05 Checkin Released By_Metalink
    igs 11i.IGS.M.1 5014174 23-JUN-06 Checkin Released By_Metalink
    igs 11i.IGS.M.10 7498324 22-DEC-08 Checkin Released By_Metalink
    igs 11i.IGS.M.2 5524932 22-NOV-06 Checkin Released By_Metalink
    igs 11i.IGS.M.3 5769147 16-MAR-07 Checkin Released By_Metalink
    igs 11i.IGS.M.4 6006278 22-JUN-07 Checkin Released By_Metalink
    igs 11i.IGS.M.5 6196811 29-AUG-07 Checkin Released By_Metalink
    igs 11i.IGS.M.6 6609859 21-DEC-07 Checkin Released By_Metalink
    igs 11i.IGS.M.7 6800905 18-MAR-08 Checkin Released By_Metalink
    igs 11i.IGS.M.8 6992417 16-JUN-08 Checkin Released By_Metalink
    igs 11i.IGS.M.9 7252704 22-AUG-08 Checkin Released By_Metalink
    igw 11i.IGW.A 1351279 07-OCT-00 Checkin Released Not_Distributed
    igw 11i.IGW.B 1449665 14-DEC-00 Checkin Released Not_Distributed
    igw 11i.IGW.C 1814546 08-NOV-01 Checkin Released Not_Distributed
    igw 11i.IGW.D 2295451 03-SEP-02 Checkin Released Not_Distributed
    igw 11i.IGW.E 2492817 02-APR-03 Checkin Released By_Metalink
    igw 11i.IGW.F 3093820 12-DEC-03 Checkin Released By_Metalink
    igw 11i.IGW.G 3981425 23-DEC-04 Checkin Released By_Metalink
    imc 11i.IMC.A 2201671 01-FEB-02 Checkin Released Not_Distributed
    imc 11i.IMC.B 2396751 23-OCT-02 Checkin Released By_Dev
    imc 11i.IMC.C 2667549 23-JAN-03 Checkin Released By_Dev
    imc 11i.IMC.D 2751066 23-JAN-03 Checkin Released Not_Distributed
    imc 11i.IMC.E 2767047 24-JAN-03 Checkin Released Not_Distributed
    imc 11i.IMC.F 2767053 24-JAN-03 Checkin Released Not_Distributed
    imc 11i.IMC.G 2767055 24-JAN-03 Checkin Released Not_Distributed
    imc 11i.IMC.H 2767060 24-JAN-03 Checkin Released Not_Distributed
    imc 11i.IMC.I 2767062 06-FEB-03 Checkin Released By_Metalink
    imc 11i.IMC.J 2767066 23-APR-03 Checkin Released By_Metalink
    imc 11i.IMC.K 3161885 24-DEC-03 Checkin Released By_Metalink
    imc 11i.IMC.L 3284214 05-NOV-04 Checkin Released By_Metalink
    imc 11i.IMC.M 4017594 29-APR-05 Checkin Released By_Metalink
    imt 11i.IMT.A 2216180 05-MAR-02 Checkin Released By_Dev
    imt 11i.IMT.B 2244723 29-MAR-02 Checkin Released By_Dev
    imt 11i.IMT.C 2299195 23-APR-02 Checkin Released By_Metalink
    inv 11i.INV.A 1287098 24-MAY-00 Checkin Released By_Metalink
    inv 11i.INV.B 1357312 05-SEP-00 Checkin Released By_Metalink
    inv 11i.INV.C 1426212 13-NOV-00 Checkin Released By_Metalink
    inv 11i.INV.D 1538130 23-JAN-01 Checkin Released By_Metalink
    inv 11i.INV.E 1696652 18-MAY-01 Checkin Released By_Metalink
    inv 11i.INV.F 1886015 28-AUG-01 Checkin Released By_Metalink
    inv 11i.INV.G 2004922 30-JAN-02 Checkin Released By_Metalink
    inv 11i.INV.H 2248490 16-AUG-02 Checkin Released By_Metalink
    inv 11i.INV.I 2371213 20-JUN-03 Checkin Released By_Metalink
    inv 11i.INV.J 2770966 17-SEP-04 Checkin Released Not_Distributed
    ipa 11i.IPA.A 1343442 01-SEP-00 Checkin Released By_Metalink
    ipa 11i.IPA.B 1426249 17-NOV-00 Checkin Released By_Metalink
    ipa 11i.IPA.C 1571138 29-JAN-01 Checkin Released By_Metalink
    ipa 11i.IPA.D 1617586 17-MAY-02 Checkin Released By_Metalink
    ipa 11i.IPA.E 2484640 17-FEB-03 Checkin Released By_Metalink
    ipa 11i.IPA.F 3069070 28-NOV-03 Checkin Released Not_Distributed
    ipatch 11i.IPATCH.B 2495518 05-NOV-02 Checkin Released By_Dev
    ipd 11i.IPD.A 1685895 22-MAR-01 Checkin Obsoleted Not_Distributed
    ipd 11i.IPD.B 1701423 02-APR-01 Checkin Released Not_Distributed
    ipd 11i.IPD.C 1716130 11-APR-01 Checkin Released By_Metalink
    ipd 11i.IPD.D 1803130 02-JUL-01 Checkin Released Not_Distributed
    ipd 11i.IPD.E 1952224 06-SEP-01 Checkin Released By_Metalink
    ipd 11i.IPD.F 1980661 17-OCT-01 Checkin Obsoleted By_Metalink
    ipd 11i.IPD.G 2067542 09-NOV-01 Checkin Released By_Dev
    ipd 11i.IPD.H 2105854 29-NOV-01 Checkin Released By_Metalink
    ipd 11i.IPD.I 2131545 15-DEC-01 Checkin Released By_Dev
    ipd 11i.IPD.J 2166223 14-JAN-02 Checkin Released By_Dev
    ipd 11i.IPD.K 2183248 01-MAY-02 Checkin Released By_Metalink
    ipd 11i.IPD.L 2360840 16-JUL-02 Checkin Released By_Metalink
    ipd 11i.IPD.M 2777269 22-JAN-04 Checkin Released By_Metalink
    irc 11i.IRC.A 2385730 23-MAY-02 Checkin Released By_Metalink
    irc 11i.IRC.B 2982658 07-JUL-03 Checkin Released By_Metalink
    irc 11i.IRC.C 3197168 27-FEB-04 Checkin Released By_Metalink
    irc 11i.IRC.D 3469985 04-NOV-04 Checkin Released By_Metalink
    irc 11i.IRC.E 4428071 18-JAN-06 Checkin Released By_Metalink
    irc 11i.IRC.E.1 5061111 30-JUN-06 Checkin Released By_Metalink
    irc 11i.IRC.E.2 6208000 16-NOV-07 Checkin Released By_Metalink
    irc 11i.IRC.E.3 6964709 02-JUL-08 Checkin Released Not_Distributed
    isc 11i.ISC.A 1354026 07-OCT-00 Checkin Released By_Metalink
    isc 11i.ISC.B 2695944 17-SEP-04 Checkin Released Not_Distributed
    isx 11i.ISX.A 2132737 05-DEC-01 Checkin Obsoleted By_Dev
    isx 11i.ISX.B 2284575 06-MAY-02 Checkin Obsoleted By_Metalink
    ita 11i.ITA.A 3904312 21-FEB-05 Checkin Released By_Dev
    itg 11i.ITG.D 1636301 23-MAR-01 Checkin Released By_Metalink
    itg 11i.ITG.E 1742929 17-JUL-01 Checkin Released By_Metalink
    itg 11i.ITG.F 2692950 11-OCT-04 Checkin Released Not_Distributed
    itm 11i.ITM.A 4189546 27-APR-05 Checkin Released Not_Distributed
    ja 11i.JA.A 1345428 01-SEP-00 Checkin Released Not_Distributed
    ja 11i.JA.B 1421326 20-OCT-00 Checkin Released Not_Distributed
    ja 11i.JA.C 1475098 17-JAN-01 Checkin Released Not_Distributed
    ja 11i.JA.D 1565772 22-MAY-01 Checkin Released By_Metalink
    ja 11i.JA.E 1749145 12-FEB-02 Checkin Released Not_Distributed
    ja 11i.JA.F 2202589 02-APR-03 Checkin Released By_Dev
    ja 11i.JA.G 2865286 12-DEC-03 Checkin Released By_Dev
    ja 11i.JA.H 3151471 18-OCT-04 Checkin Released Not_Distributed
    ja 11i.JA.I 3618260 29-APR-05 Checkin Released Not_Distributed
    je 11i.JE.A 1345059 01-SEP-00 Checkin Released Not_Distributed
    je 11i.JE.B 1421320 20-OCT-00 Checkin Released Not_Distributed
    je 11i.JE.C 1476832 22-DEC-00 Checkin Released Not_Distributed
    je 11i.JE.D 1505785 05-JUL-01 Checkin Released Not_Distributed
    je 11i.JE.E 1794254 26-OCT-01 Checkin Released Not_Distributed
    je 11i.JE.F 2009602 11-APR-02 Checkin Released By_Dev
    je 11i.JE.G 2271080 02-APR-03 Checkin Released By_Dev
    je 11i.JE.H 2865293 12-DEC-03 Checkin Released By_Dev
    je 11i.JE.I 3151480 18-OCT-04 Checkin Released Not_Distributed
    je 11i.JE.J 3617971 29-APR-05 Checkin Released Not_Distributed
    jg 11i.JG.A 1345067 01-SEP-00 Checkin Released Not_Distributed
    jg 11i.JG.B 1421322 20-OCT-00 Checkin Released Not_Distributed
    jg 11i.JG.C 1476834 22-DEC-00 Checkin Released Not_Distributed
    jg 11i.JG.D 1505787 02-FEB-01 Checkin Released Not_Distributed
    jg 11i.JG.E 1620234 31-MAY-01 Checkin Released Not_Distributed
    jg 11i.JG.F 1781750 24-AUG-01 Checkin Released Not_Distributed
    jg 11i.JG.G 1961403 27-DEC-01 Checkin Released By_Dev
    jg 11i.JG.H 2132882 02-APR-03 Checkin Released By_Dev
    jg 11i.JG.I 2865290 12-DEC-03 Checkin Released By_Dev
    jg 11i.JG.J 3151483 18-OCT-04 Checkin Released Not_Distributed
    jg 11i.JG.K 3616248 29-APR-05 Checkin Released Not_Distributed
    jl 11i.JL.A 1345427 01-SEP-00 Checkin Released Not_Distributed
    jl 11i.JL.B 1421319 20-OCT-00 Checkin Released Not_Distributed
    jl 11i.JL.C 1475081 22-NOV-00 Checkin Obsoleted By_Metalink
    jl 11i.JL.D 1499761 11-JAN-01 Checkin Released Not_Distributed
    jl 11i.JL.E 1566267 13-FEB-01 Checkin Released Not_Distributed
    jl 11i.JL.F 1615250 31-MAY-01 Checkin Released Not_Distributed
    jl 11i.JL.G 1773953 24-AUG-01 Checkin Released Not_Distributed
    jl 11i.JL.H 1919833 14-DEC-01 Checkin Released Not_Distributed
    jl 11i.JL.I 2123121 03-MAY-02 Checkin Released Not_Distributed
    jl 11i.JL.J 2310959 02-APR-03 Checkin Released By_Dev
    jl 11i.JL.K 2865296 12-DEC-03 Checkin Released By_Dev
    jl 11i.JL.L 3151519 18-OCT-04 Checkin Released Not_Distributed
    jl 11i.JL.M 3617454 29-APR-05 Checkin Released Not_Distributed
    jta 11i.JTA.A 1830830 19-AUG-01 Checkin Obsoleted By_Metalink
    jta 11i.JTA.B 2065484 02-NOV-01 Checkin Released By_Dev
    jta 11i.JTA.C 2154180 16-MAY-02 Checkin Obsoleted By_Dev
    jta 11i.JTA.D 2368042 23-AUG-02 Checkin Released By_Metalink
    jta 11i.JTA.E 2640247 11-JUN-03 Checkin Released By_Metalink
    jta 11i.JTA.F 3262486 04-NOV-04 Checkin Released By_Metalink
    jtf 11i.JTF.A 1306413 25-JUN-00 Checkin Released By_Metalink
    jtf 11i.JTF.B 1340244 07-OCT-00 Checkin Released Not_Distributed
    jtf 11i.JTF.C 1558976 27-FEB-01 Checkin Released By_Metalink
    jtf 11i.JTF.D 1746626 04-JUN-01 Checkin Released By_Dev
    jth 11i.JTH.R 3100686 05-NOV-04 Checkin Released By_Metalink
    jtm 11i.JTM.A 1911146 12-OCT-01 Checkin Released By_Dev
    jtm 11i.JTM.C 2427321 29-AUG-02 Checkin Released By_Dev
    jtm 11i.JTM.D 2514185 15-OCT-02 Checkin Released By_Metalink
    jtm 11i.JTM.E 2670197 11-JUN-03 Checkin Released By_Metalink
    jtm 11i.JTM.F 3263420 04-NOV-04 Checkin Released By_Metalink
    jto 11i.JTO.R 3105667 05-NOV-04 Checkin Released By_Metalink
    jtp 11i.JTP.A 2014756 07-AUG-02 Checkin Obsoleted By_Metalink
    jts 11i.JTS.A 2004385 02-NOV-01 Checkin Released By_Dev
    jts 11i.JTS.B 2197077 31-JAN-02 Checkin Released By_Metalink
    jts 11i.JTS.C 2244601 28-FEB-02 Checkin Released By_Metalink
    jts 11i.JTS.D 2282470 01-APR-02 Checkin Released By_Metalink
    jts 11i.JTS.E 2386712 22-OCT-02 Checkin Released By_Metalink
    jtt 11i.JTT.A 1883175 18-AUG-01 Checkin Released By_Metalink
    jtt 11i.JTT.B 2239956 15-MAY-02 Checkin Released By_Dev
    jtt 11i.JTT.C 2276388 21-AUG-02 Checkin Released By_Metalink
    jtt 11i.JTT.D 2420923 11-APR-03 Checkin Released By_Metalink
    jtt 11i.JTT.E 3127042 04-NOV-04 Checkin Released By_Metalink
    jtu 11i.JTU.A 2092384 06-DEC-01 Checkin Released By_Metalink
    jtu 11i.JTU.B 2684570 01-APR-03 Checkin Released By_Metalink
    jtu 11i.JTU.C 2917386 16-JUL-03 Checkin Released By_Metalink
    jty 11i.JTY.A 2712613 03-APR-03 Checkin Released Not_Distributed
    jty 11i.JTY.B 3061831 20-FEB-04 Checkin Released By_Support
    jty 11i.JTY.C 3495600 05-NOV-04 Checkin Released By_Metalink
    lns 11i.LNS.A 3431623 16-SEP-04 Checkin Released By_Dev
    lns 11i.LNS.B 3897247 08-APR-05 Checkin Released By_Metalink
    mas_pf 11i.MAS_PF.A 3386886 05-NOV-04 Checkin Released By_Metalink
    mkt_pf 11i.MKT_PF.A 2459266 11-OCT-02 Checkin Released By_Metalink
    mkt_pf 11i.MKT_PF.B 2630927 24-JUN-03 Checkin Released By_Metalink
    mrp 11i.MRP.A 1346047 05-SEP-00 Checkin Released By_Metalink
    mrp 11i.MRP.B 1426172 13-NOV-00 Checkin Released By_Metalink
    mrp 11i.MRP.C 1538254 20-DEC-00 Checkin Released Not_Distributed
    mrp 11i.MRP.D 1696799 01-MAY-01 Checkin Released Not_Distributed
    mrp 11i.MRP.E 1886035 21-AUG-01 Checkin Released Not_Distributed
    mrp 11i.MRP.F 2075266 30-JAN-02 Checkin Released Not_Distributed
    mrp 11i.MRP.G 2248430 27-JUN-02 Checkin Released Not_Distributed
    mrp 11i.MRP.H 2479230 10-JUN-03 Checkin Released By_Dev
    mrp 11i.MRP.I 2769918 17-SEP-04 Checkin Released Not_Distributed
    msc 11i.MSC.A 1354051 05-SEP-00 Checkin Released By_Metalink
    msc 11i.MSC.B 1426167 13-NOV-00 Checkin Released By_Metalink
    msc 11i.MSC.C 1538250 20-DEC-00 Checkin Released Not_Distributed
    msc 11i.MSC.D 1696794 02-MAY-01 Checkin Released Not_Distributed
    msc 11i.MSC.E 1886018 06-AUG-01 Checkin Released Not_Distributed
    msc 11i.MSC.F 2106703 30-JAN-02 Checkin Released Not_Distributed
    msc 11i.MSC.G 2250385 27-JUN-02 Checkin Released By_Dev
    msc 11i.MSC.H 2478170 10-JUN-03 Checkin Released By_Dev
    msc 11i.MSC.I 3200649 17-SEP-04 Checkin Released Not_Distributed
    msd 11i.MSD.A 1346054 05-SEP-00 Checkin Released By_Metalink
    msd 11i.MSD.B 1426176 30-NOV-00 Checkin Released By_Metalink
    msd 11i.MSD.C 1538282 20-MAR-01 Checkin Released Not_Distributed
    msd 11i.MSD.D 1696805 02-MAY-01 Checkin Released Not_Distributed
    msd 11i.MSD.E 1886010 06-AUG-01 Checkin Released Not_Distributed
    msd 11i.MSD.F 2075438 30-JAN-02 Checkin Released Not_Distributed
    msd 11i.MSD.G 2250395 27-JUN-02 Checkin Released By_Dev
    msd 11i.MSD.H 2478195 10-JUN-03 Checkin Released By_Dev
    msd 11i.MSD.I 3200658 17-SEP-04 Checkin Released Not_Distributed
    mso 11i.MSO.A 1354054 13-SEP-00 Checkin Released By_Metalink
    mso 11i.MSO.B 1426173 13-NOV-00 Checkin Released By_Metalink
    mso 11i.MSO.C 1538256 20-DEC-00 Checkin Released Not_Distributed
    mso 11i.MSO.D 1696801 02-MAY-01 Checkin Released Not_Distributed
    mso 11i.MSO.E 1886444 06-AUG-01 Checkin Released Not_Distributed
    mso 11i.MSO.F 2112188 30-JAN-02 Checkin Released Not_Distributed
    mso 11i.MSO.G 2250387 27-JUN-02 Checkin Released By_Dev
    mso 11i.MSO.H 2478230 10-JUN-03 Checkin Released By_Dev
    mso 11i.MSO.I 3200659 17-SEP-04 Checkin Released Not_Distributed
    msr 11i.MSR.A 1411082 20-MAR-01 Checkin Released Not_Distributed
    msr 11i.MSR.B 1697210 02-MAY-01 Checkin Released Not_Distributed
    msr 11i.MSR.C 1886157 06-AUG-01 Checkin Released Not_Distributed
    msr 11i.MSR.D 2075445 30-JAN-02 Checkin Released Not_Distributed
    msr 11i.MSR.E 2250391 27-JUN-02 Checkin Released By_Dev
    msr 11i.MSR.F 2478234 10-JUN-03 Checkin Released By_Dev
    msr 11i.MSR.G 3200664 17-SEP-04 Checkin Released Not_Distributed
    mst 11i.MST.A 3099306 17-SEP-04 Checkin Released Not_Distributed
    msx 11i.MSX.A 2122893 30-JAN-02 Checkin Released Not_Distributed
    mwa 11i.MWA.A 1316500 06-SEP-00 Checkin Released By_Metalink
    mwa 11i.MWA.B 1428045 13-NOV-00 Checkin Released By_Metalink
    mwa 11i.MWA.C 1697660 01-MAY-01 Checkin Released Not_Distributed
    mwa 11i.MWA.D 1886741 21-AUG-01 Checkin Released Not_Distributed
    mwa 11i.MWA.E 2069426 29-JAN-02 Checkin Released Not_Distributed
    mwa 11i.MWA.F 2212671 27-JUN-02 Checkin Released By_Dev
    mwa 11i.MWA.G 2691017 10-JUN-03 Checkin Released By_Dev
    mwa 11i.MWA.H 2770126 17-SEP-04 Checkin Released Not_Distributed
    oam 11i.OAM.G 2737099 11-JUN-03 Checkin Released By_Metalink
    oam 11i.OAM.H 3258830 04-NOV-04 Checkin Released By_Metalink
    ocm 11i.OCM.A 3391365 28-APR-04 Checkin Released By_Metalink
    ocm 11i.OCM.B 3373464 18-OCT-04 Checkin Released By_Dev
    ocm 11i.OCM.C 3620763 29-APR-05 Checkin Released By_Dev
    ocm 11i.OCM.D 4594570 06-FEB-06 Checkin Released By_Metalink
    oe 11i.OE.A 1354103 05-SEP-00 Checkin Released By_Metalink
    oe 11i.OE.B 1426000 13-NOV-00 Checkin Released By_Metalink
    oe 11i.OE.C 1733032 03-MAY-01 Checkin Released Not_Distributed
    oie 11i.OIE.A 1586479 02-FEB-01 Checkin Released Not_Distributed
    oie 11i.OIE.B 1633913 11-APR-01 Checkin Released Not_Distributed
    oie 11i.OIE.C 1633915 24-AUG-01 Checkin Released Not_Distributed
    oie 11i.OIE.D 1834628 05-SEP-01 Checkin Released Not_Distributed
    oie 11i.OIE.E 1960506 24-MAR-02 Checkin Released Not_Distributed
    oie 11i.OIE.F 2530274 25-OCT-02 Checkin Released Not_Distributed
    oie 11i.OIE.G 2624855 02-APR-03 Checkin Released By_Dev
    oie 11i.OIE.H 2800610 30-JAN-04 Checkin Released By_Dev
    oie 11i.OIE.I 3376648 04-NOV-04 Checkin Released By_Metalink
    oie 11i.OIE.J 3618125 01-FEB-05 Checkin Released By_Metalink
    oie 11i.OIE.K 4165000 09-FEB-07 Checkin Released By_Metalink
    oir 11i.OIR.A 2065564 31-JAN-02 Checkin Released Not_Distributed
    oir 11i.OIR.B 2245483 20-MAR-02 Checkin Released Not_Distributed
    oir 11i.OIR.C 2396507 16-AUG-02 Checkin Released By_Dev
    oir 11i.OIR.D 2502503 02-APR-03 Checkin Released By_Dev
    oir 11i.OIR.E 2864967 12-DEC-03 Checkin Released By_Dev
    oir 11i.OIR.F 3151380 04-NOV-04 Checkin Released By_Metalink
    oir 11i.OIR.G 3618333 29-APR-05 Checkin Released By_Metalink
    oit 11i.OIT.A 1605866 02-FEB-01 Checkin Released By_Metalink
    oit 11i.OIT.B 1675976 18-MAY-01 Checkin Released By_Metalink
    oit 11i.OIT.C 1707487 30-JAN-02 Checkin Released By_Metalink
    oit 11i.OIT.D 2397276 10-JUN-03 Checkin Released By_Metalink
    okb 11i.OKB.A 2194417 21-FEB-02 Checkin Obsoleted By_Dev
    okc 11i.OKC.A 1306956 21-JUN-00 Checkin Released Not_Distributed
    okc 11i.OKC.B 1339577 07-OCT-00 Checkin Released Not_Distributed
    okc 11i.OKC.C 1581036 09-FEB-01 Checkin Released By_Dev
    okc 11i.OKC.D 1761124 10-MAY-01 Checkin Released By_Metalink
    okc 11i.OKC.E 1818852 02-NOV-01 Checkin Released By_Dev
    okc 11i.OKC.F 2176825 22-JAN-02 Checkin Released By_Dev
    okc 11i.OKC.G 2219802 22-FEB-02 Checkin Released Not_Distributed
    okc 11i.OKC.H 2260510 15-MAR-02 Checkin Released By_Dev
    okc 11i.OKC.I 2310831 24-APR-02 Checkin Released By_Dev
    okc 11i.OKC.J 2371847 23-MAY-02 Checkin Released By_Dev
    okc 11i.OKC.K 2420023 27-JUN-02 Checkin Released By_Dev
    okc 11i.OKC.L 2440018 13-SEP-02 Checkin Released By_Dev
    okc 11i.OKC.M 2696923 10-JUN-03 Checkin Released By_Dev
    okc 11i.OKC.N 3195187 17-SEP-04 Checkin Released Not_Distributed
    oke 11i.OKE.E 1697093 31-MAY-01 Checkin Released By_Dev
    oke 11i.OKE.F 1886062 30-AUG-01 Checkin Released By_Metalink
    oke 11i.OKE.G 2069413 29-JAN-02 Checkin Released By_Metalink
    oke 11i.OKE.H 2212661 07-AUG-02 Checkin Released By_Metalink
    oke 11i.OKE.I 2475721 23-JUN-03 Checkin Released By_Metalink
    oke 11i.OKE.J 3195207 17-SEP-04 Checkin Released Not_Distributed
    oki 11i.OKI.A 1917529 02-NOV-01 Checkin Released By_Dev
    oki 11i.OKI.B 2176891 22-JAN-02 Checkin Released By_Dev
    oki 11i.OKI.C 2219805 22-FEB-02 Checkin Released Not_Distributed
    oki 11i.OKI.D 2260487 15-MAR-02 Checkin Released By_Dev
    oki 11i.OKI.E 2310844 24-APR-02 Checkin Released Not_Distributed
    oki 11i.OKI.F 2371859 23-MAY-02 Checkin Released By_Dev
    oki 11i.OKI.G 2420078 27-JUN-02 Checkin Released By_Dev
    oki 11i.OKI.H 2440079 13-SEP-02 Checkin Released By_Dev
    oki 11i.OKI.I 2696943 10-JUN-03 Checkin Released By_Dev
    oki 11i.OKI.J 3195201 17-SEP-04 Checkin Released Not_Distributed
    okl 11i.OKL.A 2194408 06-MAR-02 Checkin Released By_Dev
    okl 11i.OKL.B 2269974 15-MAY-02 Checkin Released By_Dev
    okl 11i.OKL.C 2375622 18-JUN-02 Checkin Released By_Dev
    okl 11i.OKL.D 2420911 25-SEP-02 Checkin Released By_Dev
    okl 11i.OKL.E 2698797 20-JUN-03 Checkin Released By_Metalink
    okl 11i.OKL.F 3101250 17-SEP-04 Checkin Released By_Metalink
    okl 11i.OKL.G 3981693 28-JAN-05 Checkin Released By_Metalink
    okl 11i.OKL.H 4551977 06-FEB-06 Checkin Released By_Metalink
    oko 11i.OKO.A 1919211 02-NOV-01 Checkin Released By_Dev
    oko 11i.OKO.B 2176888 22-JAN-02 Checkin Released By_Dev
    oko 11i.OKO.C 2219807 22-FEB-02 Checkin Released Not_Distributed
    oko 11i.OKO.D 2260534 15-MAR-02 Checkin Released By_Dev
    oko 11i.OKO.E 2371874 23-MAY-02 Checkin Released By_Dev
    oko 11i.OKO.F 2420089 27-JUN-02 Checkin Released By_Dev
    oko 11i.OKO.G 2440082 13-SEP-02 Checkin Released By_Dev
    oko 11i.OKO.H 2696951 10-JUN-03 Checkin Released By_Dev
    oko 11i.OKO.I 3195197 17-SEP-04 Checkin Released Not_Distributed
    okr 11i.OKR.A 1581046 09-FEB-01 Checkin Released By_Dev
    okr 11i.OKR.B 1766608 10-MAY-01 Checkin Released By_Dev
    okr 11i.OKR.C 1819009 02-NOV-01 Checkin Released By_Dev
    okr 11i.OKR.D 2176833 22-JAN-02 Checkin Released By_Dev
    okr 11i.OKR.E 2219810 22-FEB-02 Checkin Released Not_Distributed
    okr 11i.OKR.F 2260529 15-MAR-02 Checkin Released By_Dev
    okr 11i.OKR.G 2310852 24-APR-02 Checkin Released By_Dev
    okr 11i.OKR.H 2371852 23-MAY-02 Checkin Released By_Dev
    okr 11i.OKR.I 2420075 27-JUN-02 Checkin Released By_Dev
    okr 11i.OKR.J 2440003 13-SEP-02 Checkin Released By_Dev
    okr 11i.OKR.K 2696947 10-JUN-03 Checkin Released By_Dev
    okr 11i.OKR.L 3440839 17-SEP-04 Checkin Released Not_Distributed
    oks 11i.OKS.A 1306951 21-JUN-00 Checkin Released Not_Distributed
    oks 11i.OKS.B 1339581 07-OCT-00 Checkin Released Not_Distributed
    oks 11i.OKS.C 1581039 09-FEB-01 Checkin Released By_Dev
    oks 11i.OKS.D 1674158 13-MAR-01 Checkin Released By_Metalink
    oks 11i.OKS.E 1766342 10-MAY-01 Checkin Released By_Dev
    oks 11i.OKS.F 1818915 02-NOV-01 Checkin Released By_Dev
    oks 11i.OKS.G 2176874 22-JAN-02 Checkin Released By_Dev
    oks 11i.OKS.H 2219812 22-FEB-02 Checkin Released Not_Distributed
    oks 11i.OKS.I 2260524 15-MAR-02 Checkin Released By_Dev
    oks 11i.OKS.J 2310838 24-APR-02 Checkin Released By_Dev
    oks 11i.OKS.K 2371843 23-MAY-02 Checkin Released By_Dev
    oks 11i.OKS.L 2420046 27-JUN-02 Checkin Released By_Dev
    oks 11i.OKS.M 2440051 13-SEP-02 Checkin Released By_Dev
    oks 11i.OKS.N 2696936 10-JUN-03 Checkin Released By_Dev
    oks 11i.OKS.O 3195193 17-SEP-04 Checkin Released Not_Distributed
    okx 11i.OKX.A 1306953 21-JUN-00 Checkin Obsoleted Not_Distributed
    okx 11i.OKX.B 1339582 05-JUL-00 Checkin Released Not_Distributed
    okx 11i.OKX.C 1581044 09-FEB-01 Checkin Released By_Dev
    okx 11i.OKX.D 1663469 27-FEB-01 Checkin Released By_Metalink
    okx 11i.OKX.E 1761133 10-MAY-01 Checkin Released By_Metalink
    okx 11i.OKX.F 1819342 02-NOV-01 Checkin Released By_Dev
    okx 11i.OKX.G 2176883 22-JAN-02 Checkin Released By_Dev
    okx 11i.OKX.H 2219818 22-FEB-02 Checkin Released Not_Distributed
    okx 11i.OKX.I 2260505 15-MAR-02 Checkin Released By_Dev
    okx 11i.OKX.J 2371868 23-MAY-02 Checkin Released By_Dev
    okx 11i.OKX.K 2420077 27-JUN-02 Checkin Released By_Dev
    okx 11i.OKX.L 2440048 13-SEP-02 Checkin Released By_Dev
    okx 11i.OKX.M 2696938 10-JUN-03 Checkin Released By_Dev
    okx 11i.OKX.N 3195204 17-SEP-04 Checkin Released Not_Distributed
    ok_pf 11i.OK_PF.A 1990919 11-JAN-02 Checkin Released By_Dev
    ok_pf 11i.OK_PF.B 2180833 25-JAN-02 Checkin Released By_Metalink
    ok_pf 11i.OK_PF.C 2230161 23-FEB-02 Checkin Released By_Metalink
    ok_pf 11i.OK_PF.D 2260849 22-MAR-02 Checkin Released By_Metalink
    ok_pf 11i.OK_PF.E 2311069 24-APR-02 Checkin Released By_Metalink
    ok_pf 11i.OK_PF.F 2371883 29-MAY-02 Checkin Released By_Metalink
    ok_pf 11i.OK_PF.G 2420493 27-JUN-02 Checkin Released By_Metalink
    ok_pf 11i.OK_PF.H 2440054 13-SEP-02 Checkin Released By_Metalink
    ok_pf 11i.OK_PF.I 2661036 20-JUN-03 Checkin Released By_Metalink
    ok_pf 11i.OK_PF.J 3195181 17-SEP-04 Checkin Released Not_Distributed
    om_pf 11i.OM_PF.D 1550583 01-FEB-01 Checkin Released By_Metalink
    om_pf 11i.OM_PF.E 1745389 31-MAY-01 Checkin Released By_Metalink
    om_pf 11i.OM_PF.F 1942144 01-SEP-01 Checkin Released By_Metalink
    om_pf 11i.OM_PF.G 2118482 05-FEB-02 Checkin Released By_Metalink
    om_pf 11i.OM_PF.H 2250333 22-AUG-02 Checkin Released By_Metalink
    om_pf 11i.OM_PF.I 2698175 20-JUN-03 Checkin Released By_Metalink
    om_pf 11i.OM_PF.J 3210616 18-SEP-04 Checkin Released Not_Distributed
    ont 11i.ONT.A 1288742 25-MAY-00 Checkin Released By_Metalink
    ont 11i.ONT.B 1354128 05-SEP-00 Checkin Released By_Metalink
    ont 11i.ONT.C 1425974 13-NOV-00 Checkin Released By_Metalink
    ont 11i.ONT.D 1538204 19-DEC-00 Checkin Released Not_Distributed
    ont 11i.ONT.E 1706788 03-MAY-01 Checkin Released Not_Distributed
    ont 11i.ONT.F 1885954 17-AUG-01 Checkin Released Not_Distributed
    ont 11i.ONT.G 2112226 31-JAN-02 Checkin Released Not_Distributed
    ont 11i.ONT.H 2250301 27-JUN-02 Checkin Released By_Dev
    ont 11i.ONT.I 2475849 11-JUN-03 Checkin Released By_Dev
    ont 11i.ONT.J 2770166 17-SEP-04 Checkin Released Not_Distributed
    opi 11i.OPI.A 1354197 24-DEC-03 Checkin Released Not_Distributed
    opi 11i.OPI.B 2695953 17-SEP-04 Checkin Released Not_Distributed
    opm_pf 11i.OPM_PF.E 1614311 05-FEB-01 Checkin Released By_Metalink
    opm_pf 11i.OPM_PF.F 1688968 30-MAR-01 Checkin Released By_Metalink
    opm_pf 11i.OPM_PF.G 1844177 05-SEP-01 Checkin Released By_Metalink
    opm_pf 11i.OPM_PF.H.1 2220884 12-FEB-02 Checkin Released By_Metalink
    opm_pf 11i.OPM_PF.I 2216258 30-JUL-02 Checkin Released By_Metalink
    opm_pf 11i.OPM_PF.J 2433137 30-DEC-02 Checkin Released By_Metalink
    opm_pf 11i.OPM_PF.K 2727874 08-JUL-03 Checkin Released By_Metalink
    opm_pf 11i.OPM_PF.L 2916642 17-SEP-04 Checkin Released Not_Distributed
    ota 11i.OTA.A 1344139 07-OCT-00 Checkin Released By_Metalink
    ota 11i.OTA.B 1483058 14-NOV-00 Checkin Released By_Metalink
    ota 11i.OTA.C 1566806 05-FEB-01 Checkin Released By_Metalink
    ota 11i.OTA.D 1663230 04-JUN-01 Checkin Released By_Metalink
    ota 11i.OTA.E 2004082 20-DEC-01 Checkin Released By_Metalink
    ota 11i.OTA.F 2296468 20-MAY-02 Checkin Released By_Metalink
    ota 11i.OTA.G 2489786 11-OCT-02 Checkin Released By_Metalink
    ota 11i.OTA.H 2897819 18-JUL-03 Checkin Released By_Metalink
    ota 11i.OTA.I 3291795 04-NOV-04 Checkin Released By_Metalink
    ota 11i.OTA.J 4428068 07-NOV-05 Checkin Released By_Metalink
    ota 11i.OTA.J.1 5086157 01-JUN-06 Checkin Released By_Metalink
    ota 11i.OTA.J.2 5550150 14-OCT-07 Checkin Released By_Metalink
    ota 11i.OTA.J.3 7446888 13-NOV-08 Checkin Released By_Metalink
    owf 11i.OWF.A 2656935 05-NOV-02 Checkin Released Not_Distributed
    owf 11i.OWF.B 2656979 05-NOV-02 Checkin Released Not_Distributed
    owf 11i.OWF.C 2657019 05-NOV-02 Checkin Released Not_Distributed
    owf 11i.OWF.D 2657020 05-NOV-02 Checkin Released Not_Distributed
    owf 11i.OWF.E 2657023 05-NOV-02 Checkin Released Not_Distributed
    owf 11i.OWF.F 2657033 09-JAN-03 Checkin Released Not_Distributed
    owf 11i.OWF.G 2728236 11-JUN-03 Checkin Released By_Metalink
    owf 11i.OWF.H 3258819 04-NOV-04 Checkin Released By_Metalink
    ozf 11i.OZF.A 1306456 21-JUN-00 Checkin Released Not_Distributed
    ozf 11i.OZF.B 1339674 10-JAN-01 Checkin Released Not_Distributed
    ozf 11i.OZF.C 1568679 18-FEB-01 Checkin Released By_Dev
    ozf 11i.OZF.D 3073155 09-OCT-04 Checkin Released Not_Distributed
    ozf 11i.OZF.D.1 7340510 19-DEC-08 Checkin Released By_Metalink
    pa 11i.PA.A 1343447 01-SEP-00 Checkin Released By_Metalink
    pa 11i.PA.B 1408597 15-OCT-00 Checkin Released By_Metalink
    pa 11i.PA.C 1561755 29-JAN-01 Checkin Obsoleted By_Metalink
    pa 11i.PA.D 1618069 02-FEB-01 Checkin Released By_Metalink
    pa 11i.PA.E 1734378 27-JUN-01 Checkin Released By_Metalink
    pa 11i.PA.F 1843095 24-AUG-01 Checkin Obsoleted By_Metalink
    pa 11i.PA.G 2019789 29-SEP-01 Checkin Released By_Metalink
    pa 11i.PA.H 2028970 18-DEC-01 Checkin Released By_Metalink
    pa 11i.PA.I 2185776 15-MAY-02 Checkin Released Not_Distributed
    pa 11i.PA.J 2381316 30-AUG-02 Checkin Released Not_Distributed
    pa 11i.PA.K 2484622 23-APR-03 Checkin Released By_Dev
    pa 11i.PA.L 2991508 28-NOV-03 Checkin Released Not_Distributed
    pa 11i.PA.M 3409392 16-MAY-05 Checkin Released Not_Distributed
    pay 11i.PAY.A 1344140 01-SEP-00 Checkin Released By_Dev
    pay 11i.PAY.B 1409969 03-NOV-00 Checkin Released By_Dev
    pay 11i.PAY.C 1566770 05-FEB-01 Checkin Released By_Dev
    pay 11i.PAY.D 1663234 07-MAY-01 Checkin Released By_Dev
    pay 11i.PAY.E 1849550 18-AUG-01 Checkin Released By_Dev
    pay 11i.PAY.F 2004035 20-NOV-01 Checkin Released By_Metalink
    pay 11i.PAY.G 2156706 21-FEB-02 Checkin Released Not_Distributed
    pay 11i.PAY.H 2268438 09-MAY-02 Checkin Released Not_Distributed
    pay 11i.PAY.I 2410054 02-AUG-02 Checkin Released Not_Distributed
    pay 11i.PAY.J 2475648 27-NOV-02 Checkin Released Not_Distributed
    pay 11i.PAY.K 2803583 19-MAY-03 Checkin Released Not_Distributed
    pay 11i.PAY.L 3125812 05-DEC-03 Checkin Released Not_Distributed
    pay 11i.PAY.M 3418225 27-JUL-04 Checkin Released Not_Distributed
    pay 11i.PAY.N 3988350 08-MAR-05 Checkin Released Not_Distributed
    pay 11i.PAY.O 4289868 30-JUN-05 Checkin Released Not_Distributed
    pay 11i.PAY.O.1 5059537 31-MAY-06 Checkin Released Not_Distributed
    pay 11i.PAY.O.2 5917533 22-JUN-07 Checkin Released Not_Distributed
    pay 11i.PAY.O.3 6964746 02-JUL-08 Checkin Released Not_Distributed
    per 11i.PER.A 1344328 01-SEP-00 Checkin Released By_Dev
    per 11i.PER.B 1409967 03-NOV-00 Checkin Released By_Dev
    per 11i.PER.C 1566759 05-FEB-01 Checkin Obsoleted By_Metalink
    per 11i.PER.D 1663243 07-MAY-01 Checkin Obsoleted By_Metalink
    per 11i.PER.E 1776067 14-MAY-01 Checkin Released By_Dev
    per 11i.PER.F 1849547 18-AUG-01 Checkin Released By_Dev
    per 11i.PER.G 1988754 20-NOV-01 Checkin Released By_Metalink
    per 11i.PER.H 2155076 22-FEB-02 Checkin Released Not_Distributed
    per 11i.PER.I 2268434 09-MAY-02 Checkin Released Not_Distributed
    per 11i.PER.J 2410052 02-AUG-02 Checkin Released Not_Distributed
    per 11i.PER.K 2475706 27-NOV-02 Checkin Released Not_Distributed
    per 11i.PER.L 2803589 19-MAY-03 Checkin Released Not_Distributed
    per 11i.PER.M 3125760 05-DEC-03 Checkin Released Not_Distributed
    per 11i.PER.N 3418216 27-JUL-04 Checkin Released Not_Distributed
    per 11i.PER.O 3952535 08-MAR-05 Checkin Released Not_Distributed
    per 11i.PER.P 4289431 30-JUN-05 Checkin Released Not_Distributed
    per 11i.PER.P.1 5059548 31-MAY-06 Checkin Released Not_Distributed
    per 11i.PER.P.2 5917536 22-JUN-07 Checkin Released Not_Distributed
    per 11i.PER.P.3 6964755 02-JUL-08 Checkin Released Not_Distributed
    pft 11i.PFT.A 3841200 12-SEP-05 Checkin Released Not_Distributed
    pft 11i.PFT.A.1 4687900 31-OCT-05 Checkin Released By_Dev
    pft 11i.PFT.A.1 5018672 26-MAY-06 Checkin Released By_Metalink
    pft 11i.PFT.A.2 4748198 01-DEC-05 Checkin Released Not_Distributed
    pft 11i.PFT.A.3 4922942 05-JAN-06 Checkin Released Not_Distributed
    pft 11i.PFT.A.4 5365617 14-JUL-06 Checkin Released By_Dev
    pft 11i.PFT.A.5 5560569 24-OCT-06 Checkin Released By_Metalink
    pft 11i.PFT.A.6 5903383 03-MAY-07 Checkin Released By_Metalink
    pft 11i.PFT.A.7 6402392 31-DEC-07 Checkin Released By_Metalink
    pjm 11i.PJM.A 1339680 05-SEP-00 Checkin Released By_Metalink
    pjm 11i.PJM.B 1426193 13-NOV-00 Checkin Released By_Metalink
    pjm 11i.PJM.C 1697663 01-MAY-01 Checkin Released Not_Distributed
    pjm 11i.PJM.D 1886032 20-AUG-01 Checkin Released Not_Distributed
    pjm 11i.PJM.E 2012959 29-JAN-02 Checkin Released Not_Distributed
    pjm 11i.PJM.F 2212672 27-JUN-02 Checkin Released By_Dev
    pjm 11i.PJM.G 2478564 10-JUN-03 Checkin Released By_Dev
    pjm 11i.PJM.H 2770116 17-SEP-04 Checkin Released Not_Distributed
    pjr 11i.PJR.A 1844779 20-JUL-01 Checkin Released By_Metalink
    pjr 11i.PJR.B 1896962 24-AUG-01 Checkin Released By_Metalink
    pjr 11i.PJR.C 2034194 13-DEC-01 Checkin Released By_Metalink
    pjr 11i.PJR.D 2185783 14-MAY-02 Checkin Released Not_Distributed
    pj_pf 11i.PJ_PF.A 2185805 25-FEB-02 Checkin Released Not_Distributed
    pj_pf 11i.PJ_PF.B 2185807 25-FEB-02 Checkin Released Not_Distributed
    pj_pf 11i.PJ_PF.C 2185808 25-FEB-02 Checkin Released Not_Distributed
    pj_pf 11i.PJ_PF.D 2185813 25-FEB-02 Checkin Released Not_Distributed
    pj_pf 11i.PJ_PF.E 2185814 25-FEB-02 Checkin Released Not_Distributed
    pj_pf 11i.PJ_PF.F 2185815 25-FEB-02 Checkin Released Not_Distributed
    pj_pf 11i.PJ_PF.G 2185818 25-FEB-02 Checkin Released Not_Distributed
    pj_pf 11i.PJ_PF.H 2185820 25-FEB-02 Checkin Released Not_Distributed
    pj_pf 11i.PJ_PF.I 2185788 15-MAY-02 Checkin Released Not_Distributed
    pj_pf 11i.PJ_PF.J 2381317 30-AUG-02 Checkin Released Not_Distributed
    pj_pf 11i.PJ_PF.K 2484626 23-APR-03 Checkin Released By_Metalink
    pj_pf 11i.PJ_PF.L 3074777 28-NOV-03 Checkin Released By_Metalink
    pj_pf 11i.PJ_PF.L.10 3397153 05-NOV-04 Checkin Released By_Metalink
    pj_pf 11i.PJ_PF.M 3485155 16-MAY-05 Checkin Released By_Metalink
    plm_pf 11i.PLM_PF.A 2720739 12-JUN-03 Checkin Released By_Dev
    plm_pf 11i.PLM_PF.B 3016576 31-JUL-03 Checkin Released By_Metalink
    plm_pf 11i.PLM_PF.C 3298676 03-NOV-04 Checkin Released By_Metalink
    plm_pf 11i.PLM_PF.D 3990439 23-FEB-05 Checkin Released By_Metalink
    plm_pf 11i.PLM_PF.E 4203793 27-APR-05 Checkin Released By_Metalink
    pmi 11i.PMI.A 1343107 29-JUN-00 Checkin Released Not_Distributed
    pmi 11i.PMI.B 1355645 07-OCT-00 Checkin Released By_Metalink
    pmi 11i.PMI.C 1511520 05-FEB-01 Checkin Released By_Metalink
    pmi 11i.PMI.D 1986248 11-SEP-01 Checkin Released By_Dev
    pmi 11i.PMI.E 2364726 13-SEP-02 Checkin Released By_Metalink
    pmi 11i.PMI.F 2591002 20-MAR-03 Checkin Released By_Metalink
    pmi 11i.PMI.G 2663956 05-DEC-03 Checkin Released By_Metalink
    pmi 11i.PMI.H 3416752 07-OCT-04 Checkin Released Not_Distributed
    pn 11i.PN.A 1342175 01-SEP-00 Checkin Released Not_Distributed
    pn 11i.PN.B 1421657 20-OCT-00 Checkin Released Not_Distributed
    pn 11i.PN.C 1548838 04-JAN-01 Checkin Released Not_Distributed
    pn 11i.PN.D 1682122 23-MAY-01 Checkin Released Not_Distributed
    pn 11i.PN.E 1907767 02-OCT-01 Checkin Released Not_Distributed
    pn 11i.PN.F 2149380 22-JAN-02 Checkin Released Not_Distributed
    pn 11i.PN.G 2210731 18-MAR-02 Checkin Released Not_Distributed
    pn 11i.PN.H 2398753 16-AUG-02 Checkin Released By_Dev
    pn 11i.PN.I 2488748 02-APR-03 Checkin Released By_Dev
    pn 11i.PN.J 2864951 30-SEP-03 Checkin Released By_Metalink
    pn 11i.PN.K 3151458 18-OCT-04 Checkin Released By_Dev
    pn 11i.PN.L 3618077 29-APR-05 Checkin Released By_Metalink
    pn 11i.PN.M 5591144 27-JUN-07 Checkin Released By_Metalink
    po 11i.PO.A 1350136 05-SEP-00 Checkin Released By_Metalink
    po 11i.PO.B 1425942 13-NOV-00 Checkin Released By_Metalink
    po 11i.PO.C 1538571 21-DEC-00 Checkin Released Not_Distributed
    po 11i.PO.D 1707349 02-MAY-01 Checkin Released Not_Distributed
    po 11i.PO.E 1885835 22-AUG-01 Checkin Released Not_Distributed
    po 11i.PO.F 2102542 31-JAN-02 Checkin Released Not_Distributed
    po 11i.PO.G 2235892 15-AUG-02 Checkin Released Not_Distributed
    po 11i.PO.H 2478541 11-JUN-03 Checkin Released By_Dev
    po 11i.PO.I 3212265 17-SEP-04 Checkin Released Not_Distributed
    poa 11i.POA.A 1350331 05-SEP-00 Checkin Released By_Metalink
    poa 11i.POA.B 1711292 02-MAY-01 Checkin Released Not_Distributed
    poa 11i.POA.E 2478594 10-JUN-03 Checkin Released By_Dev
    poa 11i.POA.F 3212251 17-SEP-04 Checkin Released Not_Distributed
    pom 11i.POM.A 1413785 21-DEC-00 Checkin Released By_Metalink
    pom 11i.POM.B 1581096 11-FEB-01 Checkin Released By_Metalink
    pom 11i.POM.C 1686888 10-APR-01 Checkin Released By_Metalink
    pom 11i.POM.D 1786841 16-MAY-01 Checkin Released Not_Distributed
    pom 11i.POM.E 1787171 02-JUL-01 Checkin Released Not_Distributed
    pom 11i.POM.F 1951253 11-SEP-01 Checkin Released Not_Distributed
    pom 11i.POM.G 2119861 30-JAN-02 Checkin Released Not_Distributed
    pom 11i.POM.H 2476102 30-JUL-04 Checkin Released By_Metalink
    pon 11i.PON.H 2360814 28-AUG-02 Checkin Released By_Metalink
    pon 11i.PON.I 2476027 10-JUN-03 Checkin Released By_Dev
    pon 11i.PON.J 3212274 17-SEP-04 Checkin Released Not_Distributed
    pos 11i.POS.A 1887407 22-AUG-01 Checkin Released Not_Distributed
    pos 11i.POS.B 2103103 31-JAN-02 Checkin Released Not_Distributed
    pos 11i.POS.C 2236030 15-AUG-02 Checkin Released By_Dev
    pos 11i.POS.D 2478572 10-JUN-03 Checkin Released By_Dev
    pos 11i.POS.E 3212271 17-SEP-04 Checkin Released Not_Distributed
    pov 11i.POV.A 2120440 30-JAN-02 Checkin Released Not_Distributed
    pqh 11i.PQH.A 1344341 28-SEP-00 Checkin Released By_Metalink
    pqh 11i.PQH.B 1419423 08-MAY-01 Checkin Released Not_Distributed
    pqh 11i.PQH.C 2004090 03-OCT-01 Checkin Released Not_Distributed
    pqh 11i.PQH.D 2156867 21-FEB-02 Checkin Released Not_Distributed
    pqh 11i.PQH.E 2268441 09-MAY-02 Checkin Released Not_Distributed
    pqh 11i.PQH.F 2410057 02-AUG-02 Checkin Released Not_Distributed
    pqh 11i.PQH.G 2632495 27-NOV-02 Checkin Released Not_Distributed
    pqh 11i.PQH.H 2803594 19-MAY-03 Checkin Released Not_Distributed
    pqh 11i.PQH.I 3125833 05-DEC-03 Checkin Released Not_Distributed
    pqh 11i.PQH.J 3418295 28-JUL-04 Checkin Released Not_Distributed
    pqh 11i.PQH.K 3988395 08-MAR-05 Checkin Released Not_Distributed
    pqh 11i.PQH.L 4289882 30-JUN-05 Checkin Released Not_Distributed
    pqh 11i.PQH.L.1 5059550 31-MAY-06 Checkin Released Not_Distributed
    pqh 11i.PQH.L.2 5917547 22-JUN-07 Checkin Released Not_Distributed
    pqh 11i.PQH.L.3 6964759 02-JUL-08 Checkin Released Not_Distributed
    pqp 11i.PQP.A 1344365 28-SEP-00 Checkin Released By_Metalink
    pqp 11i.PQP.B 1419424 08-MAY-01 Checkin Released Not_Distributed
    pqp 11i.PQP.C 2004098 03-OCT-01 Checkin Released Not_Distributed
    pqp 11i.PQP.D 2156869 21-FEB-02 Checkin Released Not_Distributed
    pqp 11i.PQP.E 2268444 09-MAY-02 Checkin Released Not_Distributed
    pqp 11i.PQP.F 2410074 02-AUG-02 Checkin Released Not_Distributed
    pqp 11i.PQP.G 2632507 27-NOV-02 Checkin Released Not_Distributed
    pqp 11i.PQP.H 2803595 19-MAY-03 Checkin Released Not_Distributed
    pqp 11i.PQP.I 3125836 05-DEC-03 Checkin Released Not_Distributed
    pqp 11i.PQP.J 3418304 28-JUL-04 Checkin Released Not_Distributed
    pqp 11i.PQP.K 3988399 08-MAR-05 Checkin Released Not_Distributed
    pqp 11i.PQP.L 4289895 30-JUN-05 Checkin Released Not_Distributed
    pqp 11i.PQP.L.1 5059552 31-MAY-06 Checkin Released Not_Distributed
    pqp 11i.PQP.L.2 5917552 22-JUN-07 Checkin Released Not_Distributed
    pqp 11i.PQP.L.3 6964761 02-JUL-08 Checkin Released Not_Distributed
    prc_pf 11i.PRC_PF.D 1554100 01-FEB-01 Checkin Released By_Metalink
    prc_pf 11i.PRC_PF.E 1745369 18-MAY-01 Checkin Released By_Metalink
    prc_pf 11i.PRC_PF.F 1891381 28-AUG-01 Checkin Released By_Metalink
    prc_pf 11i.PRC_PF.G 2141229 01-FEB-02 Checkin Released By_Metalink
    prc_pf 11i.PRC_PF.H 2320032 15-AUG-02 Checkin Released By_Metalink
    prc_pf 11i.PRC_PF.I 2700001 20-JUN-03 Checkin Released By_Metalink
    prc_pf 11i.PRC_PF.J 3219529 17-SEP-04 Checkin Released Not_Distributed
    prp 11i.PRP.A 2606463 04-APR-03 Checkin Released By_Metalink
    prp 11i.PRP.B 3070696 05-NOV-04 Checkin Released By_Metalink
    psa 11i.PSA.A 1351729 07-OCT-00 Checkin Released Not_Distributed
    psa 11i.PSA.B 1455250 14-DEC-00 Checkin Released Not_Distributed
    psa 11i.PSA.C 1671966 29-MAR-01 Checkin Obsoleted By_Metalink
    psa 11i.PSA.D 1791610 16-JUL-01 Checkin Released Not_Distributed
    psa 11i.PSA.E 1905293 27-AUG-01 Checkin Released Not_Distributed
    psa 11i.PSA.F 2265646 08-APR-02 Checkin Released By_Metalink
    psa 11i.PSA.G 2492811 02-APR-03 Checkin Released By_Dev
    psa 11i.PSA.H 2864973 12-DEC-03 Checkin Released By_Dev
    psa 11i.PSA.I 3153659 18-OCT-04 Checkin Released Not_Distributed
    psa 11i.PSA.J 3618203 29-APR-05 Checkin Released Not_Distributed
    psb 11i.PSB.B 1351671 07-OCT-00 Checkin Released Not_Distributed
    psb 11i.PSB.C 1449673 14-DEC-00 Checkin Released Not_Distributed
    psb 11i.PSB.D 1549308 05-FEB-01 Checkin Released Not_Distributed
    psb 11i.PSB.E 1666804 06-JUL-01 Checkin Released Not_Distributed
    psb 11i.PSB.F 1932032 28-AUG-01 Checkin Released Not_Distributed
    psb 11i.PSB.G 2079200 05-FEB-02 Checkin Released Not_Distributed
    psb 11i.PSB.H 2412968 02-APR-03 Checkin Released By_Dev
    psb 11i.PSB.I 2864862 12-DEC-03 Checkin Released By_Dev
    psb 11i.PSB.J 3151556 18-OCT-04 Checkin Released Not_Distributed
    psb 11i.PSB.K 3617407 29-APR-05 Checkin Released Not_Distributed
    psp 11i.PSP.A 1346146 07-OCT-00 Checkin Released By_Metalink
    psp 11i.PSP.B 1449709 14-DEC-00 Checkin Released By_Metalink
    psp 11i.PSP.C 1569137 05-FEB-01 Checkin Released By_Metalink
    psp 11i.PSP.D 1804365 27-AUG-01 Checkin Released By_Metalink
    psp 11i.PSP.E 2014950 20-NOV-01 Checkin Released By_Metalink
    psp 11i.PSP.F 2295469 21-AUG-02 Checkin Released By_Metalink
    psp 11i.PSP.G 2492770 02-APR-03 Checkin Released By_Metalink
    psp 11i.PSP.H 2840510 05-DEC-03 Checkin Released Not_Distributed
    psp 11i.PSP.I 3418306 28-JUL-04 Checkin Released Not_Distributed
    psp 11i.PSP.J 3988402 08-MAR-05 Checkin Released Not_Distributed
    psp 11i.PSP.K 4289880 30-JUN-05 Checkin Released Not_Distributed
    psp 11i.PSP.K.1 5059556 31-MAY-06 Checkin Released Not_Distributed
    psp 11i.PSP.K.2 5917559 22-JUN-07 Checkin Released Not_Distributed
    psp 11i.PSP.K.3 6964762 02-JUL-08 Checkin Released Not_Distributed
    pv 11i.PV.A 1341058 08-JAN-01 Checkin Released Not_Distributed
    pv 11i.PV.B 1567522 18-FEB-01 Checkin Released By_Dev
    pv 11i.PV.C 1903602 03-OCT-01 Checkin Released By_Dev
    pv 11i.PV.D 2089495 04-NOV-01 Checkin Released By_Dev
    pv 11i.PV.E 2267833 28-MAY-02 Checkin Released By_Metalink
    pv 11i.PV.F 2383307 11-OCT-02 Checkin Released By_Dev
    pv 11i.PV.G 2630022 11-JUN-03 Checkin Released By_Dev
    pv 11i.PV.H 3025814 09-OCT-04 Checkin Released Not_Distributed
    pv 11i.PV.H.1 6429776 27-NOV-07 Checkin Released By_Metalink
    qa 11i.QA.A 1357316 05-SEP-00 Checkin Released By_Metalink
    qa 11i.QA.B 1426205 13-NOV-00 Checkin Released By_Metalink
    qa 11i.QA.C 1538366 19-DEC-00 Checkin Released Not_Distributed
    qa 11i.QA.D 1697694 01-MAY-01 Checkin Released Not_Distributed
    qa 11i.QA.E 1886023 20-AUG-01 Checkin Released Not_Distributed
    qa 11i.QA.F 2064811 30-JAN-02 Checkin Released Not_Distributed
    qa 11i.QA.G 2248481 27-JUN-02 Checkin Released By_Dev
    qa 11i.QA.H 2479232 10-JUN-03 Checkin Released By_Dev
    qa 11i.QA.I 2769925 17-SEP-04 Checkin Released Not_Distributed
    qot 11i.QOT.A 2175384 31-MAY-02 Checkin Released By_Metalink
    qot 11i.QOT.B 2380531 31-AUG-02 Checkin Released By_Metalink
    qot 11i.QOT.C 2549599 04-APR-03 Checkin Released By_Metalink
    qot 11i.QOT.D 2937175 21-JUN-04 Checkin Released By_Metalink
    qp 11i.QP.A 1288207 24-MAY-00 Checkin Released Not_Distributed
    qp 11i.QP.B 1357262 05-SEP-00 Checkin Released By_Metalink
    qp 11i.QP.C 1426271 13-NOV-00 Checkin Released By_Metalink
    qp 11i.QP.D 1538197 19-DEC-00 Checkin Released Not_Distributed
    qp 11i.QP.E 1706645 02-MAY-01 Checkin Released Not_Distributed
    qp 11i.QP.F 1886007 16-AUG-01 Checkin Released Not_Distributed
    qp 11i.QP.G 2112249 31-JAN-02 Checkin Released Not_Distributed
    qp 11i.QP.H 2250316 27-JUN-02 Checkin Released By_Dev
    qp 11i.QP.I 2478163 11-JUN-03 Checkin Released By_Dev
    qp 11i.QP.J 2770137 17-SEP-04 Checkin Released Not_Distributed
    qrm 11i.QRM.A 2352122 07-JUN-02 Checkin Released Not_Distributed
    qrm 11i.QRM.B 2502497 02-APR-03 Checkin Released By_Dev
    qrm 11i.QRM.C 2864467 12-DEC-03 Checkin Released By_Dev
    qrm 11i.QRM.D 3151463 18-OCT-04 Checkin Released Not_Distributed
    qrm 11i.QRM.E 3617746 29-APR-05 Checkin Released Not_Distributed
    rcm 11i.RCM.A 3849014 17-DEC-04 Checkin Released Not_Distributed
    rcm 11i.RCM.B 4017563 01-JUL-05 Checkin Released Not_Distributed
    rg 11i.RG.A 1339837 05-SEP-00 Checkin Released Not_Distributed
    rg 11i.RG.B 1423381 28-DEC-00 Checkin Released Not_Distributed
    rg 11i.RG.C 1801262 31-MAY-01 Checkin Released Not_Distributed
    rg 11i.RG.D 2153415 30-JAN-02 Checkin Released Not_Distributed
    rg 11i.RG.E 2322330 24-MAY-02 Checkin Released Not_Distributed
    rg 11i.RG.F 2490905 02-APR-03 Checkin Released By_Dev
    rg 11i.RG.G 2865016 12-DEC-03 Checkin Released By_Dev
    rg 11i.RG.H 3151391 18-OCT-04 Checkin Released Not_Distributed
    rg 11i.RG.I 3559501 29-APR-05 Checkin Released Not_Distributed
    rhx 11i.RHX.A 1354061 07-OCT-00 Checkin Obsoleted By_Metalink
    rla 11i.RLA.A 1354693 07-OCT-00 Checkin Obsoleted By_Metalink
    rlm 11i.RLM.A 1287567 24-MAY-00 Checkin Released Not_Distributed
    rlm 11i.RLM.B 1354701 05-SEP-00 Checkin Released By_Metalink
    rlm 11i.RLM.C 1426003 13-NOV-00 Checkin Released By_Metalink
    rlm 11i.RLM.D 1538692 19-DEC-00 Checkin Released Not_Distributed
    rlm 11i.RLM.E 1706727 03-MAY-01 Checkin Released Not_Distributed
    rlm 11i.RLM.F 1886063 16-AUG-01 Checkin Released Not_Distributed
    rlm 11i.RLM.G 2112239 31-JAN-02 Checkin Released Not_Distributed
    rlm 11i.RLM.H 2250322 27-JUN-02 Checkin Released By_Dev
    rlm 11i.RLM.I 2478373 10-JUN-03 Checkin Released By_Dev
    rlm 11i.RLM.J 2770345 17-SEP-04 Checkin Released Not_Distributed
    scm_pf 11i.SCM_PF.J 3384350 05-NOV-04 Checkin Released By_Metalink
    scp_pf 11i.SCP_PF.D 1552650 31-JAN-01 Checkin Released By_Metalink
    scp_pf 11i.SCP_PF.E.1 1801717 25-MAY-01 Checkin Released By_Metalink
    scp_pf 11i.SCP_PF.F 1922595 30-AUG-01 Checkin Released By_Metalink
    scp_pf 11i.SCP_PF.G 2143725 30-JAN-02 Checkin Released By_Metalink
    scp_pf 11i.SCP_PF.H 2250399 15-AUG-02 Checkin Released By_Metalink
    scp_pf 11i.SCP_PF.I 2696797 23-JUN-03 Checkin Released By_Metalink
    scp_pf 11i.SCP_PF.J 3200668 17-SEP-04 Checkin Released Not_Distributed
    sem_pf 11i.SEM_PF.A 4020035 15-SEP-05 Checkin Released By_Dev
    sht 11i.SHT.A 1392476 07-OCT-00 Checkin Released Not_Distributed
    sls_pf 11i.SLS_PF.A 2026647 07-DEC-01 Checkin Released By_Dev
    sls_pf 11i.SLS_PF.B 2141511 20-DEC-01 Checkin Released By_Dev
    sls_pf 11i.SLS_PF.C 2167337 17-JAN-02 Checkin Released By_Metalink
    sls_pf 11i.SLS_PF.D 2221190 17-FEB-02 Checkin Released By_Dev
    sls_pf 11i.SLS_PF.E 2315208 07-MAY-02 Checkin Released By_Metalink
    sls_pf 11i.SLS_PF.F 2435494 11-OCT-02 Checkin Released By_Metalink
    sls_pf 11i.SLS_PF.G 2645935 24-JUN-03 Checkin Released By_Metalink
    srv_pf 11i.SRV_PF.A 2034307 04-NOV-01 Checkin Released By_Dev
    srv_pf 11i.SRV_PF.B 2192849 01-FEB-02 Checkin Released By_Metalink
    srv_pf 11i.SRV_PF.C 2246110 08-MAR-02 Checkin Released By_Metalink
    srv_pf 11i.SRV_PF.D 2279455 30-MAR-02 Checkin Released By_Metalink
    srv_pf 11i.SRV_PF.E 2339532 02-MAY-02 Checkin Released By_Metalink
    srv_pf 11i.SRV_PF.F 2388141 04-JUN-02 Checkin Released By_Metalink
    srv_pf 11i.SRV_PF.G 2416844 02-JUL-02 Checkin Obsoleted By_Metalink
    srv_pf 11i.SRV_PF.H 2477294 14-SEP-02 Checkin Released By_Metalink
    srv_pf 11i.SRV_PF.I 2713120 23-JUN-03 Checkin Released By_Metalink
    srv_pf 11i.SRV_PF.J 3169650 17-SEP-04 Checkin Released Not_Distributed
    ssp 11i.SSP.A 1344352 07-OCT-00 Checkin Released By_Metalink
    ssp 11i.SSP.B 1583895 08-MAY-01 Checkin Released Not_Distributed
    ssp 11i.SSP.C 2004106 03-OCT-01 Checkin Released Not_Distributed
    ssp 11i.SSP.D 2156872 21-FEB-02 Checkin Released Not_Distributed
    ssp 11i.SSP.E 2268448 09-MAY-02 Checkin Released Not_Distributed
    ssp 11i.SSP.F 2410065 02-AUG-02 Checkin Released Not_Distributed
    ssp 11i.SSP.G 2475747 27-NOV-02 Checkin Released Not_Distributed
    ssp 11i.SSP.H 2803590 19-MAY-03 Checkin Released Not_Distributed
    ssp 11i.SSP.I 3125824 05-DEC-03 Checkin Released Not_Distributed
    ssp 11i.SSP.J 3418312 28-JUL-04 Checkin Released Not_Distributed
    ssp 11i.SSP.K 3988404 08-MAR-05 Checkin Released Not_Distributed
    ssp 11i.SSP.L 4289899 30-JUN-05 Checkin Released Not_Distributed
    ssp 11i.SSP.L.1 5059561 31-MAY-06 Checkin Released Not_Distributed
    ssp 11i.SSP.L.2 5917565 22-JUN-07 Checkin Released Not_Distributed
    ssp 11i.SSP.L.3 6964764 02-JUL-08 Checkin Released Not_Distributed
    txk 11i.TXK.A 2668469 20-JUN-03 Checkin Released By_Metalink
    txk 11i.TXK.B 3219567 04-NOV-04 Checkin Released By_Metalink
    umx 11i.UMX.H 3264818 04-NOV-04 Checkin Released By_Metalink
    vea 11i.VEA.A 1287572 24-MAY-00 Checkin Released Not_Distributed
    vea 11i.VEA.B 1354704 05-SEP-00 Checkin Released By_Metalink
    vea 11i.VEA.C 1426005 13-NOV-00 Checkin Released By_Metalink
    vea 11i.VEA.D 1538704 19-DEC-00 Checkin Released Not_Distributed
    vea 11i.VEA.E 1706739 03-MAY-01 Checkin Released Not_Distributed
    vea 11i.VEA.F 1886075 16-AUG-01 Checkin Released Not_Distributed
    vea 11i.VEA.G 2112243 31-JAN-02 Checkin Released Not_Distributed
    vea 11i.VEA.H 2250329 27-JUN-02 Checkin Released By_Dev
    vea 11i.VEA.I 2478411 10-JUN-03 Checkin Released By_Dev
    vea 11i.VEA.J 2770336 17-SEP-04 Checkin Released Not_Distributed
    veh 11i.VEH.A 1354697 07-OCT-00 Checkin Obsoleted By_Metalink
    wip 11i.WIP.A 1348548 05-SEP-00 Checkin Released By_Metalink
    wip 11i.WIP.B 1426291 13-NOV-00 Checkin Released By_Metalink
    wip 11i.WIP.C 1538276 19-DEC-00 Checkin Released Not_Distributed
    wip 11i.WIP.D 1697800 01-MAY-01 Checkin Released Not_Distributed
    wip 11i.WIP.E 1885978 20-AUG-01 Checkin Released Not_Distributed
    wip 11i.WIP.F 2064997 29-JAN-02 Checkin Released Not_Distributed
    wip 11i.WIP.G 2212393 27-JUN-02 Checkin Released By_Dev
    wip 11i.WIP.H 2478579 10-JUN-03 Checkin Released By_Dev
    wip 11i.WIP.I 2768748 17-SEP-04 Checkin Released Not_Distributed
    wms 11i.WMS.A 1426235 13-NOV-00 Checkin Released By_Metalink
    wms 11i.WMS.B 1697817 01-MAY-01 Checkin Released Not_Distributed
    wms 11i.WMS.C 1885986 28-AUG-01 Checkin Released By_Metalink
    wms 11i.WMS.D 2064994 30-JAN-02 Checkin Released Not_Distributed
    wms 11i.WMS.E 2212391 27-JUN-02 Checkin Released By_Dev
    wms 11i.WMS.F 2478530 10-JUN-03 Checkin Released By_Dev
    wms 11i.WMS.G 2770088 17-SEP-04 Checkin Released Not_Distributed
    wps 11i.WPS.A 1361180 12-SEP-00 Checkin Released By_Metalink
    wps 11i.WPS.B 1426225 13-NOV-00 Checkin Released By_Metalink
    wps 11i.WPS.C 1697807 01-MAY-01 Checkin Released Not_Distributed
    wps 11i.WPS.D 1885983 20-AUG-01 Checkin Released Not_Distributed
    wps 11i.WPS.E 2065005 30-JAN-02 Checkin Released Not_Distributed
    wps 11i.WPS.F 2212395 27-JUN-02 Checkin Released By_Dev
    wps 11i.WPS.G 2482422 10-JUN-03 Checkin Released By_Dev
    wps 11i.WPS.H 2768755 17-SEP-04 Checkin Released Not_Distributed
    wsh 11i.WSH.A 1288458 24-MAY-00 Checkin Released Not_Distributed
    wsh 11i.WSH.B 1357281 05-SEP-00 Checkin Released By_Metalink
    wsh 11i.WSH.C 1426215 13-NOV-00 Checkin Released By_Metalink
    wsh 11i.WSH.D 1538358 19-DEC-00 Checkin Released Not_Distributed
    wsh 11i.WSH.E 1706669 02-MAY-01 Checkin Released Not_Distributed
    wsh 11i.WSH.F 1886020 16-AUG-01 Checkin Released Not_Distributed
    wsh 11i.WSH.G 2113104 31-JAN-02 Checkin Released Not_Distributed
    wsh 11i.WSH.H 2250313 27-JUN-02 Checkin Released By_Dev
    wsh 11i.WSH.I 2478452 10-JUN-03 Checkin Released By_Dev
    wsh 11i.WSH.J 2770367 17-SEP-04 Checkin Released Not_Distributed
    wsm 11i.WSM.A 1357277 05-SEP-00 Checkin Released By_Metalink
    wsm 11i.WSM.B 1426159 13-NOV-00 Checkin Released By_Metalink
    wsm 11i.WSM.C 1538292 19-DEC-00 Checkin Released Not_Distributed
    wsm 11i.WSM.D 1697733 01-MAY-01 Checkin Released Not_Distributed
    wsm 11i.WSM.E 1886031 20-AUG-01 Checkin Released Not_Distributed
    wsm 11i.WSM.F 2064974 29-JAN-02 Checkin Released Not_Distributed
    wsm 11i.WSM.G 2248506 27-JUN-02 Checkin Released By_Dev
    wsm 11i.WSM.H 2691993 10-JUN-03 Checkin Released By_Dev
    wsm 11i.WSM.I 2770100 17-SEP-04 Checkin Released Not_Distributed
    xdo 11i.XDO.H 3263588 04-NOV-04 Checkin Released By_Metalink
    xdp 11i.XDP.A 1306377 21-JUN-00 Checkin Released Not_Distributed
    xdp 11i.XDP.B 1345789 07-OCT-00 Checkin Released Not_Distributed
    xdp 11i.XDP.C 1580975 27-FEB-01 Checkin Released By_Metalink
    xdp 11i.XDP.D 1778425 29-MAY-01 Checkin Released By_Dev
    xdp 11i.XDP.E 1806505 20-JUN-01 Checkin Released Not_Distributed
    xdp 11i.XDP.F 1838428 12-JUL-01 Checkin Released Not_Distributed
    xdp 11i.XDP.G 1881072 26-JUL-01 Checkin Released Not_Distributed
    xdp 11i.XDP.H 1904805 08-AUG-01 Checkin Released By_Dev
    xdp 11i.XDP.J 1927340 15-AUG-01 Checkin Released By_Dev
    xdp 11i.XDP.K 1939943 23-AUG-01 Checkin Released By_Dev
    xdp 11i.XDP.L 1955397 10-SEP-01 Checkin Released By_Dev
    xdp 11i.XDP.M 1986203 02-OCT-01 Checkin Released By_Dev
    xdp 11i.XDP.N 2026248 07-OCT-01 Checkin Released By_Dev
    xdp 11i.XDP.O 2139204 31-JAN-02 Checkin Released By_Dev
    xdp 11i.XDP.P 2221045 08-MAR-02 Checkin Released By_Dev
    xdp 11i.XDP.Q 2271554 29-MAR-02 Checkin Released By_Dev
    xdp 11i.XDP.R 2318266 01-MAY-02 Checkin Released By_Dev
    xdp 11i.XDP.S 2383954 04-JUN-02 Checkin Released By_Dev
    xdp 11i.XDP.T 2422023 01-JUL-02 Checkin Released By_Dev
    xdp 11i.XDP.U 2493492 05-AUG-02 Checkin Released By_Dev
    xdp 11i.XDP.V 2568977 11-DEC-02 Checkin Released By_Dev
    xdp 11i.XDP.W 2739476 10-JUN-03 Checkin Released By_Dev
    xdp 11i.XDP.X 3214732 17-SEP-04 Checkin Released Not_Distributed
    xla 11i.XLA.A 1342447 01-SEP-00 Checkin Released Not_Distributed
    xla 11i.XLA.B 1421670 17-NOV-00 Checkin Released Not_Distributed
    xla 11i.XLA.C 1571112 02-FEB-01 Checkin Released Not_Distributed
    xla 11i.XLA.D 1810485 24-AUG-01 Checkin Released Not_Distributed
    xla 11i.XLA.E 2182672 29-JAN-02 Checkin Released Not_Distributed
    xla 11i.XLA.F 2490908 02-APR-03 Checkin Released By_Dev
    xla 11i.XLA.G 2864918 12-DEC-03 Checkin Released By_Dev
    xla 11i.XLA.H 3151394 18-OCT-04 Checkin Released Not_Distributed
    xla 11i.XLA.I 3615242 29-APR-05 Checkin Released Not_Distributed
    xnb 11i.XNB.A 2221073 08-MAR-02 Checkin Obsoleted By_Dev
    xnb 11i.XNB.B 2275632 26-OCT-05 Checkin Released By_Metalink
    xnc 11i.XNC.A 1345796 07-OCT-00 Checkin Released Not_Distributed
    xnc 11i.XNC.B 1590648 31-JAN-01 Checkin Released By_Metalink
    xnc 11i.XNC.C 1776978 29-MAY-01 Checkin Released By_Dev
    xnc 11i.XNC.D 1806080 20-JUN-01 Checkin Released Not_Distributed
    xnc 11i.XNC.E 1838495 16-JUL-01 Checkin Released Not_Distributed
    xnc 11i.XNC.F 1881255 27-JUL-01 Checkin Released Not_Distributed
    xnc 11i.XNC.G 1907017 08-AUG-01 Checkin Released Not_Distributed
    xnc 11i.XNC.H 1925657 10-SEP-01 Checkin Released By_Dev
    xnc 11i.XNC.I 1986710 28-SEP-01 Checkin Released By_Dev
    xnc 11i.XNC.J 2022228 06-OCT-01 Checkin Released By_Dev
    xnc 11i.XNC.K 2139173 01-FEB-02 Checkin Released By_Metalink
    xnc 11i.XNC.L 2219529 04-JUN-02 Checkin Released By_Metalink
    xnc 11i.XNC.M 2490454 16-OCT-02 Checkin Released By_Dev
    xnc 11i.XNC.N 2701907 15-APR-03 Checkin Released By_Dev
    xni 11i.XNI.A 2026754 06-OCT-01 Checkin Released By_Dev
    xni 11i.XNI.B 2139216 31-JAN-02 Checkin Released By_Dev
    xni 11i.XNI.C 2242105 08-MAR-02 Checkin Released By_Dev
    xni 11i.XNI.D 2271040 29-MAR-02 Checkin Released By_Dev
    xni 11i.XNI.E 2323328 25-APR-02 Checkin Released By_Dev
    xni 11i.XNI.F 2382053 02-JUN-02 Checkin Released By_Dev
    xni 11i.XNI.G 2431154 04-JUL-02 Checkin Released By_Dev
    xni 11i.XNI.H 2460273 02-AUG-02 Checkin Released By_Dev
    xni 11i.XNI.I 2508005 30-AUG-02 Checkin Released By_Dev
    xni 11i.XNI.J 2696920 10-JUN-03 Checkin Released By_Dev
    xni 11i.XNI.K 3195219 17-SEP-04 Checkin Released Not_Distributed
    xnp 11i.XNP.A 1306422 21-JUN-00 Checkin Released Not_Distributed
    xnp 11i.XNP.B 1345792 07-OCT-00 Checkin Released Not_Distributed
    xnp 11i.XNP.C 1580986 27-FEB-01 Checkin Released By_Metalink
    xnp 11i.XNP.D 177842 29-MAY-01 Checkin Obsoleted By_Dev
    xnp 11i.XNP.E 1806280 20-JUN-01 Checkin Released Not_Distributed
    xnp 11i.XNP.F 1838418 12-JUL-01 Checkin Released Not_Distributed
    xnp 11i.XNP.G 1881147 26-JUL-01 Checkin Released By_Dev
    xnp 11i.XNP.H 1904983 08-AUG-01 Checkin Released By_Dev
    xnp 11i.XNP.J 1927626 15-AUG-01 Checkin Released By_Dev
    xnp 11i.XNP.K 1939514 23-AUG-01 Checkin Released By_Dev
    xnp 11i.XNP.L 1954679 10-SEP-01 Checkin Released By_Dev
    xnp 11i.XNP.M 1986548 02-OCT-01 Checkin Released By_Dev
    xnp 11i.XNP.N 2026259 07-OCT-01 Checkin Released By_Dev
    xnp 11i.XNP.O 2139213 31-JAN-02 Checkin Released By_Dev
    xnp 11i.XNP.P 2221047 08-MAR-02 Checkin Released By_Dev
    xnp 11i.XNP.Q 2271557 29-MAR-02 Checkin Released By_Dev
    xnp 11i.XNP.R 2318279 01-MAY-02 Checkin Released By_Dev
    xnp 11i.XNP.S 2383957 04-JUN-02 Checkin Released By_Dev
    xnp 11i.XNP.T 2422038 01-JUL-02 Checkin Released By_Dev
    xnp 11i.XNP.U 2495327 05-AUG-02 Checkin Released By_Dev
    xnp 11i.XNP.V 2568995 11-DEC-02 Checkin Released By_Dev
    xnp 11i.XNP.W 2732312 10-JUN-03 Checkin Released By_Dev
    xnp 11i.XNP.X 3214804 17-SEP-04 Checkin Released Not_Distributed
    xns 11i.XNS.A 1306701 21-JUN-00 Checkin Released Not_Distributed
    xns 11i.XNS.B 1345813 07-OCT-00 Checkin Released Not_Distributed
    xns 11i.XNS.D 1592420 27-FEB-01 Checkin Released By_Metalink
    xns 11i.XNS.E 1838412 27-JUL-01 Checkin Released Not_Distributed
    xns 11i.XNS.G 1908882 01-AUG-01 Checkin Released By_Dev
    xns 11i.XNS.H 1926866 16-AUG-01 Checkin Released Not_Distributed
    xns 11i.XNS.I 1940573 10-SEP-01 Checkin Released By_Dev
    xns 11i.XNS.J 1983817 28-SEP-01 Checkin Released By_Dev
    xns 11i.XNS.K 2022232 06-OCT-01 Checkin Released By_Dev
    xns 11i.XNS.L 2139176 13-FEB-02 Checkin Released By_Dev
    xns 11i.XNS.M 2221075 08-MAR-02 Checkin Released By_Dev
    xns 11i.XNS.N 2268912 29-MAR-02 Checkin Released By_Dev
    xns 11i.XNS.O 2320196 26-APR-02 Checkin Released By_Dev
    xns 11i.XNS.P 2380838 23-MAY-02 Checkin Released By_Dev
    xns 11i.XNS.Q 2414815 28-JUN-02 Checkin Released By_Dev
    xns 11i.XNS.R 2461167 26-JUL-02 Checkin Released By_Dev
    xns 11i.XNS.S 2485213 31-JUL-02 Checkin Released By_Dev
    xns 11i.XNS.T 2592233 10-DEC-02 Checkin Released By_Dev
    xns 11i.XNS.U 2707272 10-JUN-03 Checkin Released By_Dev
    xns 11i.XNS.V 3014217 17-SEP-04 Checkin Released Not_Distributed
    xtr 11i.XTR.A 1342181 01-SEP-00 Checkin Released Not_Distributed
    xtr 11i.XTR.B 1421673 17-NOV-00 Checkin Released Not_Distributed
    xtr 11i.XTR.C 1565561 02-FEB-01 Checkin Released Not_Distributed
    xtr 11i.XTR.D 1711366 18-MAY-01 Checkin Released Not_Distributed
    xtr 11i.XTR.E 1907073 24-AUG-01 Checkin Obsoleted By_Metalink
    xtr 11i.XTR.F 1952883 16-NOV-01 Checkin Released Not_Distributed
    xtr 11i.XTR.G 2223523 12-APR-02 Checkin Released Not_Distributed
    xtr 11i.XTR.H 2428924 30-AUG-02 Checkin Released By_Metalink
    xtr 11i.XTR.I 2554877 02-APR-03 Checkin Released By_Dev
    xtr 11i.XTR.J 2864476 12-DEC-03 Checkin Released By_Dev
    xtr 11i.XTR.K 3151450 18-OCT-04 Checkin Released Not_Distributed
    xtr 11i.XTR.L 3610848 29-APR-05 Checkin Released Not_Distributed
    zpb 11i.ZPB.A 3264437 01-OCT-04 Checkin Released By_Dev
    zpb 11i.ZPB.B 3337047 15-SEP-05 Checkin Released By_Metalink
    " > ${OUT_DIR}/11i_patchsets.txt

    chmod 777 ${OUT_DIR}/11i_patchsets.txt 2>/dev/null

    REL110_DATE="Dec 15 2005"

    echo "

    Patchset
    Product Name Bug_number RELEASED_ DISTRIBUTION Status
    --------- ------------ ---------- --------- ------------------- --------------------
    ad 11.0.AD.A 680657 24-JUL-98 By_Metalink Checkin Released
    ad 11.0.AD.B 732272 16-NOV-98 By_Metalink Checkin Released
    ad 11.0.AD.D 1264943 18-MAY-00 By_Metalink Checkin Released
    ak 11.0.AK.A 674072 24-JUL-98 By_Metalink Checkin Released
    ak 11.0.AK.B 733964 13-NOV-98 By_Metalink Checkin Released
    ak 11.0.AK.C 800372 08-FEB-99 Not_Distributed Checkin Obsoleted
    ak 11.0.AK.E 1187363 14-MAR-00 By_Metalink Checkin Released
    alr 11.0.ALR.A 755917 16-NOV-98 By_Metalink Checkin Released
    alr 11.0.ALR.B 1007920 28-SEP-99 By_Metalink Checkin Released
    alr 11.0.ALR.C 1094651 02-DEC-99 By_Metalink Checkin Released
    ap 11.0.AP.A 671202 23-JUL-98 By_Metalink Checkin Released
    ap 11.0.AP.B 730174 13-NOV-98 By_Metalink Checkin Released
    ap 11.0.AP.C 789454 08-APR-99 By_Metalink Checkin Released
    ap 11.0.AP.D 986073 08-NOV-99 By_Metalink Checkin Released
    ap 11.0.AP.E 1274264 07-JUN-00 By_Metalink Checkin Released
    ap 11.0.AP.F 1274267 09-MAR-01 By_Metalink Checkin Released
    ap 11.0.AP.G 1862578 04-OCT-01 By_Metalink Checkin Released
    ap 11.0.AP.H 2213610 07-JUN-02 By_Metalink Checkin Released
    ap 11.0.AP.I 2679412 05-JUN-03 By_Metalink Checkin Released
    ar 11.0.AR.A 671198 23-JUL-98 By_Metalink Checkin Released
    ar 11.0.AR.B 731338 13-NOV-98 By_Metalink Checkin Released
    ar 11.0.AR.C 789457 08-APR-99 By_Metalink Checkin Released
    ar 11.0.AR.D 961231 12-NOV-99 By_Metalink Checkin Released
    ar 11.0.AR.E 1073957 12-APR-00 By_Metalink Checkin Released
    ar 11.0.AR.F 1081952 15-SEP-00 By_Metalink Checkin Released
    ar 11.0.AR.G 1267691 30-APR-01 By_Metalink Checkin Released
    ar 11.0.AR.H 1471898 30-NOV-01 By_Metalink Checkin Released
    ar 11.0.AR.I 2133106 26-FEB-02 By_Metalink Checkin Released
    ar 11.0.AR.J 2521716 17-DEC-02 By_Metalink Checkin Released
    as 11.0.AS.A 673417 24-JUL-98 By_Metalink Checkin Released
    as 11.0.AS.B 733304 16-NOV-98 By_Metalink Checkin Released
    as 11.0.AS.C 809836 08-APR-99 By_Metalink Checkin Released
    ax 11.0.AX.A 665471 24-JUL-98 By_Metalink Checkin Released
    ax 11.0.AX.B 731655 13-NOV-98 By_Metalink Checkin Released
    ax 11.0.AX.C 809273 08-APR-99 By_Metalink Checkin Released
    ax 11.0.AX.D 1031220 17-DEC-99 By_Metalink Checkin Released
    ax 11.0.AX.E 1240002 09-MAY-00 By_Metalink Checkin Released
    ax 11.0.AX.F 1639941 28-MAR-01 By_Metalink Checkin Released
    ax 11.0.AX.G 2024200 02-NOV-01 By_Metalink Checkin Released
    ax 11.0.AX.H 2657387 14-APR-03 By_Metalink Checkin Released
    az 11.0.AZ.A 732155 16-NOV-98 By_Metalink Checkin Released
    az 11.0.AZ.B 809856 08-APR-99 By_Metalink Checkin Released
    az 11.0.AZ.C 1007031 04-OCT-99 By_Metalink Checkin Released
    bis 11.0.BIS.A 962177 13-OCT-99 By_Metalink Checkin Released
    bom 11.0.BOM.A 673241 24-JUL-98 By_Metalink Checkin Released
    bom 11.0.BOM.B 732960 13-NOV-98 By_Metalink Checkin Released
    bom 11.0.BOM.C 805925 08-APR-99 By_Metalink Checkin Released
    bom 11.0.BOM.D 964665 04-OCT-99 By_Metalink Checkin Released
    bom 11.0.BOM.E 1198519 11-APR-00 By_Metalink Checkin Released
    bom 11.0.BOM.F 1281322 06-NOV-00 By_Metalink Checkin Released
    bom 11.0.BOM.G 1516931 24-APR-01 By_Metalink Checkin Released
    bom 11.0.BOM.H 1828617 09-NOV-01 By_Metalink Checkin Released
    ce 11.0.CE.A 671201 23-JUL-98 By_Metalink Checkin Released
    ce 11.0.CE.B 730326 13-NOV-98 By_Metalink Checkin Released
    ce 11.0.CE.C 789456 08-APR-99 By_Metalink Checkin Released
    ce 11.0.CE.D 976590 04-OCT-99 By_Metalink Checkin Released
    ce 11.0.CE.E 1156812 20-MAR-00 By_Metalink Checkin Released
    ce 11.0.CE.F 1243106 11-OCT-00 By_Metalink Checkin Released
    ce 11.0.CE.G 1401280 25-MAY-01 By_Metalink Checkin Released
    ce 11.0.CE.H 2039331 02-NOV-01 By_Metalink Checkin Released
    chv 11.0.CHV.A 673943 24-JUL-98 By_Metalink Checkin Released
    chv 11.0.CHV.B 733151 16-NOV-98 By_Metalink Checkin Released
    chv 11.0.CHV.C 810486 08-APR-99 By_Metalink Checkin Released
    cn 11.0.CN.A 673490 23-JUL-98 By_Metalink Checkin Released
    cn 11.0.CN.B 682700 13-NOV-98 By_Metalink Checkin Released
    cs 11.0.CS.A 673544 27-JUL-98 By_Metalink Checkin Released
    cs 11.0.CS.B 733153 13-NOV-98 By_Metalink Checkin Released
    ec 11.0.EC.A 667248 24-JUL-98 By_Metalink Checkin Released
    ec 11.0.EC.B 726287 16-NOV-98 By_Metalink Checkin Released
    ec 11.0.EC.C 779201 08-APR-99 By_Metalink Checkin Released
    ec 11.0.EC.D 953788 07-OCT-99 By_Metalink Checkin Released
    ec 11.0.EC.E 1246876 16-MAY-00 By_Metalink Checkin Released
    eng 11.0.ENG.A 673242 24-JUL-98 By_Metalink Checkin Released
    eng 11.0.ENG.B 732779 13-NOV-98 By_Metalink Checkin Released
    eng 11.0.ENG.C 801548 08-APR-99 By_Metalink Checkin Released
    eng 11.0.ENG.D 962673 04-OCT-99 By_Metalink Checkin Released
    eng 11.0.ENG.E 1380493 29-MAR-01 By_Metalink Checkin Released
    ews 11.0.EWS.A 1863399 06-SEP-01 By_Metalink Checkin Released
    ews 11.0.EWS.B 2942645 05-MAY-03 Not_Distributed Checkin Released
    ews 11.0.EWS.C 2949198 12-JUN-03 By_Metalink Checkin Released
    fa 11.0.FA.A 681385 24-JUL-98 By_Metalink Checkin Released
    fa 11.0.FA.B 733163 13-NOV-98 By_Metalink Checkin Released
    fa 11.0.FA.C 811357 24-MAR-99 By_Metalink Checkin Released
    fa 11.0.FA.D 1042202 04-NOV-99 By_Metalink Checkin Released
    fa 11.0.FA.E 1350298 28-AUG-00 By_Metalink Checkin Released
    fa 11.0.FA.F 1391289 31-OCT-00 By_Metalink Checkin Released
    fa 11.0.FA.G 1626136 15-JUN-01 By_Metalink Checkin Released
    fa 11.0.FA.H 2183897 12-JUN-02 By_Metalink Checkin Released
    ff 11.0.FF.A 727481 13-NOV-98 Not_Distributed Checkin Obsoleted
    fnd 11.0.FND.A 677585 24-JUL-98 By_Metalink Checkin Released
    fnd 11.0.FND.B 731294 18-SEP-98 By_Metalink Checkin Released
    fnd 11.0.FND.C 733155 13-NOV-98 By_Metalink Checkin Released
    fnd 11.0.FND.D 794429 08-APR-99 By_Metalink Checkin Released
    fnd 11.0.FND.E 1003972 05-NOV-99 By_Metalink Checkin Released
    fnd 11.0.FND.F 1155774 14-FEB-00 By_Metalink Checkin Released
    fnd 11.0.FND.G 1349521 13-OCT-00 By_Metalink Checkin Released
    fnd 11.0.FND.H 1527541 22-DEC-00 By_Metalink Checkin Released
    fnd 11.0.FND.I 1675981 30-MAR-01 By_Metalink Checkin Released
    fnd 11.0.FND.J 1818756 28-AUG-01 By_Metalink Checkin Released
    fnd 11.0.FND.K 1998783 15-FEB-02 By_Metalink Checkin Released
    fnd 11.0.FND.L 2261910 20-MAY-02 By_Metalink Checkin Released
    fnd 11.0.FND.M 2414196 07-NOV-02 By_Metalink Checkin Released
    fnd 11.0.FND.N 2660599 08-DEC-03 By_Metalink Checkin Released
    gl 11.0.GL.A 673369 24-JUL-98 By_Metalink Checkin Released
    gl 11.0.GL.B 728311 13-NOV-98 By_Metalink Checkin Released
    gl 11.0.GL.C 794545 08-APR-99 By_Metalink Checkin Released
    gl 11.0.GL.D 991532 01-OCT-99 By_Metalink Checkin Released
    gl 11.0.GL.E 1178837 01-MAR-00 By_Metalink Checkin Released
    gma 11.0.GMA.A 960154 25-AUG-99 By_Metalink Checkin Released
    gma 11.0.GMA.B 1160482 06-MAR-00 By_Metalink Checkin Released
    gma 11.0.GMA.C 1306749 09-JUN-00 By_Metalink Checkin Released
    gma 11.0.GMA.D 1355660 16-AUG-00 By_Metalink Checkin Released
    gma 11.0.GMA.E 1538116 03-JAN-01 By_Metalink Checkin Released
    gma 11.0.GMA.F 1732341 19-APR-01 By_Metalink Checkin Released
    gma 11.0.GMA.G 2182048 18-FEB-02 By_Metalink Checkin Released
    gmd 11.0.GMD.A 949774 17-JAN-00 By_Metalink Checkin Released
    gmd 11.0.GMD.B 1154827 21-JAN-00 By_Metalink Checkin Released
    gmd 11.0.GMD.C 1270146 24-MAY-00 Not_Distributed Checkin Released
    gmd 11.0.GMD.D 1355004 02-AUG-00 Not_Distributed Checkin Released
    gmd 11.0.GMD.E 1489000 12-DEC-00 Not_Distributed Checkin Released
    gmd 11.0.GMD.F 1729749 10-APR-01 Not_Distributed Checkin Released
    gmd 11.0.GMD.G 2182642 28-JAN-02 Not_Distributed Checkin Released
    gme 11.0.GME.A 949768 14-JAN-00 Not_Distributed Checkin Obsoleted
    gme 11.0.GME.B 1152959 21-JAN-00 By_Metalink Checkin Released
    gme 11.0.GME.C 1269769 24-MAY-00 Not_Distributed Checkin Released
    gme 11.0.GME.D 1357020 02-AUG-00 Not_Distributed Checkin Released
    gme 11.0.GME.E 1489025 11-DEC-00 Not_Distributed Checkin Released
    gme 11.0.GME.F 1715353 11-APR-01 Not_Distributed Checkin Released
    gme 11.0.GME.G 2181946 28-JAN-02 Not_Distributed Checkin Released
    gmf 11.0.GMF.A 949736 14-JAN-00 By_Metalink Checkin Released
    gmf 11.0.GMF.B 1152955 21-JAN-00 By_Metalink Checkin Released
    gmf 11.0.GMF.C 1270214 24-MAY-00 Not_Distributed Checkin Released
    gmf 11.0.GMF.D 1356176 02-AUG-00 Not_Distributed Checkin Released
    gmf 11.0.GMF.E 1489022 11-DEC-00 Not_Distributed Checkin Released
    gmf 11.0.GMF.F 1715665 10-APR-01 Not_Distributed Checkin Released
    gmf 11.0.GMF.G 2182027 28-JAN-02 Not_Distributed Checkin Released
    gmi 11.0.GMI.A 949771 14-JAN-00 By_Metalink Checkin Released
    gmi 11.0.GMI.B 1152982 21-JAN-00 By_Metalink Checkin Released
    gmi 11.0.GMI.C 1270132 24-MAY-00 Not_Distributed Checkin Released
    gmi 11.0.GMI.D 1354933 02-AUG-00 Not_Distributed Checkin Released
    gmi 11.0.GMI.E 1489065 11-DEC-00 Not_Distributed Checkin Released
    gmi 11.0.GMI.F 1715326 10-APR-01 Not_Distributed Checkin Released
    gmi 11.0.GMI.G 2181851 28-JAN-02 Not_Distributed Checkin Released
    gml 11.0.GML.A 949775 14-JAN-00 By_Metalink Checkin Released
    gml 11.0.GML.B 1154946 21-JAN-00 By_Metalink Checkin Released
    gml 11.0.GML.C 1270241 24-MAY-00 Not_Distributed Checkin Released
    gml 11.0.GML.D 1355776 02-AUG-00 Not_Distributed Checkin Released
    gml 11.0.GML.E 1488958 11-DEC-00 Not_Distributed Checkin Released
    gml 11.0.GML.F 1715335 10-APR-01 Not_Distributed Checkin Released
    gml 11.0.GML.G 2182059 28-JAN-02 Not_Distributed Checkin Released
    gmp 11.0.GMP.A 949718 14-JAN-00 By_Metalink Checkin Released
    gmp 11.0.GMP.B 1152976 21-JAN-00 By_Metalink Checkin Released
    gmp 11.0.GMP.C 1270042 24-MAY-00 Not_Distributed Checkin Released
    gmp 11.0.GMP.D 1356119 02-AUG-00 Not_Distributed Checkin Released
    gmp 11.0.GMP.E 1488965 11-DEC-00 Not_Distributed Checkin Released
    gmp 11.0.GMP.F 1715292 10-APR-01 Not_Distributed Checkin Released
    gmp 11.0.GMP.G 2181982 28-JAN-02 Not_Distributed Checkin Released
    icx 11.0.ICX.A 673481 24-JUL-98 By_Metalink Checkin Released
    icx 11.0.ICX.B 726288 16-NOV-98 By_Metalink Checkin Released
    icx 11.0.ICX.D 1008974 14-JAN-00 By_Metalink Checkin Released
    icx 11.0.ICX.E 1380631 27-NOV-00 By_Metalink Checkin Released
    inv 11.0.INV.A 674050 24-JUL-98 By_Metalink Checkin Released
    inv 11.0.INV.B 733118 13-NOV-98 By_Metalink Checkin Released
    inv 11.0.INV.C 802155 09-APR-99 By_Metalink Checkin Released
    inv 11.0.INV.D 953727 06-OCT-99 By_Metalink Checkin Released
    inv 11.0.INV.E 1141878 17-APR-00 By_Metalink Checkin Released
    inv 11.0.INV.F 1346039 14-NOV-00 By_Metalink Checkin Released
    inv 11.0.INV.G 1516669 26-APR-01 By_Metalink Checkin Released
    inv 11.0.INV.H 1828520 11-OCT-01 By_Metalink Checkin Released
    inv 11.0.INV.I 2525843 10-FEB-03 By_Metalink Checkin Released
    ja 11.0.JA.A 673389 24-JUL-98 By_Metalink Checkin Released
    ja 11.0.JA.B 730960 13-NOV-98 By_Metalink Checkin Released
    ja 11.0.JA.C 810651 08-APR-99 By_Metalink Checkin Released
    ja 11.0.JA.D 1041981 15-DEC-99 By_Metalink Checkin Released
    ja 11.0.JA.E 1128796 25-FEB-00 By_Metalink Checkin Released
    ja 11.0.JA.F 1179731 06-NOV-00 By_Metalink Checkin Released
    ja 11.0.JA.G 1491337 16-APR-03 By_Metalink Checkin Released
    je 11.0.JE.A 674021 24-JUL-98 By_Metalink Checkin Released
    je 11.0.JE.B 731452 16-NOV-98 By_Metalink Checkin Released
    je 11.0.JE.C 808881 08-APR-99 By_Metalink Checkin Released
    je 11.0.JE.D 1045047 03-DEC-99 Not_Distributed Checkin Obsoleted
    je 11.0.JE.E 1117641 23-DEC-99 By_Metalink Checkin Released
    je 11.0.JE.F 1122217 03-MAR-00 By_Metalink Checkin Released
    je 11.0.JE.G 1197155 05-OCT-00 By_Metalink Checkin Released
    je 11.0.JE.H 1323273 14-NOV-00 By_Metalink Checkin Released
    je 11.0.JE.I 1483579 20-DEC-00 By_Metalink Checkin Released
    je 11.0.JE.J 1540350 18-MAY-01 By_Metalink Checkin Released
    je 11.0.JE.K 1761138 13-DEC-01 By_Metalink Checkin Released
    je 11.0.JE.L 2106557 25-OCT-02 By_Metalink Checkin Released
    je 11.0.JE.M 2533133 29-JUL-03 By_Metalink Checkin Released
    jg 11.0.JG.A 674028 24-JUL-98 By_Metalink Checkin Released
    jg 11.0.JG.B 730942 16-NOV-98 By_Metalink Checkin Released
    jg 11.0.JG.C 808880 08-APR-99 By_Metalink Checkin Released
    jg 11.0.JG.D 1045612 02-DEC-99 By_Metalink Checkin Released
    jg 11.0.JG.E 1076207 14-JAN-00 By_Metalink Checkin Released
    jg 11.0.JG.F 1122226 16-FEB-00 By_Metalink Checkin Released
    jg 11.0.JG.G 1198626 26-JUL-00 By_Metalink Checkin Released
    jg 11.0.JG.H 1323278 27-SEP-00 By_Metalink Checkin Released
    jg 11.0.JG.I 1418645 02-JUL-01 By_Metalink Checkin Released
    jg 11.0.JG.J 1838010 11-OCT-02 By_Metalink Checkin Released
    jl 11.0.JL.A 673327 24-JUL-98 By_Metalink Checkin Released
    jl 11.0.JL.B 733076 16-NOV-98 By_Metalink Checkin Released
    jl 11.0.JL.C 810661 08-APR-99 By_Metalink Checkin Released
    jl 11.0.JL.D 1056710 30-DEC-99 By_Metalink Checkin Released
    jl 11.0.JL.E 1129520 02-MAR-00 By_Metalink Checkin Released
    jl 11.0.JL.F 1178693 22-MAY-00 By_Metalink Checkin Released
    jl 11.0.JL.G 1277386 31-JUL-00 By_Metalink Checkin Released
    jl 11.0.JL.H 1337993 02-OCT-00 By_Metalink Checkin Released
    jl 11.0.JL.I 1405327 11-DEC-00 By_Metalink Checkin Released
    jl 11.0.JL.J 1493522 12-MAR-01 By_Metalink Checkin Released
    jl 11.0.JL.K 1662572 22-APR-02 By_Metalink Checkin Released
    jl 11.0.JL.L 2249545 28-MAR-03 By_Metalink Checkin Released
    mrp 11.0.MRP.A 674065 24-JUL-98 By_Metalink Checkin Released
    mrp 11.0.MRP.B 730718 13-NOV-98 By_Metalink Checkin Released
    mrp 11.0.MRP.C 809721 08-APR-99 By_Metalink Checkin Released
    mrp 11.0.MRP.D 968037 13-OCT-99 By_Metalink Checkin Released
    mrp 11.0.MRP.E 1226624 28-APR-00 By_Metalink Checkin Released
    mrp 11.0.MRP.F 1374653 01-MAY-01 By_Metalink Checkin Released
    mrp 11.0.MRP.G 2525863 13-FEB-03 By_Metalink Checkin Released
    oe 11.0.OE.A 671359 25-JUL-98 By_Metalink Checkin Released
    oe 11.0.OE.B 729768 16-NOV-98 By_Metalink Checkin Released
    oe 11.0.OE.C 779207 08-APR-99 By_Metalink Checkin Released
    oe 11.0.OE.D 953825 11-OCT-99 By_Metalink Checkin Released
    oe 11.0.OE.E 1151493 03-APR-00 By_Metalink Checkin Released
    oe 11.0.OE.F 1330648 10-OCT-00 By_Metalink Checkin Released
    oe 11.0.OE.G 1517168 03-MAY-01 By_Metalink Checkin Released
    oe 11.0.OE.H 1829464 12-NOV-01 By_Metalink Checkin Released
    oe 11.0.OE.I 2525889 04-FEB-03 By_Metalink Checkin Released
    ota 11.0.OTA.A 676871 27-JUL-98 By_Metalink Checkin Released
    ota 11.0.OTA.B 727031 17-NOV-98 By_Metalink Checkin Released
    ota 11.0.OTA.D 1138446 07-APR-00 By_Metalink Checkin Released
    pa 11.0.PA.A 673512 24-JUL-98 By_Metalink Checkin Released
    pa 11.0.PA.B 728728 16-NOV-98 By_Metalink Checkin Released
    pa 11.0.PA.C 789455 08-APR-99 By_Metalink Checkin Released
    pa 11.0.PA.D 998393 08-DEC-99 By_Metalink Checkin Released
    pa 11.0.PA.E 1121140 23-MAR-00 By_Metalink Checkin Released
    pa 11.0.PA.F 1121147 29-JAN-01 By_Metalink Checkin Released
    pa 11.0.PA.G 1401724 19-JUN-01 By_Metalink Checkin Released
    pa 11.0.PA.H 1965374 06-NOV-01 By_Metalink Checkin Released
    pay 11.0.PAY.A 676893 25-JUL-98 By_Metalink Checkin Released
    pay 11.0.PAY.B 727153 13-NOV-98 By_Dev Checkin Released
    pay 11.0.PAY.D 1178488 30-AUG-00 By_Dev Checkin Released
    pay 11.0.PAY.E 1384951 25-SEP-00 By_Metalink Checkin Released
    pay 11.0.PAY.F 1897502 02-OCT-01 By_Metalink Checkin Released
    pay 11.0.PAY.G 2348416 11-JUL-02 By_Metalink Checkin Released
    pay 11.0.PAY.H 2892285 30-JUN-03 By_Metalink Checkin Released
    per 11.0.PER.A 676870 24-JUL-98 By_Metalink Checkin Released
    per 11.0.PER.B 727052 17-NOV-98 By_Metalink Checkin Released
    per 11.0.PER.C 794083 08-APR-99 By_Metalink Checkin Released
    per 11.0.PER.D 1052044 14-MAR-00 By_Metalink Checkin Released
    per 11.0.PER.E 1316387 09-SEP-00 By_Metalink Checkin Released
    per 11.0.PER.F 1586128 09-AUG-01 By_Metalink Checkin Released
    per 11.0.PER.G 2346373 09-JUL-02 By_Metalink Checkin Released
    per 11.0.PER.H 2836424 13-JUN-03 By_Metalink Checkin Released
    pjm 11.0.PJM.A 673436 23-JUL-98 By_Metalink Checkin Released
    pjm 11.0.PJM.B 732735 13-NOV-98 By_Metalink Checkin Released
    pjm 11.0.PJM.C 735154 08-APR-99 By_Metalink Checkin Released
    pjm 11.0.PJM.D 820222 30-SEP-99 By_Metalink Checkin Released
    pjm 11.0.PJM.E 967252 07-MAR-00 By_Metalink Checkin Released
    pjm 11.0.PJM.F 1307067 15-APR-01 By_Metalink Checkin Released
    po 11.0.PO.A 674012 24-JUL-98 By_Metalink Checkin Released
    po 11.0.PO.B 733403 16-NOV-98 By_Metalink Checkin Released
    po 11.0.PO.C 803606 08-APR-99 By_Metalink Checkin Released
    po 11.0.PO.D 954257 30-SEP-99 By_Metalink Checkin Released
    po 11.0.PO.E 1142343 09-MAR-00 By_Metalink Checkin Released
    po 11.0.PO.F 1330514 30-NOV-00 By_Metalink Checkin Released
    po 11.0.PO.G 1524517 04-MAY-01 By_Metalink Checkin Released
    po 11.0.PO.H 1618257 01-NOV-01 By_Metalink Checkin Released
    po 11.0.PO.I 2525970 02-JAN-03 By_Metalink Checkin Released
    qa 11.0.QA.A 673563 23-JUL-98 By_Metalink Checkin Released
    qa 11.0.QA.B 732413 16-NOV-98 By_Metalink Checkin Released
    qa 11.0.QA.C 802157 09-APR-99 By_Metalink Checkin Released
    qa 11.0.QA.D 970716 04-OCT-99 By_Metalink Checkin Released
    rg 11.0.RG.A 673371 24-JUL-98 By_Metalink Checkin Released
    rg 11.0.RG.B 728312 13-NOV-98 By_Metalink Checkin Released
    rg 11.0.RG.C 794546 08-APR-99 By_Metalink Checkin Released
    rg 11.0.RG.D 991533 01-OCT-99 By_Metalink Checkin Released
    rg 11.0.RG.E 1178842 01-MAR-00 By_Metalink Checkin Released
    rla 11.0.RLA.A 673900 25-JUL-98 By_Metalink Checkin Released
    rla 11.0.RLA.B 770520 30-NOV-98 By_Metalink Checkin Released
    rla 11.0.RLA.C 779909 08-APR-99 By_Metalink Checkin Released
    rla 11.0.RLA.D 995588 21-SEP-99 By_Metalink Checkin Released
    ssp 11.0.SSP.A 727774 13-NOV-98 Not_Distributed Checkin Obsoleted
    veh 11.0.VEH.A 674152 24-JUL-98 By_Metalink Checkin Released
    veh 11.0.VEH.B 770525 30-NOV-98 By_Metalink Checkin Released
    veh 11.0.VEH.C 779913 08-APR-99 By_Metalink Checkin Released
    veh 11.0.VEH.D 995200 21-SEP-99 By_Metalink Checkin Released
    wip 11.0.WIP.A 671381 24-JUL-98 By_Metalink Checkin Released
    wip 11.0.WIP.B 733371 16-NOV-98 By_Metalink Checkin Released
    wip 11.0.WIP.C 803439 08-APR-99 By_Metalink Checkin Released
    wip 11.0.WIP.D 953912 08-OCT-99 By_Metalink Checkin Released
    wip 11.0.WIP.E 1189534 02-MAY-00 By_Metalink Checkin Released
    wip 11.0.WIP.F 1374066 25-OCT-00 By_Metalink Checkin Released
    wip 11.0.WIP.G 2525857 13-FEB-03 By_Metalink Checkin Released
    " > ${OUT_DIR}/110_patchsets.txt

    chmod 777 ${OUT_DIR}/110_patchsets.txt 2>/dev/null


    ####
    #### ADDED BACK THE 10.7 Supporting files:
    ####
    REL107_DATE="Dec 15 2005"

    echo "

    Patchset
    Produ Name Bug_number RELEASED_ Status DISTRIBUTION
    ----- ------------ ---------- --------- -------------------- ----------------------------------------
    ak 10.7.AK.A 772668 02-DEC-98 Checkin Released By_Metalink
    alr 10.7.ALR.A 777169 16-DEC-98 Checkin Released By_Metalink
    alr 10.7.ALR.B 1087301 30-NOV-99 Checkin Released By_Metalink
    ap 10.7.AP.Q 760839 29-JAN-99 Checkin Released By_Metalink
    ap 10.7.AP.R 778194 02-APR-99 Checkin Released By_Metalink
    ap 10.7.AP.S 839870 28-MAY-99 Checkin Released By_Metalink
    ap 10.7.AP.T 883663 13-AUG-99 Checkin Released By_Metalink
    ap 10.7.AP.U 928642 19-JAN-00 Checkin Released By_Metalink
    ap 10.7.AP.V 1054826 20-APR-00 Checkin Released By_Metalink
    ap 10.7.AP.W 1178883 05-OCT-00 Checkin Released By_Metalink
    ap 10.7.AP.X 1366330 22-OCT-02 Checkin Released By_Metalink
    ar 10.7.AR.P 791987 04-FEB-99 Checkin Released By_Metalink
    ar 10.7.AR.Q 816966 12-MAR-99 Checkin Released By_Metalink
    ar 10.7.AR.R 818461 17-MAY-99 Checkin Released By_Metalink
    ar 10.7.AR.S 872699 02-SEP-99 Checkin Released By_Metalink
    ar 10.7.AR.T 953844 08-FEB-00 Checkin Released By_Metalink
    ar 10.7.AR.U 1064762 19-APR-00 Checkin Released By_Metalink
    ar 10.7.AR.V 1216554 24-AUG-00 Checkin Released By_Metalink
    ar 10.7.AR.W 1300203 22-NOV-00 Checkin Released By_Metalink
    ar 10.7.AR.X 1392573 22-FEB-02 Checkin Released By_Metalink
    as 10.7.AS.H 808428 23-FEB-99 Checkin Released By_Metalink
    as 10.7.AS.I 887107 12-JUL-99 Checkin Released By_Metalink
    as 10.7.AS.J 1169464 Checkin in Progress Not_Distributed
    ax 10.7.AX.G 1375389 17-OCT-00 Checkin Released By_Metalink
    bom 10.7.BOM.D 793712 24-FEB-99 Checkin Released By_Metalink
    bom 10.7.BOM.E 1391193 25-APR-01 Checkin Released By_Metalink
    ce 10.7.CE.I 773311 05-FEB-99 Checkin Released By_Metalink
    ce 10.7.CE.J 793624 10-JUN-99 Checkin Released By_Metalink
    ce 10.7.CE.K 891240 04-JAN-00 Checkin Released By_Metalink
    ce 10.7.CE.L 1096211 12-JUL-00 Checkin Released By_Metalink
    cn 10.7.CN.D 682047 08-JAN-99 Checkin Released By_Metalink
    crp 10.7.CRP.A 770567 19-FEB-99 Checkin Released By_Metalink
    cs 10.7.CS.A 806162 18-FEB-99 Checkin Released By_Metalink
    ec 10.7.EC.D 804173 19-FEB-99 Checkin Released By_Metalink
    ec 10.7.EC.E 898125 04-AUG-99 Checkin Released By_Metalink
    eng 10.7.ENG.A 778272 19-FEB-99 Checkin Released By_Metalink
    ews 10.7.EWS.A 1863399 06-SEP-01 Checkin Released By_Metalink
    ews 10.7.EWS.B 2942645 05-MAY-03 Checkin Released Not_Distributed
    ews 10.7.EWS.C 2949212 12-JUN-03 Checkin Released By_Metalink
    fa 10.7.FA.E 790169 17-FEB-99 Checkin Obsoleted Not_Distributed
    fa 10.7.FA.F 1007276 Checkin Obsoleted Not_Distributed
    fa 10.7.FA.G 1204405 24-MAR-00 Checkin Released By_Metalink
    fa 10.7.FA.H 1641147 15-JUN-01 Checkin Released By_Metalink
    fnd 10.7.FND.C 774541 23-FEB-99 Checkin Released By_Metalink
    fnd 10.7.FND.D 1207242 19-MAY-00 Checkin Obsoleted By_Metalink
    fnd 10.7.FND.E 1535384 20-FEB-01 Checkin Released By_Metalink
    fnd 10.7.FND.F 1761055 Checkin in Progress Not_Distributed
    gl 10.7.GL.A 765116 02-FEB-99 Checkin Released By_Metalink
    inv 10.7.INV.C 776860 24-FEB-99 Checkin Released By_Metalink
    inv 10.7.INV.D 873657 20-OCT-99 Checkin Released By_Metalink
    inv 10.7.INV.E 1274435 01-AUG-00 Checkin Released By_Metalink
    inv 10.7.INV.F 1636768 31-JUL-01 Checkin Released By_Metalink
    je 10.7.JE.A 773450 19-FEB-99 Checkin Released By_Metalink
    je 10.7.JE.B 1050740 15-DEC-99 Checkin Released By_Metalink
    je 10.7.JE.C 1134756 20-APR-00 Checkin Released By_Metalink
    je 10.7.JE.D 1274708 09-MAY-01 Checkin Released By_Metalink
    jg 10.7.JG.A 773370 19-FEB-99 Checkin Released By_Metalink
    jg 10.7.JG.B 1050742 15-DEC-99 Checkin Released By_Metalink
    jg 10.7.JG.C 1134757 19-APR-00 Checkin Released By_Metalink
    jl 10.7.JL.A 774104 19-FEB-99 Checkin Released By_Metalink
    mrp 10.7.MRP.D 769039 23-FEB-99 Checkin Released By_Metalink
    oe 10.7.OE.G 794583 05-FEB-99 Checkin Released By_Metalink
    oe 10.7.OE.H 906163 10-SEP-99 Checkin Released By_Metalink
    oe 10.7.OE.I 1266017 12-JUL-00 Checkin Released By_Metalink
    oe 10.7.OE.J 1588061 27-JUN-01 Checkin Released By_Metalink
    ota 10.7.OTA.A 1242344 27-SEP-00 Checkin Released By_Metalink
    pa 10.7.PA.G 768250 19-JAN-99 Checkin Released By_Metalink
    pa 10.7.PA.H 784658 03-MAR-99 Checkin Released By_Metalink
    pa 10.7.PA.I 825984 08-APR-99 Checkin Released By_Metalink
    pa 10.7.PA.J 855493 01-JUN-99 Checkin Released By_Metalink
    pa 10.7.PA.K 880357 15-JUL-99 Checkin Released By_Metalink
    pa 10.7.PA.L 914962 11-OCT-99 Checkin Released By_Metalink
    pa 10.7.PA.M 970952 03-FEB-00 Checkin Released By_Metalink
    pa 10.7.PA.N 1045531 31-AUG-00 Checkin Released By_Metalink
    po 10.7.PO.M 805382 26-FEB-99 Checkin Released By_Metalink
    po 10.7.PO.N 864603 19-JUL-99 Checkin Released By_Metalink
    po 10.7.PO.O 1267514 07-AUG-00 Checkin Released By_Metalink
    po 10.7.PO.P 1618257 13-JUL-01 Checkin Released By_Metalink
    qa 10.7.QA.A 772670 24-FEB-99 Checkin Released By_Metalink
    rg 10.7.RG.A 776469 02-FEB-99 Checkin Released By_Metalink
    rla 10.7.RLA.A 913103 23-JUN-99 Checkin Obsoleted Not_Distributed
    rla 10.7.RLA.B 1020315 08-OCT-99 Checkin Released By_Metalink
    wip 10.7.WIP.A 783344 24-FEB-99 Checkin Released By_Metalink
    wip 10.7.WIP.B 1305352 21-SEP-00 Checkin Released By_Metalink
    " > /tmp/107_patchsets.txt

    chmod 777 /tmp/107_patchsets.txt 2>/dev/null


    REL107NCA_DATE="Dec 15 2005"

    echo "

    Produ Bug_number RELEASED_ Status DISTRIBUTION
    ----- ---------- --------- -------------------- ----------------------------------------
    ak 769665 10-FEB-99 Checkin Released By_Metalink
    alr 777396 08-FEB-99 Checkin Released By_Metalink
    ap 589316 17-JAN-98 Checkin Released By_Metalink
    ap 612807 29-JAN-98 Checkin Released By_Metalink
    ap 640928 24-APR-98 Checkin Released By_Metalink
    ap 654870 22-MAY-98 Checkin Released By_Metalink
    ap 667009 22-JUN-98 Checkin Released By_Metalink
    ap 680265 31-JUL-98 Checkin Released By_Metalink
    ap 713584 14-AUG-98 Checkin Released By_Metalink
    ap 701049 31-AUG-98 Checkin Released By_Metalink
    ap 715811 09-OCT-98 Checkin Released By_Metalink
    ap 727477 06-NOV-98 Checkin Released By_Metalink
    ap 743049 01-DEC-98 Checkin Released By_Metalink
    ap 760837 29-JAN-99 Checkin Released By_Metalink
    ap 778193 02-APR-99 Checkin Released By_Metalink
    ap 839866 28-MAY-99 Checkin Released By_Metalink
    ap 883661 13-AUG-99 Checkin Released By_Metalink
    ap 928641 19-JAN-00 Checkin Released By_Metalink
    ap 1054830 20-APR-00 Checkin Released By_Metalink
    ap 1178815 05-OCT-00 Checkin Released By_Metalink
    ap 1366335 22-OCT-02 Checkin Released By_Metalink
    ar 603787 10-FEB-98 Checkin Released By_Metalink
    ar 617988 19-MAR-98 Checkin Released By_Metalink
    ar 638494 11-MAY-98 Checkin Released By_Metalink
    ar 662661 12-JUN-98 Checkin Released By_Metalink
    ar 677042 22-JUL-98 Checkin Released By_Metalink
    ar 693797 14-AUG-98 Checkin Released By_Metalink
    ar 709134 21-SEP-98 Checkin Released By_Metalink
    ar 739028 28-OCT-98 Checkin Released By_Metalink
    ar 754409 24-NOV-98 Checkin Released By_Metalink
    ar 757245 04-FEB-99 Checkin Released By_Metalink
    ar 816975 12-MAR-99 Checkin Released By_Metalink
    ar 818459 17-MAY-99 Checkin Released By_Metalink
    ar 872698 02-SEP-99 Checkin Released By_Metalink
    ar 953843 08-FEB-00 Checkin Released By_Metalink
    ar 1064761 19-APR-00 Checkin Released By_Metalink
    ar 1216551 24-AUG-00 Checkin Released By_Metalink
    ar 1300201 22-NOV-00 Checkin Released By_Metalink
    ar 1392572 22-FEB-02 Checkin Released By_Metalink
    as 599800 06-FEB-98 Checkin Released By_Metalink
    as 599807 16-FEB-98 Checkin Released By_Metalink
    as 638227 06-APR-98 Checkin Released By_Metalink
    as 682204 05-AUG-98 Checkin Released By_Metalink
    as 723999 14-SEP-98 Checkin Released By_Metalink
    as 734068 24-SEP-98 Checkin Released By_Metalink
    as 789502 22-JAN-99 Checkin Released By_Metalink
    as 808426 23-FEB-99 Checkin Released By_Metalink
    as 887110 12-JUL-99 Checkin Released By_Metalink
    ax 588315 17-FEB-98 Checkin Released By_Metalink
    ax 641386 14-MAR-98 Checkin Released By_Metalink
    ax 725093 09-SEP-98 Checkin Released By_Metalink
    ax 1375389 17-OCT-00 Checkin Released By_Metalink
    bom 556037 17-JAN-98 Checkin Released By_Metalink
    bom 719013 04-SEP-98 Checkin Released By_Metalink
    bom 733086 21-SEP-98 Checkin Released By_Metalink
    bom 792715 24-FEB-99 Checkin Released By_Metalink
    bom 1391279 25-APR-01 Checkin Released By_Metalink
    ce 669836 09-JUN-98 Checkin Released By_Metalink
    ce 681835 17-JUL-98 Checkin Released By_Metalink
    ce 695988 01-SEP-98 Checkin Released By_Metalink
    ce 724748 25-SEP-98 Checkin Released By_Metalink
    ce 725305 29-DEC-98 Checkin Released By_Metalink
    ce 773312 05-FEB-99 Checkin Released By_Metalink
    ce 793623 10-JUN-99 Checkin Released By_Metalink
    ce 891243 04-JAN-00 Checkin Released By_Metalink
    ce 1096205 12-JUL-00 Checkin Released By_Metalink
    chv 674148 11-JUN-98 Checkin Released By_Metalink
    chv 724328 01-SEP-98 Checkin Released By_Metalink
    chv 798865 26-FEB-99 Checkin Released By_Metalink
    cn 590716 23-JAN-98 Checkin Released By_Metalink
    cn 621351 13-FEB-98 Checkin Released By_Metalink
    cn 627879 29-JUN-98 Checkin Released By_Metalink
    cn 682049 08-JAN-99 Checkin Released By_Metalink
    crp 770572 19-FEB-99 Checkin Released By_Metalink
    cs 806307 18-FEB-99 Checkin Released By_Metalink
    ec 751344 21-OCT-98 Checkin Released By_Metalink
    ec 752129 23-OCT-98 Checkin Released By_Metalink
    ec 753732 26-OCT-98 Checkin Released By_Metalink
    ec 809431 19-FEB-99 Checkin Released By_Metalink
    ec 898132 04-AUG-99 Checkin Released By_Metalink
    eng 778327 19-FEB-99 Checkin Released By_Metalink
    fa 588254 16-FEB-98 Checkin Released By_Metalink
    fa 712143 06-AUG-98 Checkin Released By_Metalink
    fa 1204409 24-MAR-00 Checkin Released By_Metalink
    fa 1641147 15-JUN-01 Checkin Released By_Metalink
    fnd 649296 03-APR-98 Checkin Released By_Metalink
    fnd 716111 15-SEP-98 Checkin Released By_Metalink
    fnd 774541 23-FEB-99 Checkin Released By_Metalink
    fnd 1207242 07-DEC-00 Checkin Obsoleted By_Metalink
    fnd 1535384 20-FEB-01 Checkin Released By_Metalink
    gl 765114 02-FEB-99 Checkin Released By_Metalink
    inv 712273 14-AUG-98 Checkin Released By_Metalink
    inv 759918 13-NOV-98 Checkin Released By_Metalink
    inv 768400 24-FEB-99 Checkin Released By_Metalink
    inv 873656 20-OCT-99 Checkin Released By_Metalink
    inv 1272140 01-AUG-00 Checkin Released By_Metalink
    inv 1636763 31-JUL-01 Checkin Released By_Metalink
    je 776598 19-FEB-99 Checkin Released By_Metalink
    je 1102822 15-DEC-99 Checkin Released By_Metalink
    je 1134760 20-APR-00 Checkin Released By_Metalink
    je 1274715 09-MAY-01 Checkin Released By_Metalink
    jg 776597 19-FEB-99 Checkin Released By_Metalink
    jg 1102834 15-DEC-99 Checkin Released By_Metalink
    jg 1134762 19-APR-00 Checkin Released By_Metalink
    mrp 547014 23-JAN-98 Checkin Released By_Metalink
    mrp 630836 23-FEB-98 Checkin Released By_Metalink
    mrp 713252 12-AUG-98 Checkin Released By_Metalink
    mrp 769037 23-FEB-99 Checkin Released By_Metalink
    oe 590184 21-JAN-98 Checkin Released By_Metalink
    oe 586431 10-FEB-98 Checkin Released By_Metalink
    oe 640639 14-AUG-98 Checkin Released By_Metalink
    oe 716030 21-AUG-98 Checkin Released By_Metalink
    oe 728335 18-SEP-98 Checkin Released By_Metalink
    oe 794454 05-FEB-99 Checkin Released By_Metalink
    oe 906170 10-SEP-99 Checkin Released By_Metalink
    oe 1266020 12-JUL-00 Checkin Released By_Metalink
    oe 1621441 27-JUN-01 Checkin Released By_Metalink
    ota 1242343 27-SEP-00 Checkin Released By_Metalink
    pa 672977 05-JUN-98 Checkin Released By_Metalink
    pa 726024 09-SEP-98 Checkin Released By_Metalink
    pa 730820 16-SEP-98 Checkin Released By_Metalink
    pa 748675 03-NOV-98 Checkin Released By_Metalink
    pa 751042 09-DEC-98 Checkin Released By_Metalink
    pa 768249 19-JAN-99 Checkin Released By_Metalink
    pa 784657 03-MAR-99 Checkin Released By_Metalink
    pa 825983 08-APR-99 Checkin Released By_Metalink
    pa 855491 01-JUN-99 Checkin Released By_Metalink
    pa 880356 15-JUL-99 Checkin Released By_Metalink
    pa 914961 11-OCT-99 Checkin Released By_Metalink
    pa 970951 03-FEB-00 Checkin Released By_Metalink
    pa 1045535 31-AUG-00 Checkin Released By_Metalink
    po 564686 16-FEB-98 Checkin Released By_Metalink
    po 658032 05-MAY-98 Checkin Released By_Metalink
    po 653197 29-MAY-98 Checkin Released By_Metalink
    po 666026 29-JUL-98 Checkin Released By_Metalink
    po 692533 20-AUG-98 Checkin Released By_Metalink
    po 711317 21-NOV-98 Checkin Released By_Metalink
    po 743210 26-FEB-99 Checkin Released By_Metalink
    po 781975 19-JUL-99 Checkin Released By_Metalink
    po 1267182 07-AUG-00 Checkin Released By_Metalink
    po 1618264 13-JUL-01 Checkin Released By_Metalink
    qa 772671 24-FEB-99 Checkin Released By_Metalink
    rg 765115 02-FEB-99 Checkin Released By_Metalink
    wip 769867 24-FEB-99 Checkin Released By_Metalink
    wip 1305412 09-OCT-00 Checkin Released By_Metalink
    " > ${OUT_DIR}/107NCA_patchsets.txt

    chmod 777 ${OUT_DIR}/107NCA_patchsets.txt 2>/dev/null

    ###
    ## These are the Baselines that are appended at the end of the Reports
    ###
    echo "
    Baseline Listing for the 10.7 Patch Sets:

    10.7 Patch Sets #4

    Product 10.7 Server 10.7 NCA 10SC P16.1 Tier Notes
    Tier Tier
    ====================================================================================================
    Application Report Generator (RG) 776469 765115 765115 Patch Set A
    Global Accounting Engine (AX) 777011 777011 777011 Patch Set F
    Oracle Application Object Library (FND) 774541 774541* 774541 Patch Set C
    Oracle Assets (FA) 790169 775098 806493 Patch Set E
    Oracle Alert (ALR) 777169 777396 777942 Patch Set A
    Oracle Bills of Material (BOM) 793712 792715* 792715 Patch Set D
    Oracle Capacity (CRP) 770567 770572 770572 Patch Set A
    Oracle Cash Management (CE) 773311 773312 773312 Patch Set I
    Oracle Common Modules (AK) 772668 769665 769665 Patch Set A
    Oracle EDI Gateway (EC) 804173 809431 804296 Patch Set D
    Oracle Engineering (ENG) 778272 778327 778327 Patch Set A
    Oracle Financials for Europe (JE) 773450 776598 776598 Patch Set A
    Oracle Financials for Latin America (JL) 774104 N/A N/A Patch Set A
    Oracle General Ledger (GL) 765116 765114 765114 Patch Set A
    Oracle Inventory (INV) 776860 768400 768400 Patch Set C
    Oracle Master Scheduling/MRP (MRP) 769039 769037 769037 Patch Set D
    Oracle Order Entry (OE) 794583* 794454 772625 Patch Set G
    Oracle Payables (AP) 760839 760837 760837 Patch Set Q
    Oracle Projects (PA) 768250 768249 768249 Patch Set G
    Oracle Purchasing (PO) 805382v 743210 743210 Patch Set M
    Oracle Quality (QA) 772670 772671 772671 Patch Set A
    Oracle Receivables (AR) 791987 757245 757245 Patch Set P
    Oracle Regional Localizations (JG) 773370 776597 776597 Patch Set A
    Oracle Sales and Marketing (AS) 808428* 808426 808431 Patch Set H
    Oracle Sales Compensation (CN) 682047 682049 682049 Patch Set D
    Oracle Service (CS) 806162 806307 806307 Patch Set A
    Oracle Supplier Scheduling (CHV) N/A 798865* 798865 Patch Set C
    Oracle Work in Process (WIP) 783344 769867 769867 Patch Set A
    " > ${OUT_DIR}/107_Base.txt

    chmod 777 ${OUT_DIR}/107_Base.txt 2>/dev/null


    ###
    ## 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

    chmod 777 ${OUT_DIR}/1102_Base.txt 2>/dev/null

    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

    chmod 777 ${OUT_DIR}/1103_Base.txt 2>/dev/null

    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

    chmod 777 ${OUT_DIR}/1151_Base.txt 2>/dev/null

    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

    chmod 777 ${OUT_DIR}/1152_Base.txt 2>/dev/null

    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.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.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.TXT
    1494046 - DUMMY BUG FOR DBUPG.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::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.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

    chmod 777 ${OUT_DIR}/1153_Base.txt 2>/dev/null

    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

    chmod 777 ${OUT_DIR}/1154_Base.txt 2>/dev/null

    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
    1809180 - xns Service for Communications, consolidated patch
    1890569 - cun Network Logistics - NATS, Network Logistics - NATS consolidated patch
    1810030 - xnc Sales for Communications, Sales for Communications consolidated patch
    1746626 - jtf CRM Foundation, Minipack D
    1811785 - jtt CRM Technology Foundation , CRM Technology Found. patch(11.5.4.0.3)
    1809904 - asg CRM Gateway for Mobile Devices, Mobile Device Gateway consolidated
    1571062 - fii Financial Intelligence, Minipack C
    1571138 - ipa CRL Financials Projects, Minipack C
    1682122 - pn Property Manager, Minipack D
    1480962 - ax Global Accounting Engine, Minipack C
    1571112 - xla Common Accounting Modules, Minipack C
    1476832 - je European Localizations, Minipack C
    1620234 - jg Regional Localizations, Minipack E
    1633913 - oie Internet Expenses, Minipack B
    1801257 - gl General Ledger, Minipack D
    1801262 - rg Application Report Generator, Minipack C
    1715446 - ap Payables, Minipack E
    1584277 - fa Assets, Minipack E
    1529296 - ar Receivables, Minipack D
    1711366 - xtr Treasury, Minipack D
    1675976 - oit Internet Time, Minipack B
    1512530 - frm Report Manager, Minipack B
    1615250 - jl Latin America Localizations, Minipack F
    1527618 - ce Cash Management, Minipack D
    1565772 - ja Asia/Pacific Localizations, Minipack D
    1697181 - hz Trading Community, Minipack C
    1618069 - pa Projects, Minipack D
    1511520 - pmi OPM Intelligence, Minipack C
    1745355 - Discrete Manufacturing Suite, Family pack E
    1688968 - Process Manufacturing Suite, Family pack F
    1801717 - Supply Chain Planning Suite, Family pack E
    1745389 - Order Management Suite, Family pack E
    1566836 - hri Human Resources Intelligence, Minipack B
    1663184 - ben Advanced Benefits, Minipack D
    1663234 - pay Payroll, Minipack D
    1776067 - per Human Resources Personnel, Minipack E
    1483168 - hxt Time Management, Minipack B
    1663230 - ota Training, Minipack D
    1741310 - abm Activity Based Management, Minipack D
    1553747 - ak Common Modules, Minipack C
    1745369 - Procurement Suite, Family pack E
    1553933 - ec e-Commerce Gateway, Minipack C
    1553256 - fnd Application Object Library, Minipack C
    1575525 - alr Alert, Minipack C
    1569738 - az Application Implementation, Minipack B
    1738222 - igi Public Sector Financials International, Minipack E
    1569137 - psp Labor Distribution, Minipack C
    1786125 - igs Student System, Minipack D
    1671966 - psa Public Sector Applications, Minipack C
    1549308 - psb Public Sector Budgeting, Minipack D
    1632922 - gms Grants Accounting, Minipack E
    1449665 - igw Grants Proposal, Minipack B
    1483299 - ghr Government HR, Minipack B
    1558776 - fv Federal Financials, Minipack B
    1627493 - ad Applications DBA, Minipack D
    " > ${OUT_DIR}/1155_Base.txt

    chmod 777 ${OUT_DIR}/1155_Base.txt 2>/dev/null

    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

    chmod 777 ${OUT_DIR}/1156_Base.txt 2>/dev/null

    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

    chmod 777 ${OUT_DIR}/1157_Base.txt 2>/dev/null

    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

    chmod 777 ${OUT_DIR}/1158_Base.txt 2>/dev/null

    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

    chmod 777 ${OUT_DIR}/1159_Base.txt 2>/dev/null

    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

    chmod 777 ${OUT_DIR}/11510_Base.txt 2>/dev/null

    }



    ##########################
    ### Main Program Calls ###
    ##########################
    Args="$*"
    ArgCount="$#"

    Get_Arguments # Parse command line ie. patchsets.sh parm1=yes parm2=3
    # check for help -h etc..

    Setup_Env # set up options like default directories
    echo "Finished: Setup_Env"

    if [ "${report}" = "applied_patches" ];then
    Build_Applied_Patches_Report
    exit
    fi

    # Build_Patchset_Lists - Moved into Setup_Env before Pseudo code.

    Get_Version


    echo "Finished: Get_Version (Next Step is slowest)"

    if [ "${patchlist_only}" = "y" ];then
    echo "Exiting without comparison, only created Patch List Only: Patch.csv"
    exit
    fi

    Compare_Patches
    echo "Finished: Compare_Patches (Report.txt)"

    if [ `echo "${BaseAppsVer}" | grep '11.5'` ];then
    Compare_Patches_11i # This only runs if 11.5.X is present (Report_11i.txt)
    fi

    if [ `echo "${BaseAppsVer}" | grep '12.'` ];then
    Compare_Patches_R12 # This only runs if 12.X.X is present (Report_R12.txt)
    fi

    Send_Results
    echo "Finished: All Steps"



    2. Check the ownership and permission of this file.
    Using this command you can change ownership and permissions of this file.

    chown applprod.dba patchsets.sh

    chmod 777 patchsets.sh

    3. Then login as application user and execute the below command to find the
    patchset level.

    sh patchsets.sh connect=apps/apps



    posted by Senthil Kumaran @ 9:52 PM  
    0 Comments:
    Post a Comment
    << Home
     
    About Me

    Name: Senthil Kumaran
    Home: Oslo, Oslo, Norway
    About Me: I'm working as a oracle applications dba(Apps DBA OCP) and fusion middleware.This views are my own only and not neccessary to match with others
    See my complete profile Add to Technorati Favorites
    Previous Post
    Archives
    Links
    Powered by

    BLOGGER

    Add On

    Add to Google

    Add to My AOL

    Subscribe in Bloglines

    Subscribe in NewsGator Online

    © Oracle AppsDBAs World Blogspot Template by SENTHIL KUMARAN SL