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