0% found this document useful (0 votes)
351 views275 pages

Patchsets SH

This document provides usage instructions and a changelog for a script called patchsets.sh that is used to compare a file listing applied patches to available patchset listings from Oracle Application Response Utilities (ARU). The script supports comparing patches for various Oracle E-Business Suite releases between 10.7 and 12.0.0. It can generate reports in text or HTML format. The changelog lists various updates and added features to the script over time to support additional releases and address issues.

Uploaded by

Kishore Adikar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
351 views275 pages

Patchsets SH

This document provides usage instructions and a changelog for a script called patchsets.sh that is used to compare a file listing applied patches to available patchset listings from Oracle Application Response Utilities (ARU). The script supports comparing patches for various Oracle E-Business Suite releases between 10.7 and 12.0.0. It can generate reports in text or HTML format. The changelog lists various updates and added features to the script over time to support additional releases and address issues.

Uploaded by

Kishore Adikar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 275

# $Header: patchsets.sh 4.52 2011/05/05 11:16:01 Steve.

Andrew ftp_site $
TOOL_VERSION="4.52"
export TOOL_VERSION
LAST_MODIFIED="MAY 05, 2011"
export LAST_MODIFIED
#############################################################################
## patchsets.sh - used to compare applptch.txt to patchset listings from ARU.
## - Curently Supports 10.7 - 11.5.10, R12.0.0
## - Added R12 Support 2/12/07
##
## Usage: patchsets.sh connect=apps_login/pw
## [ad_bug_date="DD-MON-YY"] (11i/R12 only)
##
## REPORT NAME AND FORMAT
## ######################
## [htmlout=file_name] [applptch=applptch_file.txt]
## [htmlout11i=file_name]
## [htmloutR12=file_name]
## [report_name=[/path/]file_name]- moves/renames report
## Note: Use htmloutXX or report_name (stays text)
##
## [nca=y] (for 10.7NCA Middle-tier)
## [silent=y] default is n [available=metalink]
##
## connect=apps/apps@connection (11i/R12 only)
## [ad_bug_date="DD-MON-YY"] (11i/R12 only)
## [patch_list=ad_applied_patches|your_file.csv]
## default is to use: ad_bugs table
## It is alot faster to go against ad_applied_patches
## but this only works if you are NOT using admrgpch to
## merge patchsets. Also, if providing your_file.csv
## the format is:
## short_name, possible_patchset_number
## (The short_name is not used but a value is required)
## available=metalink - defaults to all patchsets even
## if not available for download from metalink.
##
## Optionally only run some sql Reports:
## =====================================================
## Applied Patches:
## connect=apps/apps@connection report=applied_patches
## Merged Patches:
## connect=apps/apps@connection report=merged_patches
## [bug=patch#]|[product={short_name}]|
## [applied_date=DD-MON-YY]
## Last Updated Patchset Data:
## report=last_updated
## i.e. Sample Usage:
#############################################################################
## $ patchsets.sh connect=apps/apps
## $ patchsets.sh connect=apps/apps patch_list=ad_applied_patches
## $ patchsets.sh connect=apps/apps@VIS1157 ad_bug_date="01-FEB-02"
## default for 11.5.5-11.5.9=01-JAN-02 11.5.10=01-OCT-03
## $ patchsets.sh
## $ patchsets.sh applptch=/tmp/applptch.txt
## $ patchsets.sh connect=apps/apps debug=y
## $ patchsts.sh connect=apps/apps available=metalink
## (Limits Available Listing)
##
## Reports:
## $ patchsets.sh connect=apps/apps report=applied_patches
## $ patchsets.sh connect=apps/apps report=merged_patches bug=2344175
## $ patchsets.sh report=last_updated
##
## $ patchsets.sh -h|?|help (for Help)
##
## NEW FEATURE TO AUTOMATICALLY UPDATE THE PROGRAM:
## $ patchsets.sh upgrade=. or upgrade=/tmp (puts in tmp)
##
## WARNING:
## If you use it be careful to first BACKUP your $HOME/.netrc
## The program should not touch that file, as long as you are not
## running from the $HOME directory.
##
## FEEDBACK WELCOME!!! - [email protected]
##
## if problems: Please run with debug=y appended and email me
## debug.txt
##
## Note1: The connect string is required if > 11.5.4 or the latest AD
## patch has been applied. (See README.txt on ftp site)
##
## Note2: The applptch= is not required if your APPL_TOP is set. The
## program will find it based on the standard locations.
## If you use the htmlout= option, the program will generate an
## html file format that can be redirected to a web location so
## that the tool can easily make the report available to your
## Enterprise.
##
## Note3: Optional CUST_TEMP variable can be used to set the TEMP out
## directory where temp files are created as the program runs.
##
## Note4: Product HZ not currently showing in the report. If you want it
## you can add: HZ to the APPLFULL or APPLSHAR env. variables before
## running the program. - Should have a table fixed for this...
##
## Note5: If having a "Arg list too long" problem on AIX, try: aix=y option
## This will run slower, but should eliminate the
## ./patchsets.sh: line 1136: /bin/grep: cannot execute [Arg list
## too long]
##
## Note6: Generally should work on any platform with ksh or sh. Recently fixed
## a PSEUDO products sh problem. 4.23 No other known issues currently
## with shells.
##
###############################################################################
## CHANGE LOG / HISTORY:
###############################################################################
## 4/10/00- Intial Release by Steve Andrew
## 8/07/00- Added 11i Support, Base Patchsets (11.5.1) still a bit confused
## appears that several patchsets "A" are applied by the 11.5.1
## upgrade
## 1/11/01- Modified significantly from ckpatch.sh used with the web
## only version. This is used as a standalone script or can
## be built from a web front-end to add the dynmamic data
## to it from ARU. A cron generates this info. via sqlplus
## 3/23/01- Adding htmlout=file option to build the output in html format
## if desired. Also added silent=y
## 5/09/01- Martin Fitzgerald from Consulting contributed the Report_11i.txt
## report which is more detailed for 11i.
## Also limited the General report(Report.txt) to only show the
## APPLFULL and APPLSHAR products IF these variables are set.
## Also updated the Header to reflect IF APPLFULL was used to
## Limit the Product Patchset listing.
## 5/31/01- Removed Martin Fitzgerald Name from Report_11i.txt per request.
## 6/26/01- Added support for 11.5.4 including the 1154_Base.txt file which
## includes the baseline listing of all the patchsets from the README.
## Version: 2.0
## 10/3/01- Adding support for 11.5.5 or latest AD patch where patches have
## been moved into the RDBMS in tables AD_BUGS etc...
## Version: 2.1
## 10/24/01 Checking for presents of typeset command in the shell and
## warning if not present. This command is used in the Report_11i.txt
## but does not cause the report.txt report to fail.
## - Not fixed yet, but run
## ksh on Solaris and it will work.
## 10/25/01 - Fixed by removing typeset -l and using tr to force
## APPLFULL/APPLSHAR products to all lower case.
## Version: 2.2
## 11/2/01 - Found problem with some Versions in Header of applptch.txt
## added some traps to skip if version has 11.x.x\r\n
## - case statement 11.x.x*) fix.
## Version: 2.3
## AIX had a grep buffer overrun when > 2k size a fix was to put the
## string in quotes before calling a grep see: AIX
## 1) Install X11.dt.rte on AIX (this gave me /usr/dt/bin/dtksh
## version 93 of ksh)
## 2) I modified your script (just a little)
## add: #!/usr/dt/bin/dtksh (as the first line of the script)
## 3) Running the script then no longer had the
## ./patchsets.sh[57]: 0403-029
## Tip: To check the current shell version: Esc Cntrl-V
## Version: 2.4
## Added some MKS specific error dif. commands who am i vs. whoami
## andtput fails to work. Also checking for the /tmp directory
## and making sending message to create if not present
## - on current drive when running on NT.
## Also worked out the sqlplus connection issues on NT via MSK for
## the new AD_BUGS. Documentation added to help on how to run it
## under NT/MKS. (Env sourcing etc..)
## Version: 2.5
## Added a feature to be able to run against 10.7 NCA (nca=y)
## Fixed a problem running against 10sc files.
## Version: 2.6
## Added support for 11.5.6 which only shows up on Oracle Internal
## OHS Systems because fnd_product_groups does not get updated when
## the 11.5.6 ERP or CRM Patch is applied. The 11.5.6 Patchsets
## Baseline is created as /tmp/1156_Base.txt
## Also secured the sqlplus password from ps snoops
## Version: 2.7
## Added ability for 11i installs using the database to store patch
## history to search just the patches applied(ad_applied_patches)
## instead of all included bugs(ad_bugs) see: option patch_list=
## Version: 2.8
## Updated to handle the new AD_BUGS structure that is no longer using
## APPLICATION_SHORT_NAME . Found problem with a customer doing a 10.7
## upgrade to 11i. The existing apps installs seem to still have the
## table, but it would no longer be up-dated either.
## Version: 2.9
## Updated to handle the new 11.5.7 Maintainence Pack or patchsets
## Version: 3.0
## Fixed 8.05 sqlplus background connection with a space in front of here
now.
## Fixed DOMAIN error when on NT no /etc/resolv... file.
## Found a way that some aru's without actions were not showing the patch
in patch.csv
## when using the applptch.txt file. Fixed by appending an grep begin aru"
## Version: 3.1
## Added tool version to Report Header, Help, etc.
## Version: 3.2
## Apparently introduced a problem in the Generation of the Patch.csv in
the 3.0
## revision when customers are using applptch.txt.
## Has to do with appending: grep "begin aru bug" $applptch .. not just
"begin bug"
## Currently investigating further..
## Fix: Needed to remove a space in the Patch.csv output Short,Bug not
Short, Bug
## Version: 3.3
## Added more patchsets to the ARU generated 11i_patchsets.txt file so
that to fix a
## problem in the "Installed Version" and possibly "Running Version" of
the Report_11i.txt
## Also changed the header from: "Installed Version" to "Baseline Version"
to make it clearer.
## Version: 3.4
## Added the Family Packs listing as a separate section to the Report.txt
report. Also enhanced
## the explanation on the report about patchsets included in Family packs
and the Distribution
## of such.
## Version: 3.5
## Added 11.5.8 Support, ie. uses: /tmp/1158_Base.txt to establish the
baseline for 11.5.8
## Also need to fix the APPLFULL and APPLSHAR to come from the database
once AUTOCONFIG
## is enabled since the env variables are not set any more...once
AUTOCONFIG is setup.
## => KNOWN ... issue, not fixed yet. Workaround, set them yourself!
APPLFULL and APPLSHAR
## select fav.application_short_name Short, fpi.status Status
## from fnd_application_vl fav, fnd_product_installations fpi
## where fav.application_id = fpi.application_id and
## fav.application_short_name NOT like 'SYSADMIN' and
## fpi.status != 'N'
## order by 2,1;
## Version: 3.6
## Added new 11.5.7 Baseline and fixed APPLFULL and APPSHAR for autoconfig
cusomters
## ie. The program builds and sets the APPLFULL and APPLSHAR env from
database tables.
## see: Set_APPLFULL_APPLSHAR_from_DB
## Also enhanced Report.txt to use the FULL Baseline patchsets listing as
the
## Report_11i.txt does. This limits the person from having to look at the
Basline
## release patchsets to build their true baseline.
## Appended the 11.5.7 patchsets not included in ad_bugs but in the
## fnd_installed_products table to the 1157_Base.txt file. This is a merge
of
## the html Release Notes and that tables listing. Still appears some
products
## proper true baselines are missing. ie. ad is not in either location.
## Speeded up the Report.txt file using a diff -c ... may cause problems
on some
## Unixs if that option isn't present. If so use old way or: new_compare=n
option
## Version: 3.7
## Modified the Patch.csv list to include ad_applied_patches as well as
ad_bugs.
## Also limit the ad_bugs part of the listing for 11.5.7 and 11.5.8 to
only bugs added
## after 01-JAN-2002. This solved an NT bug that ran out of memory. This
also
## solved the extremely LONG running problem due to ad_bugs being ~40k
records
## when released with 11.5.7 and 11.5.8 (bugs logged on this).
## This is still showing ~26000 bugs with 11.5.8, and they end ~Oct
29,2002 if I
## want to change the sql to exclude them to make the query faster. The
only
## advantage is that is may show some patchset history ... but not really
required
## since I have merged the 1158_Base.txt with html release note and
## fnd_product_installations patchset listings.
## Cleaned up some of the format issues on the Report_11i report as it
goes to screen
## and file. Have not tested changes for NT which ignores these screen
output attr.
## Version: 3.8
## Added option for CUST_TEMP variable to point at the OUT_DIR or temp
files
## directory. If not set, the program still defaults to /tmp. Also purged
some tmp files
## that were not being removed. The only files that should be left at this
point would
## be the reports that get created in the current directory and any
supporting ARU
## data files. ie. /tmp/11i_patchsets.txt & /tmp/115X_Base.txt files.
## Also cleanup the files not used for their install: 10.7, 11.0, or 115X
in OUT_DIR.
## Still leave all the 115X_Base if an 11i install. They are used.

## Version: 3.9
## Fixed OFA => FA when using fnd_applications_vl, and added a date >
option for ad_bugs
## as a work-around for an NT customer have variable limits with MKS
## Date: 1/30/2003
## Version: 4.0
## 1) New Option: override_appsversion=11.5.[x] where customer can overide
the default
## Lookup of their core apps version(FND_PRODUCT_GROUPS) used for the
baselines.
## 2) Included Patches Applied from: ad_patch_driver_minipks, translated
but numbers from
## ARU listing 11i_patchsets.txt, then append to the Patch.csv as part of
customer applied.
## Date: 2/3/2003
## Version: 4.1 - see bug: 2743473, Issue - 4. (Issues - 1 unix env doesn't match
prod tables.,
## Issue - 3 (OFA=>FA) Not-a-bug)
## 4.02) was not showing up in the Report_11i.txt report, only the
Report.txt report.
## FIXED. Has to do with examples like: Family Pack: 11i.FIN_PF.C(2380068)
which
## included 11i.AP.J (2375849) which only shows up in
ad_patch_dirver_minipks.
## Bug: Left out a comma when appending the patchsets from:
Applied_Ad_Minipks.csv
## to Patch.csv - Note: The date format is dif. in field one as a way to
tell them
## appart.
## Bug 2743473, Issue - 2 - HZ product not showing up. Fixed with a Work-
Around by
## setting the UNIX env either APPLFULL or APPLSHAR to have HZ in them.
This will
## merge it into the list created from the database tables.
FND_APPLICATION_TL etc.
## OPEN ISSUE: Should not the HZ "Trading Partners" patchsets be part of
AR since
## their objects appear to be owned by AR. - Check with: MineOdok
(internal AIM..)
## Date: 2/7/2003
## Version: 4.2
## still relates to bug: 2743473, Issue - 4.
## (Issues - 1 unix env doesn't match prod tables.,
## Had a code logic problem in checking for "HZ " vs "HZ" in the grep
## - so adding HZ only worked if it had a space at the end. Fixed!
##
## Date: 2/10/2003
## Version: 4.3
## Relates to bug: 2743473, Issue - 4.
## (Issues - 1 unix env doesn't match prod tables.,
## Changed to HARD-CODE "HZ" into the APPLFULL listing
## until we get this fixed internally. Philippe G. has the bug...
## - Means it will just show up in the Products FULL listings reports.
## - No need to Add it to the unix applfull or applshar before running.
##
## Date: 2/10/2003
## Version: 4.4
## The SHARED FULL Products where not showing up with
## a system that had sqlplus settings odd. Fixed by
## changing the SQL to make SHORT_NAME STATUS be on one line.
## Date: 7/22/2003
## Version: 4.5
## Added support for 11.5.9
##
## Date: 9/29/2003
## Version: 4.6
## Added support for AIX "Arg list too long" problem
## Work-Around: aix=y on command line and writes array to file
## instead of using the faster in-memory way.
##
## Date: 9/29/2003
## Version: 4.7
## Financials Family Pack 11i.FIN_PF.D 2629235 was released
## with 11.5.9 and is not showing up. This was because DEV
## removed it from ARU database and it no longer shows up in
## the 11i_patchsets.txt nightly output. It is in the 1159_Base.txt
## SOLUTION: Append a record to the 11i_patchsets.txt as
## follows:
## fin_pf 11i.FIN_PF.D 2629235 14-MAY-01 Patchset Closed Not_Distributed
## I did this in the ARU Data sql, not in my code. No change in this code.
##
## Date: 1/06/2004
## Version: 4.8
## Financials Family Pack 11i.FIN_PF.D 2629235 NOT showing up
## This is because the report_11i.txt did a grep -v Closed on the
## Family Packs _pf. Hope this doesnt show Family Packs with Higher
## value that WONT be available. Put in fix, removed the grep -v Closed
##
## Date: 05/10/2004
## Version: 4.9
## Had another AIX issue where the new shell still didnt fix
## the memory problem noted in the help. Added a work-around with
## the aix=y option in the Run_SQL procedure.
## $ EscCnrl-V -> Generates the version:
## $ Version M-11/16/88i
##
## Date: 06/17/2004
## Version: 4.10
## 11.0.X runs the Report_11i.txt and shows errors Sun/Hp at least
## < if [ "${R11i:=YES}" = "YES" ]; then
## --- > Changed and added in the database section R11i=YES
## > if [ "${R11i}" = "YES" ]; then
##
## Date: 10/20/2004
## Version: 4.11
## Modified Report.txt and Report_11i.txt to only show Metalink
## available patchsets in the "Latest Available" category, this
## means that if they dont have "By_Metalink" in the distribution
## column, they will only be used to get baselines, and check applied
## but will not show up on the Latest Available areas of the reports.
## This was reported as a problem when lots of 11.5.10 patchsets
## were being created but not on metalink, just before 11.5.10 rel.
## Once 11.5.10 is out, most of those patchsets will have a dist.
## of Metalink, but currently caused some confusion on the report.
## For code change locations see: FIX LATEST AVAILABLE
##
## Date: 11/29/2004
## Version: 4.12
## Removed support for: 10sc, 10.7 and 10.7NCA.
## PS: Plan to add: 11.5.10 support soon in 4.13
##
## Date: 01/03/2005
## Version: 4.13
## Added back support for: 10.7 and 10.7NCA.
## Added: 11.5.10 support as planned.
##
## Date: 03/03/2005
## Version: 4.14
## 1) Found problem with connect=apps/xxx when an applptch.txt file
## is present. It was using the applptch.txt file. Setup_Env()
## 2) Added option to show only LATEST AVAILABLE: on metalink
## (see: 4.11 change), with: latest=metalink else it now shows
## the latest available followed by the status REL-SOURCE.
## 3) Also added: Pseudo Products to the Reports which are products
## not in the FND_ tables.
## 4) Added fix for AIX Memory issue which doesnt require the
## aix=y flag any more. Send Variable data for file instead
##
## Date: 03/24/2005
## Version: 4.15
## 1) Found problem with PSEUDO products in if someone
## sets a dif. default OUTPUT directory than /tmp.
## ie. CUST_TEMP=/myhome assumed /tmp/11i_patchsets.txt
##
## Date: 03/29/2005
## Version: 4.16
## ADDED OAM so to PSEUDO PRODUCT Listing
##
## Date: 03/31/2005
## Version: 4.17
## 4.16 didnt work as expected and changed it AND TESTED
## the change this time. OAM showed up in the PSEUDO PRODUCTS
## list on the Report.txt and OAM.G showed as applied.
##
## Date: 04/07/2005
## Version: 4.18
## Still had an awk variable problem with AIX and some
## hard coded references to /tmp have been removed so that
## CUST_TEMP can be used at command line or set first.
##
## Date: 04/18/2005
## Version: 4.19
## If not passing connect= on command line R11i=YES wasnt
## getting set. Problem happend from a code change above.
##
## Date: 04/19/2005
## Version: 4.20
## Added Test upgrade=. or upgrade=/tmp to update from ftp
## site automatically.
##
## Date: 07/27/2005
## Version: 4.21
## Fixed NT memory problems shell cant fit large variable
## strings with MKS like AIX see aix fixes.
##
## Date: 09/26/2005
## Version: 4.22
## Back Fixed the 10.7 data files not showing up.
##
## Date: 12/20/2005
## Version: 4.23
## Had a /bin/sh vs /bin/ksh problem on Solaris with
## PSEUDO Products not working. Added: tmpPSEUDOBack tmp
## file to fix loop export variable shell issu.
## (ARU Changed data structure which effected short name
## during this same time frame)
##
## Date: 01/03/2006
## Version: 4.24
## Thanks to [email protected] added code changes
## that dramatically increased the speed of the application.
## PS: Have continuted to put off database version that
## runs in seconds because OAM has in the past said there
## version would include patch history. Still considering!
## Email me if this is a priority for you. Would use xml
## dataload, then select patchxml_list minus
## select your applied query. Runs very fast.
##
## Date: 02/23/2006
## Version: 4.25
## Added DNA to FULL Products for SHARED to show correctly
##
## Date: 10/30/2006
## Version: 4.26
## Updated to point to new ftp site and updated the auto
## upgrade to: ftp.oracle.com
##
## Date: 11/14/2006
## Version: 4.27
## Change suggested by: [email protected]
## dif. syntax for uname on Cygwin, workaround see OS1
##
## Date: 11/15/2006
## Version: 4.28
## Found problem with uname -o syntax on Sun from above
## Reworked and added fix for CUST_TEMP being null on cygwin
## and corrected DOMAIN instead of workgroup on NT
##
## Date: 11/17/2006
## Version: 4.29
## Added support for htmlout11i=Path for the Report_11i.txt to
## be output to html as well as htmlout for Report.txt.
## Also fixed another problem with CUST_TEMP
##
## Date: 02/12/07
## Version: 4.31
## Started working on R12 support and broke something and needed
## to move OUT_FILE variable above moved Get_DB_Apps_Version.
##
## Date: 02/12/07
## Version: 4.32
## First working version of R12. May need some changes.
##
## Date: 02/14/07
## Version: 4.33
## Added to R11i section, after moving it above in 4.32
## to support R12, missed for 11i and caused no APPLFULL and
## APPLSHAR variables to be set for 11i
## Set_APPLFULL_APPLSHAR_from_DB
##
## Date: 05/09/07
## Version: 4.34
## BASELINE.txt file ended up with more than just the baseline
## so some people wanted to use the BASELINE.txt file for other
## purposes. fix created a BASELINE.tmp for the purposes my code
## needed it.
##
## Date: 06/04/07
## Version: 4.35
## Added Applied_Patches reports: Applied_Patches_11i.txt or
## Applied_Patches_R12.txt in on R12 - They get created by
## default and put in the same directory as the patchset
## reports.
##
## Date: 11/27/07
## Version: 4.37
## Problem when 11i.ADX.F 3453499 has been applied, but the
## 11i.ADX.E.1 patch showed as the active because it has a higher
## bug number. Odd situation, so I just hard coded a fix.
## Date: 11/28/07
## Version: 4.38
## Added message: {product} has no patchsets!
## for Products like IZU that have not released patchsets.
##
## Date: 01/07/08
## Version: 4.39
## Trapping ORACLE_HOME not set in Run_SQL to be easier for people
## that have not setup the env. instead of bunch errors to the screen.
##
## Date: 02/06/08
## Version: 4.40
## Fixed odd error when applptch.txt file is missing for 10.7/11.0.X
## like a fresh install. fix: add on command line:
## patchsets.sh version=10.7.0|11.0.1(2,3) and it will not prompt for
## database user password. Use to assume if no applptch.txt, its 11i/R12.
## Also, Debug function was failing if OUT_DIR was not set, so default
## to current directory "." before checking for CUST_TEMP env. setting.
##
## Date: 02/06/08
## Version: 4.41
## Had a bad sql column in Applied Patches report for 11.5.10.2
##
## Date: 06/02/09
## Version: 4.42
## Added support for R12.1.1 release by adding 1211_Base.txt file
## when the release is 12.1.1 as the base listing of applied.
## see: R1211_PATCHES variable in program to better understand.
##
## Date: 06/03/09
## Version: 4.43
## Missed a change to support the R12.1.1 patchsets baseline and
## limited the Patch.csv report size and update R12 Report.
##
## Date: 06/09/09
## Version: 4.44
## Fixed syntax on R12.sql report and added Test merge R12 report
##
## Date: 06/10/09
## Version: 4.45
## TOOL_VERSION was only working and showing on report if run from
## same directory because it greped directly on patchsets.sh.
## Hard coded instead. New R12 merge report isn't quite working
## so removing until further investigation. Adding only as a
## standalone report. report=merged
##
## Date: 06/24/09
## Version: 4.46
## Just added optional rename or move report at the end to support
## people running against multiple instances from same location or
## cron.
## ie. patchsets.sh connect=apps/apps \
## report_name=${TWO_TASK}_Report_R12.txt
##
## Date: 07/08/09
## Version: 4.47
## Changed output format spacing on columns so it is easier to
## import report_xx.txt into Excel, columns line up better per
## User request.
##
## Date: 03/03/10
## Version: 4.48
## Just minor changes on a few spellings and LAST_MODIFIED was
## added as a variable to make it easier to show consistently.
##
## Date: 02/09/11
## Version: 4.49
## Modified R12 SQL Report to include in ('SQLAP', 'SQLGL' )
##
## Date: 02/22/11
## Version: 4.50
## Modified R12 SQL Report changed substring to substr
##
## Date: 03/11/11
## Version: 4.51
## Changed status from Che-Released to Patch-Released on Reports
## Report_11i.txt and Report_R12.txt
##
## Date: 05/05/11
## Version: 4.52
## Adding 1212_Base.txt and 1213_Base.txt baseline support for
## R12.1.2 and R12.1.3 releases.
#############################################################################

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

## 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
R1211_PATCHES=${OUT_DIR}/1211_Base.txt
R1212_PATCHES=${OUT_DIR}/1212_Base.txt
R1213_PATCHES=${OUT_DIR}/1213_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
R1211_PATCHES RELR12
export R1212_PATCHES R1213_PATCHES

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."`
CHKR120=`echo "${AppsVer}" | grep "^12.0"`
CHKR121=`echo "${AppsVer}" | grep "^12.1"`
export CHKR12 CHKR120 CHKR121
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

Last_Updated_Report ()
{
##
## Gets Last Updated Dates for Patchset Releases ie. 12.x, 11.5, 11.0
## - sets variables: RELRxx_DATE
##

Set_Patchset_Dates

clear
echo "
Check Applied Patchsets Tool - patchsets.sh

A) PROGRAM CODE VERSION AND DATES

#############################################################################
## Name: patchsets.sh Version: $TOOL_VERSION
## By: [email protected] Last Modified: $LAST_MODIFIED
#############################################################################

B) LAST UPDATED PATCH LISTS


This program is dynamically generated nightly with the latest data and
that means you must download a new version to get the latest patch list
to compare your system with. Below lists the dates that each releases
patch listing was last updated within this script.

R12.X Data Last Updated: $RELR12_DATE


R11.5 Data Last Updated: $REL115_DATE
R11.0 Data Last Updated: $REL110_DATE
R10.7 Data Last Updated: $REL107_DATE

- For more information on this program, see Note: 139684.1


or download the latest copy from the following link:
ftp://ftp.oracle.com/support/outgoing/PATCHSET_COMPARE_TOOL/patchsets.sh
"
exit

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

##
## Added to setup Dates for Last Patchset Data from SQL
##
Set_Patchset_Dates

clear
echo "
Check Applied Patchsets Tool - patchsets.sh
#############################################################################
## Name: patchsets.sh Version: $TOOL_VERSION
## By: [email protected] Last Modified: $LAST_MODIFIED
#############################################################################
##
## Setup: Source \$APPL_TOP/APPSORA.env or env file for specific release
## or make sure sqlplus is setup to connect to your EBS database
## so the tool can connect with sqlplus and \$TWO_TASK.
##
## Usage: patchsets.sh connect=Apps_login/pw
## [ad_bug_date="DD-MON-YY"] (11i/R12 only)
##
## REPORT NAME AND FORMAT
## ######################
## [htmlout=file_name] [applptch=applptch_file.txt]
## [htmlout11i=file_name]
## [htmloutR12=file_name]
## [report_name=[/path/]file_name]- moves/renames report
## Note: Use htmloutXX or report_name (stays text)
##
## [applptch=applptch_file.txt]
## [silent=y] default is n
##
## connect=apps/apps@connection (11i/R12 only)
## [ad_bug_date="DD-MON-YY"] (11i/R12 only)
##
## [patch_list=ad_applied_patches|your_file.csv]
## default is to use: ad_bugs table
## It is alot faster to go against ad_applied_patches
## but this only works if you are NOT using admrgpch to
## merge patchsets. Also, if providing your_file.csv
## the format is: short_name, possible_patchset_number
## The short_name is not used but a value is required.
##
## Report Applied Patches Only:
## $ ./patchsets.sh connect=apps/apps report=applied_patches
## Report Last Updated Patchsets Dates
## $ ./patchsets.sh report=last_updated
## Note: This one gets generated automatically during normal runs as well.
##
## Optionally only run some sql Reports:
## =========================================================================
## Applied Patches:
## $ ./patchsets.sh connect=apps/apps@connection report=applied_patches
## Merged Patches:
## $ ./patchsets.sh connect=apps/apps@connection report=merged_patches
## [bug=patch#] | [product={short_name}] | [applied_date=DD-MON-YY]
##
## patchsets.sh -h|?|help (for Help)
##
## Additional Parms:
## If 11i and latest AD Patchset E or F
## or > 11.5.4
## connect=apps/apps@connection
## [patch_list=ad_applied_patches|your_file.csv]
## default is to use: ad_bugs table
#############################################################################

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 connect=apps/apps report_name=VIS12_Report_R12.txt
$ ./patchsets.sh
$ ./patchsets.sh applptch=/tmp/applptch.txt
$ ./patchsets.sh connect=apps/apps debug=y (email steve this if problem )
$ ./patchsets.sh connect=apps/apps available=metalink
(Restrict to Metalink Available patchsets)

Standalone Report Options:


Applied and Merged patch reports
$ patchsts.sh connect=apps/apps report=applied_patches
$ patchsts.sh connect=apps/apps report=merged_patches bug=2344175

# 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 = [email protected])
# - ftp itself for you with latest version)
# - be sure to backup your \$HOME/.netrc before testing this option.
# $ patchsets.sh upgrade=. or upgrade=/tmp
##################

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 Consolidated Updates (CU) that have recently been created.
~2/2005
There is a Consolidated Update for all the products:
####################################################################
3240000 - 11.5.10 ORACLE E-BUSINESS SUITE CONSOLIDATED UPDATE 1 AND
There is a one for the ATG product family:
4017300 - 11.5.10 Consolidated Update (CU1) for ATG Product Family.
3460000 - 11.5.10 Oracle E-Business Suite Consolidated Update 2 (CU2)
see Note: 316366.1, includes other CU2 patches: 4125550 ATG_PF,
4328839 AD, 4325353 ADX, 4268805 CRM, 4247648 FIN_PF, 4306532 HR_PF
If you have any questions on this, please log a SR.

NOTE: TXK patches are delivered by 11i.ATG_PF.x and no longer as


patchsets, but as one off rollups. ie. Only TXK.A and TXK.B were
delivered as patchsets. ie. 11i.TXK.B is in 11i.ATG_PF.H

LAST UPDATED PATCH LISTS


This program is dynamically generated nightly with the latest data and
that means you must download a new version to get the latest patch list
to compare your system with. Below lists the dates that each releases
patch listing was last updated within this script.

R12.X Data Last Updated: $RELR12_DATE


R11.5 Data Last Updated: $REL115_DATE
R11.0 Data Last Updated: $REL110_DATE
R10.7 Data Last Updated: $REL107_DATE

This data can also be seen with: patchsets.sh report=last_updated

- For more information on this program, get the latest version, Note: 139684.1
or download the latest copy from the following link:

ftp://ftp.oracle.com/support/outgoing/PATCHSET_COMPARE_TOOL/ (External)
" | more
exit
}

Debug ()
{
#
# Debug output to file and screen
# $1 = Message or set DebugMessage=, then call Debug
#
# echo "USING: $OUT_DIR"
TIMESTAMP=`date | sed 's/ /_/g'`
if [ "$DebugMode" = "y" -o "${debug}" = "y" ]; then
# echo "------------------Debug RUN: `date`" >> $OUT_DIR/Debug_patchsets$$.log
if [ "$DebugMessage" != "" ]; then
echo "DEBUG, ${TIMESTAMP} ==> $DebugMessage" | tee -a
$OUT_DIR/Debug_patchsets$$.txt
fi
if [ "$1" != "" ]; then
echo "DEBUG ${TIMESTAMP} ==> $1" | tee -a $OUT_DIR/Debug_patchsets$$.txt
fi
fi
}

Get_Latest_Patchsets ()
{
#
# Usage: upgrade=. or upgrade="/tmp"
#

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 [email protected]"
exit
else
echo "machine ftp.oracle.com login anonymous password [email protected]"
> .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 [ "${R12}" = "YES" ];then

SQL="
REM
REM Applied_Patches_R12.sql - used to create R12 Applied_Patches_R12.txt
REM
set feedback off
set linesize 80
set pagesize 9000

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

prompt
prompt Current Maintenance Packs by Date

column patch_name head Patch format a8


column maint_pack_level head PackLevel format a9
column creation_date head AppliedOn format a10

select distinct patch_name, maint_pack_level, max(creation_date) creation_date


from ad_applied_patches where patch_type like 'MAIN%'
group by patch_name, maint_pack_level
order by 3;

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;

column patch_name head Bug format a8


column Product head Product format a7
column trackable_entity_abbr head Track_Ent format a9
column baseline_name head BaseLine format a8
column codelevel head CodeLevel format a12
column patch_type head PatchType format a11
column last_update_date head Applied format a10

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,
decode(ap.patch_type, 'MAINTENANCE-PACK',
'MAINT-PACK', ap.patch_type) patch_type,
ap.last_update_date
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
OR (upper(ab.trackable_entity_abbr) in ('SQLAP', 'SQLGL' )
and substr(ab.trackable_entity_abbr,-2)=ate.abbreviation))
and ab.aru_release_name != '11i'
and ap.last_update_date > '01-JAN-07'
ORDER BY ap.last_update_date desc
"

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

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

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

SQL="
REM
REM Merged_Patches_R12.sql - used to create R12 Merged_Patches_R12.txt
REM
set feedback off
set linesize 160
set pagesize 50000

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

prompt
prompt R12 Merged Patches Report
prompt Limited by
prompt Applied Patch Name like '${bug}%'
prompt Merged Product like '${product}%'
prompt Applied Date > '$applied_date'

COLUMN patch_name format a10 heading 'Patch Name'


COLUMN patch_type format a16 heading 'Patch Type'
COLUMN driver_file_name format a13 heading 'Driver File'
COLUMN orig_bug_number format a10 heading 'Merged Bug'
COLUMN application_short_name format a7 heading 'Product'
COLUMN last_update_date format a12 heading 'Date Applied'
COLUMN abstract format a80 heading 'Abstract' WORD_WRAP

SELECT a.patch_name patch_name, a.patch_type, b.driver_file_name,


d.orig_bug_number, d.application_short_name,
a.last_update_date,
decode(length( b.patch_abstract), '',
decode(length(ac.patch_abstract), '', 'Not Available',
ac.patch_abstract), b.patch_abstract) abstract
FROM ad_applied_patches a,
ad_patch_drivers b,
ad_patch_runs c,
ad_patch_run_bugs d,
ad_comprising_patches ac
WHERE a.applied_patch_id = b.applied_patch_id AND
b.PATCH_DRIVER_ID = c.PATCH_DRIVER_ID AND
c.PATCH_RUN_ID = d.PATCH_RUN_ID AND
b.patch_driver_id = ac.patch_driver_id (+) AND
a.patch_name like '${bug}%' AND
d.application_short_name like '${product}%' AND
a.last_update_date > '$applied_date'
ORDER BY a.last_update_date desc, d.application_short_name"

echo "${SQL};" > Merged_Patches_R12.sql


echo " ... Running Merged_Patches_Report.sql R12 sql: Merged_Patches_R12.sql"

Run_SQL

if [ -r $OUT_DIR/$OUT_FILE.txt ];then
cp $OUT_DIR/$OUT_FILE.txt Merged_Patches_R12.txt
echo " ... Created Merged Patches Report: Merged_Patches_R12.txt"
fi

else

SQL="
REM
REM Merged_Patches_11i.sql - used to create 11i Merged_Patches_Report.txt
REM
set feedback off
set linesize 80
set pagesize 20000

SELECT '11i Merged Patches Report by Date ran on: '|| sysdate Report FROM dual;

prompt
prompt 11i Merged Patches by Applied Date
prompt Limited by
prompt Applied Patch Name like '${bug}%'
prompt Merged Product like '${product}%'
prompt Applied Date > '$applied_date'

COLUMN patch_name format a11 heading 'Patch Name'


COLUMN patch_type format a16 heading 'Patch Type'
COLUMN driver_file_name format a13 heading 'Driver File'
COLUMN orig_bug_number format a10 heading 'Merged Bug'
COLUMN application_short_name format a10 heading 'Product'
COLUMN last_update_date format a12 heading 'Date Applied'

SELECT a.patch_name patch_name, a.patch_type, b.driver_file_name,


d.orig_bug_number, d.application_short_name,
a.last_update_date
FROM ad_applied_patches a, ad_patch_drivers b, ad_patch_runs c,
ad_patch_run_bugs d
WHERE a.applied_patch_id = b.applied_patch_id AND
b.PATCH_DRIVER_ID = c.PATCH_DRIVER_ID AND
c.PATCH_RUN_ID = d.PATCH_RUN_ID AND
a.patch_name like '${bug}%' AND
d.application_short_name like '${product}%' AND
a.last_update_date > '$applied_date'
ORDER BY a.patch_name, a.last_update_date desc"
echo "${SQL};" > Merged_Patches_11i.sql
echo " ... Running Merged_Patches_Report.sql 11i sql: Merged_Patches_11i.sql"
Run_SQL

if [ -r $OUT_DIR/$OUT_FILE.txt ];then
cp $OUT_DIR/$OUT_FILE.txt Merged_Patches_11i.txt
echo " ... Created Merged Patches Report: Merged_Patches_11i.txt"
fi

fi

Get_AD_Patch_Minipks ()
{
#
# Pulls distinct list of Applied Patchsets from AD_PATCH_DRIVER_MINIPKS
# - then compares to patchsets in 11i_patchsets.txt and gets the bug number
# - that matches this and puts in file.
#
# Creates file: Applied_Ad_Minipks.csv
# 06-JAN-03, 11i.AP.J, 2375849
# 06-JAN-03, 11i.CE.G, 2243908
#
# NOTE: These dates are not as important because this file doesnt get big
# unlike the patch.csv files...
#########################################################################

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


# FOR ALL 12.0.X releases up to the 12.1.1 release, use this date 01-DEC-08
if [ "${CHKR120}" != "" ]; then

mini_date="01-JAN-07"
echo " ... R12.0.X limiting mini-packs to after 01-JAN-07"

SQL="
set head off
set feedback off
set pagesize 9000
select distinct max(creation_date) || ', ' || replace(patch_level, '11i', 'R12')
from ad_patch_driver_minipks
where last_update_date > '${mini_date}'
and ( patch_level like 'R12%' or patch_level like '11i%' )
group by patch_level"
Run_SQL

# echo "Running R12 sql: $SQL"

# THIS would be for 12.1.1 based on above covering all 12.0.X releases,
# may need update later
elif [ "${R12}" = "YES" ];then

mini_date="01-JAN-07"
echo " ... R12.1.1 or higher so limiting mini-packs to after 01-JAN-07"
SQL="
set head off
set feedback off
set pagesize 9000
select distinct max(creation_date) || ', ' || replace(patch_level, '11i', 'R12')
from ad_patch_driver_minipks
where last_update_date > '${mini_date}'
and ( patch_level like 'R12%' or patch_level like '11i%' )
group by patch_level"
Run_SQL

else

SQL="
set head off
set feedback off
set pagesize 9000
select distinct max(creation_date) || ', ' || patch_level
from ad_patch_driver_minipks group by patch_level"
Run_SQL

fi

if [ -r $OUT_DIR/$OUT_FILE.txt ];then
cp $OUT_DIR/$OUT_FILE.txt Applied_Minipks.csv
COUNT=`wc Applied_Minipks.csv | awk '{print $1}'`
echo " ... FOUND: $COUNT patchset in AD_PATCH_DRIVER_MINIPKS see:
Applied_Ad_Minipks.csv"

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 joined to AD_APPLIED_PATCHES
#
# NOTE: Limits the list to only ad_applied_patches IF command-line option
# patch_list="ad_applied_patches" else uses logic below for date
# limits on ad_bugs so its not too big.
# Also takes ad_bug_date command line into account if the customer
# wants to narrow ad_bugs to more recent time frame that defaults.
# All ad_applied_patches are included even if ad_bug_date is set!
#
# Create Applied_Minipks.csv - Applied Patchsets
# (ad_patch_driver_minipks is updated ~> 11.5.6)
###############################################################################

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

## FOR R12.X, using all ad_applied_patches because the list is not that big.
##
if [ "${R12}" = "YES" ];then

## Support optional Command-line providing date, else set myself


if [ "${ad_bug_date}" = "" ];then
if [ "${CHKR121}" != "" ];then
echo "Building Patch.csv for 12.1.X ad_bugs ad_applied_patches after 01-
JAN-09 rel. date and all ad_applied_patches"
ad_bug_date="01-JAN-09"
else
echo "Building Patch.csv for 12.0.X ad_bugs after 01-JAN-07 rel. date and
all ad_applied_patches"
ad_bug_date="01-JAN-07"
fi
fi

SQL="
set head off
set pagesize 50000
prompt Product, Bug
select to_char(last_update_date , 'DD-MON-YYYY.HH:MI:SS')|| ', ' ||patch_name
ptc_name
from ad_applied_patches
union
select to_char(last_update_date , 'DD-MON-YYYY.HH:MI:SS')|| ', ' ||bug_number
ptc_name
from ad_bugs
where last_update_date > '${ad_bug_date}'
"

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 " ... Extracting from AD_BUGS & AD_APPLIED_PATCHES into: Patch.csv"
Get_DB_Patch_List
BUG_COUNT_RETURNED=$RECORDS_RETURNED_COUNT; export BUG_COUNT_RETURNED

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

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


## 11i/R12 us db list ##
# 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.
echo " ... Generated csv Patch datafile from the ad_xyz tables or Database:
applptch=Patch.csv"
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.1*) PatchsetDate=$RELR12_DATE

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

PatchsetList=$RELR12
Patched="`cat $PatchsetList | grep "R12" | awk '{print $3}' | sort -u`"

echo "Inside R12.1.x: AppsVer=$AppsVer BasePatchsetList=$BasePatchsetList


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

case "$AppsVer" in

12.1.1*) BasePatchsetList=${OUT_DIR}/1211_Base.txt;;
12.1.2*) BasePatchsetList=${OUT_DIR}/1212_Base.txt;;
12.1.3*) BasePatchsetList=${OUT_DIR}/1213_Base.txt ;;

*) echo
echo "Failed to get Apps Version, please email:
[email protected] with message below:"
echo
"==============================================================================="
echo "ERROR - Could not match the database Oracle Applications
Release Version"
echo " ...NO Match Case AppsVer: AppsVer=$AppsVer
BasePatchsetList=$BasePatchsetList done."
echo " ...expecting valid values of: 12.1.1-12.1.3"
echo " ...this is figured out based on either:
fnd_product_installations or applptch.txt"
echo
"==============================================================================="
echo "UNAME -a to get OS INFO"
uname -a
echo "KEY ENV SETTINGS FOR CONNECTING: "
env | egrep 'ORACLE|TWO|TNS_ADMIN|APPL_|SHELL'
echo
echo "TNSPING of the TWO_TASK"
tnsping $TWO_TASK
;;
esac

;;

12.0*) PatchsetDate=$RELR12_DATE

rm $OUT_DIR/107*_Base.txt $OUT_DIR/107*_patchsets.txt
rm $OUT_DIR/110*_Base.txt $OUT_DIR/110_patchsets.txt
rm $OUT_DIR/115*_Base.txt $OUT_DIR/11i_patchsets.txt
PatchsetList=$RELR12
Patched="`cat $PatchsetList | grep "R12" | awk '{print $3}' | sort -u`"
BasePatchsetList=${OUT_DIR}/1200_Base.txt
echo "Inside R12: AppsVer=$AppsVer BasePatchsetList=$BasePatchsetList
done."
;;

11.5*) PatchsetDate=$REL115_DATE

rm $OUT_DIR/12*_Base.txt $OUT_DIR/R12_patchsets.txt
rm $OUT_DIR/110*_Base.txt $OUT_DIR/110_patchsets.txt
rm $OUT_DIR/107*_Base.txt $OUT_DIR/107*_patchsets.txt

PatchsetList=$REL115
Patched="`cat $PatchsetList | grep "11i" | awk '{print $3}' | sort -u`"
# I dont think i even use this file...??? any more
# cat $PatchsetList | grep "11i" | awk '{print $3}' | sort -u >
$OUT_DIR/11i_list.txt$$

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:
[email protected] with message below:"
echo
"==============================================================================="
echo "ERROR - Could not match the database Oracle Applications
Release Version"
echo " ...NO Match Case AppsVer: AppsVer=$AppsVer
BasePatchsetList=$BasePatchsetList done."
echo " ...expecting valid values of: 11.5.0-11.5.10"
echo " ...this is figured out based on either:
fnd_product_installations or applptch.txt"
echo
"==============================================================================="
echo "UNAME -a to get OS INFO"
uname -a
echo "KEY ENV SETTINGS FOR CONNECTING: "
env | egrep 'ORACLE|TWO|TNS_ADMIN|APPL_|SHELL'
echo
echo "TNSPING of the TWO_TASK"
tnsping $TWO_TASK
;;
esac

;;

11.0*) PatchsetDate=$REL110_DATE

rm $OUT_DIR/12*_Base.txt $OUT_DIR/R12_patchsets.txt
rm $OUT_DIR/107*_Base.txt $OUT_DIR/107*_patchsets.txt
rm $OUT_DIR/115*_Base.txt $OUT_DIR/11i_patchsets.txt

PatchsetList=$REL110
Patched=`cat $PatchsetList | grep "11.0" | awk '{print $3}' | sort -u`
case "$AppsVer" in
11.0.1*) BasePatchsetList=${OUT_DIR}/1101_Base.txt
;;
11.0.2*) BasePatchsetList=${OUT_DIR}/1102_Base.txt
;;
11.0.3*) BasePatchsetList=${OUT_DIR}/1103_Base.txt ;;
esac
;;
10.7.0) PatchsetDate=$REL107_DATE

# ADDED SUPPORT BACK:


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

rm $OUT_DIR/12*_Base.txt $OUT_DIR/R12_patchsets.txt
rm $OUT_DIR/110*_Base.txt $OUT_DIR/110_patchsets.txt
rm $OUT_DIR/115*_Base.txt $OUT_DIR/11i_patchsets.txt

# 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 () {
###############################################################################
# Just the Title for Reports
###############################################################################
# OLDFORMAT:
# echo "
# $*
# Product Baseline Version Running Version Latest Available,Status
# ------- ----------------- --------------- -----------------------"|
# tee -a $DIFF_OUTi

printf "\n%s\n" "$*" | tee -a ${DIFF_OUT}


printf "%-10s %-25s %-25s %-25s %-25s\n" "Product" "Baseline" "Running Version"
"Latest Available" "Status" | tee -a ${DIFF_OUT}

Compare_Patches_11i () {
###############################################################################
# 11i Only Report - see Compare_Patches_R12 or 12.x reporting
###############################################################################

# 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
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`
# WAS JUST SHOWING Che-Released, changed to: Patch-Released
if [ "${status}" = "Che" ];then
status="Patch"
fi

## 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
printf "%-10s %-25s %-25s %-25s %-25s\n" "${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:
Sup=Superseded, Obs=Obsoleted, Patch-Released=Checkin Released
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 () {
###############################################################################
# R12 Only Report - see Compare_Patches_11i or 11i reporting
###############################################################################

# 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)
# ... appears we skipped 12.1.0, so logic for 12.1* should be fine adding in
R1211_PATCHES
#######

case "$BaseAppsVer" in
12.1.3*) FILES="$R1200_PATCHES $R1211_PATCHES $R1212_PATCHES $R1213_PATCHES" ;;
12.1.2*) FILES="$R1200_PATCHES $R1211_PATCHES $R1212_PATCHES" ;;
12.1*) FILES="$R1200_PATCHES $R1211_PATCHES" ;;
12.0*) FILES="$R1200_PATCHES" ;;
* ) R12=NO;;
esac
export FILES
cat $FILES | awk '{print $1}' | sort -un > ${OUT_DIR}/BASE_PATCH_LIST
if [ ! "${aix}" = "y" ];then
BASE_PATCH_LIST=`cat ${OUT_DIR}/BASE_PATCH_LIST`
fi
export BASE_PATCH_LIST

# 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`
# WAS JUST SHOWING Che-Released, changed to: Patch-Released
if [ "${status}" = "Che" ];then
status="Patch"
fi

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


printf "%-10s %-25s %-25s %-25s %-25s\n" "${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

################################
## R12 Footer added to REPORT ##
################################

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 and if on 12.1.1 or higher 01-JAN-09.

Please check Metalink for final patchset availability questions and Distribution
Status issues:

Note1:
Latest Available: This may be Distributed via Metalink as standalone or only by
a Family Pack.
Until release 3.3 of this script, the Installed Version only included Standalone
release patchesets
and not any of the patchsets included in Family Packs.

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:
Sup=Superseded, Obs=Obsoleted, Patch-Released=Checkin Released
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

##Looks like this was wrong:


12.1.3*) FILES="$R1200_PATCHES $R1211_PATCHES $R1212_PATCHES $R1213_PATCHES"
R12=YES;;
12.1.2*) FILES="$R1200_PATCHES $R1211_PATCHES $R1212_PATCHES"
R12=YES;;
12.1.1*) FILES="$R1200_PATCHES $R1211_PATCHES"
R12=YES;;
12.0*) FILES="$R1200_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..

# PATCH_LIST is already build: Patch.csv for in DB


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

else
# Complete list of products patched.
# echo "Complete list of all products patched." >> $LOG
echo "Patch Listing (unique) Ordered by Product" > $PATCH_LIST
echo "================" >> $PATCH_LIST
echo "Product, Bug" >> $PATCH_LIST
if [ "${SC_YES}" = "" ]; then

grep "begin bug " $applptch | grep -v mrg | awk '{print $3","$4}' > $OUT_DIR/$
{PATCH_LIST}.$$
# sort -u just in case they applied one a couple of times...
for i in `grep "begin aru bug" $applptch | awk '{print $3}' |sed 's/_/ /g' |
sed 's/bug //g' | sort -u`
do
Debug "Verbose list arus with no active action but still bugs. : $i"
# Needed this to get the short name when working with applptch.txt file.
grep ${i} $applptch | grep "^#" | grep "bug " | awk '{print $3","$4}' | sort
-u >> $OUT_DIR/${PATCH_LIST}.$$
done

# SORT the resulting list and append to the Header part of PATCH_LIST file
created above.
sort -u $OUT_DIR/${PATCH_LIST}.$$ >> $PATCH_LIST
# CLean up the temp Patch.csv file
if [ -r $OUT_DIR/${PATCH_LIST}.$$ ];then
rm $OUT_DIR/${PATCH_LIST}.$$
fi

# Note: This list has CR's and some blank lines and a Bug string... but not a
problem.
if [ "${aix}" = "y" ];then
cat $PATCH_LIST |awk -F"," '{print $2}' > ${OUT_DIR}/PATCHES_APPLIED.txt
else
PATCHES_APPLIED=`awk -F"," '{print $2}' $PATCH_LIST`
fi
else
grep "Applied" $applptch | awk '{print $2}' | tr "B" " " | tr ":" " " | sort -
u >> $PATCH_LIST
if [ "${aix}" = "y" ];then
cat $PATCH_LIST |awk -F"," '{print $0}' > ${OUT_DIR}/PATCHES_APPLIED.txt
else
PATCHES_APPLIED=`awk -F"," '{print $0}' $PATCH_LIST`
fi
fi
# End Patch.csv build
fi

# 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, added 1211_Base.txt if
version 12.1.1
Setup_Baselines

##
## Fixing Issue: Currently appending all patches applied to BASELINE.txt
##
awk -F"," '{print $2}' Patch.csv > all.txt
# OLD
# cat all.txt | sed 's/ //g' >> BASELINE.txt
# sort -u BASELINE.txt | sed 's/ //g' > all.txt
# NEW:
cp BASELINE.txt BASELINE.tmp
cat all.txt | sed 's/ //g' >> BASELINE.tmp
sort -u BASELINE.tmp | sed 's/ //g' > all.txt
rm BASELINE.tmp

##
## Typical Unix Compare on Current_ARU_dblist.txt (patchests), to all.txt
customer
## - note: all.txt includes Patch.csv and BASELINE.txt patches.
##
diff -c all.txt Current_ARU_dblist.txt | egrep -v "!|\+|\-|\*" | sort -u >
APPLIED_RAW.txt

# Clean up the tmp files used to build the BASELINE.txt and APPLIED_RAW.txt
files.
if [ -r all.txt ];then
rm -f all.txt
fi
if [ -r Current_ARU_dblist.txt ];then
rm -f Current_ARU_dblist.txt
fi

##
## Grep matching Bug from above DIFF from complete ARU original SQL with full
line
##
for i in `cat APPLIED_RAW.txt`
do
grep "${i}" $PatchsetList >> $OUT_DIR/patchsets$$
done
MATCHED=`wc $OUT_DIR/patchsets$$ | awk '{print $1}'`
echo "Done matching $MATCHED patchsets(aru) to patchlist($applptch)"

if [ -r APPLIED_RAW.txt ];then
rm APPLIED_RAW.txt
fi

else

for i in $Patched
do
# YES=`grep $i $applptch | awk '{print $2}'`
if [ ${aix} = "y" ];then
YES=`cat ${OUT_DIR}/PATCHES_APPLIED.txt |grep "${i}"`
else
YES=`echo "${PATCHES_APPLIED}" | grep "${i}"`
fi
# echo "YES=$YES"

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*|12.1*) # 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 "<HTML><PRE><Title>Patchset Report: `date` Version: $TOOL_VERSION</Title>"
> $htmlout
cat $REPORT >> $htmlout
echo "</PRE></HTML>" >> $htmlout
fi

if [ "${htmlout11i}" != "" -a "${R11i}" = "YES" ];then


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

# [report_name=[/path/]file_name] - renames output report


if [ "${report_name}" != "" -a "${R11i}" = "YES" ];then
mv Report_11i.txt ${report_name}
echo "Renamed Report: ${report_name}"
fi

# [report_name=[/path/]file_name] - renames output report


if [ "${report_name}" != "" -a "${R12}" = "YES" ];then
mv Report_R12.txt ${report_name}
echo "Renamed Report: ${report_name}"
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 " ftp://ftp.oracle.com/support/outgoing/PATCHSET_COMPARE_TOOL/patchsets.sh
(External)"
echo ""

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

Set_Patchset_Dates ()
{
##
## Dates used for last build of patchsets data taken from sql output files, used in
help
##
YEAR=2011
RELR12_DATE="Jul 7 22:30 ${YEAR}"
REL115_DATE="Jul 7 22:30 ${YEAR}"
REL110_DATE="Dec 15 2005"
REL107_DATE="Dec 15 2005"
export RELR12_DATE REL115_DATE REL110_DATE REL107_DATE
}

Build_Patchset_Lists ()
{
## Procedure: Build_Patchset_Lists ()
## Called to create the Patchset DataFile Listing used to do the compare
#############################################################################
## This is built on the fly ... because the data must come from aru..
#############################################################################

# 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="Jul 7 22:30"

echo "

Patchset

Product Name Bug_number RELEASED_DATE Status


DISTRIBUTION
--------- ---------------- ---------- ----------------- --------------------
-------------------
ad R12.AD.A 4502962 07/01/18 17:08:25 Checkin Released
By_Metalink
ad R12.AD.A.1 5905728 07/04/13 13:11:10 Checkin Released
Not_Distributed
ad R12.AD.A.2 6014659 07/07/13 05:30:06 Checkin Released
Not_Distributed
ad R12.AD.A.3 6272715 07/10/14 17:33:24 Checkin Released
Not_Distributed
ad R12.AD.A.4 6510214 08/01/13 07:38:00 Checkin Released
By_Metalink
ad R12.AD.A.5 7305206 08/08/04 09:56:59 Checkin Released
Not_Distributed
ad R12.AD.A.6 7305220 08/11/05 11:14:22 Checkin Released
By_Metalink
ad R12.AD.B 6665350 08/08/13 12:40:54 Checkin Released
Not_Distributed
ad R12.AD.B.1 7461070 09/04/10 06:51:59 Checkin Released
By_Metalink
ad R12.AD.B.1 7458155 09/04/08 07:21:21 Checkin Released
Not_Distributed
ad R12.AD.B.2 8502056 09/12/16 06:44:40 Checkin Released
By_Metalink
ad R12.AD.B.3 9239089 10/07/07 14:22:15 Checkin Released
By_Metalink
ado R12.ADO.A 6871277 08/08/11 22:58:03 Checkin Released
Not_Distributed
ado R12.ADO.B 6867824 08/08/11 22:59:18 Checkin Released
Not_Distributed
ado R12.ADO.B.1 7460276 09/04/07 22:19:25 Checkin Released
Not_Distributed
ado R12.ADO.B.2 7653746 09/12/15 22:18:55 Checkin Released
Not_Distributed
ado R12.ADO.B.3 8920298 10/07/06 14:17:58 Checkin Released
Not_Distributed
ahl R12.AHL.A 4510344 07/01/18 17:08:29 Checkin Released
Not_Distributed
ahl R12.AHL.A.1 5886833 07/04/13 01:24:39 Checkin Released
Not_Distributed
ahl R12.AHL.A.2 6002370 07/07/12 23:56:52 Checkin Released
Not_Distributed
ahl R12.AHL.A.3 6264216 07/10/12 00:41:35 Checkin Released
Not_Distributed
ahl R12.AHL.A.4 6506800 08/01/10 22:47:48 Checkin Released
Not_Distributed
ahl R12.AHL.A.5 7290906 08/07/29 05:13:58 Checkin Released
Not_Distributed
ahl R12.AHL.A.6 7291478 08/11/03 13:35:47 Checkin Released
Not_Distributed
ahl R12.AHL.B 6657341 08/08/12 05:17:36 Checkin Released
Not_Distributed
ahl R12.AHL.B.1 7458382 09/04/08 03:16:52 Checkin Released
Not_Distributed
ahl R12.AHL.B.2 8508441 09/12/15 22:49:56 Checkin Released
Not_Distributed
ahl R12.AHL.B.3 9245539 10/08/18 00:24:33 Checkin Released
Not_Distributed
ak R12.AK.A 4496642 07/01/18 17:08:29 Checkin Released
Not_Distributed
ak R12.AK.A.1 5907546 07/04/13 08:03:06 Checkin Released
Not_Distributed
ak R12.AK.A.2 5917306 07/07/13 02:07:59 Checkin Released
Not_Distributed
ak R12.AK.A.3 6077390 07/10/11 23:45:04 Checkin Released
Not_Distributed
ak R12.AK.A.4 6354123 08/01/11 03:40:40 Checkin Released
Not_Distributed
ak R12.AK.A.5 6594738 08/07/29 23:44:15 Checkin Released
Not_Distributed
ak R12.AK.A.6 7237094 08/11/03 22:09:30 Checkin Released
Not_Distributed
ak R12.AK.B 6430051 08/08/11 21:31:16 Checkin Released
Not_Distributed
ak R12.AK.B.1 7307331 09/04/07 22:24:26 Checkin Released
Not_Distributed
ak R12.AK.B.2 7651136 09/12/15 22:20:03 Checkin Released
Not_Distributed
ak R12.AK.B.3 8919474 10/07/06 21:39:06 Checkin Released
Not_Distributed
alr R12.ALR.A 4496584 07/01/18 17:08:29 Checkin Released
Not_Distributed
alr R12.ALR.A.1 5907552 07/04/13 08:04:36 Checkin Released
Not_Distributed
alr R12.ALR.A.2 5917314 07/07/13 02:09:10 Checkin Released
Not_Distributed
alr R12.ALR.A.3 6077418 07/10/11 23:43:21 Checkin Released
Not_Distributed
alr R12.ALR.A.4 6354126 08/01/11 03:41:05 Checkin Released
Not_Distributed
alr R12.ALR.A.5 6594741 08/07/29 23:48:53 Checkin Released
Not_Distributed
alr R12.ALR.A.6 7237106 08/11/03 22:10:25 Checkin Released
Not_Distributed
alr R12.ALR.B 6430052 08/08/11 21:35:37 Checkin Released
Not_Distributed
alr R12.ALR.B.1 7310220 09/04/07 22:25:14 Checkin Released
Not_Distributed
alr R12.ALR.B.2 7651141 09/12/15 22:20:42 Checkin Released
Not_Distributed
alr R12.ALR.B.3 8919475 10/07/06 21:39:40 Checkin Released
Not_Distributed
ame R12.AME.A 5348050 07/01/18 17:09:14 Checkin Released
Not_Distributed
ame R12.AME.A.1 5889626 07/04/13 01:21:36 Checkin Released
Not_Distributed
ame R12.AME.A.2 5997203 07/07/12 22:30:15 Checkin Released
Not_Distributed
ame R12.AME.A.3 6196260 07/10/12 10:14:25 Checkin Released
Not_Distributed
ame R12.AME.A.4 6506440 08/01/11 01:00:09 Checkin Released
Not_Distributed
ame R12.AME.A.5 6835789 08/05/15 01:55:26 Checkin Released
Not_Distributed
ame R12.AME.A.6 7291407 08/11/04 02:55:27 Checkin Released
Not_Distributed
ame R12.AME.A.7 7644754 09/05/15 00:16:09 Checkin Released
Not_Distributed
ame R12.AME.A.8 9349996 10/06/09 22:57:18 Checkin Released
Not_Distributed
ame R12.AME.B 6658013 08/08/12 00:32:21 Checkin Released
Not_Distributed
ame R12.AME.B.1 7457049 09/04/08 03:35:33 Checkin Released
Not_Distributed
ame R12.AME.B.2 8496475 09/12/15 21:40:28 Checkin Released
Not_Distributed
ame R12.AME.B.3 9244273 10/07/07 03:15:07 Checkin Released
Not_Distributed
ame R12.AME.B.4 11811841 11/04/21 03:01:24 Checkin Released
Not_Distributed
aml R12.AML.A 4460087 07/01/18 17:08:27 Checkin Released
Not_Distributed
aml R12.AML.A.1 5884237 07/04/12 21:43:42 Checkin Released
Not_Distributed
aml R12.AML.A.2 6000240 07/07/12 21:35:55 Checkin Released
Not_Distributed
aml R12.AML.A.3 6261886 07/10/10 23:45:18 Checkin Released
Not_Distributed
aml R12.AML.A.4 6494418 08/01/11 00:31:12 Checkin Released
Not_Distributed
aml R12.AML.A.5 7299908 08/08/04 00:10:30 Checkin Released
Not_Distributed
aml R12.AML.A.6 7303707 08/11/03 22:43:04 Checkin Released
Not_Distributed
aml R12.AML.B 4562141 08/08/11 04:14:45 Checkin Released
Not_Distributed
aml R12.AML.B.1 7442385 09/04/07 23:15:57 Checkin Released
Not_Distributed
aml R12.AML.B.2 8508676 09/12/16 00:41:25 Checkin Released
Not_Distributed
aml R12.AML.B.3 9243922 10/08/17 22:54:36 Checkin Released
Not_Distributed
ams R12.AMS.A 4460205 07/01/18 17:08:27 Checkin Released
Not_Distributed
ams R12.AMS.A.1 5884360 07/04/12 22:15:53 Checkin Released
Not_Distributed
ams R12.AMS.A.2 6000306 07/07/12 21:30:50 Checkin Released
Not_Distributed
ams R12.AMS.A.3 6261509 07/10/10 23:46:11 Checkin Released
Not_Distributed
ams R12.AMS.A.4 6494430 08/01/11 00:43:55 Checkin Released
Not_Distributed
ams R12.AMS.A.5 7299932 08/08/04 00:11:19 Checkin Released
Not_Distributed
ams R12.AMS.A.6 7303708 08/11/03 22:43:38 Checkin Released
Not_Distributed
ams R12.AMS.B 4562181 08/08/11 04:17:02 Checkin Released
Not_Distributed
ams R12.AMS.B.1 7428040 09/04/07 23:16:31 Checkin Released
Not_Distributed
ams R12.AMS.B.2 8508677 09/12/16 00:42:02 Checkin Released
Not_Distributed
ams R12.AMS.B.3 9243929 10/08/17 22:56:55 Checkin Released
Not_Distributed
amv R12.AMV.A 4460199 07/01/18 17:08:27 Checkin Released
Not_Distributed
amv R12.AMV.A.1 5884098 07/04/12 22:02:14 Checkin Released
Not_Distributed
amv R12.AMV.A.2 6000228 07/07/12 22:38:43 Checkin Released
Not_Distributed
amv R12.AMV.A.3 6261872 07/10/10 22:11:18 Checkin Released
Not_Distributed
amv R12.AMV.A.4 6496900 08/01/11 00:46:22 Checkin Released
Not_Distributed
amv R12.AMV.A.5 7299944 08/08/04 00:12:21 Checkin Released
Not_Distributed
amv R12.AMV.A.6 7303709 08/11/03 22:44:11 Checkin Released
Not_Distributed
amv R12.AMV.B 4562216 08/08/11 04:21:12 Checkin Released
Not_Distributed
amv R12.AMV.B.1 7442386 09/04/07 23:17:20 Checkin Released
Not_Distributed
amv R12.AMV.B.2 8508678 09/12/16 00:43:04 Checkin Released
Not_Distributed
amv R12.AMV.B.3 9243933 10/08/17 22:58:13 Checkin Released
Not_Distributed
amw R12.AMW.A 4442821 07/01/18 17:08:27 Checkin Released
Not_Distributed
amw R12.AMW.A.1 5884274 07/04/12 22:57:24 Checkin Released
Not_Distributed
amw R12.AMW.A.2 5999585 07/07/12 21:26:04 Checkin Released
Not_Distributed
amw R12.AMW.A.3 6251302 07/10/13 10:28:55 Checkin Released
Not_Distributed
amw R12.AMW.A.4 6493689 08/01/11 01:14:05 Checkin Released
Not_Distributed
amw R12.AMW.A.5 6833299 08/05/15 03:16:28 Checkin Released
Not_Distributed
amw R12.AMW.A.6 7293767 08/11/03 23:46:55 Checkin Released
Not_Distributed
amw R12.AMW.B 4565226 08/08/11 23:43:50 Checkin Released
Not_Distributed
amw R12.AMW.B.1 7456466 09/04/08 01:59:01 Checkin Released
Not_Distributed
amw R12.AMW.B.2 8516935 09/12/15 21:14:02 Checkin Released
Not_Distributed
amw R12.AMW.B.3 9244873 10/08/17 23:04:50 Checkin Released
Not_Distributed
ap R12.AP.A 4442842 07/01/18 17:08:26 Checkin Released
Not_Distributed
ap R12.AP.A.1 5884297 07/04/12 22:57:52 Checkin Released
Not_Distributed
ap R12.AP.A.2 5999586 07/07/12 21:20:17 Checkin Released
Not_Distributed
ap R12.AP.A.3 6251316 07/10/13 10:29:37 Checkin Released
Not_Distributed
ap R12.AP.A.4 6493697 08/01/11 11:17:06 Checkin Released
Not_Distributed
ap R12.AP.A.5 6832840 08/05/15 02:47:40 Checkin Released
Not_Distributed
ap R12.AP.A.6 7293702 08/11/04 00:26:07 Checkin Released
Not_Distributed
ap R12.AP.B 4565257 08/08/11 09:57:27 Checkin Released
Not_Distributed
ap R12.AP.B.1 7456544 09/04/08 01:49:06 Checkin Released
Not_Distributed
ap R12.AP.B.2 8516496 09/12/15 21:12:34 Checkin Released
Not_Distributed
ap R12.AP.B.3 9244867 10/08/17 22:56:43 Checkin Released
Not_Distributed
ar R12.AR.A 4442853 07/01/18 17:08:26 Checkin Released
Not_Distributed
ar R12.AR.A.1 5884300 07/04/12 22:58:23 Checkin Released
Not_Distributed
ar R12.AR.A.2 5999588 07/07/12 21:08:20 Checkin Released
Not_Distributed
ar R12.AR.A.3 6251323 07/10/13 10:36:11 Checkin Released
Not_Distributed
ar R12.AR.A.4 6493709 08/01/11 11:19:01 Checkin Released
Not_Distributed
ar R12.AR.A.5 6833063 08/05/15 02:47:28 Checkin Released
Not_Distributed
ar R12.AR.A.6 7293881 08/11/04 00:20:54 Checkin Released
Not_Distributed
ar R12.AR.B 4565266 08/08/12 00:05:32 Checkin Released
Not_Distributed
ar R12.AR.B.1 7456818 09/04/08 02:07:57 Checkin Released
Not_Distributed
ar R12.AR.B.2 8516954 09/12/15 21:19:35 Checkin Released
Not_Distributed
ar R12.AR.B.3 9244870 10/08/17 23:15:29 Checkin Released
Not_Distributed
as R12.AS.A 4455992 07/01/18 17:08:27 Checkin Released
Not_Distributed
as R12.AS.A.1 5884080 07/04/12 21:48:54 Checkin Released
Not_Distributed
as R12.AS.A.2 6000038 07/07/12 21:40:07 Checkin Released
Not_Distributed
as R12.AS.A.3 6261612 07/10/10 23:43:23 Checkin Released
Not_Distributed
as R12.AS.A.4 6494438 08/01/11 00:47:46 Checkin Released
Not_Distributed
as R12.AS.A.5 7299964 08/08/04 00:13:21 Checkin Released
Not_Distributed
as R12.AS.A.6 7303710 08/11/03 22:44:40 Checkin Released
Not_Distributed
as R12.AS.B 4547895 08/08/11 04:27:25 Checkin Released
Not_Distributed
as R12.AS.B.1 7428041 09/04/07 23:18:17 Checkin Released
Not_Distributed
as R12.AS.B.2 8508679 09/12/16 00:44:04 Checkin Released
Not_Distributed
as R12.AS.B.3 9243934 10/08/17 22:58:46 Checkin Released
Not_Distributed
asf R12.ASF.A 4455993 07/01/18 17:08:27 Checkin Released
Not_Distributed
asf R12.ASF.A.1 5884093 07/04/12 21:50:40 Checkin Released
Not_Distributed
asf R12.ASF.A.2 6000072 07/07/12 21:42:26 Checkin Released
Not_Distributed
asf R12.ASF.A.3 6261643 07/10/10 23:23:35 Checkin Released
Not_Distributed
asf R12.ASF.A.4 6494443 08/01/11 00:49:12 Checkin Released
Not_Distributed
asf R12.ASF.A.5 7299967 08/08/04 00:14:08 Checkin Released
Not_Distributed
asf R12.ASF.A.6 7303712 08/11/03 22:45:12 Checkin Released
Not_Distributed
asf R12.ASF.B 4547896 08/08/11 04:28:02 Checkin Released
Not_Distributed
asf R12.ASF.B.1 7442387 09/04/07 23:18:52 Checkin Released
Not_Distributed
asf R12.ASF.B.2 8508680 09/12/16 00:44:40 Checkin Released
Not_Distributed
asf R12.ASF.B.3 9243935 10/08/17 23:00:51 Checkin Released
Not_Distributed
asg R12.ASG.A 4510091 07/01/18 17:08:29 Checkin Released
Not_Distributed
asg R12.ASG.A.1 5889798 07/04/13 01:21:56 Checkin Released
Not_Distributed
asg R12.ASG.A.2 5999973 07/07/12 22:55:00 Checkin Released
Not_Distributed
asg R12.ASG.A.3 6263298 07/10/12 00:05:01 Checkin Released
Not_Distributed
asg R12.ASG.A.4 6506731 08/01/10 23:33:23 Checkin Released
Not_Distributed
asg R12.ASG.A.5 7300405 08/08/04 00:09:43 Checkin Released
Not_Distributed
asg R12.ASG.A.6 7300410 08/11/03 22:31:59 Checkin Released
Not_Distributed
asg R12.ASG.B 6657096 08/08/11 22:14:56 Checkin Released
Not_Distributed
asg R12.ASG.B.1 7445772 09/04/07 23:02:16 Checkin Released
Not_Distributed
asg R12.ASG.B.2 8509215 09/12/15 22:59:52 Checkin Released
Not_Distributed
asg R12.ASG.B.3 9249125 10/08/17 22:53:39 Checkin Released
Not_Distributed
asl R12.ASL.A 4460146 07/01/18 17:08:27 Checkin Released
Not_Distributed
asl R12.ASL.A.1 5884262 07/04/12 22:00:23 Checkin Released
Not_Distributed
asl R12.ASL.A.2 6000254 07/07/12 21:38:30 Checkin Released
Not_Distributed
asl R12.ASL.A.3 6261906 07/10/10 23:25:25 Checkin Released
Not_Distributed
asl R12.ASL.A.4 6494449 08/01/11 00:50:52 Checkin Released
Not_Distributed
asl R12.ASL.A.5 7299971 08/08/04 00:14:47 Checkin Released
Not_Distributed
asl R12.ASL.A.6 7303713 08/11/03 22:47:23 Checkin Released
Not_Distributed
asl R12.ASL.B 4562221 08/08/11 04:30:22 Checkin Released
Not_Distributed
asl R12.ASL.B.1 7442389 09/04/07 23:19:20 Checkin Released
Not_Distributed
asl R12.ASL.B.2 8508681 09/12/16 00:45:20 Checkin Released
Not_Distributed
asl R12.ASL.B.3 9243936 10/08/17 23:01:37 Checkin Released
Not_Distributed
asn R12.ASN.A 4459008 07/01/18 17:08:27 Checkin Released
Not_Distributed
asn R12.ASN.A.1 5884201 07/04/12 21:54:44 Checkin Released
Not_Distributed
asn R12.ASN.A.2 6000193 07/07/12 21:50:03 Checkin Released
Not_Distributed
asn R12.ASN.A.3 6261806 07/10/10 23:27:53 Checkin Released
Not_Distributed
asn R12.ASN.A.4 6494461 08/01/11 00:53:27 Checkin Released
Not_Distributed
asn R12.ASN.A.5 7300007 08/08/04 00:15:22 Checkin Released
Not_Distributed
asn R12.ASN.A.6 7303714 08/11/03 22:48:11 Checkin Released
Not_Distributed
asn R12.ASN.B 4545522 08/08/11 04:31:20 Checkin Released
Not_Distributed
asn R12.ASN.B.1 7442390 09/04/07 23:20:51 Checkin Released
Not_Distributed
asn R12.ASN.B.2 8508682 09/12/16 00:46:15 Checkin Released
Not_Distributed
asn R12.ASN.B.3 9243937 10/08/17 23:02:25 Checkin Released
Not_Distributed
aso R12.ASO.A 4459029 07/01/18 17:08:27 Checkin Released
Not_Distributed
aso R12.ASO.A.1 5884217 07/04/12 21:56:51 Checkin Released
Not_Distributed
aso R12.ASO.A.2 6000212 07/07/12 21:52:13 Checkin Released
Not_Distributed
aso R12.ASO.A.3 6261857 07/10/10 23:46:48 Checkin Released
Not_Distributed
aso R12.ASO.A.4 6494469 08/01/11 00:54:43 Checkin Released
Not_Distributed
aso R12.ASO.A.5 7300012 08/08/04 00:15:52 Checkin Released
Not_Distributed
aso R12.ASO.A.6 7303715 08/11/03 22:48:59 Checkin Released
Not_Distributed
aso R12.ASO.B 4545523 08/08/11 04:31:54 Checkin Released
Not_Distributed
aso R12.ASO.B.1 7442391 09/04/07 23:22:16 Checkin Released
Not_Distributed
aso R12.ASO.B.2 8508683 09/12/16 00:47:00 Checkin Released
Not_Distributed
aso R12.ASO.B.3 9243938 10/08/17 23:03:32 Checkin Released
Not_Distributed
asp R12.ASP.A 4460134 07/01/18 17:08:27 Checkin Released
Not_Distributed
asp R12.ASP.A.1 5884254 07/04/12 21:59:44 Checkin Released
Not_Distributed
asp R12.ASP.A.2 6000248 07/07/12 21:55:32 Checkin Released
Not_Distributed
asp R12.ASP.A.3 6261893 07/10/10 23:50:42 Checkin Released
Not_Distributed
asp R12.ASP.A.4 6494474 08/01/11 00:56:29 Checkin Released
Not_Distributed
asp R12.ASP.A.5 7300015 08/08/04 00:16:38 Checkin Released
Not_Distributed
asp R12.ASP.A.6 7303716 08/11/03 22:51:01 Checkin Released
Not_Distributed
asp R12.ASP.B 4562223 08/08/11 04:32:40 Checkin Released
Not_Distributed
asp R12.ASP.B.1 7442392 09/04/07 23:22:54 Checkin Released
Not_Distributed
asp R12.ASP.B.2 8508684 09/12/16 00:47:45 Checkin Released
Not_Distributed
asp R12.ASP.B.3 9243939 10/08/17 23:04:35 Checkin Released
Not_Distributed
ast R12.AST.A 4455994 07/01/18 17:08:27 Checkin Released
Not_Distributed
ast R12.AST.A.1 5884113 07/04/12 21:51:41 Checkin Released
Not_Distributed
ast R12.AST.A.2 6000162 07/07/12 21:46:19 Checkin Released
Not_Distributed
ast R12.AST.A.3 6261684 07/10/10 23:24:05 Checkin Released
Not_Distributed
ast R12.AST.A.4 6494482 08/01/11 00:57:42 Checkin Released
Not_Distributed
ast R12.AST.A.5 7300031 08/08/04 00:17:11 Checkin Released
Not_Distributed
ast R12.AST.A.6 7303717 08/11/03 22:51:36 Checkin Released
Not_Distributed
ast R12.AST.B 4547897 08/08/11 04:33:23 Checkin Released
Not_Distributed
ast R12.AST.B.1 7442393 09/04/07 23:23:29 Checkin Released
Not_Distributed
ast R12.AST.B.2 8508686 09/12/16 00:49:05 Checkin Released
Not_Distributed
ast R12.AST.B.3 9243940 10/08/17 23:05:14 Checkin Released
Not_Distributed
atg_pf R12.ATG_PF.A 4461237 07/01/18 17:08:25 Checkin Released
Not_Distributed
atg_pf R12.ATG_PF.A.1 5907545 07/04/15 23:44:46 Checkin Released
Not_Distributed
atg_pf R12.ATG_PF.A.2 5917344 07/07/13 05:48:57 Checkin Released
Not_Distributed
atg_pf R12.ATG_PF.A.3 6077669 07/10/14 21:48:17 Checkin Released
Not_Distributed
atg_pf R12.ATG_PF.A.4 6272680 08/01/13 09:10:12 Checkin Released
By_Metalink
atg_pf R12.ATG_PF.A.5 6594849 08/07/30 03:16:33 Checkin Released
Not_Distributed
atg_pf R12.ATG_PF.A.6 7237006 08/11/05 20:30:52 Checkin Released
By_Metalink
atg_pf R12.ATG_PF.B 6430106 08/08/12 22:05:43 Checkin Released
Not_Distributed
atg_pf R12.ATG_PF.B.1 7307198 09/04/07 22:45:29 Checkin Released
Not_Distributed
atg_pf R12.ATG_PF.B.2 7651091 09/12/16 08:03:30 Checkin Released
By_Metalink
atg_pf R12.ATG_PF.B.3 8919491 10/07/08 01:40:33 Checkin Released
By_Metalink
az R12.AZ.A 4497507 07/01/18 17:08:29 Checkin Released
Not_Distributed
az R12.AZ.A.1 5907561 07/04/13 08:05:46 Checkin Released
Not_Distributed
az R12.AZ.A.2 5917320 07/07/13 02:11:10 Checkin Released
Not_Distributed
az R12.AZ.A.3 6077435 07/10/11 23:42:51 Checkin Released
Not_Distributed
az R12.AZ.A.4 6354128 08/01/11 03:47:19 Checkin Released
Not_Distributed
az R12.AZ.A.5 6594743 08/07/29 23:49:24 Checkin Released
Not_Distributed
az R12.AZ.A.6 7237121 08/11/03 22:11:38 Checkin Released
Not_Distributed
az R12.AZ.B 6430059 08/08/11 21:36:37 Checkin Released
Not_Distributed
az R12.AZ.B.1 7310223 09/04/07 22:25:44 Checkin Released
Not_Distributed
az R12.AZ.B.2 7651144 09/12/15 22:21:21 Checkin Released
Not_Distributed
az R12.AZ.B.3 8919476 10/07/06 21:40:07 Checkin Released
Not_Distributed
ben R12.BEN.A 5348063 07/01/18 17:09:14 Checkin Released
Not_Distributed
ben R12.BEN.A.1 5889632 07/04/13 01:25:25 Checkin Released
Not_Distributed
ben R12.BEN.A.2 5997210 07/07/12 22:32:10 Checkin Released
Not_Distributed
ben R12.BEN.A.3 6196256 07/10/12 10:11:01 Checkin Released
Not_Distributed
ben R12.BEN.A.4 6506484 08/01/11 01:04:08 Checkin Released
Not_Distributed
ben R12.BEN.A.5 6835786 08/05/15 01:57:53 Checkin Released
Not_Distributed
ben R12.BEN.A.6 7291404 08/11/04 02:56:20 Checkin Released
Not_Distributed
ben R12.BEN.A.7 7644751 09/05/15 00:14:24 Checkin Released
Not_Distributed
ben R12.BEN.A.8 9349993 10/06/09 22:54:55 Checkin Released
Not_Distributed
ben R12.BEN.B 6658009 08/08/12 00:34:54 Checkin Released
Not_Distributed
ben R12.BEN.B.1 7457045 09/04/08 03:36:52 Checkin Released
Not_Distributed
ben R12.BEN.B.2 8496471 09/12/15 21:44:42 Checkin Released
Not_Distributed
ben R12.BEN.B.3 9244270 10/07/07 03:16:31 Checkin Released
Not_Distributed
ben R12.BEN.B.4 11811838 11/06/16 21:44:12 Checkin Released
Not_Distributed
bic R12.BIC.A 4442855 07/01/18 17:08:27 Checkin Released
Not_Distributed
bic R12.BIC.A.1 5884305 07/04/12 21:47:01 Checkin Released
Not_Distributed
bic R12.BIC.A.2 5999919 07/07/12 23:17:49 Checkin Released
Not_Distributed
bic R12.BIC.A.3 6262237 07/10/11 00:40:26 Checkin Released
Not_Distributed
bic R12.BIC.A.4 6496834 08/01/11 00:50:35 Checkin Released
Not_Distributed
bic R12.BIC.A.5 7299982 08/08/04 02:46:34 Checkin Released
Not_Distributed
bic R12.BIC.A.6 7300341 08/11/04 03:36:38 Checkin Released
Not_Distributed
bic R12.BIC.B 4565328 08/08/11 05:52:01 Checkin Released
Not_Distributed
bic R12.BIC.B.1 7443562 09/04/08 00:03:08 Checkin Released
Not_Distributed
bic R12.BIC.B.2 8521990 09/12/15 23:00:24 Checkin Released
Not_Distributed
bic R12.BIC.B.3 9249336 10/08/18 01:28:53 Checkin Released
Not_Distributed
bil R12.BIL.A 4455996 07/01/18 17:08:27 Checkin Released
Not_Distributed
bil R12.BIL.A.1 5884179 07/04/12 21:53:30 Checkin Released
Not_Distributed
bil R12.BIL.A.2 6000171 07/07/12 21:47:32 Checkin Released
Not_Distributed
bil R12.BIL.A.3 6261703 07/10/10 23:51:56 Checkin Released
Not_Distributed
bil R12.BIL.A.4 6494486 08/01/11 01:01:28 Checkin Released
Not_Distributed
bil R12.BIL.A.5 7300034 08/08/04 00:17:41 Checkin Released
Not_Distributed
bil R12.BIL.A.6 7303718 08/11/03 22:54:14 Checkin Released
Not_Distributed
bil R12.BIL.B 4547898 08/08/11 04:33:55 Checkin Released
Not_Distributed
bil R12.BIL.B.1 7442394 09/04/07 23:23:55 Checkin Released
Not_Distributed
bil R12.BIL.B.2 8508687 09/12/16 00:50:30 Checkin Released
Not_Distributed
bil R12.BIL.B.3 9243942 10/08/17 23:05:48 Checkin Released
Not_Distributed
bim R12.BIM.A 4460115 07/01/18 17:08:27 Checkin Released
Not_Distributed
bim R12.BIM.A.1 5884248 07/04/12 21:58:39 Checkin Released
Not_Distributed
bim R12.BIM.A.2 6000230 07/07/12 21:54:30 Checkin Released
Not_Distributed
bim R12.BIM.A.3 6261878 07/10/10 23:52:26 Checkin Released
Not_Distributed
bim R12.BIM.A.4 6494498 08/01/11 00:39:49 Checkin Released
Not_Distributed
bim R12.BIM.A.5 7300036 08/08/04 00:18:10 Checkin Released
Not_Distributed
bim R12.BIM.A.6 7303719 08/11/03 22:55:25 Checkin Released
Not_Distributed
bim R12.BIM.B 4562226 08/08/11 04:35:56 Checkin Released
Not_Distributed
bim R12.BIM.B.1 7442396 09/04/07 23:24:22 Checkin Released
Not_Distributed
bim R12.BIM.B.2 8508688 09/12/16 00:51:04 Checkin Released
Not_Distributed
bim R12.BIM.B.3 9243943 10/08/17 23:06:33 Checkin Released
Not_Distributed
bis R12.BIS.A 4458508 07/01/18 17:08:27 Checkin Released
Not_Distributed
bis R12.BIS.A.1 5866616 07/04/15 23:03:30 Checkin Released
Not_Distributed
bis R12.BIS.A.2 6002441 07/07/16 00:26:39 Checkin Released
Not_Distributed
bis R12.BIS.A.3 6275383 07/10/12 00:37:13 Checkin Released
Not_Distributed
bis R12.BIS.A.4 6507056 08/01/11 02:52:12 Checkin Released
Not_Distributed
bis R12.BIS.A.5 7300349 08/08/04 00:33:33 Checkin Released
Not_Distributed
bis R12.BIS.A.6 7300348 08/11/03 22:45:00 Checkin Released
Not_Distributed
bis R12.BIS.B 6664110 08/08/11 23:13:06 Checkin Released
Not_Distributed
bis R12.BIS.B.1 7458428 09/04/07 23:42:19 Checkin Released
Not_Distributed
bis R12.BIS.B.2 8525703 09/12/15 23:12:53 Checkin Released
Not_Distributed
bis R12.BIS.B.3 9250816 10/08/19 02:59:04 Checkin Released
Not_Distributed
bis_pf R12.BIS_PF.A 4458359 07/01/18 17:08:25 Checkin Released
Not_Distributed
bis_pf R12.BIS_PF.A.1 5866626 07/04/15 23:07:48 Checkin Released
Not_Distributed
bis_pf R12.BIS_PF.A.2 6002340 07/07/16 01:51:02 Checkin Released
Not_Distributed
bis_pf R12.BIS_PF.A.3 6215085 07/10/15 01:11:32 Checkin Released
Not_Distributed
bis_pf R12.BIS_PF.A.4 6507067 08/01/13 22:32:11 Checkin Released
Not_Distributed
bis_pf R12.BIS_PF.A.5 7291474 08/08/04 00:41:27 Checkin Released
Not_Distributed
bis_pf R12.BIS_PF.A.6 7291488 08/11/06 03:44:58 Checkin Released
Not_Distributed
bis_pf R12.BIS_PF.B 5915303 08/08/13 00:21:34 Checkin Released
Not_Distributed
bis_pf R12.BIS_PF.B.1 7458599 09/04/08 00:04:03 Checkin Released
Not_Distributed
bis_pf R12.BIS_PF.B.2 8525503 09/12/17 01:38:22 Checkin Released
Not_Distributed
bis_pf R12.BIS_PF.B.3 9251174 10/08/19 03:01:31 Checkin Released
Not_Distributed
biv R12.BIV.A 4510016 07/01/18 17:08:29 Checkin Released
Not_Distributed
biv R12.BIV.A.1 5890924 07/04/13 03:05:35 Checkin Released
Not_Distributed
biv R12.BIV.A.2 6001486 07/07/12 14:39:49 Checkin Released
Not_Distributed
biv R12.BIV.A.3 6262191 07/10/11 03:03:58 Checkin Released
Not_Distributed
biv R12.BIV.A.4 6496838 08/01/11 00:33:23 Checkin Released
Not_Distributed
biv R12.BIV.A.5 7300192 08/08/04 00:10:34 Checkin Released
Not_Distributed
biv R12.BIV.A.6 7300297 08/11/03 22:33:06 Checkin Released
Not_Distributed
biv R12.BIV.B 6657907 08/08/11 22:57:22 Checkin Released
Not_Distributed
biv R12.BIV.B.1 7445801 09/04/07 23:26:45 Checkin Released
Not_Distributed
biv R12.BIV.B.2 8509367 09/12/15 23:00:34 Checkin Released
Not_Distributed
biv R12.BIV.B.3 9249173 10/08/17 22:50:04 Checkin Released
Not_Distributed
bix R12.BIX.A 4510443 07/01/18 17:08:29 Checkin Released
Not_Distributed
bix R12.BIX.A.1 5890922 07/04/13 03:06:25 Checkin Released
Not_Distributed
bix R12.BIX.A.2 6005399 07/07/12 23:23:10 Checkin Released
Not_Distributed
bix R12.BIX.A.3 6262200 07/10/11 03:05:34 Checkin Released
Not_Distributed
bix R12.BIX.A.4 6496847 08/01/11 00:51:05 Checkin Released
Not_Distributed
bix R12.BIX.A.5 7299983 08/08/04 02:47:07 Checkin Released
Not_Distributed
bix R12.BIX.A.6 7300342 08/11/04 03:37:09 Checkin Released
Not_Distributed
bix R12.BIX.B 6655411 08/08/11 05:52:36 Checkin Released
Not_Distributed
bix R12.BIX.B.1 7443561 09/04/08 00:03:57 Checkin Released
Not_Distributed
bix R12.BIX.B.2 8521991 09/12/15 23:01:52 Checkin Released
Not_Distributed
bix R12.BIX.B.3 9249337 10/08/18 01:30:27 Checkin Released
Not_Distributed
bne R12.BNE.A 4494583 07/01/18 17:08:29 Checkin Released
Not_Distributed
bne R12.BNE.A.1 5907557 07/04/13 08:06:47 Checkin Released
Not_Distributed
bne R12.BNE.A.2 5917318 07/07/13 02:12:17 Checkin Released
Not_Distributed
bne R12.BNE.A.3 6077453 07/10/11 23:42:13 Checkin Released
Not_Distributed
bne R12.BNE.A.4 6354131 08/01/11 03:42:03 Checkin Released
Not_Distributed
bne R12.BNE.A.5 6594745 08/07/29 23:50:52 Checkin Released
Not_Distributed
bne R12.BNE.A.6 7237127 08/11/03 22:12:33 Checkin Released
Not_Distributed
bne R12.BNE.B 6430060 08/08/11 21:37:35 Checkin Released
Not_Distributed
bne R12.BNE.B.1 7310227 09/04/07 22:27:19 Checkin Released
Not_Distributed
bne R12.BNE.B.2 7651146 09/12/15 22:22:37 Checkin Released
Not_Distributed
bne R12.BNE.B.3 8919478 10/07/06 21:40:37 Checkin Released
Not_Distributed
bom R12.BOM.A 4510279 07/01/18 17:08:29 Checkin Released
Not_Distributed
bom R12.BOM.A.1 5886953 07/04/13 00:58:36 Checkin Released
Not_Distributed
bom R12.BOM.A.2 6000109 07/07/12 22:56:34 Checkin Released
Not_Distributed
bom R12.BOM.A.3 6262608 07/10/12 00:20:07 Checkin Released
Not_Distributed
bom R12.BOM.A.4 6506742 08/01/11 01:30:50 Checkin Released
Not_Distributed
bom R12.BOM.A.5 7289234 08/07/29 05:15:50 Checkin Released
Not_Distributed
bom R12.BOM.A.6 7289506 08/11/03 13:19:52 Checkin Released
Not_Distributed
bom R12.BOM.B 6469994 08/02/04 15:58:32 Checkin Released
Not_Distributed
bom R12.BOM.C 6657067 08/08/11 23:14:05 Checkin Released
Not_Distributed
bom R12.BOM.C.1 7456320 09/04/07 23:39:07 Checkin Released
Not_Distributed
bom R12.BOM.C.2 8508202 09/12/16 00:19:47 Checkin Released
Not_Distributed
bom R12.BOM.C.3 9242228 10/08/18 00:02:16 Checkin Released
Not_Distributed
bpa R12.BPA.A 4442859 07/01/18 17:08:27 Checkin Released
Not_Distributed
bpa R12.BPA.A.1 5884311 07/04/12 23:01:28 Checkin Released
Not_Distributed
bpa R12.BPA.A.2 5999590 07/07/12 21:10:49 Checkin Released
Not_Distributed
bpa R12.BPA.A.3 6251330 07/10/13 10:39:34 Checkin Released
Not_Distributed
bpa R12.BPA.A.4 6493716 08/01/10 23:08:28 Checkin Released
Not_Distributed
bpa R12.BPA.A.5 6833332 08/05/15 03:17:55 Checkin Released
Not_Distributed
bpa R12.BPA.A.6 7293780 08/11/03 23:46:04 Checkin Released
Not_Distributed
bpa R12.BPA.B 4565332 08/08/11 23:45:53 Checkin Released
Not_Distributed
bpa R12.BPA.B.1 7456542 09/04/08 02:01:08 Checkin Released
Not_Distributed
bpa R12.BPA.B.2 8516967 09/12/15 21:13:00 Checkin Released
Not_Distributed
bpa R12.BPA.B.3 9244861 10/08/17 23:07:49 Checkin Released
Not_Distributed
bsc R12.BSC.A 4458509 07/01/18 17:08:27 Checkin Released
Not_Distributed
bsc R12.BSC.A.1 5866621 07/04/15 23:04:45 Checkin Released
Not_Distributed
bsc R12.BSC.A.2 6002460 07/07/16 00:27:30 Checkin Released
Not_Distributed
bsc R12.BSC.A.3 6275387 07/10/12 00:38:00 Checkin Released
Not_Distributed
bsc R12.BSC.A.4 6507029 08/01/11 02:58:00 Checkin Released
Not_Distributed
bsc R12.BSC.A.5 7300350 08/08/04 00:34:02 Checkin Released
Not_Distributed
bsc R12.BSC.A.6 7300380 08/11/03 22:47:10 Checkin Released
Not_Distributed
bsc R12.BSC.B 6664204 08/08/11 23:13:39 Checkin Released
Not_Distributed
bsc R12.BSC.B.1 7458474 09/04/07 23:42:56 Checkin Released
Not_Distributed
bsc R12.BSC.B.2 8525704 09/12/15 23:13:26 Checkin Released
Not_Distributed
bsc R12.BSC.B.3 9251182 10/08/19 02:59:29 Checkin Released
Not_Distributed
cac R12.CAC.A 4462883 07/01/18 17:08:27 Checkin Released
Not_Distributed
cac R12.CAC.A.1 5884322 07/04/12 21:48:05 Checkin Released
Not_Distributed
cac R12.CAC.A.2 6000253 07/07/12 23:26:44 Checkin Released
Not_Distributed
cac R12.CAC.A.3 6262228 07/10/11 00:41:06 Checkin Released
Not_Distributed
cac R12.CAC.A.4 6496853 08/01/11 00:47:53 Checkin Released
Not_Distributed
cac R12.CAC.A.5 7300404 08/08/04 00:18:46 Checkin Released
Not_Distributed
cac R12.CAC.A.6 7303904 08/11/03 22:55:59 Checkin Released
Not_Distributed
cac R12.CAC.B 4561622 08/08/11 04:38:48 Checkin Released
Not_Distributed
cac R12.CAC.B.1 7442397 09/04/07 23:25:02 Checkin Released
Not_Distributed
cac R12.CAC.B.2 8508689 09/12/16 00:51:40 Checkin Released
Not_Distributed
cac R12.CAC.B.3 9243944 10/08/17 23:08:13 Checkin Released
Not_Distributed
cct R12.CCT.A 4464346 07/01/18 17:08:27 Checkin Released
Not_Distributed
cct R12.CCT.A.1 5884733 07/04/12 21:56:04 Checkin Released
Not_Distributed
cct R12.CCT.A.2 6000359 07/07/12 23:20:52 Checkin Released
Not_Distributed
cct R12.CCT.A.3 6262383 07/10/11 02:32:40 Checkin Released
Not_Distributed
cct R12.CCT.A.4 6496856 08/01/11 00:52:16 Checkin Released
Not_Distributed
cct R12.CCT.A.5 7299989 08/08/04 02:50:21 Checkin Released
Not_Distributed
cct R12.CCT.A.6 7300353 08/11/04 03:41:20 Checkin Released
Not_Distributed
cct R12.CCT.B 4561624 08/08/11 05:57:57 Checkin Released
Not_Distributed
cct R12.CCT.B.1 7443558 09/04/07 23:25:21 Checkin Released
Not_Distributed
cct R12.CCT.B.2 8521994 09/12/15 23:10:00 Checkin Released
Not_Distributed
cct R12.CCT.B.3 9249340 10/08/18 01:32:07 Checkin Released
Not_Distributed
cc_pf R12.CC_PF.A 4464624 07/01/18 17:08:25 Checkin Released
Not_Distributed
cc_pf R12.CC_PF.A.1 5884971 07/04/13 02:09:57 Checkin Released
Not_Distributed
cc_pf R12.CC_PF.A.2 6000364 07/07/16 10:13:44 Checkin Released
Not_Distributed
cc_pf R12.CC_PF.A.3 6262581 07/10/15 02:11:28 Checkin Released
Not_Distributed
cc_pf R12.CC_PF.A.4 6507355 08/01/14 00:52:32 Checkin Released
By_Metalink
cc_pf R12.CC_PF.A.5 7291056 08/08/04 03:32:40 Checkin Released
Not_Distributed
cc_pf R12.CC_PF.A.6 7291073 08/11/06 03:57:36 Checkin Released
By_Metalink
cc_pf R12.CC_PF.B 6663753 08/08/13 00:37:15 Checkin Released
Not_Distributed
cc_pf R12.CC_PF.B.1 7389432 09/04/09 00:29:12 Checkin Released
Not_Distributed
cc_pf R12.CC_PF.B.2 8522000 09/12/17 01:08:48 Checkin Released
By_Metalink
cc_pf R12.CC_PF.B.3 9249345 10/08/19 04:21:59 Checkin Released
By_Metalink
cdr R12.CDR.A 10161040 11/05/11 08:39:23 Checkin Released
By_Metalink
ce R12.CE.A 4442863 07/01/18 17:08:26 Checkin Released
Not_Distributed
ce R12.CE.A.1 5884315 07/04/12 23:01:52 Checkin Released
Not_Distributed
ce R12.CE.A.2 5999565 07/07/12 21:28:19 Checkin Released
Not_Distributed
ce R12.CE.A.3 6251356 07/10/13 10:40:02 Checkin Released
Not_Distributed
ce R12.CE.A.4 6493723 08/01/11 01:24:45 Checkin Released
Not_Distributed
ce R12.CE.A.5 6832849 08/05/15 02:49:02 Checkin Released
Not_Distributed
ce R12.CE.A.6 7293707 08/11/04 00:08:28 Checkin Released
Not_Distributed
ce R12.CE.B 4538335 08/08/11 09:58:16 Checkin Released
Not_Distributed
ce R12.CE.B.1 7456560 09/04/08 01:50:03 Checkin Released
Not_Distributed
ce R12.CE.B.2 8516507 09/12/15 21:17:15 Checkin Released
Not_Distributed
ce R12.CE.B.3 9244862 10/08/17 22:53:08 Checkin Released
Not_Distributed
chv R12.CHV.A 4445643 07/01/18 17:08:26 Checkin Released
Not_Distributed
chv R12.CHV.A.1 5884370 07/04/12 23:32:14 Checkin Released
Not_Distributed
chv R12.CHV.A.2 6000216 07/07/12 22:16:03 Checkin Released
Not_Distributed
chv R12.CHV.A.3 6261716 07/10/10 22:26:19 Checkin Released
Not_Distributed
chv R12.CHV.A.4 6496836 08/01/11 00:17:11 Checkin Released
Not_Distributed
chv R12.CHV.A.5 7300042 08/08/04 04:14:24 Checkin Released
Not_Distributed
chv R12.CHV.A.6 7300361 08/11/04 02:02:30 Checkin Released
Not_Distributed
chv R12.CHV.B 4565370 08/08/11 05:51:11 Checkin Released
Not_Distributed
chv R12.CHV.B.1 7443551 09/04/08 00:08:51 Checkin Released
Not_Distributed
chv R12.CHV.B.2 8522004 09/12/15 23:21:22 Checkin Released
Not_Distributed
chv R12.CHV.B.3 9249324 10/08/18 01:41:58 Checkin Released
Not_Distributed
cla R12.CLA.A 5696981 07/05/14 19:22:51 Checkin Released By_Dev

cla R12.CLA.B 8506229 09/06/30 23:13:11 Checkin Released


By_Metalink
cle R12.CLE.A 5871794 07/07/03 07:08:58 Checkin Released
By_Metalink
cle R12.CLE.B 8640014 09/07/10 10:57:50 Checkin Released
By_Metalink
clj R12.CLJ.A 5686853 07/05/31 02:47:29 Checkin Released
By_Metalink
clj R12.CLJ.A.1 6156608 07/07/31 06:27:27 Checkin Released
By_Metalink
clj R12.CLJ.B 6432352 07/09/18 02:04:08 Checkin Released
By_Metalink
clj R12.CLJ.C 6509074 09/04/30 01:57:52 Checkin Released
By_Support
clj R12.CLJ.D 7371541 09/04/30 02:04:24 Checkin Released
By_Support
clj R12.CLJ.E 8237279 09/04/30 02:07:24 Checkin Released
By_Support
clj R12.CLJ.F 8716478 09/11/26 05:10:57 Checkin Released
By_Support
cll R12.CLL.A 5948849 07/03/30 14:00:13 Checkin Obsoleted
By_Metalink
cll R12.CLL.A.1 6008268 07/06/06 08:03:46 Checkin Obsoleted
By_Metalink
cll R12.CLL.B 6311721 07/08/31 11:34:53 Checkin Released
By_Metalink
cll R12.CLL.B.1 6456912 08/04/04 11:15:00 Checkin Released
By_Metalink
cll R12.CLL.B.2 6946075 08/09/12 11:40:53 Checkin Released
By_Metalink
cll R12.CLL.C 7408174 09/02/20 11:21:06 Checkin Released
By_Metalink
cll R12.CLL.D 8538228 10/01/30 03:02:51 Checkin Released
By_Metalink
cln R12.CLN.A 4510808 07/01/18 17:08:29 Checkin Released
Not_Distributed
cln R12.CLN.A.1 5887086 07/04/13 01:22:52 Checkin Released
Not_Distributed
cln R12.CLN.A.2 6002276 07/07/12 23:43:37 Checkin Released
Not_Distributed
cln R12.CLN.A.3 6262558 07/10/12 01:12:35 Checkin Released
Not_Distributed
cln R12.CLN.A.4 6506801 08/01/10 23:01:48 Checkin Released
Not_Distributed
cln R12.CLN.A.5 7290555 08/07/29 04:51:39 Checkin Released
Not_Distributed
cln R12.CLN.A.6 7290514 08/11/03 13:27:47 Checkin Released
Not_Distributed
cln R12.CLN.B 6470002 08/02/04 15:59:53 Checkin Released
Not_Distributed
cln R12.CLN.C 6657409 08/08/12 14:21:03 Checkin Released
Not_Distributed
cln R12.CLN.C.1 7456494 09/04/08 02:47:06 Checkin Released
Not_Distributed
cln R12.CLN.C.2 8508666 09/12/15 23:08:38 Checkin Released
Not_Distributed
cln R12.CLN.C.3 9245563 10/08/18 01:18:43 Checkin Released
Not_Distributed
cn R12.CN.A 4455995 07/01/18 17:08:27 Checkin Released
Not_Distributed
cn R12.CN.A.1 5884164 07/04/12 23:31:41 Checkin Released
Not_Distributed
cn R12.CN.A.2 5999566 07/07/12 21:19:25 Checkin Released
Not_Distributed
cn R12.CN.A.3 6251180 07/10/13 10:40:37 Checkin Released
Not_Distributed
cn R12.CN.A.4 6494116 08/01/11 01:28:15 Checkin Released
Not_Distributed
cn R12.CN.A.5 7300051 08/08/04 00:19:43 Checkin Released
Not_Distributed
cn R12.CN.A.6 7303721 08/11/03 22:57:16 Checkin Released
Not_Distributed
cn R12.CN.B 4547899 08/08/11 04:57:40 Checkin Released
Not_Distributed
cn R12.CN.B.1 7387722 09/04/07 23:26:46 Checkin Released
Not_Distributed
cn R12.CN.B.2 8508690 09/12/16 00:52:12 Checkin Released
Not_Distributed
cn R12.CN.B.3 9243945 10/08/17 23:08:59 Checkin Released
Not_Distributed
crp R12.CRP.A 4510314 07/01/18 17:08:29 Checkin Released
Not_Distributed
crp R12.CRP.A.1 4890549 07/04/13 03:14:15 Checkin Released
Not_Distributed
crp R12.CRP.A.2 6003703 07/07/12 14:47:10 Checkin Released
Not_Distributed
crp R12.CRP.A.3 6258886 07/10/12 09:35:34 Checkin Released
Not_Distributed
crp R12.CRP.A.4 6508199 08/01/11 09:34:38 Checkin Released
Not_Distributed
crp R12.CRP.A.5 7289252 08/07/29 06:29:38 Checkin Released
Not_Distributed
crp R12.CRP.A.6 7289559 08/11/03 13:18:36 Checkin Released
Not_Distributed
crp R12.CRP.B 6658948 08/08/11 23:18:39 Checkin Released
Not_Distributed
crp R12.CRP.B.1 7455662 09/04/08 08:13:02 Checkin Released
Not_Distributed
crp R12.CRP.B.2 8506817 09/12/15 23:09:36 Checkin Released
Not_Distributed
crp R12.CRP.B.3 9242254 10/08/18 00:15:14 Checkin Released
Not_Distributed
cs R12.CS.A 4463905 07/01/18 17:08:27 Checkin Released
Not_Distributed
cs R12.CS.A.1 5884088 07/04/12 22:00:44 Checkin Released
Not_Distributed
cs R12.CS.A.2 6000188 07/07/12 22:37:57 Checkin Released
Not_Distributed
cs R12.CS.A.3 6261746 07/10/10 22:06:22 Checkin Released
Not_Distributed
cs R12.CS.A.4 6496901 08/01/11 00:34:55 Checkin Released
Not_Distributed
cs R12.CS.A.5 7300210 08/08/04 00:11:04 Checkin Released
Not_Distributed
cs R12.CS.A.6 7300302 08/11/03 22:35:39 Checkin Released
Not_Distributed
cs R12.CS.B 4561585 08/08/11 22:58:06 Checkin Released
Not_Distributed
cs R12.CS.B.1 7445773 09/04/07 23:31:40 Checkin Released
Not_Distributed
cs R12.CS.B.2 8509216 09/12/15 23:01:42 Checkin Released
Not_Distributed
cs R12.CS.B.3 9249127 10/08/17 22:55:22 Checkin Released
Not_Distributed
csc R12.CSC.A 4464378 07/01/18 17:08:27 Checkin Released
Not_Distributed
csc R12.CSC.A.1 5884160 07/04/12 22:22:36 Checkin Released
Not_Distributed
csc R12.CSC.A.2 6000239 07/07/12 22:39:11 Checkin Released
Not_Distributed
csc R12.CSC.A.3 6261808 07/10/10 22:08:36 Checkin Released
Not_Distributed
csc R12.CSC.A.4 6496904 08/01/11 00:37:44 Checkin Released
Not_Distributed
csc R12.CSC.A.5 7300256 08/08/04 00:12:09 Checkin Released
Not_Distributed
csc R12.CSC.A.6 7300305 08/11/03 22:36:16 Checkin Released
Not_Distributed
csc R12.CSC.B 4561559 08/08/11 22:58:50 Checkin Released
Not_Distributed
csc R12.CSC.B.1 7445774 09/04/07 23:25:09 Checkin Released
Not_Distributed
csc R12.CSC.B.2 8509217 09/12/15 23:02:28 Checkin Released
Not_Distributed
csc R12.CSC.B.3 9249128 10/08/17 22:57:10 Checkin Released
Not_Distributed
csd R12.CSD.A 4510341 07/01/18 17:08:29 Checkin Released
Not_Distributed
csd R12.CSD.A.1 5890876 07/04/13 02:44:14 Checkin Released
Not_Distributed
csd R12.CSD.A.2 6001478 07/07/12 15:06:24 Checkin Released
Not_Distributed
csd R12.CSD.A.3 6264410 07/10/12 08:48:42 Checkin Released
Not_Distributed
csd R12.CSD.A.4 6508102 08/01/11 09:40:36 Checkin Released
Not_Distributed
csd R12.CSD.A.5 7291013 08/07/29 05:14:33 Checkin Released
Not_Distributed
csd R12.CSD.A.6 7291516 08/11/03 13:36:44 Checkin Released
Not_Distributed
csd R12.CSD.B 6659467 08/08/12 05:26:30 Checkin Released
Not_Distributed
csd R12.CSD.B.1 7458383 09/04/08 03:18:14 Checkin Released
Not_Distributed
csd R12.CSD.B.2 8508493 09/12/15 22:50:30 Checkin Released
Not_Distributed
csd R12.CSD.B.3 9245541 10/08/18 01:01:40 Checkin Released
Not_Distributed
cse R12.CSE.A 4510340 07/01/18 17:08:29 Checkin Released
Not_Distributed
cse R12.CSE.A.1 5887135 07/04/13 01:35:26 Checkin Released
Not_Distributed
cse R12.CSE.A.2 6002133 07/07/12 23:29:28 Checkin Released
Not_Distributed
cse R12.CSE.A.3 6261602 07/10/12 02:27:34 Checkin Released
Not_Distributed
cse R12.CSE.A.4 6506344 08/01/10 23:58:34 Checkin Released
Not_Distributed
cse R12.CSE.A.5 7290721 08/07/29 04:53:23 Checkin Released
Not_Distributed
cse R12.CSE.A.6 7290715 08/11/03 23:16:15 Checkin Released
Not_Distributed
cse R12.CSE.B 6657469 08/08/12 06:09:06 Checkin Released
Not_Distributed
cse R12.CSE.B.1 7456539 09/04/08 03:19:57 Checkin Released
Not_Distributed
cse R12.CSE.B.2 8508507 09/12/15 22:19:43 Checkin Released
Not_Distributed
cse R12.CSE.B.3 9242263 10/08/18 00:11:17 Checkin Released
Not_Distributed
csf R12.CSF.A 4510038 07/01/18 17:08:29 Checkin Released
Not_Distributed
csf R12.CSF.A.1 5887112 07/04/13 01:27:42 Checkin Released
Not_Distributed
csf R12.CSF.A.2 6002044 07/07/12 22:57:33 Checkin Released
Not_Distributed
csf R12.CSF.A.3 6262102 07/10/12 00:14:40 Checkin Released
Not_Distributed
csf R12.CSF.A.4 6506730 08/01/10 22:38:19 Checkin Released
Not_Distributed
csf R12.CSF.A.5 7300257 08/08/04 00:12:35 Checkin Released
Not_Distributed
csf R12.CSF.A.6 7300308 08/11/03 22:37:01 Checkin Released
Not_Distributed
csf R12.CSF.B 6657107 08/08/11 22:59:41 Checkin Released
Not_Distributed
csf R12.CSF.B.1 7445775 09/04/07 23:23:50 Checkin Released
Not_Distributed
csf R12.CSF.B.2 8509218 09/12/15 23:03:38 Checkin Released
Not_Distributed
csf R12.CSF.B.3 9249129 10/08/17 23:04:10 Checkin Released
Not_Distributed
csi R12.CSI.A 4510338 07/01/18 17:08:29 Checkin Released
Not_Distributed
csi R12.CSI.A.1 5887144 07/04/13 01:37:22 Checkin Released
Not_Distributed
csi R12.CSI.A.2 6002132 07/07/12 23:31:20 Checkin Released
Not_Distributed
csi R12.CSI.A.3 6261601 07/10/12 02:28:52 Checkin Released
Not_Distributed
csi R12.CSI.A.4 6506342 08/01/10 23:52:48 Checkin Released
Not_Distributed
csi R12.CSI.A.5 7290709 08/07/29 04:52:58 Checkin Released
Not_Distributed
csi R12.CSI.A.6 7290705 08/11/03 23:29:57 Checkin Released
Not_Distributed
csi R12.CSI.B 6657466 08/08/12 06:08:28 Checkin Released
Not_Distributed
csi R12.CSI.B.1 7456535 09/04/08 04:43:50 Checkin Released
Not_Distributed
csi R12.CSI.B.2 8508514 09/12/15 23:51:54 Checkin Released
Not_Distributed
csi R12.CSI.B.3 9242234 10/08/18 00:11:46 Checkin Released
Not_Distributed
csk R12.CSK.A 4521348 07/01/18 17:08:30 Checkin Released
Not_Distributed
csk R12.CSK.A.1 5884298 07/04/12 22:30:05 Checkin Released
Not_Distributed
csk R12.CSK.A.2 6000310 07/07/12 22:43:29 Checkin Released
Not_Distributed
csk R12.CSK.A.3 6261771 07/10/10 22:07:20 Checkin Released
Not_Distributed
csk R12.CSK.A.4 6496909 08/01/11 00:39:00 Checkin Released
Not_Distributed
csk R12.CSK.A.5 7300258 08/08/04 00:13:02 Checkin Released
Not_Distributed
csk R12.CSK.A.6 7300312 08/11/03 22:37:50 Checkin Released
Not_Distributed
csk R12.CSK.B 4561589 08/08/11 23:00:15 Checkin Released
Not_Distributed
csk R12.CSK.B.1 7445776 09/04/07 23:30:22 Checkin Released
Not_Distributed
csk R12.CSK.B.2 8509219 09/12/15 23:04:24 Checkin Released
Not_Distributed
csk R12.CSK.B.3 9249130 10/08/17 23:06:21 Checkin Released
Not_Distributed
csl R12.CSL.A 4510087 07/01/18 17:08:29 Checkin Released
Not_Distributed
csl R12.CSL.A.1 5889808 07/04/13 01:24:02 Checkin Released
Not_Distributed
csl R12.CSL.A.2 5999977 07/07/12 23:02:28 Checkin Released
Not_Distributed
csl R12.CSL.A.3 6263302 07/10/12 00:11:42 Checkin Released
Not_Distributed
csl R12.CSL.A.4 6506734 08/01/10 23:39:22 Checkin Released
Not_Distributed
csl R12.CSL.A.5 7300262 08/08/04 00:13:27 Checkin Released
Not_Distributed
csl R12.CSL.A.6 7300314 08/11/03 22:38:37 Checkin Released
Not_Distributed
csl R12.CSL.B 6657104 08/08/11 23:00:45 Checkin Released
Not_Distributed
csl R12.CSL.B.1 7445777 09/04/07 23:03:40 Checkin Released
Not_Distributed
csl R12.CSL.B.2 8509220 09/12/15 23:05:10 Checkin Released
Not_Distributed
csl R12.CSL.B.3 9249131 10/08/17 23:08:27 Checkin Released
Not_Distributed
csm R12.CSM.A 4510068 07/01/18 17:08:29 Checkin Released
Not_Distributed
csm R12.CSM.A.1 5889818 07/04/13 01:25:02 Checkin Released
Not_Distributed
csm R12.CSM.A.2 6000090 07/07/12 23:06:17 Checkin Released
Not_Distributed
csm R12.CSM.A.3 6263307 07/10/12 00:12:35 Checkin Released
Not_Distributed
csm R12.CSM.A.4 6506735 08/01/10 23:48:22 Checkin Released
Not_Distributed
csm R12.CSM.A.5 7300263 08/08/04 00:13:50 Checkin Released
Not_Distributed
csm R12.CSM.A.6 7300317 08/11/03 22:39:03 Checkin Released
Not_Distributed
csm R12.CSM.B 6657105 08/08/11 23:04:11 Checkin Released
Not_Distributed
csm R12.CSM.B.1 7445778 09/04/07 23:29:43 Checkin Released
Not_Distributed
csm R12.CSM.B.2 8509223 09/12/15 23:06:02 Checkin Released
Not_Distributed
csm R12.CSM.B.3 9249132 10/08/17 23:10:02 Checkin Released
Not_Distributed
csp R12.CSP.A 4510058 07/01/18 17:08:29 Checkin Released
Not_Distributed
csp R12.CSP.A.1 5887118 07/04/13 01:29:38 Checkin Released
Not_Distributed
csp R12.CSP.A.2 6002048 07/07/12 22:59:40 Checkin Released
Not_Distributed
csp R12.CSP.A.3 6262280 07/10/12 00:18:13 Checkin Released
Not_Distributed
csp R12.CSP.A.4 6506743 08/01/10 22:42:32 Checkin Released
Not_Distributed
csp R12.CSP.A.5 7300266 08/08/04 00:14:24 Checkin Released
Not_Distributed
csp R12.CSP.A.6 7300321 08/11/03 22:39:32 Checkin Released
Not_Distributed
csp R12.CSP.B 6657109 08/08/11 23:04:44 Checkin Released
Not_Distributed
csp R12.CSP.B.1 7445779 09/04/07 23:32:19 Checkin Released
Not_Distributed
csp R12.CSP.B.2 8509224 09/12/15 23:06:31 Checkin Released
Not_Distributed
csp R12.CSP.B.3 9249134 10/08/17 23:12:19 Checkin Released
Not_Distributed
csr R12.CSR.A 4510064 07/01/18 17:08:29 Checkin Released
Not_Distributed
csr R12.CSR.A.1 5890919 07/04/13 02:49:46 Checkin Released
Not_Distributed
csr R12.CSR.A.2 6002055 07/07/12 23:01:28 Checkin Released
Not_Distributed
csr R12.CSR.A.3 6262232 07/10/12 00:15:51 Checkin Released
Not_Distributed
csr R12.CSR.A.4 6506748 08/01/10 22:40:31 Checkin Released
Not_Distributed
csr R12.CSR.A.5 7300267 08/08/04 00:14:50 Checkin Released
Not_Distributed
csr R12.CSR.A.6 7300324 08/11/03 22:40:23 Checkin Released
Not_Distributed
csr R12.CSR.B 6657111 08/08/11 23:05:13 Checkin Released
Not_Distributed
csr R12.CSR.B.1 7445780 09/04/07 23:28:59 Checkin Released
Not_Distributed
csr R12.CSR.B.2 8509225 09/12/15 23:06:55 Checkin Released
Not_Distributed
csr R12.CSR.B.3 9249135 10/08/17 23:13:00 Checkin Released
Not_Distributed
csz R12.CSZ.A 4521359 07/01/18 17:08:30 Checkin Released
Not_Distributed
csz R12.CSZ.A.1 5884306 07/04/12 22:30:52 Checkin Released
Not_Distributed
csz R12.CSZ.A.2 6000319 07/07/12 22:44:18 Checkin Released
Not_Distributed
csz R12.CSZ.A.3 6261835 07/10/10 22:09:12 Checkin Released
Not_Distributed
csz R12.CSZ.A.4 6496911 08/01/11 00:39:50 Checkin Released
Not_Distributed
csz R12.CSZ.A.5 7300268 08/08/04 00:15:30 Checkin Released
Not_Distributed
csz R12.CSZ.A.6 7300325 08/11/03 22:40:50 Checkin Released
Not_Distributed
csz R12.CSZ.B 4561594 08/08/11 23:08:08 Checkin Released
Not_Distributed
csz R12.CSZ.B.1 7445781 09/04/07 23:25:54 Checkin Released
Not_Distributed
csz R12.CSZ.B.2 8509226 09/12/15 23:07:15 Checkin Released
Not_Distributed
csz R12.CSZ.B.3 9249136 10/08/17 23:13:56 Checkin Released
Not_Distributed
ctb R12.CTB.A 6140927 08/08/09 10:26:50 Checkin Released
By_Metalink
ctb R12.CTB.A.1 6399312 08/08/11 10:13:28 Checkin Released
By_Metalink
ctb R12.CTB.A.2 8904791 10/02/26 07:40:44 Checkin Released
By_Metalink
cug R12.CUG.A 4518049 07/01/18 17:08:30 Checkin Released
Not_Distributed
cug R12.CUG.A.1 5884241 07/04/12 22:29:22 Checkin Released
Not_Distributed
cug R12.CUG.A.2 6000301 07/07/12 22:42:48 Checkin Released
Not_Distributed
cug R12.CUG.A.3 6261876 07/10/10 22:12:23 Checkin Released
Not_Distributed
cug R12.CUG.A.4 6496917 08/01/11 00:42:28 Checkin Released
Not_Distributed
cug R12.CUG.A.5 7300271 08/08/04 00:15:50 Checkin Released
Not_Distributed
cug R12.CUG.A.6 7300327 08/11/03 22:41:20 Checkin Released
Not_Distributed
cug R12.CUG.B 4561564 08/08/11 23:08:39 Checkin Released
Not_Distributed
cug R12.CUG.B.1 7445782 09/04/07 23:39:06 Checkin Released
Not_Distributed
cug R12.CUG.B.2 8509227 09/12/15 23:07:55 Checkin Released
Not_Distributed
cug R12.CUG.B.3 9249137 10/08/17 23:15:55 Checkin Released
Not_Distributed
cz R12.CZ.A 4510814 07/01/18 17:08:29 Checkin Released
Not_Distributed
cz R12.CZ.A.1 5888208 07/04/13 01:38:14 Checkin Released
Not_Distributed
cz R12.CZ.A.2 6002255 07/07/12 23:36:20 Checkin Released
Not_Distributed
cz R12.CZ.A.3 6262115 07/10/12 01:06:34 Checkin Released
Not_Distributed
cz R12.CZ.A.4 6506771 08/01/10 22:57:46 Checkin Released
Not_Distributed
cz R12.CZ.A.5 7290204 08/07/29 04:48:35 Checkin Released
Not_Distributed
cz R12.CZ.A.6 7290191 08/11/03 13:26:45 Checkin Released
Not_Distributed
cz R12.CZ.B 6657401 08/08/12 05:50:52 Checkin Released
Not_Distributed
cz R12.CZ.B.1 7456505 09/04/08 02:33:51 Checkin Released
Not_Distributed
cz R12.CZ.B.2 8508581 09/12/15 22:45:18 Checkin Released
Not_Distributed
cz R12.CZ.B.3 9244153 10/08/18 00:18:01 Checkin Released
Not_Distributed
ddd R12.DDD.A 4508270 07/01/18 17:08:29 Checkin Released
Not_Distributed
ddd R12.DDD.A.1 5886913 07/04/13 00:45:15 Checkin Released
Not_Distributed
ddd R12.DDD.A.2 5999927 07/07/12 23:08:59 Checkin Released
Not_Distributed
ddd R12.DDD.A.3 6263015 07/10/11 20:18:32 Checkin Released
Not_Distributed
ddd R12.DDD.A.4 6506713 08/01/10 23:26:31 Checkin Released
Not_Distributed
ddd R12.DDD.A.5 7290020 08/07/29 03:49:30 Checkin Released
Not_Distributed
ddd R12.DDD.A.6 7290029 08/11/04 01:56:36 Checkin Released
Not_Distributed
ddd R12.DDD.B 6469944 08/02/04 15:59:23 Checkin Released
Not_Distributed
ddd R12.DDD.C 6657742 08/08/11 23:28:15 Checkin Released
Not_Distributed
ddd R12.DDD.C.1 7459465 09/04/08 02:22:32 Checkin Released
Not_Distributed
ddd R12.DDD.C.2 8508909 09/12/15 22:59:38 Checkin Released
Not_Distributed
ddd R12.DDD.C.3 9244388 10/08/18 01:11:44 Checkin Released
Not_Distributed
ddr R12.DDR.A 6792776 08/04/29 10:08:10 Checkin Released
Not_Distributed
ddr R12.DDR.B 6792777 08/04/29 14:55:03 Checkin Released
Not_Distributed
ddr R12.DDR.B.1 7038970 08/08/12 05:23:34 Checkin Released
Not_Distributed
ddr R12.DDR.B.1 7458410 09/04/08 10:15:55 Checkin Released
Not_Distributed
ddr R12.DDR.B.2 8507576 09/12/15 23:05:19 Checkin Released
Not_Distributed
ddr R12.DDR.B.3 9245534 10/08/18 01:21:58 Checkin Released
Not_Distributed
dmf_pf R12.DMF_PF.A 4510290 07/01/18 17:08:29 Checkin Released
Not_Distributed
dmf_pf R12.DMF_PF.A.1 5891085 07/04/13 10:16:12 Checkin Released
Not_Distributed
dmf_pf R12.DMF_PF.A.2 6003918 07/07/16 05:43:44 Checkin Released
Not_Distributed
dmf_pf R12.DMF_PF.A.3 6258903 07/10/15 03:03:21 Checkin Released
Not_Distributed
dmf_pf R12.DMF_PF.A.4 6506939 08/01/14 01:37:11 Checkin Released
Not_Distributed
dmf_pf R12.DMF_PF.A.5 7289231 08/07/31 01:31:31 Checkin Released
Not_Distributed
dmf_pf R12.DMF_PF.A.6 7289232 08/11/06 03:36:04 Checkin Released
Not_Distributed
dmf_pf R12.DMF_PF.B 6658955 08/08/12 22:20:46 Checkin Released
Not_Distributed
dmf_pf R12.DMF_PF.B.1 7456322 09/04/09 01:42:07 Checkin Released
Not_Distributed
dmf_pf R12.DMF_PF.B.2 8506799 09/12/16 22:35:51 Checkin Released
Not_Distributed
dmf_pf R12.DMF_PF.B.3 9242188 10/08/19 00:01:32 Checkin Released
Not_Distributed
dna R12.DNA.A 4508276 07/01/18 17:08:29 Checkin Released
Not_Distributed
dna R12.DNA.A.1 5888156 07/04/13 03:04:49 Checkin Released
Not_Distributed
dna R12.DNA.A.2 6003832 07/07/12 15:54:16 Checkin Released
Not_Distributed
dna R12.DNA.A.3 6258675 07/10/12 00:15:28 Checkin Released
Not_Distributed
dna R12.DNA.A.4 6506716 08/01/11 01:37:53 Checkin Released
Not_Distributed
dna R12.DNA.A.5 7290041 08/07/29 03:55:18 Checkin Released
Not_Distributed
dna R12.DNA.A.6 7290073 08/11/03 22:18:03 Checkin Released
Not_Distributed
dna R12.DNA.B 6469982 08/02/04 16:11:12 Checkin Released
Not_Distributed
dna R12.DNA.C 6657747 08/08/11 23:31:31 Checkin Released
Not_Distributed
dna R12.DNA.C.1 7459474 09/04/08 02:28:57 Checkin Released
Not_Distributed
dna R12.DNA.C.2 8508916 09/12/15 23:14:37 Checkin Released
Not_Distributed
dna R12.DNA.C.3 9244414 10/08/18 01:12:44 Checkin Released
Not_Distributed
dom R12.DOM.A 4508279 07/01/18 17:08:29 Checkin Released
Not_Distributed
dom R12.DOM.A.1 5888159 07/04/13 03:05:44 Checkin Released
Not_Distributed
dom R12.DOM.A.2 6003873 07/07/12 15:54:35 Checkin Released
Not_Distributed
dom R12.DOM.A.3 6258758 07/10/12 00:19:17 Checkin Released
Not_Distributed
dom R12.DOM.A.4 6506720 08/01/11 01:48:43 Checkin Released
Not_Distributed
dom R12.DOM.A.5 7290105 08/07/29 03:57:56 Checkin Released
Not_Distributed
dom R12.DOM.A.6 7290117 08/11/03 23:56:21 Checkin Released
Not_Distributed
dom R12.DOM.B 6657753 08/08/11 23:33:09 Checkin Released
Not_Distributed
dom R12.DOM.B.1 7459405 09/04/08 02:38:16 Checkin Released
Not_Distributed
dom R12.DOM.B.2 8508927 09/12/15 23:17:03 Checkin Released
Not_Distributed
dom R12.DOM.B.3 9244421 10/08/18 01:13:23 Checkin Released
Not_Distributed
dpp R12.DPP.A 6506371 07/12/02 20:58:32 Checkin Released
Not_Distributed
dpp R12.DPP.B 6663469 08/08/11 04:58:44 Checkin Released
Not_Distributed
dpp R12.DPP.B.1 7442399 09/04/07 23:27:42 Checkin Released
Not_Distributed
dpp R12.DPP.B.2 8508691 09/12/16 00:52:39 Checkin Released
Not_Distributed
dpp R12.DPP.B.3 9243946 10/08/17 23:10:07 Checkin Released
Not_Distributed
dt R12.DT.A 5348620 07/01/18 17:09:14 Checkin Released
Not_Distributed
dt R12.DT.A.1 5889638 07/04/13 01:27:34 Checkin Released
Not_Distributed
dt R12.DT.A.2 5997216 07/07/12 22:33:08 Checkin Released
Not_Distributed
dt R12.DT.A.3 6196247 07/10/12 10:01:24 Checkin Released
Not_Distributed
dt R12.DT.A.4 6506469 08/01/11 01:33:59 Checkin Released
Not_Distributed
dt R12.DT.A.5 6835780 08/05/15 01:59:08 Checkin Released
Not_Distributed
dt R12.DT.A.6 7291398 08/11/04 02:57:07 Checkin Released
Not_Distributed
dt R12.DT.A.7 7644745 09/05/14 23:58:56 Checkin Released
Not_Distributed
dt R12.DT.A.8 9349987 10/06/09 22:45:52 Checkin Released
Not_Distributed
dt R12.DT.B 6658003 08/08/12 00:36:01 Checkin Released
Not_Distributed
dt R12.DT.B.1 7457039 09/04/08 03:57:25 Checkin Released
Not_Distributed
dt R12.DT.B.2 8496461 09/12/15 21:46:12 Checkin Released
Not_Distributed
dt R12.DT.B.3 9244265 10/07/07 03:44:13 Checkin Released
Not_Distributed
dt R12.DT.B.4 11811831 11/06/16 21:39:45 Checkin Released
Not_Distributed
eam R12.EAM.A 4508561 07/01/18 17:08:29 Checkin Released
Not_Distributed
eam R12.EAM.A.1 5889783 07/04/13 00:26:51 Checkin Released
Not_Distributed
eam R12.EAM.A.2 6002099 07/07/13 03:09:56 Checkin Released
Not_Distributed
eam R12.EAM.A.3 6261535 07/10/12 02:17:37 Checkin Released
Not_Distributed
eam R12.EAM.A.4 6506302 08/01/11 09:40:40 Checkin Released
Not_Distributed
eam R12.EAM.A.5 7289247 08/07/29 06:25:06 Checkin Released
Not_Distributed
eam R12.EAM.A.6 7289545 08/11/03 13:29:46 Checkin Released
Not_Distributed
eam R12.EAM.B 6657439 08/08/12 01:48:45 Checkin Released
Not_Distributed
eam R12.EAM.B.1 7456268 09/04/07 23:15:42 Checkin Released
Not_Distributed
eam R12.EAM.B.2 8508189 09/12/15 22:57:39 Checkin Released
Not_Distributed
eam R12.EAM.B.3 9242236 10/08/18 00:07:24 Checkin Released
Not_Distributed
ec R12.EC.A 4496609 07/01/18 17:08:29 Checkin Released
Not_Distributed
ec R12.EC.A.1 5907563 07/04/13 08:07:46 Checkin Released
Not_Distributed
ec R12.EC.A.2 5917321 07/07/13 02:12:53 Checkin Released
Not_Distributed
ec R12.EC.A.3 6077463 07/10/11 23:41:28 Checkin Released
Not_Distributed
ec R12.EC.A.4 6354135 08/01/11 03:41:34 Checkin Released
Not_Distributed
ec R12.EC.A.5 6594747 08/07/29 23:51:20 Checkin Released
Not_Distributed
ec R12.EC.A.6 7237136 08/11/03 22:13:06 Checkin Released
Not_Distributed
ec R12.EC.B 6430064 08/08/11 21:38:10 Checkin Released
Not_Distributed
ec R12.EC.B.1 7310236 09/04/07 22:27:56 Checkin Released
Not_Distributed
ec R12.EC.B.2 7651149 09/12/15 22:25:24 Checkin Released
Not_Distributed
ec R12.EC.B.3 8919479 10/07/06 21:41:01 Checkin Released
Not_Distributed
ecx R12.ECX.A 5353037 07/01/18 17:09:14 Checkin Released
Not_Distributed
ecx R12.ECX.A.1 5907566 07/04/13 08:09:07 Checkin Released
Not_Distributed
ecx R12.ECX.A.2 5917325 07/07/13 02:14:22 Checkin Released
Not_Distributed
ecx R12.ECX.A.3 6077483 07/10/11 23:30:48 Checkin Released
Not_Distributed
ecx R12.ECX.A.4 6272384 08/01/11 03:30:01 Checkin Released
Not_Distributed
ecx R12.ECX.A.5 6594775 08/07/29 23:54:06 Checkin Released
Not_Distributed
ecx R12.ECX.A.6 7237218 08/11/03 22:14:43 Checkin Released
Not_Distributed
ecx R12.ECX.B 6430084 08/08/11 21:38:54 Checkin Released
Not_Distributed
ecx R12.ECX.B.1 7310241 09/04/07 22:18:36 Checkin Released
Not_Distributed
ecx R12.ECX.B.2 7651120 09/12/15 22:26:00 Checkin Released
Not_Distributed
ecx R12.ECX.B.3 8919470 10/07/06 21:35:50 Checkin Released
Not_Distributed
edr R12.EDR.A 4510792 07/01/18 17:08:29 Checkin Released
Not_Distributed
edr R12.EDR.A.1 5887024 07/04/13 01:19:55 Checkin Released
Not_Distributed
edr R12.EDR.A.2 6002271 07/07/12 23:38:58 Checkin Released
Not_Distributed
edr R12.EDR.A.3 6262479 07/10/12 01:08:29 Checkin Released
Not_Distributed
edr R12.EDR.A.4 6506781 08/01/10 22:58:34 Checkin Released
Not_Distributed
edr R12.EDR.A.5 7290324 08/07/29 04:50:27 Checkin Released
Not_Distributed
edr R12.EDR.A.6 7290311 08/11/03 13:47:42 Checkin Released
Not_Distributed
edr R12.EDR.B 6657413 08/08/12 05:56:32 Checkin Released
Not_Distributed
edr R12.EDR.B.1 7456480 09/04/08 02:45:25 Checkin Released
Not_Distributed
edr R12.EDR.B.2 8508639 09/12/15 22:53:43 Checkin Released
Not_Distributed
edr R12.EDR.B.3 9245556 10/08/18 01:22:53 Checkin Released
Not_Distributed
edw R12.EDW.A 4459919 07/01/18 17:08:27 Checkin Released
Not_Distributed
edw R12.EDW.A.1 5907517 07/04/15 23:06:37 Checkin Released
Not_Distributed
edw R12.EDW.A.2 6002553 07/07/16 00:29:07 Checkin Released
Not_Distributed
edw R12.EDW.A.3 6275392 07/10/12 00:38:42 Checkin Released
Not_Distributed
edw R12.EDW.A.4 6507060 08/01/11 03:07:25 Checkin Released
Not_Distributed
edw R12.EDW.A.5 7300369 08/08/04 00:34:31 Checkin Released
Not_Distributed
edw R12.EDW.A.6 7300384 08/11/03 22:46:23 Checkin Released
Not_Distributed
edw R12.EDW.B 6664239 08/08/11 23:14:08 Checkin Released
Not_Distributed
edw R12.EDW.B.1 7458506 09/04/07 23:43:34 Checkin Released
Not_Distributed
edw R12.EDW.B.2 8525701 09/12/15 23:14:05 Checkin Released
Not_Distributed
edw R12.EDW.B.3 9251192 10/08/19 02:59:54 Checkin Released
Not_Distributed
ego R12.EGO.A 4508283 07/01/18 17:08:29 Checkin Released
Not_Distributed
ego R12.EGO.A.1 5888049 07/04/13 03:07:12 Checkin Released
Not_Distributed
ego R12.EGO.A.2 5989370 07/07/12 15:56:16 Checkin Released
Not_Distributed
ego R12.EGO.A.3 6258799 07/10/12 00:21:25 Checkin Released
Not_Distributed
ego R12.EGO.A.4 6506721 08/01/11 02:03:48 Checkin Released
Not_Distributed
ego R12.EGO.A.5 7289948 08/07/29 03:48:43 Checkin Released
Not_Distributed
ego R12.EGO.A.6 7289978 08/11/04 00:00:04 Checkin Released
Not_Distributed
ego R12.EGO.B 6469934 08/02/05 00:09:48 Checkin Released
Not_Distributed
ego R12.EGO.C 6657724 08/08/11 23:59:32 Checkin Released
Not_Distributed
ego R12.EGO.C.1 7459450 09/04/08 02:39:10 Checkin Released
Not_Distributed
ego R12.EGO.C.2 8508897 09/12/15 23:19:46 Checkin Released
Not_Distributed
ego R12.EGO.C.3 9244316 10/08/18 01:15:17 Checkin Released
Not_Distributed
eng R12.ENG.A 4508286 07/01/18 17:08:29 Checkin Released
Not_Distributed
eng R12.ENG.A.1 5888106 07/04/13 03:08:46 Checkin Released
Not_Distributed
eng R12.ENG.A.2 6003926 07/07/12 15:56:37 Checkin Released
Not_Distributed
eng R12.ENG.A.3 6258812 07/10/12 00:22:26 Checkin Released
Not_Distributed
eng R12.ENG.A.4 6506726 08/01/11 02:08:16 Checkin Released
Not_Distributed
eng R12.ENG.A.5 7290093 08/07/29 04:00:57 Checkin Released
Not_Distributed
eng R12.ENG.A.6 7290081 08/11/04 00:29:39 Checkin Released
Not_Distributed
eng R12.ENG.B 6469997 08/02/04 16:09:17 Checkin Released
Not_Distributed
eng R12.ENG.C 6657749 08/08/11 23:32:32 Checkin Released
Not_Distributed
eng R12.ENG.C.1 7459514 09/04/08 02:41:20 Checkin Released
Not_Distributed
eng R12.ENG.C.2 8508925 09/12/15 23:35:37 Checkin Released
Not_Distributed
eng R12.ENG.C.3 9244323 10/08/18 01:18:27 Checkin Released
Not_Distributed
eni R12.ENI.A 4508291 07/01/18 17:08:29 Checkin Released
Not_Distributed
eni R12.ENI.A.1 5886941 07/04/13 00:55:07 Checkin Released
Not_Distributed
eni R12.ENI.A.2 5999954 07/07/13 02:40:40 Checkin Released
Not_Distributed
eni R12.ENI.A.3 6263310 07/10/12 00:31:08 Checkin Released
Not_Distributed
eni R12.ENI.A.4 6506724 08/01/11 02:13:47 Checkin Released
Not_Distributed
eni R12.ENI.A.5 7290138 08/07/29 04:01:35 Checkin Released
Not_Distributed
eni R12.ENI.A.6 7290149 08/11/04 00:31:54 Checkin Released
Not_Distributed
eni R12.ENI.B 6657757 08/08/11 23:33:52 Checkin Released
Not_Distributed
eni R12.ENI.B.1 7459446 09/04/08 02:53:09 Checkin Released
Not_Distributed
eni R12.ENI.B.2 8508935 09/12/15 23:37:38 Checkin Released
Not_Distributed
eni R12.ENI.B.3 9244428 10/08/18 01:19:14 Checkin Released
Not_Distributed
ews R12.EWS.A 4459926 07/01/18 17:08:27 Checkin Released
Not_Distributed
ews R12.EWS.A.2 6002636 07/07/16 00:39:29 Checkin Released
Not_Distributed
ews R12.EWS.A.3 6275398 07/10/12 00:39:22 Checkin Released
Not_Distributed
ews R12.EWS.A.4 6507063 08/01/11 03:10:07 Checkin Released
Not_Distributed
ews R12.EWS.A.5 7300372 08/08/04 00:35:01 Checkin Released
Not_Distributed
ews R12.EWS.A.6 7300386 08/11/03 22:47:38 Checkin Released
Not_Distributed
ews R12.EWS.B 6664244 08/08/11 23:14:40 Checkin Released
Not_Distributed
ews R12.EWS.B.1 7458569 09/04/07 23:44:08 Checkin Released
Not_Distributed
ews R12.EWS.B.2 8525702 09/12/15 23:14:38 Checkin Released
Not_Distributed
ews R12.EWS.B.3 9251197 10/08/19 03:00:13 Checkin Released
Not_Distributed
fa R12.FA.A 4442870 07/01/18 17:08:26 Checkin Released
Not_Distributed
fa R12.FA.A.1 5884317 07/04/12 23:02:24 Checkin Released
Not_Distributed
fa R12.FA.A.2 5999587 07/07/12 21:16:07 Checkin Released
Not_Distributed
fa R12.FA.A.3 6251379 07/10/13 10:41:09 Checkin Released
Not_Distributed
fa R12.FA.A.4 6493729 08/01/11 01:23:49 Checkin Released
Not_Distributed
fa R12.FA.A.5 6833156 08/05/15 02:56:00 Checkin Released
Not_Distributed
fa R12.FA.A.6 7293627 08/11/03 23:37:02 Checkin Released
Not_Distributed
fa R12.FA.B 4565280 08/08/11 23:47:04 Checkin Released
Not_Distributed
fa R12.FA.B.1 7456957 09/04/08 01:41:56 Checkin Released
Not_Distributed
fa R12.FA.B.2 8516614 09/12/15 22:48:44 Checkin Released
Not_Distributed
fa R12.FA.B.3 9244841 10/08/17 23:05:45 Checkin Released
Not_Distributed
fem R12.FEM.A 4448709 07/01/18 17:08:27 Checkin Released
Not_Distributed
fem R12.FEM.A.1 5884409 07/04/12 22:53:38 Checkin Released
Not_Distributed
fem R12.FEM.A.2 5999547 07/07/12 21:03:59 Checkin Released
Not_Distributed
fem R12.FEM.A.3 6251306 07/10/13 10:21:26 Checkin Released
Not_Distributed
fem R12.FEM.A.4 6494137 08/01/10 23:07:25 Checkin Released
Not_Distributed
fem R12.FEM.A.5 6833144 08/05/15 03:00:36 Checkin Released
Not_Distributed
fem R12.FEM.A.6 7293631 08/11/03 23:29:41 Checkin Released
Not_Distributed
fem R12.FEM.B 4565437 08/08/11 23:40:31 Checkin Released
Not_Distributed
fem R12.FEM.B.1 7456966 09/04/08 01:40:24 Checkin Released
Not_Distributed
fem R12.FEM.B.2 8516682 09/12/15 22:29:53 Checkin Released
Not_Distributed
fem R12.FEM.B.3 9244837 10/08/17 23:08:07 Checkin Released
Not_Distributed
ff R12.FF.A 5348095 07/01/18 17:09:14 Checkin Released
Not_Distributed
ff R12.FF.A.1 5889647 07/04/13 01:28:00 Checkin Released
Not_Distributed
ff R12.FF.A.2 5997223 07/07/12 22:33:54 Checkin Released
Not_Distributed
ff R12.FF.A.3 6196258 07/10/12 10:13:12 Checkin Released
Not_Distributed
ff R12.FF.A.4 6506486 08/01/11 01:35:15 Checkin Released
Not_Distributed
ff R12.FF.A.5 6835788 08/05/15 02:01:16 Checkin Released
Not_Distributed
ff R12.FF.A.6 7291406 08/11/04 02:57:46 Checkin Released
Not_Distributed
ff R12.FF.A.7 7644753 09/05/15 00:15:45 Checkin Released
Not_Distributed
ff R12.FF.A.8 9349995 10/06/09 22:47:23 Checkin Released
Not_Distributed
ff R12.FF.B 6658012 08/08/12 00:38:26 Checkin Released
Not_Distributed
ff R12.FF.B.1 7457047 09/04/08 03:58:51 Checkin Released
Not_Distributed
ff R12.FF.B.2 8496473 09/12/15 21:49:01 Checkin Released
Not_Distributed
ff R12.FF.B.3 9244272 10/07/07 03:22:49 Checkin Released
Not_Distributed
ff R12.FF.B.4 11811840 11/06/16 21:40:45 Checkin Released
Not_Distributed
fii R12.FII.A 4442874 07/01/18 17:08:26 Checkin Released
Not_Distributed
fii R12.FII.A.1 5884321 07/04/12 23:02:48 Checkin Released
Not_Distributed
fii R12.FII.A.2 5999591 07/07/12 21:11:43 Checkin Released
Not_Distributed
fii R12.FII.A.3 6251402 07/10/13 10:41:51 Checkin Released
Not_Distributed
fii R12.FII.A.4 6493735 08/01/11 01:18:49 Checkin Released
Not_Distributed
fii R12.FII.A.5 6833340 08/05/15 03:18:46 Checkin Released
Not_Distributed
fii R12.FII.A.6 7293783 08/11/03 23:42:25 Checkin Released
Not_Distributed
fii R12.FII.B 4565292 08/08/11 23:47:18 Checkin Released
Not_Distributed
fii R12.FII.B.1 7456573 09/04/08 02:02:04 Checkin Released
Not_Distributed
fii R12.FII.B.2 8516988 09/12/15 21:19:57 Checkin Released
Not_Distributed
fii R12.FII.B.3 9244842 10/08/17 23:08:51 Checkin Released
Not_Distributed
fin_pf R12.FIN_PF.A 4175000 07/01/18 17:08:25 Checkin Released
Not_Distributed
fin_pf R12.FIN_PF.A.1 5884587 07/04/12 23:57:23 Checkin Released
Not_Distributed
fin_pf R12.FIN_PF.A.2 6000030 07/07/16 11:26:28 Checkin Released
Not_Distributed
fin_pf R12.FIN_PF.A.3 6251856 07/10/14 23:40:04 Checkin Released
Not_Distributed
fin_pf R12.FIN_PF.A.4 6493602 08/01/14 00:52:45 Checkin Released
By_Metalink
fin_pf R12.FIN_PF.A.5 6836355 08/05/16 03:19:54 Checkin Released
By_Metalink
fin_pf R12.FIN_PF.A.6 7294050 08/11/06 09:34:06 Checkin Released
By_Metalink
fin_pf R12.FIN_PF.B 4565490 08/08/13 00:29:31 Checkin Released
Not_Distributed
fin_pf R12.FIN_PF.B.1 7457000 09/04/08 23:57:01 Checkin Released
Not_Distributed
fin_pf R12.FIN_PF.B.2 8402900 09/12/16 21:24:42 Checkin Released
By_Metalink
fin_pf R12.FIN_PF.B.3 9147733 10/08/18 23:28:52 Checkin Released
By_Metalink
flm R12.FLM.A 4510252 07/01/18 17:08:29 Checkin Released
Not_Distributed
flm R12.FLM.A.1 5887001 07/04/13 01:24:03 Checkin Released
Not_Distributed
flm R12.FLM.A.2 6002167 07/07/12 23:08:19 Checkin Released
Not_Distributed
flm R12.FLM.A.3 6261935 07/10/12 02:20:51 Checkin Released
Not_Distributed
flm R12.FLM.A.4 6506328 08/01/11 00:39:42 Checkin Released
Not_Distributed
flm R12.FLM.A.5 7289243 08/07/29 06:21:01 Checkin Released
Not_Distributed
flm R12.FLM.A.6 7289532 08/11/03 13:27:47 Checkin Released
Not_Distributed
flm R12.FLM.B 6657447 08/08/11 23:14:32 Checkin Released
Not_Distributed
flm R12.FLM.B.1 7456276 09/04/07 23:41:25 Checkin Released
Not_Distributed
flm R12.FLM.B.2 8508193 09/12/15 22:24:44 Checkin Released
Not_Distributed
flm R12.FLM.B.3 9242242 10/08/18 00:07:53 Checkin Released
Not_Distributed
fnd R12.FND.A 4494236 07/01/18 17:08:29 Checkin Released
Not_Distributed
fnd R12.FND.A.1 5907547 07/04/13 08:22:17 Checkin Released
Not_Distributed
fnd R12.FND.A.2 5917310 07/07/13 03:48:52 Checkin Released
Not_Distributed
fnd R12.FND.A.3 6077562 07/10/11 23:39:16 Checkin Released
Not_Distributed
fnd R12.FND.A.4 6272353 08/01/11 09:24:41 Checkin Released
Not_Distributed
fnd R12.FND.A.5 6594756 08/07/29 23:59:16 Checkin Released
Not_Distributed
fnd R12.FND.A.6 7237143 08/11/03 22:17:43 Checkin Released
Not_Distributed
fnd R12.FND.B 6430070 08/08/11 23:21:31 Checkin Released
Not_Distributed
fnd R12.FND.B.1 7307224 09/04/07 22:32:07 Checkin Released
Not_Distributed
fnd R12.FND.B.2 7651104 09/12/15 22:34:23 Checkin Released
Not_Distributed
fnd R12.FND.B.3 8919473 10/07/06 21:38:34 Checkin Released
Not_Distributed
fpa R12.FPA.A 4420079 07/01/18 17:08:25 Checkin Released
Not_Distributed
fpa R12.FPA.A.1 5911101 07/04/13 14:15:51 Checkin Released
Not_Distributed
fpa R12.FPA.A.2 6022665 07/07/12 23:32:55 Checkin Released
Not_Distributed
fpa R12.FPA.A.3 6266098 07/10/11 02:05:52 Checkin Released
Not_Distributed
fpa R12.FPA.A.4 6512967 08/01/11 01:00:49 Checkin Released
Not_Distributed
fpa R12.FPA.A.5 7292358 08/07/29 14:16:23 Checkin Released
Not_Distributed
fpa R12.FPA.A.6 7292367 08/11/03 22:29:58 Checkin Released
Not_Distributed
fpa R12.FPA.B 5949295 08/08/09 10:31:30 Checkin Released
Not_Distributed
fpa R12.FPA.B.1 7456260 09/04/08 01:46:19 Checkin Released
Not_Distributed
fpa R12.FPA.B.2 8516782 09/12/15 22:47:02 Checkin Released
Not_Distributed
fpa R12.FPA.B.3 9246517 10/08/17 23:33:08 Checkin Released
Not_Distributed
frm R12.FRM.A 4494603 07/01/18 17:08:29 Checkin Released
Not_Distributed
frm R12.FRM.A.1 5907553 07/04/13 08:11:52 Checkin Released
Not_Distributed
frm R12.FRM.A.2 5917316 07/07/13 02:15:09 Checkin Released
Not_Distributed
frm R12.FRM.A.3 6077597 07/10/11 23:46:57 Checkin Released
Not_Distributed
frm R12.FRM.A.4 6354138 08/01/11 03:42:32 Checkin Released
Not_Distributed
frm R12.FRM.A.5 6594779 08/07/30 00:00:10 Checkin Released
Not_Distributed
frm R12.FRM.A.6 7237233 08/11/03 22:18:55 Checkin Released
Not_Distributed
frm R12.FRM.B 6430095 08/08/11 21:50:55 Checkin Released
Not_Distributed
frm R12.FRM.B.1 7310264 09/04/07 22:33:41 Checkin Released
Not_Distributed
frm R12.FRM.B.2 7651154 09/12/15 22:34:59 Checkin Released
Not_Distributed
frm R12.FRM.B.3 8919484 10/07/06 21:42:14 Checkin Released
Not_Distributed
fte R12.FTE.A 4510431 07/01/18 17:08:29 Checkin Released
Not_Distributed
fte R12.FTE.A.1 5888166 07/04/13 09:36:06 Checkin Released
Not_Distributed
fte R12.FTE.A.2 6001766 07/07/12 15:52:05 Checkin Released
Not_Distributed
fte R12.FTE.A.3 6258062 07/10/12 00:57:01 Checkin Released
Not_Distributed
fte R12.FTE.A.4 6506757 08/01/10 22:58:40 Checkin Released
Not_Distributed
fte R12.FTE.A.5 7290337 08/07/29 04:02:35 Checkin Released
Not_Distributed
fte R12.FTE.A.6 7290368 08/11/04 00:34:37 Checkin Released
Not_Distributed
fte R12.FTE.B 6657118 08/08/11 23:42:23 Checkin Released
Not_Distributed
ftp R12.FTP.A 4448724 07/01/18 17:08:28 Checkin Released
Not_Distributed
ftp R12.FTP.A.1 5884412 07/04/12 22:54:57 Checkin Released
Not_Distributed
ftp R12.FTP.A.2 5999551 07/07/12 21:07:48 Checkin Released
Not_Distributed
ftp R12.FTP.A.3 6251355 07/10/13 10:19:15 Checkin Released
Not_Distributed
ftp R12.FTP.A.4 6494179 08/01/10 11:23:59 Checkin Released
Not_Distributed
ftp R12.FTP.A.5 6833347 08/05/15 03:20:21 Checkin Released
Not_Distributed
ftp R12.FTP.A.6 7293794 08/11/03 23:26:40 Checkin Released
Not_Distributed
ftp R12.FTP.B 6651721 08/08/11 23:48:06 Checkin Released
Not_Distributed
ftp R12.FTP.B.1 7456609 09/04/08 02:04:30 Checkin Released
Not_Distributed
ftp R12.FTP.B.2 8517005 09/12/15 21:10:43 Checkin Released
Not_Distributed
ftp R12.FTP.B.3 9244840 10/08/17 23:09:46 Checkin Released
Not_Distributed
fun R12.FUN.A 4442881 07/01/18 17:08:26 Checkin Released
Not_Distributed
fun R12.FUN.A.1 5884325 07/04/12 23:03:17 Checkin Released
Not_Distributed
fun R12.FUN.A.2 5999595 07/07/12 21:11:16 Checkin Released
Not_Distributed
fun R12.FUN.A.3 6250209 07/10/13 10:42:22 Checkin Released
Not_Distributed
fun R12.FUN.A.4 6493740 08/01/11 01:31:52 Checkin Released
Not_Distributed
fun R12.FUN.A.5 6833174 08/05/15 03:03:46 Checkin Released
Not_Distributed
fun R12.FUN.A.6 7293641 08/11/03 23:34:42 Checkin Released
Not_Distributed
fun R12.FUN.B 4565296 08/08/11 23:49:45 Checkin Released
Not_Distributed
fun R12.FUN.B.1 7456973 09/04/08 01:45:43 Checkin Released
Not_Distributed
fun R12.FUN.B.2 8516707 09/12/15 22:31:40 Checkin Released
Not_Distributed
fun R12.FUN.B.3 9244864 10/08/17 23:09:53 Checkin Released
Not_Distributed
fv R12.FV.A 4442888 07/01/18 17:08:26 Checkin Released
Not_Distributed
fv R12.FV.A.1 5884328 07/04/12 23:03:47 Checkin Released
Not_Distributed
fv R12.FV.A.2 5999602 07/07/12 21:27:24 Checkin Released
Not_Distributed
fv R12.FV.A.3 6250135 07/10/13 10:42:48 Checkin Released
Not_Distributed
fv R12.FV.A.4 6493745 08/01/11 01:16:50 Checkin Released
Not_Distributed
fv R12.FV.A.5 6833168 08/05/15 03:04:55 Checkin Released
Not_Distributed
fv R12.FV.A.6 7293645 08/11/03 23:39:19 Checkin Released
Not_Distributed
fv R12.FV.B 4565298 08/08/11 23:50:49 Checkin Released
Not_Distributed
fv R12.FV.B.1 7456977 09/04/08 01:43:27 Checkin Released
Not_Distributed
fv R12.FV.B.2 8516714 09/12/15 23:12:15 Checkin Released
Not_Distributed
fv R12.FV.B.3 9244853 10/08/17 23:10:37 Checkin Released
Not_Distributed
fwk R12.FWK.A 4494343 07/01/18 17:08:29 Checkin Released
Not_Distributed
fwk R12.FWK.A.1 5907550 07/04/13 08:10:24 Checkin Released
Not_Distributed
fwk R12.FWK.A.2 5917313 07/07/13 02:16:04 Checkin Released
Not_Distributed
fwk R12.FWK.A.3 6077551 07/10/11 23:35:30 Checkin Released
Not_Distributed
fwk R12.FWK.A.4 6272406 08/01/11 03:37:41 Checkin Released
Not_Distributed
fwk R12.FWK.A.5 6594758 08/07/29 23:52:06 Checkin Released
Not_Distributed
fwk R12.FWK.A.6 7237178 08/11/03 22:15:59 Checkin Released
Not_Distributed
fwk R12.FWK.B 6430074 08/08/11 21:47:53 Checkin Released
Not_Distributed
fwk R12.FWK.B.1 7310258 09/04/07 22:23:13 Checkin Released
Not_Distributed
fwk R12.FWK.B.2 7651132 09/12/15 22:28:06 Checkin Released
Not_Distributed
fwk R12.FWK.B.3 8919463 10/07/06 21:34:30 Checkin Released
Not_Distributed
gcs R12.GCS.A 4448737 07/01/18 17:08:28 Checkin Released
Not_Distributed
gcs R12.GCS.A.1 5884416 07/04/12 22:55:57 Checkin Released
Not_Distributed
gcs R12.GCS.A.2 5999557 07/07/12 21:05:09 Checkin Released
Not_Distributed
gcs R12.GCS.A.3 6251401 07/10/13 10:23:29 Checkin Released
Not_Distributed
gcs R12.GCS.A.4 6494181 08/01/10 23:07:58 Checkin Released
Not_Distributed
gcs R12.GCS.A.5 6833378 08/05/15 03:21:24 Checkin Released
Not_Distributed
gcs R12.GCS.A.6 7293798 08/11/03 23:32:32 Checkin Released
Not_Distributed
gcs R12.GCS.B 6651726 08/08/11 23:49:01 Checkin Released
Not_Distributed
gcs R12.GCS.B.1 7456635 09/04/08 02:05:43 Checkin Released
Not_Distributed
gcs R12.GCS.B.2 8517012 09/12/15 21:10:13 Checkin Released
Not_Distributed
gcs R12.GCS.B.3 9244866 10/08/17 23:10:37 Checkin Released
Not_Distributed
ghg R12.GHG.A 12352998 11/06/10 16:48:33 Checkin Released
Not_Distributed
ghr R12.GHR.A 5348561 07/01/18 17:09:14 Checkin Released
Not_Distributed
ghr R12.GHR.A.1 5889650 07/04/13 01:28:29 Checkin Released
Not_Distributed
ghr R12.GHR.A.2 5997227 07/07/12 22:35:55 Checkin Released
Not_Distributed
ghr R12.GHR.A.3 6196268 07/10/12 10:22:16 Checkin Released
Not_Distributed
ghr R12.GHR.A.4 6506494 08/01/11 01:36:19 Checkin Released
Not_Distributed
ghr R12.GHR.A.5 6835797 08/05/15 02:02:30 Checkin Released
Not_Distributed
ghr R12.GHR.A.6 7291413 08/11/04 02:58:26 Checkin Released
Not_Distributed
ghr R12.GHR.A.7 7644786 09/05/15 00:20:05 Checkin Released
Not_Distributed
ghr R12.GHR.A.8 9350303 10/06/09 22:53:44 Checkin Released
Not_Distributed
ghr R12.GHR.B 6658019 08/08/12 00:40:04 Checkin Released
Not_Distributed
ghr R12.GHR.B.1 7457056 09/04/08 04:00:05 Checkin Released
Not_Distributed
ghr R12.GHR.B.2 8496482 09/12/15 21:50:23 Checkin Released
Not_Distributed
ghr R12.GHR.B.3 9244282 10/07/07 03:23:22 Checkin Released
Not_Distributed
ghr R12.GHR.B.4 11811853 11/06/16 21:50:29 Checkin Released
Not_Distributed
gl R12.GL.A 4442895 07/01/18 17:08:26 Checkin Released
Not_Distributed
gl R12.GL.A.1 5884332 07/04/12 23:05:00 Checkin Released
Not_Distributed
gl R12.GL.A.2 5999606 07/07/12 21:27:52 Checkin Released
Not_Distributed
gl R12.GL.A.3 6250259 07/10/13 10:43:20 Checkin Released
Not_Distributed
gl R12.GL.A.4 6493751 08/01/11 01:25:13 Checkin Released
Not_Distributed
gl R12.GL.A.5 6833178 08/05/15 03:05:49 Checkin Released
Not_Distributed
gl R12.GL.A.6 7293667 08/11/03 23:44:15 Checkin Released
Not_Distributed
gl R12.GL.B 4565307 08/08/11 23:52:23 Checkin Released
Not_Distributed
gl R12.GL.B.1 7456985 09/04/08 01:46:24 Checkin Released
Not_Distributed
gl R12.GL.B.2 8516733 09/12/15 22:41:55 Checkin Released
Not_Distributed
gl R12.GL.B.3 9244874 10/08/17 23:11:46 Checkin Released
Not_Distributed
gma R12.GMA.A 4510696 07/01/18 17:08:29 Checkin Released
Not_Distributed
gma R12.GMA.A.1 5888102 07/04/13 01:28:52 Checkin Released
Not_Distributed
gma R12.GMA.A.2 6002292 07/07/12 23:40:41 Checkin Released
Not_Distributed
gma R12.GMA.A.3 6262513 07/10/12 01:10:15 Checkin Released
Not_Distributed
gma R12.GMA.A.4 6506787 08/01/10 22:59:11 Checkin Released
Not_Distributed
gma R12.GMA.A.5 7290371 08/07/29 04:50:49 Checkin Released
Not_Distributed
gma R12.GMA.A.6 7290351 08/11/03 13:48:10 Checkin Released
Not_Distributed
gma R12.GMA.B 6657419 08/08/12 05:57:26 Checkin Released
Not_Distributed
gma R12.GMA.B.1 7456481 09/04/08 02:46:01 Checkin Released
Not_Distributed
gma R12.GMA.B.2 8508644 09/12/15 22:56:29 Checkin Released
Not_Distributed
gma R12.GMA.B.3 9245557 10/08/18 01:05:46 Checkin Released
Not_Distributed
gmd R12.GMD.A 4510710 07/01/18 17:08:29 Checkin Released
Not_Distributed
gmd R12.GMD.A.1 5888108 07/04/13 01:29:33 Checkin Released
Not_Distributed
gmd R12.GMD.A.2 6002258 07/07/12 23:11:57 Checkin Released
Not_Distributed
gmd R12.GMD.A.3 6262008 07/10/12 00:21:23 Checkin Released
Not_Distributed
gmd R12.GMD.A.4 6506746 08/01/10 22:54:23 Checkin Released
Not_Distributed
gmd R12.GMD.A.5 7290116 08/07/29 04:46:49 Checkin Released
Not_Distributed
gmd R12.GMD.A.6 7290106 08/11/03 13:43:51 Checkin Released
Not_Distributed
gmd R12.GMD.B 6657427 08/08/12 05:44:09 Checkin Released
Not_Distributed
gmd R12.GMD.B.1 7456449 09/04/08 02:32:02 Checkin Released
Not_Distributed
gmd R12.GMD.B.2 8508561 09/12/15 22:51:47 Checkin Released
Not_Distributed
gmd R12.GMD.B.3 9245545 10/08/18 01:07:13 Checkin Released
Not_Distributed
gme R12.GME.A 4510757 07/01/18 17:08:29 Checkin Released
Not_Distributed
gme R12.GME.A.1 5888113 07/04/13 01:32:03 Checkin Released
Not_Distributed
gme R12.GME.A.2 6002263 07/07/12 23:14:16 Checkin Released
Not_Distributed
gme R12.GME.A.3 6262034 07/10/12 01:04:55 Checkin Released
Not_Distributed
gme R12.GME.A.4 6506754 08/01/10 22:55:50 Checkin Released
Not_Distributed
gme R12.GME.A.5 7290152 08/07/29 04:47:30 Checkin Released
Not_Distributed
gme R12.GME.A.6 7290131 08/11/03 13:44:30 Checkin Released
Not_Distributed
gme R12.GME.B 6657414 08/08/12 05:46:10 Checkin Released
Not_Distributed
gme R12.GME.B.1 7456453 09/04/08 02:32:26 Checkin Released
Not_Distributed
gme R12.GME.B.2 8508565 09/12/15 22:52:24 Checkin Released
Not_Distributed
gme R12.GME.B.3 9245547 10/08/18 01:17:14 Checkin Released
Not_Distributed
gmf R12.GMF.A 4510764 07/01/18 17:08:29 Checkin Released
Not_Distributed
gmf R12.GMF.A.1 5888117 07/04/13 01:33:08 Checkin Released
Not_Distributed
gmf R12.GMF.A.2 6002297 07/07/12 23:08:22 Checkin Released
Not_Distributed
gmf R12.GMF.A.3 6261986 07/10/12 00:13:58 Checkin Released
Not_Distributed
gmf R12.GMF.A.4 6506360 08/01/10 22:53:06 Checkin Released
Not_Distributed
gmf R12.GMF.A.5 7290085 08/07/29 04:46:13 Checkin Released
Not_Distributed
gmf R12.GMF.A.6 7290070 08/11/03 13:43:09 Checkin Released
Not_Distributed
gmf R12.GMF.B 6657417 08/08/12 05:40:57 Checkin Released
Not_Distributed
gmf R12.GMF.B.1 7456439 09/04/08 02:29:09 Checkin Released
Not_Distributed
gmf R12.GMF.B.2 8508532 09/12/15 22:51:10 Checkin Released
Not_Distributed
gmf R12.GMF.B.3 9245544 10/08/18 01:10:04 Checkin Released
Not_Distributed
gmi R12.GMI.A 4510766 07/01/18 17:08:29 Checkin Released
Not_Distributed
gmi R12.GMI.A.1 5888119 07/04/13 01:35:04 Checkin Released
Not_Distributed
gmi R12.GMI.A.2 6002302 07/07/12 23:25:50 Checkin Released
Not_Distributed
gmi R12.GMI.A.3 6262262 07/10/12 00:47:15 Checkin Released
Not_Distributed
gmi R12.GMI.A.4 6506739 08/01/10 23:12:05 Checkin Released
Not_Distributed
gmi R12.GMI.A.5 7290225 08/07/29 04:49:02 Checkin Released
Not_Distributed
gmi R12.GMI.A.6 7290213 08/11/03 13:45:57 Checkin Released
Not_Distributed
gmi R12.GMI.B 6657366 08/08/12 05:53:36 Checkin Released
Not_Distributed
gmi R12.GMI.B.1 7456464 09/04/08 02:41:27 Checkin Released
Not_Distributed
gmi R12.GMI.B.2 8508591 09/12/15 22:54:19 Checkin Released
Not_Distributed
gmi R12.GMI.B.3 9245559 10/08/18 01:10:30 Checkin Released
Not_Distributed
gml R12.GML.A 4510781 07/01/18 17:08:29 Checkin Released
Not_Distributed
gml R12.GML.A.1 5888125 07/04/13 01:35:54 Checkin Released
Not_Distributed
gml R12.GML.A.2 6002307 07/07/12 23:27:46 Checkin Released
Not_Distributed
gml R12.GML.A.3 6262301 07/10/12 00:48:40 Checkin Released
Not_Distributed
gml R12.GML.A.4 6506750 08/01/10 23:12:56 Checkin Released
Not_Distributed
gml R12.GML.A.5 7290270 08/07/29 04:49:31 Checkin Released
Not_Distributed
gml R12.GML.A.6 7290253 08/11/03 13:46:32 Checkin Released
Not_Distributed
gml R12.GML.B 6657370 08/08/12 05:54:33 Checkin Released
Not_Distributed
gml R12.GML.B.1 7456471 09/04/08 02:42:05 Checkin Released
Not_Distributed
gml R12.GML.B.2 8508601 09/12/15 22:54:59 Checkin Released
Not_Distributed
gml R12.GML.B.3 9245553 10/08/18 01:13:12 Checkin Released
Not_Distributed
gmo R12.GMO.A 4510787 07/01/18 17:08:29 Checkin Released
Not_Distributed
gmo R12.GMO.A.1 5887034 07/04/13 09:59:33 Checkin Released
Not_Distributed
gmo R12.GMO.A.2 6002268 07/07/13 09:54:21 Checkin Released
Not_Distributed
gmo R12.GMO.A.3 6262091 07/10/12 00:43:53 Checkin Released
Not_Distributed
gmo R12.GMO.A.4 6506725 08/01/10 23:14:27 Checkin Released
Not_Distributed
gmo R12.GMO.A.5 7290180 08/07/29 04:47:57 Checkin Released
Not_Distributed
gmo R12.GMO.A.6 7290172 08/11/03 13:45:15 Checkin Released
Not_Distributed
gmo R12.GMO.B 6657358 08/08/12 14:19:34 Checkin Released
Not_Distributed
gmo R12.GMO.B.1 7456460 09/04/08 02:33:12 Checkin Released
Not_Distributed
gmo R12.GMO.B.2 8508571 09/12/15 22:53:01 Checkin Released
Not_Distributed
gmo R12.GMO.B.3 9245549 10/08/18 01:16:42 Checkin Released
Not_Distributed
gmp R12.GMP.A 4510783 07/01/18 17:08:29 Checkin Released
Not_Distributed
gmp R12.GMP.A.1 5888144 07/04/13 01:37:28 Checkin Released
Not_Distributed
gmp R12.GMP.A.2 6002313 07/07/12 23:30:11 Checkin Released
Not_Distributed
gmp R12.GMP.A.3 6262475 07/10/12 01:00:51 Checkin Released
Not_Distributed
gmp R12.GMP.A.4 6506761 08/01/10 23:15:58 Checkin Released
Not_Distributed
gmp R12.GMP.A.5 7290289 08/07/29 04:50:03 Checkin Released
Not_Distributed
gmp R12.GMP.A.6 7290279 08/11/03 13:47:05 Checkin Released
Not_Distributed
gmp R12.GMP.B 6657377 08/08/12 05:55:03 Checkin Released
Not_Distributed
gmp R12.GMP.B.1 7456478 09/04/08 02:44:42 Checkin Released
Not_Distributed
gmp R12.GMP.B.2 8508628 09/12/15 22:55:46 Checkin Released
Not_Distributed
gmp R12.GMP.B.3 9245554 10/08/18 01:17:39 Checkin Released
Not_Distributed
gms R12.GMS.A 4420082 07/01/18 17:08:25 Checkin Released
Not_Distributed
gms R12.GMS.A.1 5908166 07/04/13 14:16:32 Checkin Released
Not_Distributed
gms R12.GMS.A.2 6022668 07/07/12 23:34:58 Checkin Released
Not_Distributed
gms R12.GMS.A.3 6266101 07/10/11 02:14:18 Checkin Released
Not_Distributed
gms R12.GMS.A.4 6512978 08/01/11 01:01:22 Checkin Released
Not_Distributed
gms R12.GMS.A.5 7292380 08/07/29 14:17:03 Checkin Released
Not_Distributed
gms R12.GMS.A.6 7292386 08/11/03 22:30:41 Checkin Released
Not_Distributed
gms R12.GMS.B 5873869 08/08/09 10:32:09 Checkin Released
Not_Distributed
gms R12.GMS.B.1 7456254 09/04/08 01:45:53 Checkin Released
Not_Distributed
gms R12.GMS.B.2 8516789 09/12/15 22:44:17 Checkin Released
Not_Distributed
gms R12.GMS.B.3 9246518 10/08/17 23:31:25 Checkin Released
Not_Distributed
gr R12.GR.A 4510789 07/01/18 17:08:29 Checkin Released
Not_Distributed
gr R12.GR.A.1 5887037 07/04/13 01:26:05 Checkin Released
Not_Distributed
gr R12.GR.A.2 6002279 07/07/12 23:41:58 Checkin Released
Not_Distributed
gr R12.GR.A.3 6262535 07/10/12 01:11:27 Checkin Released
Not_Distributed
gr R12.GR.A.4 6506797 08/01/10 23:00:37 Checkin Released
Not_Distributed
gr R12.GR.A.5 7290425 08/07/29 04:51:19 Checkin Released
Not_Distributed
gr R12.GR.A.6 7290408 08/11/03 13:48:43 Checkin Released
Not_Distributed
gr R12.GR.B 6657432 08/08/12 05:58:20 Checkin Released
Not_Distributed
gr R12.GR.B.1 7456489 09/04/08 02:46:29 Checkin Released
Not_Distributed
gr R12.GR.B.2 8508653 09/12/15 22:57:05 Checkin Released
Not_Distributed
gr R12.GR.B.3 9245558 10/08/18 01:18:06 Checkin Released
Not_Distributed
hcp R12.HCP.A 6140944 08/08/09 10:26:58 Checkin Released
By_Metalink
hcp R12.HCP.A.1 6399339 08/08/09 12:14:13 Checkin Released
By_Metalink
hcp R12.HCP.A.2 9298906 10/02/26 07:41:25 Checkin Released
By_Metalink
hct R12.HCT.A 6140939 08/08/09 10:26:26 Checkin Released
By_Metalink
hct R12.HCT.A.1 6399323 08/08/10 14:37:19 Checkin Released
By_Metalink
hct R12.HCT.A.2 9298904 10/02/26 07:39:38 Checkin Released
By_Metalink
hc_pf R12.HC_PF.A 6446398 08/08/09 10:27:30 Checkin Released
By_Metalink
hc_pf R12.HC_PF.A.1 6505402 08/08/11 10:26:39 Checkin Released
By_Metalink
hc_pf R12.HC_PF.A.2 8904914 10/02/26 07:41:54 Checkin Released
By_Metalink
hri R12.HRI.A 5348566 07/01/18 17:09:14 Checkin Released
Not_Distributed
hri R12.HRI.A.1 5889658 07/04/13 01:29:02 Checkin Released
Not_Distributed
hri R12.HRI.A.2 5997232 07/07/12 22:36:27 Checkin Released
Not_Distributed
hri R12.HRI.A.3 6196264 07/10/12 10:18:02 Checkin Released
Not_Distributed
hri R12.HRI.A.4 6506491 08/01/11 01:40:07 Checkin Released
Not_Distributed
hri R12.HRI.A.5 6835792 08/05/15 02:04:05 Checkin Released
Not_Distributed
hri R12.HRI.A.6 7291410 08/11/04 02:53:22 Checkin Released
Not_Distributed
hri R12.HRI.A.7 7644757 09/05/15 00:18:16 Checkin Released
Not_Distributed
hri R12.HRI.A.8 9349999 10/06/09 22:49:09 Checkin Released
Not_Distributed
hri R12.HRI.B 6658016 08/08/12 00:41:01 Checkin Released
Not_Distributed
hri R12.HRI.B.1 7457052 09/04/08 04:00:59 Checkin Released
Not_Distributed
hri R12.HRI.B.2 8496479 09/12/15 21:51:29 Checkin Released
Not_Distributed
hri R12.HRI.B.3 9244278 10/07/07 03:23:58 Checkin Released
Not_Distributed
hri R12.HRI.B.4 11811846 11/06/16 21:47:38 Checkin Released
Not_Distributed
hr_pf R12.HR_PF.A 4719824 07/01/18 17:08:26 Checkin Released
Not_Distributed
hr_pf R12.HR_PF.A.1 5881943 07/04/13 01:52:19 Checkin Released
Not_Distributed
hr_pf R12.HR_PF.A.2 5997278 07/07/15 23:48:47 Checkin Released
Not_Distributed
hr_pf R12.HR_PF.A.3 6196269 07/10/15 04:48:41 Checkin Released
Not_Distributed
hr_pf R12.HR_PF.A.4 6494646 08/01/13 23:19:01 Checkin Released
By_Metalink
hr_pf R12.HR_PF.A.5 6610000 08/05/15 23:03:20 Checkin Released
By_Metalink
hr_pf R12.HR_PF.A.6 7004477 08/11/06 08:38:22 Checkin Released
By_Metalink
hr_pf R12.HR_PF.A.7 7577660 09/05/15 03:35:14 Checkin Released
By_Metalink
hr_pf R12.HR_PF.A.8 9301208 10/06/10 03:30:19 Checkin Released
By_Metalink
hr_pf R12.HR_PF.B 6603330 08/08/13 02:52:45 Checkin Released
Not_Distributed
hr_pf R12.HR_PF.B.1 7446767 09/04/09 00:09:12 Checkin Released
Not_Distributed
hr_pf R12.HR_PF.B.2 8337373 09/12/16 23:48:02 Checkin Released
By_Metalink
hr_pf R12.HR_PF.B.3 9114911 10/07/08 02:49:17 Checkin Released
By_Metalink
hr_pf R12.HR_PF.B.4 10281212 11/06/16 23:18:47 Checkin Released
By_Metalink
hxt R12.HXT.A 5348569 07/01/18 17:09:14 Checkin Released
Not_Distributed
hxt R12.HXT.A.1 5889669 07/04/13 01:29:29 Checkin Released
Not_Distributed
hxt R12.HXT.A.2 5997235 07/07/12 22:37:07 Checkin Released
Not_Distributed
hxt R12.HXT.A.3 6196255 07/10/12 10:10:02 Checkin Released
Not_Distributed
hxt R12.HXT.A.4 6506483 08/01/11 03:19:51 Checkin Released
Not_Distributed
hxt R12.HXT.A.5 6835785 08/05/15 02:06:25 Checkin Released
Not_Distributed
hxt R12.HXT.A.6 7291403 08/11/04 03:00:19 Checkin Released
Not_Distributed
hxt R12.HXT.A.7 7644750 09/05/15 00:08:57 Checkin Released
Not_Distributed
hxt R12.HXT.A.8 9349992 10/06/09 22:53:39 Checkin Released
Not_Distributed
hxt R12.HXT.B 6658008 08/08/12 00:42:33 Checkin Released
Not_Distributed
hxt R12.HXT.B.1 7457044 09/04/08 04:01:57 Checkin Released
Not_Distributed
hxt R12.HXT.B.2 8496470 09/12/15 21:52:57 Checkin Released
Not_Distributed
hxt R12.HXT.B.3 9244269 10/07/07 03:25:04 Checkin Released
Not_Distributed
hxt R12.HXT.B.4 11811837 11/06/16 21:42:55 Checkin Released
Not_Distributed
hz R12.HZ.A 4442901 07/01/18 17:08:26 Checkin Released
Not_Distributed
hz R12.HZ.A.1 5884333 07/04/12 21:49:07 Checkin Released
Not_Distributed
hz R12.HZ.A.2 6000271 07/07/12 23:21:22 Checkin Released
Not_Distributed
hz R12.HZ.A.3 6262395 07/10/11 00:32:47 Checkin Released
Not_Distributed
hz R12.HZ.A.4 6496858 08/01/11 00:52:57 Checkin Released
Not_Distributed
hz R12.HZ.A.5 7299997 08/08/04 02:51:38 Checkin Released
Not_Distributed
hz R12.HZ.A.6 7300355 08/11/04 03:42:29 Checkin Released
Not_Distributed
hz R12.HZ.B 4565315 08/08/11 05:59:32 Checkin Released
Not_Distributed
hz R12.HZ.B.1 7389406 09/04/08 00:06:00 Checkin Released
Not_Distributed
hz R12.HZ.B.2 8521996 09/12/15 23:11:51 Checkin Released
Not_Distributed
hz R12.HZ.B.3 9249344 10/08/18 01:36:41 Checkin Released
Not_Distributed
ia R12.IA.A 4442905 07/01/18 17:08:27 Checkin Released
Not_Distributed
ia R12.IA.A.1 5884330 07/04/12 23:04:24 Checkin Released
Not_Distributed
ia R12.IA.A.2 5999603 07/07/12 21:25:41 Checkin Released
Not_Distributed
ia R12.IA.A.3 6250059 07/10/13 10:44:17 Checkin Released
Not_Distributed
ia R12.IA.A.4 6493762 08/01/11 01:28:39 Checkin Released
Not_Distributed
ia R12.IA.A.5 6833192 08/05/15 03:07:12 Checkin Released
Not_Distributed
ia R12.IA.A.6 7293681 08/11/03 23:41:34 Checkin Released
Not_Distributed
ia R12.IA.B 4565320 08/08/11 23:57:49 Checkin Released
Not_Distributed
ia R12.IA.B.1 7456988 09/04/08 01:49:01 Checkin Released
Not_Distributed
ia R12.IA.B.2 8516740 09/12/15 23:00:41 Checkin Released
Not_Distributed
ia R12.IA.B.3 9244869 10/08/17 23:13:26 Checkin Released
Not_Distributed
ibc R12.IBC.A 4460191 07/01/18 17:08:27 Checkin Released
Not_Distributed
ibc R12.IBC.A.1 5884356 07/04/12 22:15:15 Checkin Released
Not_Distributed
ibc R12.IBC.A.2 6000297 07/07/12 22:03:08 Checkin Released
Not_Distributed
ibc R12.IBC.A.3 6261934 07/10/10 23:36:44 Checkin Released
Not_Distributed
ibc R12.IBC.A.4 6494506 08/01/11 00:48:46 Checkin Released
Not_Distributed
ibc R12.IBC.A.5 7300289 08/08/04 00:20:17 Checkin Released
Not_Distributed
ibc R12.IBC.A.6 7303723 08/11/03 22:57:50 Checkin Released
Not_Distributed
ibc R12.IBC.B 4562231 08/08/11 04:59:32 Checkin Released
Not_Distributed
ibc R12.IBC.B.1 7442400 09/04/07 23:28:28 Checkin Released
Not_Distributed
ibc R12.IBC.B.2 8508692 09/12/16 00:53:02 Checkin Released
Not_Distributed
ibc R12.IBC.B.3 9243948 10/08/17 23:11:16 Checkin Released
Not_Distributed
ibe R12.IBE.A 4460184 07/01/18 17:08:27 Checkin Released
Not_Distributed
ibe R12.IBE.A.1 5884351 07/04/12 22:03:57 Checkin Released
Not_Distributed
ibe R12.IBE.A.2 6000281 07/07/12 22:02:02 Checkin Released
Not_Distributed
ibe R12.IBE.A.3 6261929 07/10/10 23:44:47 Checkin Released
Not_Distributed
ibe R12.IBE.A.4 6494517 08/01/11 00:51:44 Checkin Released
Not_Distributed
ibe R12.IBE.A.5 7300298 08/08/04 00:34:32 Checkin Released
Not_Distributed
ibe R12.IBE.A.6 7303724 08/11/03 22:58:24 Checkin Released
Not_Distributed
ibe R12.IBE.B 4562233 08/08/11 05:00:09 Checkin Released
Not_Distributed
ibe R12.IBE.B.1 7442401 09/04/07 23:28:56 Checkin Released
Not_Distributed
ibe R12.IBE.B.2 8508693 09/12/16 00:53:38 Checkin Released
Not_Distributed
ibe R12.IBE.B.3 9243949 10/08/17 23:12:02 Checkin Released
Not_Distributed
ibu R12.IBU.A 4464392 07/01/18 17:08:27 Checkin Released
Not_Distributed
ibu R12.IBU.A.1 5884184 07/04/12 22:25:11 Checkin Released
Not_Distributed
ibu R12.IBU.A.2 6000252 07/07/12 22:40:06 Checkin Released
Not_Distributed
ibu R12.IBU.A.3 6261882 07/10/10 22:13:03 Checkin Released
Not_Distributed
ibu R12.IBU.A.4 6496919 08/01/11 00:45:38 Checkin Released
Not_Distributed
ibu R12.IBU.A.5 7300272 08/08/04 00:21:11 Checkin Released
Not_Distributed
ibu R12.IBU.A.6 7300329 08/11/03 22:42:03 Checkin Released
Not_Distributed
ibu R12.IBU.B 4561600 08/08/11 23:09:15 Checkin Released
Not_Distributed
ibu R12.IBU.B.1 7445784 09/04/07 23:38:27 Checkin Released
Not_Distributed
ibu R12.IBU.B.2 8509228 09/12/15 23:08:35 Checkin Released
Not_Distributed
ibu R12.IBU.B.3 9249138 10/08/17 23:18:21 Checkin Released
Not_Distributed
ibw R12.IBW.A 4507963 07/01/18 17:08:29 Checkin Released
Not_Distributed
ibw R12.IBW.A.1 5884730 07/04/12 22:18:58 Checkin Released
Not_Distributed
ibw R12.IBW.A.2 6000322 07/07/12 22:05:31 Checkin Released
Not_Distributed
ibw R12.IBW.A.3 6261988 07/10/10 23:52:57 Checkin Released
Not_Distributed
ibw R12.IBW.A.4 6494526 08/01/11 00:53:04 Checkin Released
Not_Distributed
ibw R12.IBW.A.5 7300300 08/08/04 00:35:13 Checkin Released
Not_Distributed
ibw R12.IBW.A.6 7303725 08/11/03 22:59:06 Checkin Released
Not_Distributed
ibw R12.IBW.B 4562191 08/08/11 05:00:51 Checkin Released
Not_Distributed
ibw R12.IBW.B.1 7442402 09/04/07 23:29:27 Checkin Released
Not_Distributed
ibw R12.IBW.B.2 8508694 09/12/16 00:54:00 Checkin Released
Not_Distributed
ibw R12.IBW.B.3 9243950 10/08/17 23:13:28 Checkin Released
Not_Distributed
iby R12.IBY.A 4442908 07/01/18 17:08:27 Checkin Released
Not_Distributed
iby R12.IBY.A.1 5884350 07/04/12 23:08:09 Checkin Released
Not_Distributed
iby R12.IBY.A.2 5999621 07/07/12 21:24:36 Checkin Released
Not_Distributed
iby R12.IBY.A.3 6250123 07/10/13 10:44:49 Checkin Released
Not_Distributed
iby R12.IBY.A.4 6493775 08/01/11 11:30:17 Checkin Released
Not_Distributed
iby R12.IBY.A.5 6832861 08/05/15 02:50:05 Checkin Released
Not_Distributed
iby R12.IBY.A.6 7293719 08/11/04 00:24:42 Checkin Released
Not_Distributed
iby R12.IBY.B 4565227 08/08/11 10:00:27 Checkin Released
Not_Distributed
iby R12.IBY.B.1 7456581 09/04/08 01:51:21 Checkin Released
Not_Distributed
iby R12.IBY.B.2 8516509 09/12/15 21:20:43 Checkin Released
Not_Distributed
iby R12.IBY.B.3 9244850 10/08/17 22:51:56 Checkin Released
Not_Distributed
icx R12.ICX.A 4445654 07/01/18 17:08:26 Checkin Released
Not_Distributed
icx R12.ICX.A.1 5884378 07/04/12 23:32:52 Checkin Released
Not_Distributed
icx R12.ICX.A.2 6000330 07/07/12 22:18:59 Checkin Released
Not_Distributed
icx R12.ICX.A.3 6261775 07/10/10 22:16:35 Checkin Released
Not_Distributed
icx R12.ICX.A.4 6496753 08/01/11 00:13:20 Checkin Released
Not_Distributed
icx R12.ICX.A.5 7300043 08/08/04 04:14:52 Checkin Released
Not_Distributed
icx R12.ICX.A.6 7300362 08/11/04 03:16:41 Checkin Released
Not_Distributed
icx R12.ICX.B 4565368 08/08/11 05:50:37 Checkin Released
Not_Distributed
icx R12.ICX.B.1 7443550 09/04/08 00:08:28 Checkin Released
Not_Distributed
icx R12.ICX.B.2 8522003 09/12/15 23:23:42 Checkin Released
Not_Distributed
icx R12.ICX.B.3 9249326 10/08/18 01:41:15 Checkin Released
Not_Distributed
icx R12.ICX.C 9354014 10/08/18 02:04:49 Checkin Released
Not_Distributed
ieb R12.IEB.A 4464353 07/01/18 17:08:27 Checkin Released
Not_Distributed
ieb R12.IEB.A.1 5884749 07/04/12 21:56:53 Checkin Released
Not_Distributed
ieb R12.IEB.A.2 6000372 07/07/12 23:19:22 Checkin Released
Not_Distributed
ieb R12.IEB.A.3 6262329 07/10/11 00:38:58 Checkin Released
Not_Distributed
ieb R12.IEB.A.4 6496863 08/01/11 00:40:00 Checkin Released
Not_Distributed
ieb R12.IEB.A.5 7299955 08/08/04 02:42:22 Checkin Released
Not_Distributed
ieb R12.IEB.A.6 7300326 08/11/04 03:37:57 Checkin Released
Not_Distributed
ieb R12.IEB.B 4561629 08/08/11 05:53:44 Checkin Released
Not_Distributed
ieb R12.IEB.B.1 7443568 09/04/07 23:21:59 Checkin Released
Not_Distributed
ieb R12.IEB.B.2 8521983 09/12/15 22:47:51 Checkin Released
Not_Distributed
ieb R12.IEB.B.3 9249329 10/08/18 00:13:25 Checkin Released
Not_Distributed
iec R12.IEC.A 4464537 07/01/18 17:08:27 Checkin Released
Not_Distributed
iec R12.IEC.A.1 5884762 07/04/12 21:58:36 Checkin Released
Not_Distributed
iec R12.IEC.A.2 6000388 07/07/12 23:16:43 Checkin Released
Not_Distributed
iec R12.IEC.A.3 6262181 07/10/11 00:28:48 Checkin Released
Not_Distributed
iec R12.IEC.A.4 6496866 08/01/11 00:40:36 Checkin Released
Not_Distributed
iec R12.IEC.A.5 7299973 08/08/04 02:43:04 Checkin Released
Not_Distributed
iec R12.IEC.A.6 7300331 08/11/04 03:38:21 Checkin Released
Not_Distributed
iec R12.IEC.B 4561653 08/08/11 05:54:16 Checkin Released
Not_Distributed
iec R12.IEC.B.1 7443567 09/04/07 23:22:22 Checkin Released
Not_Distributed
iec R12.IEC.B.2 8521984 09/12/15 22:49:13 Checkin Released
Not_Distributed
iec R12.IEC.B.3 9249330 10/08/18 00:14:24 Checkin Released
Not_Distributed
iem R12.IEM.A 4464416 07/01/18 17:08:27 Checkin Released
Not_Distributed
iem R12.IEM.A.1 5884755 07/04/12 21:57:37 Checkin Released
Not_Distributed
iem R12.IEM.A.2 6000381 07/07/12 23:18:54 Checkin Released
Not_Distributed
iem R12.IEM.A.3 6262411 07/10/11 00:31:23 Checkin Released
Not_Distributed
iem R12.IEM.A.4 6496872 08/01/11 00:42:27 Checkin Released
Not_Distributed
iem R12.IEM.A.5 7299974 08/08/04 02:43:32 Checkin Released
Not_Distributed
iem R12.IEM.A.6 7300333 08/11/04 03:38:52 Checkin Released
Not_Distributed
iem R12.IEM.B 4561656 08/08/11 05:54:54 Checkin Released
Not_Distributed
iem R12.IEM.B.1 7443566 09/04/07 23:22:45 Checkin Released
Not_Distributed
iem R12.IEM.B.2 8521985 09/12/15 22:50:24 Checkin Released
Not_Distributed
iem R12.IEM.B.3 9249331 10/08/18 00:14:58 Checkin Released
Not_Distributed
ieo R12.IEO.A 4464327 07/01/18 17:08:27 Checkin Released
Not_Distributed
ieo R12.IEO.A.1 5884729 07/04/12 21:55:15 Checkin Released
Not_Distributed
ieo R12.IEO.A.2 6000338 07/07/12 23:17:16 Checkin Released
Not_Distributed
ieo R12.IEO.A.3 6262233 07/10/11 02:16:25 Checkin Released
Not_Distributed
ieo R12.IEO.A.4 6496879 08/01/11 00:41:13 Checkin Released
Not_Distributed
ieo R12.IEO.A.5 7299976 08/08/04 02:44:02 Checkin Released
Not_Distributed
ieo R12.IEO.A.6 7300334 08/11/04 03:39:21 Checkin Released
Not_Distributed
ieo R12.IEO.B 4561657 08/08/11 05:55:40 Checkin Released
Not_Distributed
ieo R12.IEO.B.1 7443565 09/04/07 23:23:11 Checkin Released
Not_Distributed
ieo R12.IEO.B.2 8521987 09/12/15 22:51:30 Checkin Released
Not_Distributed
ieo R12.IEO.B.3 9249332 10/08/18 00:16:13 Checkin Released
Not_Distributed
ies R12.IES.A 4464550 07/01/18 17:08:27 Checkin Released
Not_Distributed
ies R12.IES.A.1 5884772 07/04/12 21:59:17 Checkin Released
Not_Distributed
ies R12.IES.A.2 6000392 07/07/12 23:20:24 Checkin Released
Not_Distributed
ies R12.IES.A.3 6262375 07/10/11 00:42:30 Checkin Released
Not_Distributed
ies R12.IES.A.4 6496885 08/01/11 00:41:50 Checkin Released
Not_Distributed
ies R12.IES.A.5 7299980 08/08/04 02:45:24 Checkin Released
Not_Distributed
ies R12.IES.A.6 7300340 08/11/04 03:40:35 Checkin Released
Not_Distributed
ies R12.IES.B 4561640 08/08/11 05:56:53 Checkin Released
Not_Distributed
ies R12.IES.B.1 7443563 09/04/07 23:24:01 Checkin Released
Not_Distributed
ies R12.IES.B.2 8521989 09/12/15 22:54:22 Checkin Released
Not_Distributed
ies R12.IES.B.3 9249334 10/08/18 00:18:19 Checkin Released
Not_Distributed
ieu R12.IEU.A 4464309 07/01/18 17:08:27 Checkin Released
Not_Distributed
ieu R12.IEU.A.1 5884344 07/04/12 21:50:14 Checkin Released
Not_Distributed
ieu R12.IEU.A.2 6000288 07/07/12 23:23:48 Checkin Released
Not_Distributed
ieu R12.IEU.A.3 6262408 07/10/11 02:48:45 Checkin Released
Not_Distributed
ieu R12.IEU.A.4 6496887 08/01/11 00:43:06 Checkin Released
Not_Distributed
ieu R12.IEU.A.5 7299978 08/08/04 02:44:38 Checkin Released
Not_Distributed
ieu R12.IEU.A.6 7300336 08/11/04 03:39:57 Checkin Released
Not_Distributed
ieu R12.IEU.B 4561643 08/08/11 05:56:20 Checkin Released
Not_Distributed
ieu R12.IEU.B.1 7443564 09/04/07 23:23:33 Checkin Released
Not_Distributed
ieu R12.IEU.B.2 8521988 09/12/15 22:52:30 Checkin Released
Not_Distributed
ieu R12.IEU.B.3 9249333 10/08/18 00:17:53 Checkin Released
Not_Distributed
iex R12.IEX.A 4411250 07/01/18 17:08:26 Checkin Released
Not_Distributed
iex R12.IEX.A.1 5884355 07/04/12 23:09:02 Checkin Released
Not_Distributed
iex R12.IEX.A.2 5999867 07/07/12 21:09:52 Checkin Released
Not_Distributed
iex R12.IEX.A.3 6250178 07/10/13 10:45:28 Checkin Released
Not_Distributed
iex R12.IEX.A.4 6493779 08/01/11 01:29:33 Checkin Released
Not_Distributed
iex R12.IEX.A.5 6833164 08/05/15 03:09:46 Checkin Released
Not_Distributed
iex R12.IEX.A.6 7293687 08/11/03 23:47:58 Checkin Released
Not_Distributed
iex R12.IEX.B 4565241 08/08/11 23:53:59 Checkin Released
Not_Distributed
iex R12.IEX.B.1 7457084 09/04/08 01:42:43 Checkin Released
Not_Distributed
iex R12.IEX.B.2 8516753 09/12/15 23:02:36 Checkin Released
Not_Distributed
iex R12.IEX.B.3 9244829 10/08/17 23:14:39 Checkin Released
Not_Distributed
igi R12.IGI.A 4442916 07/01/18 17:08:27 Checkin Released
Not_Distributed
igi R12.IGI.A.1 5884358 07/04/12 23:09:33 Checkin Released
Not_Distributed
igi R12.IGI.A.2 5999879 07/07/12 21:28:47 Checkin Released
Not_Distributed
igi R12.IGI.A.3 6251116 07/10/13 10:45:58 Checkin Released
Not_Distributed
igi R12.IGI.A.4 6493788 08/01/11 01:19:26 Checkin Released
Not_Distributed
igi R12.IGI.A.5 6833081 08/05/15 02:49:59 Checkin Released
Not_Distributed
igi R12.IGI.A.6 7293884 08/11/04 00:14:06 Checkin Released
Not_Distributed
igi R12.IGI.B 4688801 08/08/12 00:06:27 Checkin Released
Not_Distributed
igi R12.IGI.B.1 7456850 09/04/08 02:59:52 Checkin Released
Not_Distributed
igi R12.IGI.B.2 8516971 09/12/15 21:26:26 Checkin Released
Not_Distributed
igi R12.IGI.B.3 9244871 10/08/17 22:50:10 Checkin Released
Not_Distributed
igp R12.IGP.A 4775831 07/01/18 17:08:50 Checkin Released
Not_Distributed
igp R12.IGP.A.1 5922127 07/04/13 19:47:40 Checkin Released
Not_Distributed
igp R12.IGP.A.2 6040134 07/07/09 14:48:27 Checkin Released
Not_Distributed
igp R12.IGP.A.3 6322214 07/10/15 12:32:41 Checkin Released
Not_Distributed
igr R12.IGR.A 4775824 07/01/18 17:08:50 Checkin Released
Not_Distributed
igr R12.IGR.A.1 5922111 07/04/13 19:48:07 Checkin Released
Not_Distributed
igr R12.IGR.A.2 6040123 07/07/09 14:49:05 Checkin Released
Not_Distributed
igr R12.IGR.A.3 6322211 07/10/15 12:33:15 Checkin Released
Not_Distributed
igs R12.IGS.A 4467166 07/01/18 17:08:28 Checkin Released
Not_Distributed
igs R12.IGS.A.1 5922099 07/04/13 19:48:29 Checkin Released
Not_Distributed
igs R12.IGS.A.2 6040117 07/07/09 14:53:47 Checkin Released
Not_Distributed
igs R12.IGS.A.3 6322196 07/10/15 12:32:58 Checkin Released
Not_Distributed
igw R12.IGW.A 4442921 07/01/18 17:08:27 Checkin Released
Not_Distributed
igw R12.IGW.A.1 5884363 07/04/12 23:11:05 Checkin Released
Not_Distributed
igw R12.IGW.A.2 5999908 07/07/12 21:18:37 Checkin Released
Not_Distributed
igw R12.IGW.A.3 6250222 07/10/13 10:46:57 Checkin Released
Not_Distributed
igw R12.IGW.A.4 6493796 08/01/11 01:17:24 Checkin Released
Not_Distributed
igw R12.IGW.A.5 6832865 08/05/15 02:52:25 Checkin Released
Not_Distributed
igw R12.IGW.A.6 7293724 08/11/04 00:18:52 Checkin Released
Not_Distributed
igw R12.IGW.B 4688798 08/08/11 10:01:13 Checkin Released
Not_Distributed
igw R12.IGW.B.1 7456596 09/04/08 01:52:18 Checkin Released
Not_Distributed
igw R12.IGW.B.2 8516511 09/12/15 21:16:19 Checkin Released
Not_Distributed
igw R12.IGW.B.3 9244831 10/08/17 22:54:38 Checkin Released
Not_Distributed
imc R12.IMC.A 4442924 07/01/18 17:08:27 Checkin Released
Not_Distributed
imc R12.IMC.A.1 5884367 07/04/12 21:54:15 Checkin Released
Not_Distributed
imc R12.IMC.A.2 6000309 07/07/12 23:18:25 Checkin Released
Not_Distributed
imc R12.IMC.A.3 6262272 07/10/11 02:33:16 Checkin Released
Not_Distributed
imc R12.IMC.A.4 6496889 08/01/11 00:54:43 Checkin Released
Not_Distributed
imc R12.IMC.A.5 7299993 08/08/04 02:50:57 Checkin Released
Not_Distributed
imc R12.IMC.A.6 7300354 08/11/04 03:43:14 Checkin Released
Not_Distributed
imc R12.IMC.B 4565248 08/08/11 05:58:33 Checkin Released
Not_Distributed
imc R12.IMC.B.1 7443557 09/04/07 23:29:39 Checkin Released
Not_Distributed
imc R12.IMC.B.2 8521995 09/12/15 23:11:04 Checkin Released
Not_Distributed
imc R12.IMC.B.3 9249342 10/08/18 01:37:49 Checkin Released
Not_Distributed
inl R12.INL.A 6919602 08/08/12 00:04:54 Checkin Released
Not_Distributed
inl R12.INL.B 6961271 08/08/12 00:05:39 Checkin Released
Not_Distributed
inl R12.INL.B.1 7459476 09/04/08 02:55:40 Checkin Released
Not_Distributed
inl R12.INL.B.2 8508622 09/12/15 23:38:18 Checkin Released
Not_Distributed
inl R12.INL.B.3 9244459 10/08/18 00:11:37 Checkin Released
Not_Distributed
inv R12.INV.A 2563006 07/01/18 17:08:29 Checkin Released
Not_Distributed
inv R12.INV.A.1 5885840 07/04/13 09:47:44 Checkin Released
Not_Distributed
inv R12.INV.A.2 6003688 07/07/12 14:54:22 Checkin Released
Not_Distributed
inv R12.INV.A.3 6258855 07/10/12 09:34:07 Checkin Released
Not_Distributed
inv R12.INV.A.4 6508183 08/01/11 09:32:52 Checkin Released
Not_Distributed
inv R12.INV.A.5 7289233 08/07/29 01:29:34 Checkin Released
Not_Distributed
inv R12.INV.A.6 7289501 08/11/03 13:32:05 Checkin Released
Not_Distributed
inv R12.INV.B 6658935 08/08/12 01:51:37 Checkin Released
Not_Distributed
inv R12.INV.B.1 7455667 09/04/08 08:34:22 Checkin Released
Not_Distributed
inv R12.INV.B.2 8506803 09/12/15 23:44:06 Checkin Released
Not_Distributed
inv R12.INV.B.3 9242191 10/08/18 00:13:38 Checkin Released
Not_Distributed
ipa R12.IPA.A 4452058 07/01/18 17:08:25 Checkin Released
Not_Distributed
ipa R12.IPA.A.1 5911126 07/04/13 14:17:01 Checkin Released
Not_Distributed
ipa R12.IPA.A.2 6022675 07/07/12 23:36:03 Checkin Released
Not_Distributed
ipa R12.IPA.A.3 6266103 07/10/11 02:16:01 Checkin Released
Not_Distributed
ipa R12.IPA.A.4 6512989 08/01/11 01:03:47 Checkin Released
Not_Distributed
ipa R12.IPA.A.5 7292398 08/07/29 14:38:54 Checkin Released
Not_Distributed
ipa R12.IPA.A.6 7292400 08/11/03 22:38:00 Checkin Released
Not_Distributed
ipa R12.IPA.B 6664653 08/08/09 10:32:47 Checkin Released
Not_Distributed
ipa R12.IPA.B.1 7456273 09/04/08 01:47:17 Checkin Released
Not_Distributed
ipa R12.IPA.B.2 8516762 09/12/15 23:14:43 Checkin Released
Not_Distributed
ipa R12.IPA.B.3 9246512 10/08/17 23:34:26 Checkin Released
Not_Distributed
ipm R12.IPM.A 5590685 07/05/24 15:20:30 Checkin Released
Not_Distributed
irc R12.IRC.A 5348577 07/01/18 17:09:14 Checkin Released
Not_Distributed
irc R12.IRC.A.1 5889675 07/04/13 01:30:25 Checkin Released
Not_Distributed
irc R12.IRC.A.2 5997243 07/07/12 22:37:50 Checkin Released
Not_Distributed
irc R12.IRC.A.3 6196261 07/10/12 10:16:12 Checkin Released
Not_Distributed
irc R12.IRC.A.4 6506488 08/01/11 07:37:40 Checkin Released
Not_Distributed
irc R12.IRC.A.5 6835790 08/05/15 02:07:27 Checkin Released
Not_Distributed
irc R12.IRC.A.6 7291408 08/11/04 03:01:24 Checkin Released
Not_Distributed
irc R12.IRC.A.7 7644755 09/05/15 00:16:43 Checkin Released
Not_Distributed
irc R12.IRC.A.8 9349997 10/06/09 22:40:12 Checkin Released
Not_Distributed
irc R12.IRC.B 6658014 08/08/12 00:44:27 Checkin Released
Not_Distributed
irc R12.IRC.B.1 7457050 09/04/08 03:33:13 Checkin Released
Not_Distributed
irc R12.IRC.B.2 8496476 09/12/15 21:54:18 Checkin Released
Not_Distributed
irc R12.IRC.B.3 9244274 10/07/07 03:25:42 Checkin Released
Not_Distributed
irc R12.IRC.B.4 11811843 11/06/16 21:45:54 Checkin Released
Not_Distributed
isc R12.ISC.A 4510494 07/01/18 17:08:29 Checkin Released
Not_Distributed
isc R12.ISC.A.1 5889879 07/04/13 01:34:18 Checkin Released
Not_Distributed
isc R12.ISC.A.2 6002337 07/07/12 14:47:20 Checkin Released
Not_Distributed
isc R12.ISC.A.3 6263093 07/10/12 01:25:39 Checkin Released
Not_Distributed
isc R12.ISC.A.4 6507046 08/01/10 23:53:10 Checkin Released
Not_Distributed
isc R12.ISC.A.5 7290971 08/07/29 05:15:15 Checkin Released
Not_Distributed
isc R12.ISC.A.6 7291502 08/11/03 13:58:37 Checkin Released
Not_Distributed
isc R12.ISC.B 6657615 08/04/29 14:50:49 Checkin Released
Not_Distributed
isc R12.ISC.B.1 7038972 08/08/12 05:19:22 Checkin Released
Not_Distributed
isc R12.ISC.B.1 7458413 09/04/08 03:04:42 Checkin Released
Not_Distributed
isc R12.ISC.B.2 8507574 09/12/15 23:04:30 Checkin Released
Not_Distributed
isc R12.ISC.B.3 9245533 10/08/18 01:23:36 Checkin Released
Not_Distributed
ita R12.ITA.A 4442960 07/01/18 17:08:27 Checkin Released
Not_Distributed
ita R12.ITA.A.1 5884371 07/04/12 23:12:06 Checkin Released
Not_Distributed
ita R12.ITA.A.2 5999963 07/07/12 21:26:57 Checkin Released
Not_Distributed
ita R12.ITA.A.3 6250256 07/10/13 10:47:20 Checkin Released
Not_Distributed
ita R12.ITA.A.4 6493801 08/01/11 01:22:41 Checkin Released
Not_Distributed
ita R12.ITA.A.5 6833387 08/05/15 03:22:18 Checkin Released
Not_Distributed
ita R12.ITA.A.6 7293802 08/11/03 23:40:52 Checkin Released
Not_Distributed
ita R12.ITA.B 4565254 08/08/11 23:49:52 Checkin Released
Not_Distributed
ita R12.ITA.B.1 7456661 09/04/08 02:06:32 Checkin Released
Not_Distributed
ita R12.ITA.B.2 8517026 09/12/15 21:16:43 Checkin Released
Not_Distributed
ita R12.ITA.B.3 9244857 10/08/17 23:11:06 Checkin Released
Not_Distributed
itg R12.ITG.A 4510822 07/01/18 17:08:29 Checkin Released
Not_Distributed
itg R12.ITG.A.1 5887102 07/04/13 01:24:00 Checkin Released
Not_Distributed
itg R12.ITG.A.2 6002317 07/07/12 23:47:05 Checkin Released
Not_Distributed
itg R12.ITG.A.3 6264119 07/10/12 01:04:59 Checkin Released
Not_Distributed
itg R12.ITG.A.4 6506788 08/01/10 23:16:58 Checkin Released
Not_Distributed
itg R12.ITG.A.5 7290662 08/07/29 04:52:35 Checkin Released
Not_Distributed
itg R12.ITG.A.6 7290647 08/11/03 13:29:52 Checkin Released
Not_Distributed
itg R12.ITG.B 6657398 08/08/12 06:05:28 Checkin Released
Not_Distributed
itg R12.ITG.B.1 7456499 09/04/08 02:48:19 Checkin Released
Not_Distributed
itg R12.ITG.B.2 8508707 09/12/15 23:11:45 Checkin Released
Not_Distributed
itg R12.ITG.B.3 9245564 10/08/18 01:19:57 Checkin Released
Not_Distributed
itm R12.ITM.A 4508292 07/01/18 17:08:29 Checkin Released
Not_Distributed
itm R12.ITM.A.1 5887192 07/04/13 01:23:01 Checkin Released
Not_Distributed
itm R12.ITM.A.2 5999960 07/07/13 03:17:21 Checkin Released
Not_Distributed
itm R12.ITM.A.3 6263011 07/10/12 00:23:29 Checkin Released
Not_Distributed
itm R12.ITM.A.4 6506727 08/01/11 09:35:56 Checkin Released
Not_Distributed
itm R12.ITM.A.5 7289986 08/07/29 04:24:33 Checkin Released
Not_Distributed
itm R12.ITM.A.6 7290003 08/11/04 02:04:00 Checkin Released
Not_Distributed
itm R12.ITM.B 6469939 08/02/04 16:10:33 Checkin Released
Not_Distributed
itm R12.ITM.C 6657739 08/08/11 23:27:48 Checkin Released
Not_Distributed
itm R12.ITM.C.1 7459455 09/04/08 02:54:15 Checkin Released
Not_Distributed
itm R12.ITM.C.2 8508901 09/12/15 23:40:15 Checkin Released
Not_Distributed
itm R12.ITM.C.3 9244380 10/08/18 01:19:58 Checkin Released
Not_Distributed
izu R12.IZU.A 4630372 07/04/03 07:58:26 Checkin Released
By_Metalink
izu R12.IZU.A.1 6265814 07/10/11 04:53:15 Checkin Released
Not_Distributed
izu R12.IZU.A.2 6265818 07/10/11 04:53:57 Checkin Released
Not_Distributed
izu R12.IZU.A.3 6265820 07/10/31 01:50:55 Checkin Released
By_Metalink
izu R12.IZU.A.4 6497339 08/01/11 03:43:44 Checkin Released
By_Metalink
izu R12.IZU.A.5 7294696 08/07/31 04:45:07 Checkin Released
Not_Distributed
izu R12.IZU.A.6 7294700 08/11/05 20:31:47 Checkin Released
By_Metalink
izu R12.IZU.B 6633693 08/08/12 22:10:59 Checkin Released
Not_Distributed
izu R12.IZU.B.1 7430737 09/04/07 23:03:32 Checkin Released
Not_Distributed
izu R12.IZU.B.2 7717707 09/12/16 08:04:14 Checkin Released
By_Metalink
izu R12.IZU.B.3 9239092 10/08/17 21:53:54 Checkin Released
By_Metalink
ja R12.JA.A 4442852 07/01/18 17:08:27 Checkin Released
Not_Distributed
ja R12.JA.A.1 5884376 07/04/12 23:14:20 Checkin Released
Not_Distributed
ja R12.JA.A.2 5999978 07/07/12 21:10:20 Checkin Released
Not_Distributed
ja R12.JA.A.3 6250283 07/10/13 10:47:50 Checkin Released
Not_Distributed
ja R12.JA.A.4 6493807 08/01/11 01:13:39 Checkin Released
Not_Distributed
ja R12.JA.A.5 6833092 08/05/15 02:51:23 Checkin Released
Not_Distributed
ja R12.JA.A.6 7293828 08/11/04 00:21:43 Checkin Released
Not_Distributed
ja R12.JA.B 4565259 08/08/12 00:07:18 Checkin Released
Not_Distributed
ja R12.JA.B.1 7456857 09/04/08 03:00:54 Checkin Released
Not_Distributed
ja R12.JA.B.2 8516983 09/12/15 21:24:08 Checkin Released
Not_Distributed
ja R12.JA.B.3 9244846 10/08/17 23:16:28 Checkin Released
Not_Distributed
jai R12.JAI.A 4516469 07/01/18 17:08:30 Checkin Released
Not_Distributed
jai R12.JAI.A.1 5884381 07/04/12 23:15:37 Checkin Released
Not_Distributed
jai R12.JAI.A.2 5999841 07/07/12 21:26:31 Checkin Released
Not_Distributed
jai R12.JAI.A.3 6250318 07/10/13 10:48:18 Checkin Released
Not_Distributed
jai R12.JAI.A.4 6493815 08/01/11 01:24:18 Checkin Released
Not_Distributed
jai R12.JAI.A.5 6833395 08/05/15 03:23:12 Checkin Released
Not_Distributed
jai R12.JAI.A.6 7293807 08/11/03 23:34:02 Checkin Released
Not_Distributed
jai R12.JAI.B 4565291 08/08/11 23:50:26 Checkin Released
Not_Distributed
jai R12.JAI.B.1 7456696 09/04/08 02:07:25 Checkin Released
Not_Distributed
jai R12.JAI.B.2 8517036 09/12/15 21:14:48 Checkin Released
Not_Distributed
jai R12.JAI.B.3 9244835 10/08/17 23:12:34 Checkin Released
Not_Distributed
je R12.JE.A 4442858 07/01/18 17:08:27 Checkin Released
Not_Distributed
je R12.JE.A.1 5884386 07/04/12 23:16:39 Checkin Released
Not_Distributed
je R12.JE.A.2 5999874 07/07/12 21:23:20 Checkin Released
Not_Distributed
je R12.JE.A.3 6250339 07/10/13 10:48:45 Checkin Released
Not_Distributed
je R12.JE.A.4 6493821 08/01/11 01:23:15 Checkin Released
Not_Distributed
je R12.JE.A.5 6833105 08/05/15 02:52:41 Checkin Released
Not_Distributed
je R12.JE.A.6 7293851 08/11/04 00:15:14 Checkin Released
Not_Distributed
je R12.JE.B 4713717 08/08/12 00:08:25 Checkin Released
Not_Distributed
je R12.JE.B.1 7456865 09/04/08 02:26:04 Checkin Released
Not_Distributed
je R12.JE.B.2 8516994 09/12/15 21:14:23 Checkin Released
Not_Distributed
je R12.JE.B.3 9244848 10/08/17 23:16:55 Checkin Released
Not_Distributed
jg R12.JG.A 4442865 07/01/18 17:08:27 Checkin Released
Not_Distributed
jg R12.JG.A.1 5884392 07/04/12 23:18:12 Checkin Released
Not_Distributed
jg R12.JG.A.2 5999892 07/07/12 21:21:47 Checkin Released
Not_Distributed
jg R12.JG.A.3 6250431 07/10/13 10:49:10 Checkin Released
Not_Distributed
jg R12.JG.A.4 6493761 08/01/11 01:16:10 Checkin Released
Not_Distributed
jg R12.JG.A.5 6832870 08/05/15 02:54:36 Checkin Released
Not_Distributed
jg R12.JG.A.6 7293726 08/11/04 00:12:31 Checkin Released
Not_Distributed
jg R12.JG.B 4565260 08/08/11 10:02:26 Checkin Released
Not_Distributed
jg R12.JG.B.1 7456621 09/04/08 01:53:09 Checkin Released
Not_Distributed
jg R12.JG.B.2 8516512 09/12/15 21:21:18 Checkin Released
Not_Distributed
jg R12.JG.B.3 9244849 10/08/17 22:57:23 Checkin Released
Not_Distributed
jl R12.JL.A 4442869 07/01/18 17:08:27 Checkin Released
Not_Distributed
jl R12.JL.A.1 5884394 07/04/12 23:18:45 Checkin Released
Not_Distributed
jl R12.JL.A.2 5999905 07/07/12 21:19:02 Checkin Released
Not_Distributed
jl R12.JL.A.3 6250450 07/10/13 10:49:38 Checkin Released
Not_Distributed
jl R12.JL.A.4 6493777 08/01/11 01:15:36 Checkin Released
Not_Distributed
jl R12.JL.A.5 6833180 08/05/15 03:25:44 Checkin Released
Not_Distributed
jl R12.JL.A.6 7293820 08/11/03 23:39:53 Checkin Released
Not_Distributed
jl R12.JL.B 4565264 08/08/11 23:52:31 Checkin Released
Not_Distributed
jl R12.JL.B.1 7456733 09/04/08 02:09:02 Checkin Released
Not_Distributed
jl R12.JL.B.2 8517089 09/12/15 21:13:33 Checkin Released
Not_Distributed
jl R12.JL.B.3 9244851 10/08/17 23:14:42 Checkin Released
Not_Distributed
jmf R12.JMF.A 4510258 07/01/18 17:08:29 Checkin Released
Not_Distributed
jmf R12.JMF.A.1 5885843 07/04/13 09:49:27 Checkin Released
Not_Distributed
jmf R12.JMF.A.2 6003695 07/07/12 14:52:39 Checkin Released
Not_Distributed
jmf R12.JMF.A.3 6258871 07/10/12 09:36:04 Checkin Released
Not_Distributed
jmf R12.JMF.A.4 6508192 08/01/11 09:33:59 Checkin Released
Not_Distributed
jmf R12.JMF.A.5 7289250 08/07/29 06:27:38 Checkin Released
Not_Distributed
jmf R12.JMF.A.6 7289526 08/11/03 13:27:17 Checkin Released
Not_Distributed
jmf R12.JMF.B 6658940 08/08/11 01:58:36 Checkin Released
Not_Distributed
jmf R12.JMF.B.1 7455675 09/04/08 08:31:39 Checkin Released
Not_Distributed
jmf R12.JMF.B.2 8506815 09/12/15 23:12:53 Checkin Released
Not_Distributed
jmf R12.JMF.B.3 9242220 10/08/18 00:14:24 Checkin Released
Not_Distributed
jta R12.JTA.A 4497250 07/01/18 17:08:29 Checkin Released
Not_Distributed
jta R12.JTA.A.1 5907573 07/04/13 08:12:50 Checkin Released
Not_Distributed
jta R12.JTA.A.2 5917330 07/07/13 02:16:47 Checkin Released
Not_Distributed
jta R12.JTA.A.3 6077589 07/10/11 23:46:02 Checkin Released
Not_Distributed
jta R12.JTA.A.4 6354137 08/01/11 03:39:40 Checkin Released
Not_Distributed
jta R12.JTA.A.5 6594777 08/07/29 23:59:44 Checkin Released
Not_Distributed
jta R12.JTA.A.6 7237223 08/11/03 22:18:26 Checkin Released
Not_Distributed
jta R12.JTA.B 6430094 08/08/11 21:50:19 Checkin Released
Not_Distributed
jta R12.JTA.B.1 7310261 09/04/07 22:33:11 Checkin Released
Not_Distributed
jta R12.JTA.B.2 7651152 09/12/15 23:37:02 Checkin Released
Not_Distributed
jta R12.JTA.B.3 8919480 10/07/06 21:41:28 Checkin Released
Not_Distributed
jtf R12.JTF.A 6353614 07/08/20 23:28:20 Checkin Released
Not_Distributed
jtf R12.JTF.A.1 6353654 07/08/20 23:40:45 Checkin Released
Not_Distributed
jtf R12.JTF.A.2 6353677 07/08/20 23:53:17 Checkin Released
Not_Distributed
jtf R12.JTF.A.3 6353703 07/10/11 23:48:27 Checkin Released
Not_Distributed
jtf R12.JTF.A.4 6354326 08/01/11 03:38:32 Checkin Released
Not_Distributed
jtf R12.JTF.A.5 6594791 08/07/30 00:01:05 Checkin Released
Not_Distributed
jtf R12.JTF.A.6 7237251 08/11/03 22:20:19 Checkin Released
Not_Distributed
jtf R12.JTF.B 6430101 08/08/11 23:08:49 Checkin Released
Not_Distributed
jtf R12.JTF.B.1 7310271 09/04/07 22:34:59 Checkin Released
Not_Distributed
jtf R12.JTF.B.2 7651157 09/12/15 22:35:43 Checkin Released
Not_Distributed
jtf R12.JTF.B.3 8919486 10/06/07 04:03:15 Checkin Released
Not_Distributed
jth R12.JTH.A 4464555 07/01/18 17:08:27 Checkin Released
Not_Distributed
jth R12.JTH.A.1 5884777 07/04/12 21:59:48 Checkin Released
Not_Distributed
jth R12.JTH.A.2 6000398 07/07/12 23:19:54 Checkin Released
Not_Distributed
jth R12.JTH.A.3 6262349 07/10/11 02:17:37 Checkin Released
Not_Distributed
jth R12.JTH.A.4 6496892 08/01/11 00:53:52 Checkin Released
Not_Distributed
jth R12.JTH.A.5 7299988 08/08/04 02:49:44 Checkin Released
Not_Distributed
jth R12.JTH.A.6 7300352 08/11/04 03:43:54 Checkin Released
Not_Distributed
jth R12.JTH.B 4561647 08/08/11 06:00:16 Checkin Released
Not_Distributed
jth R12.JTH.B.1 7443559 09/04/08 00:04:55 Checkin Released
Not_Distributed
jth R12.JTH.B.2 8521993 09/12/15 23:07:05 Checkin Released
Not_Distributed
jth R12.JTH.B.3 9249339 10/08/18 00:42:55 Checkin Released
Not_Distributed
jtm R12.JTM.A 4510080 07/01/18 17:08:29 Checkin Released
Not_Distributed
jtm R12.JTM.A.1 5889825 07/04/13 01:27:03 Checkin Released
Not_Distributed
jtm R12.JTM.A.2 6000093 07/07/13 02:41:29 Checkin Released
Not_Distributed
jtm R12.JTM.A.3 6263303 07/10/12 00:13:44 Checkin Released
Not_Distributed
jtm R12.JTM.A.4 6506738 08/01/10 23:55:37 Checkin Released
Not_Distributed
jtm R12.JTM.A.5 7300413 08/08/04 00:21:34 Checkin Released
Not_Distributed
jtm R12.JTM.A.6 7300418 08/11/03 22:42:33 Checkin Released
Not_Distributed
jtm R12.JTM.B 6657100 08/08/11 23:10:43 Checkin Released
Not_Distributed
jtm R12.JTM.B.1 7445786 09/04/07 23:28:05 Checkin Released
Not_Distributed
jtm R12.JTM.B.2 8509230 09/12/15 23:09:16 Checkin Released
Not_Distributed
jtm R12.JTM.B.3 9249139 10/08/17 23:20:51 Checkin Released
Not_Distributed
jto R12.JTO.A 4464552 07/01/18 17:08:27 Checkin Released
Not_Distributed
jto R12.JTO.A.1 5884690 07/04/12 22:16:53 Checkin Released
Not_Distributed
jto R12.JTO.A.2 6000316 07/07/12 22:04:27 Checkin Released
Not_Distributed
jto R12.JTO.A.3 6261952 07/10/10 23:24:37 Checkin Released
Not_Distributed
jto R12.JTO.A.4 6494534 08/01/11 00:53:25 Checkin Released
Not_Distributed
jto R12.JTO.A.5 7299987 08/08/04 02:49:05 Checkin Released
Not_Distributed
jto R12.JTO.A.6 7300343 08/11/04 03:44:42 Checkin Released
Not_Distributed
jto R12.JTO.B 4561646 08/08/11 06:00:56 Checkin Released
Not_Distributed
jto R12.JTO.B.1 7443560 09/04/08 00:04:33 Checkin Released
Not_Distributed
jto R12.JTO.B.2 8521992 09/12/15 23:06:03 Checkin Released
Not_Distributed
jto R12.JTO.B.3 9249338 10/08/18 00:42:11 Checkin Released
Not_Distributed
jtt R12.JTT.A 4495182 07/01/18 17:08:29 Checkin Released
Not_Distributed
jtt R12.JTT.A.1 5907567 07/04/13 08:13:49 Checkin Released
Not_Distributed
jtt R12.JTT.A.2 5917328 07/07/13 02:17:24 Checkin Released
Not_Distributed
jtt R12.JTT.A.3 6077540 07/10/11 23:34:27 Checkin Released
Not_Distributed
jtt R12.JTT.A.4 6272402 08/01/11 03:39:08 Checkin Released
Not_Distributed
jtt R12.JTT.A.5 6594763 08/07/29 23:52:59 Checkin Released
Not_Distributed
jtt R12.JTT.A.6 7237189 08/11/03 22:15:35 Checkin Released
Not_Distributed
jtt R12.JTT.B 6430079 08/08/11 21:47:08 Checkin Released
Not_Distributed
jtt R12.JTT.B.1 7310252 09/04/07 22:22:37 Checkin Released
Not_Distributed
jtt R12.JTT.B.2 7651126 09/12/15 22:28:40 Checkin Released
Not_Distributed
jtt R12.JTT.B.3 8919466 10/07/06 21:33:26 Checkin Released
Not_Distributed
jty R12.JTY.A 4455999 07/01/18 17:08:27 Checkin Released
Not_Distributed
jty R12.JTY.A.1 5884190 07/04/12 21:54:09 Checkin Released
Not_Distributed
jty R12.JTY.A.2 6000179 07/07/12 21:49:02 Checkin Released
Not_Distributed
jty R12.JTY.A.3 6261747 07/10/10 23:37:13 Checkin Released
Not_Distributed
jty R12.JTY.A.4 6494540 08/01/11 00:55:37 Checkin Released
Not_Distributed
jty R12.JTY.A.5 7300301 08/08/04 00:35:41 Checkin Released
Not_Distributed
jty R12.JTY.A.6 7303726 08/11/03 22:59:58 Checkin Released
Not_Distributed
jty R12.JTY.B 4547900 08/08/11 05:01:46 Checkin Released
Not_Distributed
jty R12.JTY.B.1 7442403 09/04/07 23:30:00 Checkin Released
Not_Distributed
jty R12.JTY.B.2 8508695 09/12/16 00:55:16 Checkin Released
Not_Distributed
jty R12.JTY.B.3 9243951 10/08/17 23:16:08 Checkin Released
Not_Distributed
lns R12.LNS.A 4442878 07/01/18 17:08:27 Checkin Released
Not_Distributed
lns R12.LNS.A.1 5884400 07/04/12 23:20:52 Checkin Released
Not_Distributed
lns R12.LNS.A.2 5999935 07/07/12 21:15:44 Checkin Released
Not_Distributed
lns R12.LNS.A.3 6250233 07/10/13 10:50:17 Checkin Released
Not_Distributed
lns R12.LNS.A.4 6493792 08/01/11 01:30:27 Checkin Released
Not_Distributed
lns R12.LNS.A.5 6832878 08/05/15 02:55:45 Checkin Released
Not_Distributed
lns R12.LNS.A.6 7293729 08/11/04 00:11:38 Checkin Released
Not_Distributed
lns R12.LNS.B 4565269 08/08/11 10:03:32 Checkin Released
Not_Distributed
lns R12.LNS.B.1 7456629 09/04/08 01:54:09 Checkin Released
Not_Distributed
lns R12.LNS.B.2 8516519 09/12/15 21:18:40 Checkin Released
Not_Distributed
lns R12.LNS.B.3 9244847 10/08/17 22:52:26 Checkin Released
Not_Distributed
mas_pf R12.MAS_PF.A 4456002 07/01/18 17:08:27 Checkin Released
Not_Distributed
mas_pf R12.MAS_PF.A.1 5884992 07/04/13 02:08:28 Checkin Released
Not_Distributed
mas_pf R12.MAS_PF.A.2 6000379 07/07/16 03:02:57 Checkin Released
Not_Distributed
mas_pf R12.MAS_PF.A.3 6261519 07/10/12 02:38:03 Checkin Released
Not_Distributed
mas_pf R12.MAS_PF.A.4 6506236 08/01/14 00:19:49 Checkin Released
Not_Distributed
mas_pf R12.MAS_PF.A.5 7286724 08/08/04 00:48:18 Checkin Released
Not_Distributed
mas_pf R12.MAS_PF.A.6 7286728 08/11/05 21:56:14 Checkin Released
Not_Distributed
mas_pf R12.MAS_PF.B 6654877 08/08/13 00:12:53 Checkin Released
Not_Distributed
mas_pf R12.MAS_PF.B.1 7387725 09/04/08 00:12:58 Checkin Released
Not_Distributed
mas_pf R12.MAS_PF.B.2 8508700 09/12/16 05:00:21 Checkin Released
Not_Distributed
mas_pf R12.MAS_PF.B.3 9244656 10/08/18 22:25:33 Checkin Released
Not_Distributed
mfg R12.MFG.A 4510255 07/01/18 17:08:29 Checkin Released
Not_Distributed
mfg R12.MFG.A.1 4279603 07/04/13 10:02:08 Checkin Released
Not_Distributed
mfg R12.MFG.A.2 6003707 07/07/12 14:51:35 Checkin Released
Not_Distributed
mfg R12.MFG.A.3 6258894 07/10/12 09:36:47 Checkin Released
Not_Distributed
mfg R12.MFG.A.4 6508203 08/01/11 09:35:26 Checkin Released
Not_Distributed
mfg R12.MFG.A.5 7289253 08/07/29 06:30:17 Checkin Released
Not_Distributed
mfg R12.MFG.A.6 7289565 08/11/03 13:23:37 Checkin Released
Not_Distributed
mfg R12.MFG.B 6658950 08/08/11 01:56:32 Checkin Released
Not_Distributed
mfg R12.MFG.B.1 7456319 09/04/08 08:40:05 Checkin Released
Not_Distributed
mfg R12.MFG.B.2 8506821 09/12/15 23:08:53 Checkin Released
Not_Distributed
mfg R12.MFG.B.3 9242267 10/08/18 00:15:36 Checkin Released
Not_Distributed
mrp R12.MRP.A 4510298 07/01/18 17:08:29 Checkin Released
Not_Distributed
mrp R12.MRP.A.1 5889791 07/04/13 00:29:14 Checkin Released
Not_Distributed
mrp R12.MRP.A.2 6002101 07/07/13 03:19:26 Checkin Released
Not_Distributed
mrp R12.MRP.A.3 6262170 07/10/12 02:25:44 Checkin Released
Not_Distributed
mrp R12.MRP.A.4 6506336 08/01/11 00:37:41 Checkin Released
Not_Distributed
mrp R12.MRP.A.5 7289236 08/07/29 06:16:11 Checkin Released
Not_Distributed
mrp R12.MRP.A.6 7289512 08/11/03 13:24:52 Checkin Released
Not_Distributed
mrp R12.MRP.B 6657459 08/08/11 23:16:50 Checkin Released
Not_Distributed
mrp R12.MRP.B.1 7456286 09/04/07 23:45:39 Checkin Released
Not_Distributed
mrp R12.MRP.B.2 8508201 09/12/15 22:10:21 Checkin Released
Not_Distributed
mrp R12.MRP.B.3 9242258 10/08/18 00:10:16 Checkin Released
Not_Distributed
msc R12.MSC.A 4510453 07/01/18 17:08:29 Checkin Released
Not_Distributed
msc R12.MSC.A.1 5890874 07/04/13 09:33:38 Checkin Released
Not_Distributed
msc R12.MSC.A.2 6001479 07/07/12 15:10:12 Checkin Released
Not_Distributed
msc R12.MSC.A.3 6264411 07/10/12 08:50:36 Checkin Released
Not_Distributed
msc R12.MSC.A.4 6503839 08/01/11 09:46:26 Checkin Released
Not_Distributed
msc R12.MSC.A.5 7290847 08/07/29 05:16:04 Checkin Released
Not_Distributed
msc R12.MSC.A.6 7291438 08/11/03 13:55:53 Checkin Released
Not_Distributed
msc R12.MSC.B 6659478 08/04/29 14:53:50 Checkin Released
Not_Distributed
msc R12.MSC.B.1 7038963 08/08/12 04:50:13 Checkin Released
Not_Distributed
msc R12.MSC.B.1 7458400 09/04/08 03:27:56 Checkin Released
Not_Distributed
msc R12.MSC.B.2 8507564 09/12/15 22:58:37 Checkin Released
Not_Distributed
msc R12.MSC.B.3 9245530 10/08/18 01:29:22 Checkin Released
Not_Distributed
msd R12.MSD.A 4510458 07/01/18 17:08:29 Checkin Released
Not_Distributed
msd R12.MSD.A.1 5887284 07/04/13 01:41:54 Checkin Released
Not_Distributed
msd R12.MSD.A.2 6002346 07/07/12 23:51:15 Checkin Released
Not_Distributed
msd R12.MSD.A.3 6262767 07/10/12 00:57:23 Checkin Released
Not_Distributed
msd R12.MSD.A.4 6504722 08/01/10 23:44:24 Checkin Released
Not_Distributed
msd R12.MSD.A.5 7290835 08/07/29 05:16:40 Checkin Released
Not_Distributed
msd R12.MSD.A.6 7291428 08/11/03 13:55:22 Checkin Released
Not_Distributed
msd R12.MSD.B 6657478 08/04/29 14:48:53 Checkin Released
Not_Distributed
msd R12.MSD.B.1 7038964 08/08/12 00:15:56 Checkin Released
Not_Distributed
msd R12.MSD.B.1 7458402 09/04/08 10:18:42 Checkin Released
Not_Distributed
msd R12.MSD.B.2 8507567 09/12/15 22:59:30 Checkin Released
Not_Distributed
msd R12.MSD.B.3 9245527 10/08/18 01:24:05 Checkin Released
Not_Distributed
mse R12.MSE.A 4510465 07/01/18 17:08:29 Checkin Released
Not_Distributed
mso R12.MSO.A 4510476 07/01/18 17:08:29 Checkin Released
Not_Distributed
mso R12.MSO.A.1 5887292 07/04/13 01:43:33 Checkin Released
Not_Distributed
mso R12.MSO.A.2 6002358 07/07/12 23:54:07 Checkin Released
Not_Distributed
mso R12.MSO.A.3 6262830 07/10/12 01:10:37 Checkin Released
Not_Distributed
mso R12.MSO.A.4 6507010 08/01/10 23:47:38 Checkin Released
Not_Distributed
mso R12.MSO.A.5 7290855 08/07/29 05:17:07 Checkin Released
Not_Distributed
mso R12.MSO.A.6 7291454 08/11/03 13:56:31 Checkin Released
Not_Distributed
mso R12.MSO.B 6657579 08/04/29 14:49:40 Checkin Released
Not_Distributed
mso R12.MSO.B.1 7038965 08/08/12 04:51:31 Checkin Released
Not_Distributed
mso R12.MSO.B.1 7458404 09/04/08 03:01:32 Checkin Released
Not_Distributed
mso R12.MSO.B.2 8507568 09/12/15 23:00:26 Checkin Released
Not_Distributed
mso R12.MSO.B.3 9245537 10/08/18 01:25:15 Checkin Released
Not_Distributed
msr R12.MSR.A 4510484 07/01/18 17:08:29 Checkin Released
Not_Distributed
msr R12.MSR.A.1 5887308 07/04/13 01:44:59 Checkin Released
Not_Distributed
msr R12.MSR.A.2 6002362 07/07/12 23:55:54 Checkin Released
Not_Distributed
msr R12.MSR.A.3 6263000 07/10/12 01:17:46 Checkin Released
Not_Distributed
msr R12.MSR.A.4 6507013 08/01/10 23:48:36 Checkin Released
Not_Distributed
msr R12.MSR.A.5 7290884 08/07/29 05:17:41 Checkin Released
Not_Distributed
msr R12.MSR.A.6 7291461 08/11/03 13:58:08 Checkin Released
Not_Distributed
msr R12.MSR.B 6657589 08/04/29 14:50:19 Checkin Released
Not_Distributed
msr R12.MSR.B.1 7038966 08/08/12 04:52:12 Checkin Released
Not_Distributed
msr R12.MSR.B.1 7458406 09/04/08 03:03:14 Checkin Released
Not_Distributed
msr R12.MSR.B.2 8507570 09/12/15 23:01:37 Checkin Released
Not_Distributed
msr R12.MSR.B.3 9245532 10/08/18 01:25:57 Checkin Released
Not_Distributed
mst R12.MST.A 4510214 07/01/18 17:08:29 Checkin Released
Not_Distributed
mst R12.MST.A.1 5889797 07/04/13 00:30:59 Checkin Released
Not_Distributed
mst R12.MST.A.2 6002115 07/07/12 23:32:43 Checkin Released
Not_Distributed
mst R12.MST.A.3 6261594 07/10/12 01:01:26 Checkin Released
Not_Distributed
mst R12.MST.A.4 6506778 08/01/10 23:09:51 Checkin Released
Not_Distributed
mst R12.MST.A.5 7290442 08/07/29 04:03:31 Checkin Released
Not_Distributed
mst R12.MST.A.6 7290452 08/11/04 02:02:18 Checkin Released
Not_Distributed
mst R12.MST.B 6657162 08/08/11 23:44:22 Checkin Released
Not_Distributed
mth R12.MTH.A 6613769 07/11/29 15:36:08 Checkin Released
Not_Distributed
mth R12.MTH.B 6659488 08/04/29 14:54:26 Checkin Released
Not_Distributed
mth R12.MTH.B.1 7038969 08/08/12 05:23:06 Checkin Released
Not_Distributed
mth R12.MTH.B.1 7458408 09/04/08 10:23:20 Checkin Released
Not_Distributed
mth R12.MTH.B.2 8507582 09/12/15 23:05:55 Checkin Released
Not_Distributed
mth R12.MTH.B.3 9245524 10/08/18 01:26:28 Checkin Released
Not_Distributed
mwa R12.MWA.A 4508557 07/01/18 17:08:29 Checkin Released
Not_Distributed
mwa R12.MWA.A.1 5883815 07/04/13 03:11:56 Checkin Released
Not_Distributed
mwa R12.MWA.A.2 6003709 07/07/12 14:49:52 Checkin Released
Not_Distributed
mwa R12.MWA.A.3 6258881 07/10/12 09:37:43 Checkin Released
Not_Distributed
mwa R12.MWA.A.4 6508195 08/01/11 09:35:01 Checkin Released
Not_Distributed
mwa R12.MWA.A.5 7289251 08/07/29 06:28:32 Checkin Released
Not_Distributed
mwa R12.MWA.A.6 7289554 08/11/03 13:30:47 Checkin Released
Not_Distributed
mwa R12.MWA.B 6658944 08/08/11 23:18:12 Checkin Released
Not_Distributed
mwa R12.MWA.B.1 7455679 09/04/08 10:33:01 Checkin Released
Not_Distributed
mwa R12.MWA.B.2 8506827 09/12/15 23:10:27 Checkin Released
Not_Distributed
mwa R12.MWA.B.3 9242252 10/08/18 00:14:51 Checkin Released
Not_Distributed
oam R12.OAM.A 4494347 07/01/18 17:08:29 Checkin Released
Not_Distributed
oam R12.OAM.A.1 5907575 07/04/13 08:14:57 Checkin Released
Not_Distributed
oam R12.OAM.A.2 5917332 07/07/13 02:18:16 Checkin Released
Not_Distributed
oam R12.OAM.A.3 6077531 07/10/11 23:32:48 Checkin Released
Not_Distributed
oam R12.OAM.A.4 6272394 08/01/11 09:20:48 Checkin Released
Not_Distributed
oam R12.OAM.A.5 6594767 08/07/29 23:53:38 Checkin Released
Not_Distributed
oam R12.OAM.A.6 7237193 08/11/03 22:14:09 Checkin Released
Not_Distributed
oam R12.OAM.B 6430080 08/08/11 23:16:39 Checkin Released
Not_Distributed
oam R12.OAM.B.1 7310249 09/04/07 22:21:46 Checkin Released
Not_Distributed
oam R12.OAM.B.2 7651122 09/12/15 22:31:09 Checkin Released
Not_Distributed
oam R12.OAM.B.3 8919468 10/07/06 21:32:37 Checkin Released
Not_Distributed
ocm R12.OCM.A 4442885 07/01/18 17:08:27 Checkin Released
Not_Distributed
ocm R12.OCM.A.1 5884338 07/04/12 23:07:15 Checkin Released
Not_Distributed
ocm R12.OCM.A.2 5999610 07/07/12 21:29:15 Checkin Released
Not_Distributed
ocm R12.OCM.A.3 6250271 07/10/13 10:51:01 Checkin Released
Not_Distributed
ocm R12.OCM.A.4 6493799 08/01/11 01:14:31 Checkin Released
Not_Distributed
ocm R12.OCM.A.5 6833398 08/05/15 03:24:00 Checkin Released
Not_Distributed
ocm R12.OCM.A.6 7293811 08/11/03 23:45:14 Checkin Released
Not_Distributed
ocm R12.OCM.B 4565274 08/08/11 23:50:59 Checkin Released
Not_Distributed
ocm R12.OCM.B.1 7456715 09/04/08 02:07:57 Checkin Released
Not_Distributed
ocm R12.OCM.B.2 8517042 09/12/15 21:17:38 Checkin Released
Not_Distributed
ocm R12.OCM.B.3 9244830 10/08/17 23:13:49 Checkin Released
Not_Distributed
oe R12.OE.A 4472588 07/01/18 17:08:28 Checkin Released
Not_Distributed
oe R12.OE.A.1 6014101 07/04/24 13:21:45 Checkin Released
Not_Distributed
oe R12.OE.A.2 6014106 07/07/12 14:42:43 Checkin Released
Not_Distributed
oe R12.OE.A.3 6264412 07/10/12 08:54:56 Checkin Released
Not_Distributed
oe R12.OE.A.4 6508128 08/01/11 09:45:26 Checkin Released
Not_Distributed
oe R12.OE.A.5 7290907 08/07/29 04:55:05 Checkin Released
Not_Distributed
oe R12.OE.A.6 7290904 08/11/03 13:34:20 Checkin Released
Not_Distributed
oe R12.OE.B 4561581 08/08/12 14:14:26 Checkin Released
Not_Distributed
oe R12.OE.B.1 7456527 09/04/08 10:15:26 Checkin Released
Not_Distributed
oe R12.OE.B.2 8507659 09/12/16 03:26:59 Checkin Released
Not_Distributed
oe R12.OE.B.3 9244143 10/08/18 01:26:06 Checkin Released
Not_Distributed
oie R12.OIE.A 4442891 07/01/18 17:08:27 Checkin Released
Not_Distributed
oie R12.OIE.A.1 5884349 07/04/12 23:07:41 Checkin Released
Not_Distributed
oie R12.OIE.A.2 5999618 07/07/12 21:13:53 Checkin Released
Not_Distributed
oie R12.OIE.A.3 6250306 07/10/13 10:51:47 Checkin Released
Not_Distributed
oie R12.OIE.A.4 6493806 08/01/11 01:15:08 Checkin Released
Not_Distributed
oie R12.OIE.A.5 6833112 08/05/15 02:53:45 Checkin Released
Not_Distributed
oie R12.OIE.A.6 7293853 08/11/04 00:07:13 Checkin Released
Not_Distributed
oie R12.OIE.B 4565278 08/08/12 00:09:38 Checkin Released
Not_Distributed
oie R12.OIE.B.1 7456868 09/04/08 02:58:04 Checkin Released
Not_Distributed
oie R12.OIE.B.2 8517003 09/12/15 21:23:09 Checkin Released
Not_Distributed
oie R12.OIE.B.3 9244833 10/08/17 22:53:43 Checkin Released
Not_Distributed
oir R12.OIR.A 4442900 07/01/18 17:08:27 Checkin Released
Not_Distributed
oir R12.OIR.A.1 5884354 07/04/12 23:08:35 Checkin Released
Not_Distributed
oir R12.OIR.A.2 6000570 07/07/12 21:18:09 Checkin Released
Not_Distributed
oir R12.OIR.A.3 6250329 07/10/13 10:52:08 Checkin Released
Not_Distributed
oir R12.OIR.A.4 6493811 08/01/11 01:31:28 Checkin Released
Not_Distributed
oir R12.OIR.A.5 6833136 08/05/15 02:55:34 Checkin Released
Not_Distributed
oir R12.OIR.A.6 7293858 08/11/04 00:17:09 Checkin Released
Not_Distributed
oir R12.OIR.B 4565284 08/08/12 00:10:18 Checkin Released
Not_Distributed
oir R12.OIR.B.1 7456877 09/04/08 02:59:02 Checkin Released
Not_Distributed
oir R12.OIR.B.2 8517010 09/12/15 21:17:05 Checkin Released
Not_Distributed
oir R12.OIR.B.3 9244845 10/08/17 23:17:23 Checkin Released
Not_Distributed
okc R12.OKC.A 4510204 07/01/18 17:08:29 Checkin Released
Not_Distributed
okc R12.OKC.A.1 5889850 07/04/13 01:28:50 Checkin Released
Not_Distributed
okc R12.OKC.A.2 6002201 07/07/12 23:52:56 Checkin Released
Not_Distributed
okc R12.OKC.A.3 6263801 07/10/12 01:05:26 Checkin Released
Not_Distributed
okc R12.OKC.A.4 6507003 08/01/10 23:46:14 Checkin Released
Not_Distributed
okc R12.OKC.A.5 7290853 08/07/29 05:21:26 Checkin Released
Not_Distributed
okc R12.OKC.A.6 7291445 08/11/03 13:37:32 Checkin Released
Not_Distributed
okc R12.OKC.B 6657551 08/08/12 04:50:59 Checkin Released
Not_Distributed
okc R12.OKC.B.1 7458385 09/04/08 03:07:05 Checkin Released
Not_Distributed
okc R12.OKC.B.2 8507555 09/12/15 22:47:22 Checkin Released
Not_Distributed
okc R12.OKC.B.3 9244037 10/08/18 00:33:43 Checkin Released
Not_Distributed
oke R12.OKE.A 4510206 07/01/18 17:08:29 Checkin Released
Not_Distributed
oke R12.OKE.A.1 5889888 07/04/13 01:35:56 Checkin Released
Not_Distributed
oke R12.OKE.A.2 6002316 07/07/12 23:58:54 Checkin Released
Not_Distributed
oke R12.OKE.A.3 6263875 07/10/12 01:20:46 Checkin Released
Not_Distributed
oke R12.OKE.A.4 6507021 08/01/10 23:49:38 Checkin Released
Not_Distributed
oke R12.OKE.A.5 7290912 08/07/29 05:23:26 Checkin Released
Not_Distributed
oke R12.OKE.A.6 7291482 08/11/03 13:38:46 Checkin Released
Not_Distributed
oke R12.OKE.B 6657598 08/08/12 05:18:20 Checkin Released
Not_Distributed
oke R12.OKE.B.1 7458387 09/04/08 03:07:37 Checkin Released
Not_Distributed
oke R12.OKE.B.2 8507557 09/12/15 22:48:33 Checkin Released
Not_Distributed
oke R12.OKE.B.3 9244041 10/08/18 00:34:30 Checkin Released
Not_Distributed
oki R12.OKI.A 4510209 07/01/18 17:08:29 Checkin Released
Not_Distributed
oki R12.OKI.A.1 5890921 07/04/13 03:07:08 Checkin Released
Not_Distributed
oki R12.OKI.A.2 6001481 07/07/12 14:41:39 Checkin Released
Not_Distributed
oki R12.OKI.A.3 6264401 07/10/12 08:56:59 Checkin Released
Not_Distributed
oki R12.OKI.A.4 6508119 08/01/11 09:43:11 Checkin Released
Not_Distributed
oki R12.OKI.A.5 7291003 08/07/29 05:24:11 Checkin Released
Not_Distributed
oki R12.OKI.A.6 7291512 08/11/03 13:40:44 Checkin Released
Not_Distributed
oki R12.OKI.B 6659473 08/08/12 05:25:36 Checkin Released
Not_Distributed
oki R12.OKI.B.1 7458394 09/04/08 10:22:06 Checkin Released
Not_Distributed
oki R12.OKI.B.2 8507563 09/12/15 22:47:55 Checkin Released
Not_Distributed
oki R12.OKI.B.3 9244039 10/08/18 00:34:09 Checkin Released
Not_Distributed
okl R12.OKL.A 4442911 07/01/18 17:08:27 Checkin Released
Not_Distributed
okl R12.OKL.A.1 5884359 07/04/12 23:10:05 Checkin Released
Not_Distributed
okl R12.OKL.A.2 5999889 07/07/12 21:22:49 Checkin Released
Not_Distributed
okl R12.OKL.A.3 6250354 07/10/13 10:52:40 Checkin Released
Not_Distributed
okl R12.OKL.A.4 6493818 08/01/11 01:26:15 Checkin Released
Not_Distributed
okl R12.OKL.A.5 6832879 08/05/15 02:56:37 Checkin Released
Not_Distributed
okl R12.OKL.A.6 7293733 08/11/04 00:22:27 Checkin Released
Not_Distributed
okl R12.OKL.B 4728614 08/08/11 10:05:36 Checkin Released
Not_Distributed
okl R12.OKL.B.1 7456640 09/04/08 01:55:13 Checkin Released
Not_Distributed
okl R12.OKL.B.2 8516520 09/12/15 21:15:32 Checkin Released
Not_Distributed
okl R12.OKL.B.3 9244843 10/08/17 22:49:44 Checkin Released
Not_Distributed
oks R12.OKS.A 4510212 07/01/18 17:08:29 Checkin Released
Not_Distributed
oks R12.OKS.A.1 5890868 07/04/13 03:04:15 Checkin Released
Not_Distributed
oks R12.OKS.A.2 6001475 07/07/12 15:05:03 Checkin Released
Not_Distributed
oks R12.OKS.A.3 6264399 07/10/12 08:55:45 Checkin Released
Not_Distributed
oks R12.OKS.A.4 6508104 08/01/11 09:43:42 Checkin Released
Not_Distributed
oks R12.OKS.A.5 7290890 08/07/29 05:22:55 Checkin Released
Not_Distributed
oks R12.OKS.A.6 7291475 08/11/03 13:38:00 Checkin Released
Not_Distributed
oks R12.OKS.B 6659470 08/08/12 05:16:49 Checkin Released
Not_Distributed
oks R12.OKS.B.1 7458392 09/04/08 03:06:00 Checkin Released
Not_Distributed
oks R12.OKS.B.2 8507562 09/12/15 22:46:32 Checkin Released
Not_Distributed
oks R12.OKS.B.3 9244032 10/08/18 00:33:22 Checkin Released
Not_Distributed
okx R12.OKX.A 4510213 07/01/18 17:08:29 Checkin Released
Not_Distributed
okx R12.OKX.A.1 5889868 07/04/13 01:33:00 Checkin Released
Not_Distributed
okx R12.OKX.A.2 6002299 07/07/13 00:01:32 Checkin Released
Not_Distributed
okx R12.OKX.A.3 6264057 07/10/12 01:23:30 Checkin Released
Not_Distributed
okx R12.OKX.A.4 6507038 08/01/10 23:51:50 Checkin Released
Not_Distributed
okx R12.OKX.A.5 7290928 08/07/29 05:22:22 Checkin Released
Not_Distributed
okx R12.OKX.A.6 7291489 08/11/03 13:39:50 Checkin Released
Not_Distributed
okx R12.OKX.B 6657607 08/08/12 05:18:51 Checkin Released
Not_Distributed
okx R12.OKX.B.1 7458388 09/04/08 03:09:18 Checkin Released
Not_Distributed
okx R12.OKX.B.2 8507558 09/12/15 22:49:11 Checkin Released
Not_Distributed
okx R12.OKX.B.3 9244061 10/08/18 00:34:56 Checkin Released
Not_Distributed
ok_pf R12.OK_PF.A 4510215 07/01/18 17:08:29 Checkin Released
Not_Distributed
ok_pf R12.OK_PF.A.1 5890895 07/04/13 05:02:04 Checkin Released
Not_Distributed
ok_pf R12.OK_PF.A.2 6002662 07/07/16 03:19:21 Checkin Released
Not_Distributed
ok_pf R12.OK_PF.A.3 6264415 07/10/15 03:41:21 Checkin Released
Not_Distributed
ok_pf R12.OK_PF.A.4 6508121 08/01/14 01:07:03 Checkin Released
Not_Distributed
ok_pf R12.OK_PF.A.5 7291332 08/07/29 05:28:00 Checkin Released
Not_Distributed
ok_pf R12.OK_PF.A.6 7291526 08/11/06 02:38:12 Checkin Released
Not_Distributed
ok_pf R12.OK_PF.B 6659486 08/08/12 22:30:12 Checkin Released
Not_Distributed
ok_pf R12.OK_PF.B.1 7458396 09/04/09 01:53:40 Checkin Released
Not_Distributed
ok_pf R12.OK_PF.B.2 8507590 09/12/16 22:32:55 Checkin Released
Not_Distributed
ok_pf R12.OK_PF.B.3 9244066 10/08/19 00:01:57 Checkin Released
Not_Distributed
om_pf R12.OM_PF.A 4464619 07/01/18 17:08:27 Checkin Released
Not_Distributed
om_pf R12.OM_PF.A.1 5890897 07/04/13 09:34:12 Checkin Released
Not_Distributed
om_pf R12.OM_PF.A.2 6003803 07/07/16 03:14:31 Checkin Released
Not_Distributed
om_pf R12.OM_PF.A.3 6264421 07/10/15 03:42:49 Checkin Released
Not_Distributed
om_pf R12.OM_PF.A.4 6508129 08/01/14 01:41:34 Checkin Released
Not_Distributed
om_pf R12.OM_PF.A.5 7290964 08/07/29 04:56:07 Checkin Released
Not_Distributed
om_pf R12.OM_PF.A.6 7290941 08/11/06 02:40:31 Checkin Released
Not_Distributed
om_pf R12.OM_PF.B 6659484 08/08/13 02:03:26 Checkin Released
Not_Distributed
om_pf R12.OM_PF.B.1 7456815 09/04/09 09:34:28 Checkin Released
Not_Distributed
om_pf R12.OM_PF.B.2 8507589 09/12/16 22:33:42 Checkin Released
Not_Distributed
om_pf R12.OM_PF.B.3 9244158 10/08/18 23:57:13 Checkin Released
Not_Distributed
ont R12.ONT.A 4467708 07/01/18 17:08:28 Checkin Released
Not_Distributed
ont R12.ONT.A.1 5890871 07/04/13 09:32:35 Checkin Released
Not_Distributed
ont R12.ONT.A.2 6001476 07/07/12 15:09:31 Checkin Released
Not_Distributed
ont R12.ONT.A.3 6264405 07/10/12 08:53:32 Checkin Released
Not_Distributed
ont R12.ONT.A.4 6508123 08/01/11 09:44:46 Checkin Released
Not_Distributed
ont R12.ONT.A.5 7290860 08/07/29 04:53:53 Checkin Released
Not_Distributed
ont R12.ONT.A.6 7290857 08/11/03 13:32:00 Checkin Released
Not_Distributed
ont R12.ONT.B 4561577 08/08/12 14:15:58 Checkin Released
Not_Distributed
ont R12.ONT.B.1 7456522 09/04/08 10:21:15 Checkin Released
Not_Distributed
ont R12.ONT.B.2 8507539 09/12/15 22:41:37 Checkin Released
Not_Distributed
ont R12.ONT.B.3 9244129 10/08/18 01:29:45 Checkin Released
Not_Distributed
opi R12.OPI.A 4510326 07/01/18 17:08:29 Checkin Released
Not_Distributed
opi R12.OPI.A.1 5886963 07/04/13 01:23:59 Checkin Released
Not_Distributed
opi R12.OPI.A.2 6002062 07/07/12 23:12:45 Checkin Released
Not_Distributed
opi R12.OPI.A.3 6262299 07/10/12 02:29:51 Checkin Released
Not_Distributed
opi R12.OPI.A.4 6506339 08/01/11 00:02:41 Checkin Released
Not_Distributed
opi R12.OPI.A.5 7289235 08/07/29 06:13:33 Checkin Released
Not_Distributed
opi R12.OPI.A.6 7289510 08/11/03 13:22:30 Checkin Released
Not_Distributed
opi R12.OPI.B 6657463 08/08/11 23:17:15 Checkin Released
Not_Distributed
opi R12.OPI.B.1 7456281 09/04/07 23:47:24 Checkin Released
Not_Distributed
opi R12.OPI.B.2 8508200 09/12/15 22:06:06 Checkin Released
Not_Distributed
opi R12.OPI.B.3 9242257 10/08/17 21:11:51 Checkin Released
Not_Distributed
opm_pf R12.OPM_PF.A 4510794 07/01/18 17:08:29 Checkin Released
Not_Distributed
opm_pf R12.OPM_PF.A.1 5888215 07/04/13 10:00:03 Checkin Released
Not_Distributed
opm_pf R12.OPM_PF.A.2 6002602 07/07/16 03:15:51 Checkin Released
Not_Distributed
opm_pf R12.OPM_PF.A.3 6264416 07/10/15 03:41:57 Checkin Released
Not_Distributed
opm_pf R12.OPM_PF.A.4 6506932 08/01/14 01:42:20 Checkin Released
Not_Distributed
opm_pf R12.OPM_PF.A.5 7290974 08/07/29 04:56:32 Checkin Released
Not_Distributed
opm_pf R12.OPM_PF.A.6 7290970 08/11/06 02:41:43 Checkin Released
Not_Distributed
opm_pf R12.OPM_PF.B 6659485 08/08/13 02:05:05 Checkin Released
Not_Distributed
opm_pf R12.OPM_PF.B.1 7456753 09/04/09 01:25:36 Checkin Released
Not_Distributed
opm_pf R12.OPM_PF.B.2 8508716 09/12/16 22:34:43 Checkin Released
Not_Distributed
opm_pf R12.OPM_PF.B.3 9245550 10/08/19 01:02:49 Checkin Released
Not_Distributed
ota R12.OTA.A 5348582 07/01/18 17:09:14 Checkin Released
Not_Distributed
ota R12.OTA.A.1 5889686 07/04/13 01:30:57 Checkin Released
Not_Distributed
ota R12.OTA.A.2 5997248 07/07/12 22:38:22 Checkin Released
Not_Distributed
ota R12.OTA.A.3 6196267 07/10/12 10:21:05 Checkin Released
Not_Distributed
ota R12.OTA.A.4 6506492 08/01/11 07:41:43 Checkin Released
Not_Distributed
ota R12.OTA.A.5 6835795 08/05/15 02:08:36 Checkin Released
Not_Distributed
ota R12.OTA.A.6 7291412 08/11/04 03:02:28 Checkin Released
Not_Distributed
ota R12.OTA.A.7 7644783 09/05/15 00:19:16 Checkin Released
Not_Distributed
ota R12.OTA.A.8 9350274 10/06/09 22:51:58 Checkin Released
Not_Distributed
ota R12.OTA.B 6658018 08/08/12 00:47:20 Checkin Released
Not_Distributed
ota R12.OTA.B.1 7457054 09/04/08 04:02:46 Checkin Released
Not_Distributed
ota R12.OTA.B.2 8496481 09/12/15 21:55:18 Checkin Released
Not_Distributed
ota R12.OTA.B.3 9244281 10/07/07 03:26:37 Checkin Released
Not_Distributed
ota R12.OTA.B.4 11811851 11/06/16 21:49:01 Checkin Released
Not_Distributed
owf R12.OWF.A 4494407 07/01/18 17:08:29 Checkin Released
Not_Distributed
owf R12.OWF.A.1 5907576 07/04/13 08:16:10 Checkin Released
Not_Distributed
owf R12.OWF.A.2 5917333 07/07/13 02:19:06 Checkin Released
Not_Distributed
owf R12.OWF.A.3 6077516 07/10/11 23:31:45 Checkin Released
Not_Distributed
owf R12.OWF.A.4 6272378 08/01/11 03:36:58 Checkin Released
Not_Distributed
owf R12.OWF.A.5 6594770 08/07/29 23:56:27 Checkin Released
Not_Distributed
owf R12.OWF.A.6 7237208 08/11/03 22:15:12 Checkin Released
Not_Distributed
owf R12.OWF.B 6430081 08/08/11 21:46:36 Checkin Released
Not_Distributed
owf R12.OWF.B.1 7310244 09/04/07 22:20:53 Checkin Released
Not_Distributed
owf R12.OWF.B.2 7651109 09/12/15 22:26:49 Checkin Released
Not_Distributed
owf R12.OWF.B.3 8919471 10/07/06 21:36:24 Checkin Released
Not_Distributed
ozf R12.OZF.A 4460152 07/01/18 17:08:27 Checkin Released
Not_Distributed
ozf R12.OZF.A.1 5884309 07/04/12 22:01:14 Checkin Released
Not_Distributed
ozf R12.OZF.A.2 6000261 07/07/12 21:58:37 Checkin Released
Not_Distributed
ozf R12.OZF.A.3 6261915 07/10/10 23:23:06 Checkin Released
Not_Distributed
ozf R12.OZF.A.4 6494548 08/01/11 01:02:11 Checkin Released
Not_Distributed
ozf R12.OZF.A.5 7300304 08/08/04 00:36:40 Checkin Released
Not_Distributed
ozf R12.OZF.A.6 7303727 08/11/03 23:00:41 Checkin Released
Not_Distributed
ozf R12.OZF.B 4562240 08/08/11 05:03:34 Checkin Released
Not_Distributed
ozf R12.OZF.B.1 7442404 09/04/07 23:30:41 Checkin Released
Not_Distributed
ozf R12.OZF.B.2 8508696 09/12/16 00:56:15 Checkin Released
Not_Distributed
ozf R12.OZF.B.3 9243952 10/08/17 23:16:58 Checkin Released
Not_Distributed
pa R12.PA.A 4420088 07/01/18 17:08:25 Checkin Released
Not_Distributed
pa R12.PA.A.1 5911133 07/04/13 14:41:16 Checkin Released
Not_Distributed
pa R12.PA.A.2 6022678 07/07/12 23:37:08 Checkin Released
Not_Distributed
pa R12.PA.A.3 6266109 07/10/11 02:20:57 Checkin Released
Not_Distributed
pa R12.PA.A.4 6513018 08/01/11 00:31:16 Checkin Released
Not_Distributed
pa R12.PA.A.5 7292445 08/07/29 14:39:35 Checkin Released
Not_Distributed
pa R12.PA.A.6 7292451 08/11/03 22:13:39 Checkin Released
Not_Distributed
pa R12.PA.B 5873859 08/08/09 10:41:04 Checkin Released
Not_Distributed
pa R12.PA.B.1 7456248 09/04/08 01:36:49 Checkin Released
Not_Distributed
pa R12.PA.B.2 8516814 09/12/15 22:39:30 Checkin Released
Not_Distributed
pa R12.PA.B.3 9246515 10/08/17 23:30:08 Checkin Released
Not_Distributed
pay R12.PAY.A 5348547 07/01/18 17:09:14 Checkin Released
Not_Distributed
pay R12.PAY.A.1 5881935 07/04/13 01:37:42 Checkin Released
Not_Distributed
pay R12.PAY.A.2 5997253 07/07/12 22:38:56 Checkin Released
Not_Distributed
pay R12.PAY.A.3 6196253 07/10/12 10:03:51 Checkin Released
Not_Distributed
pay R12.PAY.A.4 6506481 08/01/11 07:45:46 Checkin Released
Not_Distributed
pay R12.PAY.A.5 6835783 08/05/15 02:09:31 Checkin Released
Not_Distributed
pay R12.PAY.A.6 7291401 08/11/04 03:03:44 Checkin Released
Not_Distributed
pay R12.PAY.A.7 7644747 09/05/15 00:05:17 Checkin Released
Not_Distributed
pay R12.PAY.A.8 9349990 10/06/09 22:55:44 Checkin Released
Not_Distributed
pay R12.PAY.B 6658005 08/08/12 00:50:06 Checkin Released
Not_Distributed
pay R12.PAY.B.1 7457042 09/04/08 05:59:27 Checkin Released
Not_Distributed
pay R12.PAY.B.2 8496466 09/12/15 21:57:30 Checkin Released
Not_Distributed
pay R12.PAY.B.3 9244267 10/07/07 03:28:36 Checkin Released
Not_Distributed
pay R12.PAY.B.4 11811835 11/06/16 21:48:21 Checkin Released
Not_Distributed
per R12.PER.A 5348553 07/01/18 17:09:14 Checkin Released
Not_Distributed
per R12.PER.A.1 5881920 07/04/13 01:38:31 Checkin Released
Not_Distributed
per R12.PER.A.2 5997255 07/07/12 22:40:01 Checkin Released
Not_Distributed
per R12.PER.A.3 6196254 07/10/12 10:07:13 Checkin Released
Not_Distributed
per R12.PER.A.4 6506482 08/01/11 07:53:29 Checkin Released
Not_Distributed
per R12.PER.A.5 6835784 08/05/15 02:10:48 Checkin Released
Not_Distributed
per R12.PER.A.6 7291402 08/11/04 03:04:52 Checkin Released
Not_Distributed
per R12.PER.A.7 7644748 09/05/15 00:07:32 Checkin Released
Not_Distributed
per R12.PER.A.8 9349991 10/06/09 22:57:38 Checkin Released
Not_Distributed
per R12.PER.B 6658006 08/08/12 00:53:07 Checkin Released
Not_Distributed
per R12.PER.B.1 7457043 09/04/08 06:01:09 Checkin Released
Not_Distributed
per R12.PER.B.2 8496467 09/12/15 21:59:23 Checkin Released
Not_Distributed
per R12.PER.B.3 9244268 10/07/07 03:29:25 Checkin Released
Not_Distributed
per R12.PER.B.4 11811836 11/06/16 21:49:26 Checkin Released
Not_Distributed
pft R12.PFT.A 4455850 07/01/18 17:08:27 Checkin Released
Not_Distributed
pft R12.PFT.A.1 5884420 07/04/12 22:56:26 Checkin Released
Not_Distributed
pft R12.PFT.A.2 5999562 07/07/12 21:04:31 Checkin Released
Not_Distributed
pft R12.PFT.A.3 6251436 07/10/13 10:18:27 Checkin Released
Not_Distributed
pft R12.PFT.A.4 6494188 08/01/10 23:05:55 Checkin Released
Not_Distributed
pft R12.PFT.A.5 6833411 08/05/15 03:25:00 Checkin Released
Not_Distributed
pft R12.PFT.A.6 7293813 08/11/03 23:31:37 Checkin Released
Not_Distributed
pft R12.PFT.B 4565442 08/08/11 23:51:48 Checkin Released
Not_Distributed
pft R12.PFT.B.1 7456723 09/04/08 02:08:30 Checkin Released
Not_Distributed
pft R12.PFT.B.2 8529398 09/12/15 21:09:03 Checkin Released
Not_Distributed
pft R12.PFT.B.3 9244844 10/08/17 23:14:14 Checkin Released
Not_Distributed
pjb R12.PJB.A 5908174 07/04/13 14:18:45 Checkin Released
Not_Distributed
pjb R12.PJB.A.1 5908183 07/04/13 14:42:13 Checkin Released
Not_Distributed
pjb R12.PJB.A.2 6022680 07/07/12 23:38:35 Checkin Released
Not_Distributed
pjb R12.PJB.A.3 6266106 07/10/11 02:19:06 Checkin Released
Not_Distributed
pjb R12.PJB.A.4 6513021 08/01/11 01:04:23 Checkin Released
Not_Distributed
pjb R12.PJB.A.5 7292462 08/07/29 14:41:18 Checkin Released
Not_Distributed
pjb R12.PJB.A.6 7292466 08/11/03 22:18:00 Checkin Released
Not_Distributed
pjb R12.PJB.B 6664672 08/08/09 10:41:43 Checkin Released
Not_Distributed
pjb R12.PJB.B.1 7456295 09/04/08 01:58:27 Checkin Released
Not_Distributed
pjb R12.PJB.B.2 8516742 09/12/15 22:52:55 Checkin Released
Not_Distributed
pjb R12.PJB.B.3 9246519 10/08/17 23:36:26 Checkin Released
Not_Distributed
pjc R12.PJC.A 5908254 07/04/13 14:19:41 Checkin Released
Not_Distributed
pjc R12.PJC.A.1 5908550 07/04/13 14:42:55 Checkin Released
Not_Distributed
pjc R12.PJC.A.2 6022693 07/07/12 23:40:00 Checkin Released
Not_Distributed
pjc R12.PJC.A.3 6266107 07/10/11 02:19:54 Checkin Released
Not_Distributed
pjc R12.PJC.A.4 6513014 08/01/11 01:04:52 Checkin Released
Not_Distributed
pjc R12.PJC.A.5 7292429 08/07/29 14:42:22 Checkin Released
Not_Distributed
pjc R12.PJC.A.6 7292432 08/11/03 22:18:41 Checkin Released
Not_Distributed
pjc R12.PJC.B 6664674 08/08/09 10:42:16 Checkin Released
Not_Distributed
pjc R12.PJC.B.1 7456315 09/04/08 01:59:31 Checkin Released
Not_Distributed
pjc R12.PJC.B.2 8516732 09/12/15 22:50:26 Checkin Released
Not_Distributed
pjc R12.PJC.B.3 9246521 10/08/17 23:37:18 Checkin Released
Not_Distributed
pjf R12.PJF.A 5908635 07/04/13 14:20:27 Checkin Released
Not_Distributed
pjf R12.PJF.A.1 5908665 07/04/13 14:43:39 Checkin Released
Not_Distributed
pjf R12.PJF.A.2 6022686 07/07/12 23:41:47 Checkin Released
Not_Distributed
pjf R12.PJF.A.3 6266100 07/10/11 02:10:04 Checkin Released
Not_Distributed
pjf R12.PJF.A.4 6512974 08/01/11 01:05:18 Checkin Released
Not_Distributed
pjf R12.PJF.A.5 7292349 08/07/29 14:43:12 Checkin Released
Not_Distributed
pjf R12.PJF.A.6 7292379 08/11/03 22:19:20 Checkin Released
Not_Distributed
pjf R12.PJF.B 6664650 08/08/09 10:43:07 Checkin Released
Not_Distributed
pjf R12.PJF.B.1 7456265 09/04/08 01:46:43 Checkin Released
Not_Distributed
pjf R12.PJF.B.2 8516769 09/12/15 22:36:27 Checkin Released
Not_Distributed
pjf R12.PJF.B.3 9246523 10/08/17 23:34:59 Checkin Released
Not_Distributed
pji R12.PJI.A 4550222 07/01/18 17:08:25 Checkin Released
Not_Distributed
pji R12.PJI.A.1 5911154 07/04/13 14:46:38 Checkin Released
Not_Distributed
pji R12.PJI.A.2 6022713 07/07/12 23:47:17 Checkin Released
Not_Distributed
pji R12.PJI.A.3 6266105 07/10/11 02:17:28 Checkin Released
Not_Distributed
pji R12.PJI.A.4 6513009 08/01/11 01:06:00 Checkin Released
Not_Distributed
pji R12.PJI.A.5 7292404 08/07/29 14:43:52 Checkin Released
Not_Distributed
pji R12.PJI.A.6 7292423 08/11/03 22:20:34 Checkin Released
Not_Distributed
pji R12.PJI.B 5873863 08/08/09 10:46:24 Checkin Released
Not_Distributed
pji R12.PJI.B.1 7456251 09/04/08 01:40:23 Checkin Released
Not_Distributed
pji R12.PJI.B.2 8516801 09/12/15 23:21:46 Checkin Released
Not_Distributed
pji R12.PJI.B.3 9246513 10/08/17 23:30:59 Checkin Released
Not_Distributed
pjl R12.PJL.A 5908866 07/04/13 14:21:37 Checkin Released
Not_Distributed
pjl R12.PJL.A.1 5908871 07/04/13 14:49:12 Checkin Released
Not_Distributed
pjl R12.PJL.A.2 6022698 07/07/12 23:43:07 Checkin Released
Not_Distributed
pjl R12.PJL.A.3 6266112 07/10/11 02:23:31 Checkin Released
Not_Distributed
pjl R12.PJL.A.4 6513016 08/01/11 01:06:37 Checkin Released
Not_Distributed
pjl R12.PJL.A.5 7292433 08/07/29 14:49:53 Checkin Released
Not_Distributed
pjl R12.PJL.A.6 7292437 08/11/03 22:28:16 Checkin Released
Not_Distributed
pjl R12.PJL.B 6664669 08/08/09 10:46:58 Checkin Released
Not_Distributed
pjl R12.PJL.B.1 7457316 09/04/08 01:58:00 Checkin Released
Not_Distributed
pjl R12.PJL.B.2 8516750 09/12/15 23:17:42 Checkin Released
Not_Distributed
pjl R12.PJL.B.3 9246516 10/08/17 23:35:42 Checkin Released
Not_Distributed
pjm R12.PJM.A 4508559 07/01/18 17:08:29 Checkin Released
Not_Distributed
pjm R12.PJM.A.1 5889780 07/04/13 01:25:17 Checkin Released
Not_Distributed
pjm R12.PJM.A.2 6002170 07/07/12 23:22:17 Checkin Released
Not_Distributed
pjm R12.PJM.A.3 6261998 07/10/12 02:21:26 Checkin Released
Not_Distributed
pjm R12.PJM.A.4 6506329 08/01/11 00:34:03 Checkin Released
Not_Distributed
pjm R12.PJM.A.5 7289240 08/07/29 06:18:37 Checkin Released
Not_Distributed
pjm R12.PJM.A.6 7289525 08/11/03 13:26:41 Checkin Released
Not_Distributed
pjm R12.PJM.B 6657451 08/08/11 23:15:23 Checkin Released
Not_Distributed
pjm R12.PJM.B.1 7456274 09/04/07 23:43:18 Checkin Released
Not_Distributed
pjm R12.PJM.B.2 8508190 09/12/15 22:23:36 Checkin Released
Not_Distributed
pjm R12.PJM.B.3 9242246 10/08/18 00:08:56 Checkin Released
Not_Distributed
pjr R12.PJR.A 5908892 07/04/13 14:22:18 Checkin Released
Not_Distributed
pjr R12.PJR.A.1 5908900 07/04/13 14:48:35 Checkin Released
Not_Distributed
pjr R12.PJR.A.2 6022705 07/07/12 23:44:42 Checkin Released
Not_Distributed
pjr R12.PJR.A.3 6266108 07/10/11 02:20:25 Checkin Released
Not_Distributed
pjr R12.PJR.A.4 6513019 08/01/11 01:07:29 Checkin Released
Not_Distributed
pjr R12.PJR.A.5 7292454 08/07/29 14:50:38 Checkin Released
Not_Distributed
pjr R12.PJR.A.6 7292459 08/11/03 22:28:53 Checkin Released
Not_Distributed
pjr R12.PJR.B 6664673 08/08/09 10:47:41 Checkin Released
Not_Distributed
pjr R12.PJR.B.1 7456302 09/04/08 01:58:55 Checkin Released
Not_Distributed
pjr R12.PJR.B.2 8516735 09/12/15 22:32:54 Checkin Released
Not_Distributed
pjr R12.PJR.B.3 9246520 10/08/17 23:36:52 Checkin Released
Not_Distributed
pjt R12.PJT.A 5910989 07/04/13 14:23:03 Checkin Released
Not_Distributed
pjt R12.PJT.A.1 5911053 07/04/13 14:50:04 Checkin Released
Not_Distributed
pjt R12.PJT.A.2 6022707 07/07/12 23:46:10 Checkin Released
Not_Distributed
pjt R12.PJT.A.3 6266111 07/10/11 02:22:59 Checkin Released
Not_Distributed
pjt R12.PJT.A.4 6513017 08/01/11 01:08:04 Checkin Released
Not_Distributed
pjt R12.PJT.A.5 7292438 08/07/29 14:51:18 Checkin Released
Not_Distributed
pjt R12.PJT.A.6 7292443 08/11/03 22:31:35 Checkin Released
Not_Distributed
pjt R12.PJT.B 6664679 08/08/09 10:48:38 Checkin Released
Not_Distributed
pjt R12.PJT.B.1 7456321 09/04/08 01:59:54 Checkin Released
Not_Distributed
pjt R12.PJT.B.2 8516727 09/12/15 23:19:50 Checkin Released
Not_Distributed
pjt R12.PJT.B.3 9246522 10/08/17 23:37:41 Checkin Released
Not_Distributed
pj_pf R12.PJ_PF.A 4420055 07/04/13 16:52:44 Checkin Released
Not_Distributed
pj_pf R12.PJ_PF.A.1 5911082 07/04/13 16:55:26 Checkin Released
Not_Distributed
pj_pf R12.PJ_PF.A.2 6022657 07/07/16 09:33:52 Checkin Released
Not_Distributed
pj_pf R12.PJ_PF.A.3 6266113 07/10/15 09:33:28 Checkin Released
Not_Distributed
pj_pf R12.PJ_PF.A.4 6512963 08/01/13 23:16:33 Checkin Released
By_Metalink
pj_pf R12.PJ_PF.A.5 7292371 08/07/29 15:04:48 Checkin Released
Not_Distributed
pj_pf R12.PJ_PF.A.6 7292354 08/11/06 01:30:21 Checkin Released
By_Metalink
pj_pf R12.PJ_PF.B 6664666 08/08/13 10:33:27 Checkin Released
Not_Distributed
pj_pf R12.PJ_PF.B.1 7456340 09/04/08 23:57:52 Checkin Released
Not_Distributed
pj_pf R12.PJ_PF.B.2 8504800 09/12/16 21:27:03 Checkin Released
By_Metalink
pj_pf R12.PJ_PF.B.3 9147711 10/08/19 00:11:06 Checkin Released
By_Metalink
plm_pf R12.PLM_PF.A 4508296 07/01/18 17:08:29 Checkin Released
Not_Distributed
plm_pf R12.PLM_PF.A.1 5888176 07/04/13 09:26:14 Checkin Released
Not_Distributed
plm_pf R12.PLM_PF.A.2 6003958 07/07/16 05:41:57 Checkin Released
Not_Distributed
plm_pf R12.PLM_PF.A.3 6264541 07/10/15 02:53:50 Checkin Released
Not_Distributed
plm_pf R12.PLM_PF.A.4 6506844 08/01/14 01:38:06 Checkin Released
Not_Distributed
plm_pf R12.PLM_PF.A.5 7291278 08/07/29 09:58:42 Checkin Released
Not_Distributed
plm_pf R12.PLM_PF.A.6 7291283 08/11/06 02:37:12 Checkin Released
Not_Distributed
plm_pf R12.PLM_PF.B 6658960 08/08/13 00:51:22 Checkin Released
Not_Distributed
plm_pf R12.PLM_PF.B.1 7459535 09/04/09 01:42:33 Checkin Released
Not_Distributed
plm_pf R12.PLM_PF.B.2 8508938 09/12/16 22:34:40 Checkin Released
Not_Distributed
plm_pf R12.PLM_PF.B.3 9244769 10/08/18 23:58:27 Checkin Released
Not_Distributed
pmi R12.PMI.A 4510825 07/01/18 17:08:29 Checkin Released
Not_Distributed
pmi R12.PMI.A.1 5887151 07/04/13 01:24:43 Checkin Released
Not_Distributed
pmi R12.PMI.A.2 6002284 07/07/12 23:45:54 Checkin Released
Not_Distributed
pmi R12.PMI.A.3 6262587 07/10/12 01:02:47 Checkin Released
Not_Distributed
pmi R12.PMI.A.4 6506770 08/01/10 23:17:53 Checkin Released
Not_Distributed
pmi R12.PMI.A.5 7290618 08/07/29 04:52:06 Checkin Released
Not_Distributed
pmi R12.PMI.A.6 7290610 08/11/03 13:28:48 Checkin Released
Not_Distributed
pmi R12.PMI.B 6657392 08/08/12 06:02:44 Checkin Released
Not_Distributed
pmi R12.PMI.B.1 7456509 09/04/08 02:47:30 Checkin Released
Not_Distributed
pmi R12.PMI.B.2 8508674 09/12/15 23:13:26 Checkin Released
Not_Distributed
pmi R12.PMI.B.3 9245562 10/08/18 01:19:08 Checkin Released
Not_Distributed
pn R12.PN.A 4420096 07/01/18 17:08:25 Checkin Released
Not_Distributed
pn R12.PN.A.1 5911164 07/04/13 14:51:17 Checkin Released
Not_Distributed
pn R12.PN.A.2 6022716 07/07/12 23:48:26 Checkin Released
Not_Distributed
pn R12.PN.A.3 6266102 07/10/11 02:15:27 Checkin Released
Not_Distributed
pn R12.PN.A.4 6512982 08/01/11 01:09:01 Checkin Released
Not_Distributed
pn R12.PN.A.5 7292392 08/07/29 15:04:04 Checkin Released
Not_Distributed
pn R12.PN.A.6 7292393 08/11/03 22:38:44 Checkin Released
Not_Distributed
pn R12.PN.B 6664663 08/08/09 10:49:13 Checkin Released
Not_Distributed
pn R12.PN.B.1 7456280 09/04/08 01:57:32 Checkin Released
Not_Distributed
pn R12.PN.B.2 8516756 09/12/15 22:52:15 Checkin Released
Not_Distributed
pn R12.PN.B.3 9246511 10/08/17 23:33:40 Checkin Released
Not_Distributed
po R12.PO.A 4445657 07/01/18 17:08:26 Checkin Released
Not_Distributed
po R12.PO.A.1 5884385 07/04/12 23:33:26 Checkin Released
Not_Distributed
po R12.PO.A.2 6000195 07/07/12 22:52:40 Checkin Released
Not_Distributed
po R12.PO.A.3 6261683 07/10/10 21:45:32 Checkin Released
Not_Distributed
po R12.PO.A.4 6496854 08/01/11 00:18:21 Checkin Released
Not_Distributed
po R12.PO.A.5 7299998 08/08/04 04:11:14 Checkin Released
Not_Distributed
po R12.PO.A.6 7300356 08/11/04 02:02:00 Checkin Released
Not_Distributed
po R12.PO.B 4565365 08/08/12 01:41:46 Checkin Released
Not_Distributed
po R12.PO.B.1 7443556 09/04/08 01:30:44 Checkin Released
Not_Distributed
po R12.PO.B.2 8521997 09/12/15 23:14:22 Checkin Released
Not_Distributed
po R12.PO.B.3 9249328 10/08/18 00:21:55 Checkin Released
Not_Distributed
po R12.PO.C 9353980 10/08/18 01:55:26 Checkin Released
Not_Distributed
poa R12.POA.A 4445660 07/01/18 17:08:26 Checkin Released
Not_Distributed
poa R12.POA.A.1 5884393 07/04/12 23:35:23 Checkin Released
Not_Distributed
poa R12.POA.A.2 6000250 07/07/12 22:18:01 Checkin Released
Not_Distributed
poa R12.POA.A.3 6261760 07/10/10 22:17:07 Checkin Released
Not_Distributed
poa R12.POA.A.4 6496815 08/01/11 00:34:01 Checkin Released
Not_Distributed
poa R12.POA.A.5 7300041 08/08/04 04:13:16 Checkin Released
Not_Distributed
poa R12.POA.A.6 7300360 08/11/04 03:18:40 Checkin Released
Not_Distributed
poa R12.POA.B 4577103 08/08/11 05:47:25 Checkin Released
Not_Distributed
poa R12.POA.B.1 7456722 09/04/08 00:06:49 Checkin Released
Not_Distributed
poa R12.POA.B.2 8522023 09/12/15 23:15:14 Checkin Released
Not_Distributed
poa R12.POA.B.3 9249380 10/08/18 01:40:08 Checkin Released
Not_Distributed
pom R12.POM.A 5368966 07/01/18 17:09:16 Checkin Released
Not_Distributed
pom R12.POM.A.1 5884430 07/04/12 23:37:10 Checkin Released
Not_Distributed
pom R12.POM.A.2 6000205 07/07/12 22:15:13 Checkin Released
Not_Distributed
pom R12.POM.A.3 6261695 07/10/10 22:25:20 Checkin Released
Not_Distributed
pom R12.POM.A.4 6496846 08/01/11 00:34:34 Checkin Released
Not_Distributed
pom R12.POM.A.5 7300000 08/08/04 04:11:42 Checkin Released
Not_Distributed
pom R12.POM.A.6 7300358 08/11/04 03:19:20 Checkin Released
Not_Distributed
pom R12.POM.B 6652362 08/08/11 05:48:41 Checkin Released
Not_Distributed
pom R12.POM.B.1 7443554 09/04/08 00:07:17 Checkin Released
Not_Distributed
pom R12.POM.B.2 8522016 09/12/15 23:17:10 Checkin Released
Not_Distributed
pom R12.POM.B.3 9249322 10/08/18 01:38:18 Checkin Released
Not_Distributed
pon R12.PON.A 4445663 07/01/18 17:08:26 Checkin Released
Not_Distributed
pon R12.PON.A.1 5884401 07/04/12 23:36:06 Checkin Released
Not_Distributed
pon R12.PON.A.2 6000227 07/07/12 22:17:25 Checkin Released
Not_Distributed
pon R12.PON.A.3 6261732 07/10/10 22:17:41 Checkin Released
Not_Distributed
pon R12.PON.A.4 6496820 08/01/11 00:35:22 Checkin Released
Not_Distributed
pon R12.PON.A.5 7299999 08/08/04 04:12:14 Checkin Released
Not_Distributed
pon R12.PON.A.6 7300357 08/11/04 03:19:51 Checkin Released
Not_Distributed
pon R12.PON.B 4565362 08/08/11 05:49:25 Checkin Released
Not_Distributed
pon R12.PON.B.1 7443555 09/04/08 00:07:43 Checkin Released
Not_Distributed
pon R12.PON.B.2 8522001 09/12/15 23:18:38 Checkin Released
Not_Distributed
pon R12.PON.B.3 9249327 10/08/18 01:39:08 Checkin Released
Not_Distributed
pon R12.PON.C 9354009 10/08/18 02:03:00 Checkin Released
Not_Distributed
pos R12.POS.A 4445667 07/01/18 17:08:26 Checkin Released
Not_Distributed
pos R12.POS.A.1 5884405 07/04/12 23:36:36 Checkin Released
Not_Distributed
pos R12.POS.A.2 6000185 07/07/12 22:11:14 Checkin Released
Not_Distributed
pos R12.POS.A.3 6261657 07/10/10 22:25:51 Checkin Released
Not_Distributed
pos R12.POS.A.4 6496859 08/01/11 00:35:59 Checkin Released
Not_Distributed
pos R12.POS.A.5 7300038 08/08/04 04:12:46 Checkin Released
Not_Distributed
pos R12.POS.A.6 7300359 08/11/04 03:35:09 Checkin Released
Not_Distributed
pos R12.POS.B 4565358 08/08/11 05:48:05 Checkin Released
Not_Distributed
pos R12.POS.B.1 7443553 09/04/08 01:38:40 Checkin Released
Not_Distributed
pos R12.POS.B.2 8530556 09/12/15 23:19:49 Checkin Released
Not_Distributed
pos R12.POS.B.3 9249321 10/08/18 01:39:41 Checkin Released
Not_Distributed
pos R12.POS.C 9353987 10/08/18 01:56:30 Checkin Released
Not_Distributed
pqh R12.PQH.A 5348603 07/01/18 17:09:14 Checkin Released
Not_Distributed
pqh R12.PQH.A.1 5889695 07/04/13 01:39:00 Checkin Released
Not_Distributed
pqh R12.PQH.A.2 5997259 07/07/12 22:40:38 Checkin Released
Not_Distributed
pqh R12.PQH.A.3 6196251 07/10/12 10:02:22 Checkin Released
Not_Distributed
pqh R12.PQH.A.4 6506480 08/01/11 08:16:55 Checkin Released
Not_Distributed
pqh R12.PQH.A.5 6835782 08/05/15 02:12:08 Checkin Released
Not_Distributed
pqh R12.PQH.A.6 7291400 08/11/04 03:05:48 Checkin Released
Not_Distributed
pqh R12.PQH.A.7 7644746 09/05/14 23:59:59 Checkin Released
Not_Distributed
pqh R12.PQH.A.8 9349988 10/06/09 22:49:22 Checkin Released
Not_Distributed
pqh R12.PQH.B 6658004 08/08/12 00:54:21 Checkin Released
Not_Distributed
pqh R12.PQH.B.1 7457041 09/04/08 04:07:25 Checkin Released
Not_Distributed
pqh R12.PQH.B.2 8496464 09/12/15 22:00:21 Checkin Released
Not_Distributed
pqh R12.PQH.B.3 9244266 10/07/07 03:30:27 Checkin Released
Not_Distributed
pqh R12.PQH.B.4 11811834 11/06/16 21:41:56 Checkin Released
Not_Distributed
pqp R12.PQP.A 5348600 07/01/18 17:09:14 Checkin Released
Not_Distributed
pqp R12.PQP.A.1 5889701 07/04/13 01:39:47 Checkin Released
Not_Distributed
pqp R12.PQP.A.2 5997263 07/07/12 22:41:14 Checkin Released
Not_Distributed
pqp R12.PQP.A.3 6196262 07/10/12 10:17:10 Checkin Released
Not_Distributed
pqp R12.PQP.A.4 6506490 08/01/11 08:21:50 Checkin Released
Not_Distributed
pqp R12.PQP.A.5 6835791 08/05/15 02:13:15 Checkin Released
Not_Distributed
pqp R12.PQP.A.6 7291409 08/11/04 03:06:35 Checkin Released
Not_Distributed
pqp R12.PQP.A.7 7644756 09/05/15 00:17:42 Checkin Released
Not_Distributed
pqp R12.PQP.A.8 9349998 10/06/09 22:46:54 Checkin Released
Not_Distributed
pqp R12.PQP.B 6658015 08/08/12 00:55:17 Checkin Released
Not_Distributed
pqp R12.PQP.B.1 7457051 09/04/08 04:08:16 Checkin Released
Not_Distributed
pqp R12.PQP.B.2 8496478 09/12/15 22:01:25 Checkin Released
Not_Distributed
pqp R12.PQP.B.3 9244276 10/07/07 03:31:03 Checkin Released
Not_Distributed
pqp R12.PQP.B.4 11811844 11/06/16 21:46:45 Checkin Released
Not_Distributed
prc_pf R12.PRC_PF.A 4172000 07/01/18 17:08:25 Checkin Released
Not_Distributed
prc_pf R12.PRC_PF.A.1 5884590 07/04/12 23:55:01 Checkin Released
Not_Distributed
prc_pf R12.PRC_PF.A.2 6000373 07/07/16 10:13:00 Checkin Released
Not_Distributed
prc_pf R12.PRC_PF.A.3 6261824 07/10/15 02:18:45 Checkin Released
Not_Distributed
prc_pf R12.PRC_PF.A.4 6497749 08/01/14 00:54:54 Checkin Released
By_Metalink
prc_pf R12.PRC_PF.A.5 7291084 08/08/04 04:16:13 Checkin Released
Not_Distributed
prc_pf R12.PRC_PF.A.6 7291091 08/11/06 03:59:22 Checkin Released
By_Metalink
prc_pf R12.PRC_PF.B 4565514 08/08/13 00:10:20 Checkin Released
Not_Distributed
prc_pf R12.PRC_PF.B.1 7456813 09/04/09 00:28:11 Checkin Released
Not_Distributed
prc_pf R12.PRC_PF.B.2 8522002 09/12/17 01:11:42 Checkin Released
By_Metalink
prc_pf R12.PRC_PF.B.3 9249354 10/08/19 04:26:12 Checkin Released
By_Metalink
prp R12.PRP.A 4459013 07/01/18 17:08:27 Checkin Released
Not_Distributed
prp R12.PRP.A.1 5884208 07/04/12 21:55:16 Checkin Released
Not_Distributed
prp R12.PRP.A.2 6000207 07/07/12 21:51:11 Checkin Released
Not_Distributed
prp R12.PRP.A.3 6261830 07/10/10 23:51:22 Checkin Released
Not_Distributed
prp R12.PRP.A.4 6494558 08/01/11 01:03:33 Checkin Released
Not_Distributed
prp R12.PRP.A.5 7300307 08/08/04 00:37:12 Checkin Released
Not_Distributed
prp R12.PRP.A.6 7303728 08/11/03 23:01:16 Checkin Released
Not_Distributed
prp R12.PRP.B 4547893 08/08/11 05:04:18 Checkin Released
Not_Distributed
prp R12.PRP.B.1 7442405 09/04/07 23:31:28 Checkin Released
Not_Distributed
prp R12.PRP.B.2 8508697 09/12/16 00:57:02 Checkin Released
Not_Distributed
prp R12.PRP.B.3 9243953 10/08/17 23:18:38 Checkin Released
Not_Distributed
psa R12.PSA.A 4442922 07/01/18 17:08:27 Checkin Released
Not_Distributed
psa R12.PSA.A.1 5884362 07/04/12 23:10:32 Checkin Released
Not_Distributed
psa R12.PSA.A.2 5999898 07/07/12 21:14:51 Checkin Released
Not_Distributed
psa R12.PSA.A.3 6250386 07/10/13 10:53:29 Checkin Released
Not_Distributed
psa R12.PSA.A.4 6493826 08/01/11 01:29:09 Checkin Released
Not_Distributed
psa R12.PSA.A.5 6833142 08/05/15 02:56:29 Checkin Released
Not_Distributed
psa R12.PSA.A.6 7293860 08/11/04 00:10:17 Checkin Released
Not_Distributed
psa R12.PSA.B 4565333 08/08/12 00:11:09 Checkin Released
Not_Distributed
psa R12.PSA.B.1 7456884 09/04/08 02:25:19 Checkin Released
Not_Distributed
psa R12.PSA.B.2 8517013 09/12/15 21:25:19 Checkin Released
Not_Distributed
psa R12.PSA.B.3 9244875 10/08/17 22:55:05 Checkin Released
Not_Distributed
psb R12.PSB.A 4442925 07/01/18 17:08:27 Checkin Released
Not_Distributed
psb R12.PSB.A.1 5884369 07/04/12 23:11:36 Checkin Released
Not_Distributed
psb R12.PSB.A.2 5999943 07/07/12 21:22:20 Checkin Released
Not_Distributed
psb R12.PSB.A.3 6250477 07/10/13 10:55:30 Checkin Released
Not_Distributed
psb R12.PSB.A.4 6493833 08/01/11 01:22:12 Checkin Released
Not_Distributed
psb R12.PSB.A.5 6833147 08/05/15 02:57:23 Checkin Released
Not_Distributed
psb R12.PSB.A.6 7293864 08/11/04 00:19:45 Checkin Released
Not_Distributed
psb R12.PSB.B 4565336 08/08/12 00:11:37 Checkin Released
Not_Distributed
psb R12.PSB.B.1 7456890 09/04/08 03:01:41 Checkin Released
Not_Distributed
psb R12.PSB.B.2 8517019 09/12/15 21:21:43 Checkin Released
Not_Distributed
psb R12.PSB.B.3 9244876 10/08/17 22:54:13 Checkin Released
Not_Distributed
psp R12.PSP.A 5348607 07/01/18 17:09:14 Checkin Released
Not_Distributed
psp R12.PSP.A.1 5889704 07/04/13 01:41:42 Checkin Released
Not_Distributed
psp R12.PSP.A.2 5997266 07/07/12 22:41:48 Checkin Released
Not_Distributed
psp R12.PSP.A.3 6196266 07/10/12 10:19:15 Checkin Released
Not_Distributed
psp R12.PSP.A.4 6506493 08/01/11 08:23:45 Checkin Released
Not_Distributed
psp R12.PSP.A.5 6835794 08/05/15 02:13:59 Checkin Released
Not_Distributed
psp R12.PSP.A.6 7291411 08/11/04 03:07:30 Checkin Released
Not_Distributed
psp R12.PSP.A.7 7644760 09/05/15 00:18:48 Checkin Released
Not_Distributed
psp R12.PSP.A.8 9350000 10/06/09 22:50:42 Checkin Released
Not_Distributed
psp R12.PSP.B 6658017 08/08/12 00:56:13 Checkin Released
Not_Distributed
psp R12.PSP.B.1 7457053 09/04/08 04:09:06 Checkin Released
Not_Distributed
psp R12.PSP.B.2 8496480 09/12/15 22:02:28 Checkin Released
Not_Distributed
psp R12.PSP.B.3 9244279 10/07/07 03:31:55 Checkin Released
Not_Distributed
psp R12.PSP.B.4 11811849 11/06/16 21:48:17 Checkin Released
Not_Distributed
pv R12.PV.A 4460179 07/01/18 17:08:27 Checkin Released
Not_Distributed
pv R12.PV.A.1 5884326 07/04/12 22:02:36 Checkin Released
Not_Distributed
pv R12.PV.A.2 6000267 07/07/12 22:00:42 Checkin Released
Not_Distributed
pv R12.PV.A.3 6261921 07/10/10 23:37:59 Checkin Released
Not_Distributed
pv R12.PV.A.4 6494562 08/01/11 01:05:38 Checkin Released
Not_Distributed
pv R12.PV.A.5 7300309 08/08/04 00:37:46 Checkin Released
Not_Distributed
pv R12.PV.A.6 7303729 08/11/03 23:01:54 Checkin Released
Not_Distributed
pv R12.PV.B 4562243 08/08/11 05:06:24 Checkin Released
Not_Distributed
pv R12.PV.B.1 7442406 09/04/07 23:32:01 Checkin Released
Not_Distributed
pv R12.PV.B.2 8508698 09/12/16 00:57:53 Checkin Released
Not_Distributed
pv R12.PV.B.3 9243954 10/08/17 23:19:26 Checkin Released
Not_Distributed
qa R12.QA.A 4510295 07/01/18 17:08:29 Checkin Released
Not_Distributed
qa R12.QA.A.1 5891105 07/04/13 01:28:18 Checkin Released
Not_Distributed
qa R12.QA.A.2 6002172 07/07/12 23:24:20 Checkin Released
Not_Distributed
qa R12.QA.A.3 6261869 07/10/12 02:22:29 Checkin Released
Not_Distributed
qa R12.QA.A.4 6506331 08/01/11 00:34:46 Checkin Released
Not_Distributed
qa R12.QA.A.5 7289239 08/07/29 06:17:43 Checkin Released
Not_Distributed
qa R12.QA.A.6 7289520 08/11/03 13:25:59 Checkin Released
Not_Distributed
qa R12.QA.B 6657455 08/08/11 23:15:58 Checkin Released
Not_Distributed
qa R12.QA.B.1 7456277 09/04/07 23:43:58 Checkin Released
Not_Distributed
qa R12.QA.B.2 8508194 09/12/15 22:21:13 Checkin Released
Not_Distributed
qa R12.QA.B.3 9242247 10/08/18 00:09:29 Checkin Released
Not_Distributed
qot R12.QOT.A 4459034 07/01/18 17:08:27 Checkin Released
Not_Distributed
qot R12.QOT.A.1 5884227 07/04/12 21:57:41 Checkin Released
Not_Distributed
qot R12.QOT.A.2 6000221 07/07/12 21:53:24 Checkin Released
Not_Distributed
qot R12.QOT.A.3 6261871 07/10/10 23:38:38 Checkin Released
Not_Distributed
qot R12.QOT.A.4 6494570 08/01/11 01:12:01 Checkin Released
Not_Distributed
qot R12.QOT.A.5 7300311 08/08/04 00:38:23 Checkin Released
Not_Distributed
qot R12.QOT.A.6 7303730 08/11/03 23:02:42 Checkin Released
Not_Distributed
qot R12.QOT.B 4545524 08/08/11 05:07:07 Checkin Released
Not_Distributed
qot R12.QOT.B.1 7442407 09/04/07 23:32:35 Checkin Released
Not_Distributed
qot R12.QOT.B.2 8508699 09/12/16 00:58:47 Checkin Released
Not_Distributed
qot R12.QOT.B.3 9243955 10/08/17 23:20:25 Checkin Released
Not_Distributed
qp R12.QP.A 4464363 07/01/18 17:08:27 Checkin Released
Not_Distributed
qp R12.QP.A.1 5890872 07/04/13 09:32:57 Checkin Released
Not_Distributed
qp R12.QP.A.2 6001477 07/07/12 15:07:20 Checkin Released
Not_Distributed
qp R12.QP.A.3 6264408 07/10/12 08:54:34 Checkin Released
Not_Distributed
qp R12.QP.A.4 6508124 08/01/11 09:45:49 Checkin Released
Not_Distributed
qp R12.QP.A.5 7290875 08/07/29 04:54:17 Checkin Released
Not_Distributed
qp R12.QP.A.6 7290871 08/11/03 13:33:37 Checkin Released
Not_Distributed
qp R12.QP.B 4561556 08/08/12 14:16:41 Checkin Released
Not_Distributed
qp R12.QP.B.1 7456524 09/04/08 10:23:50 Checkin Released
Not_Distributed
qp R12.QP.B.2 8507661 09/12/15 22:43:35 Checkin Released
Not_Distributed
qp R12.QP.B.3 9244134 10/08/18 01:32:48 Checkin Released
Not_Distributed
qpr R12.QPR.A 6659492 08/01/30 16:35:19 Checkin Released
Not_Distributed
qpr R12.QPR.B 6659495 08/01/30 16:36:47 Checkin Released By_Dev

qpr R12.QPR.C 7019417 08/08/12 14:17:19 Checkin Released


Not_Distributed
qpr R12.QPR.C.1 7456529 09/04/08 10:22:35 Checkin Released
Not_Distributed
qpr R12.QPR.C.2 8507548 09/12/15 22:44:23 Checkin Released
Not_Distributed
qpr R12.QPR.C.3 9244137 10/08/18 01:33:36 Checkin Released
Not_Distributed
qrm R12.QRM.A 4442928 07/01/18 17:08:27 Checkin Released
Not_Distributed
qrm R12.QRM.A.1 5884375 07/04/12 23:12:38 Checkin Released
Not_Distributed
qrm R12.QRM.A.2 5999972 07/07/12 21:19:51 Checkin Released
Not_Distributed
qrm R12.QRM.A.3 6250498 07/10/13 10:57:23 Checkin Released
Not_Distributed
qrm R12.QRM.A.4 6493839 08/01/11 01:19:55 Checkin Released
Not_Distributed
qrm R12.QRM.A.5 6832880 08/05/15 02:57:14 Checkin Released
Not_Distributed
qrm R12.QRM.A.6 7293741 08/11/04 00:09:16 Checkin Released
Not_Distributed
qrm R12.QRM.B 4565348 08/08/11 10:06:24 Checkin Released
Not_Distributed
qrm R12.QRM.B.1 7456650 09/04/08 01:56:01 Checkin Released
Not_Distributed
qrm R12.QRM.B.2 8516524 09/12/15 21:18:06 Checkin Released
Not_Distributed
qrm R12.QRM.B.3 9244834 10/08/17 22:58:42 Checkin Released
Not_Distributed
rci R12.RCI.A 5369053 07/01/18 17:09:16 Checkin Released
Not_Distributed
rci R12.RCI.A.1 5884426 07/04/12 23:22:58 Checkin Released
Not_Distributed
rci R12.RCI.A.2 5999962 07/07/12 21:23:47 Checkin Released
Not_Distributed
rci R12.RCI.A.3 6251861 07/10/13 10:59:18 Checkin Released
Not_Distributed
rci R12.RCI.A.4 6494126 08/01/11 01:18:25 Checkin Released
Not_Distributed
rci R12.RCI.A.5 6832885 08/05/15 02:57:51 Checkin Released
Not_Distributed
rci R12.RCI.A.6 7293744 08/11/04 00:17:52 Checkin Released
Not_Distributed
rci R12.RCI.B 6651710 08/08/11 10:07:11 Checkin Released
Not_Distributed
rci R12.RCI.B.1 7456658 09/04/08 01:56:51 Checkin Released
Not_Distributed
rci R12.RCI.B.2 8516528 09/12/15 21:11:13 Checkin Released
Not_Distributed
rci R12.RCI.B.3 9244858 10/08/17 22:57:54 Checkin Released
Not_Distributed
rg R12.RG.A 4442934 07/01/18 17:08:27 Checkin Released
Not_Distributed
rg R12.RG.A.1 5884380 07/04/12 23:14:48 Checkin Released
Not_Distributed
rg R12.RG.A.2 5999611 07/07/12 21:20:45 Checkin Released
Not_Distributed
rg R12.RG.A.3 6250517 07/10/13 11:01:00 Checkin Released
Not_Distributed
rg R12.RG.A.4 6493829 08/01/11 01:30:01 Checkin Released
Not_Distributed
rg R12.RG.A.5 6833443 08/05/15 03:10:40 Checkin Released
Not_Distributed
rg R12.RG.A.6 7293690 08/11/03 23:43:08 Checkin Released
Not_Distributed
rg R12.RG.B 4565419 08/08/11 23:55:47 Checkin Released
Not_Distributed
rg R12.RG.B.1 7457095 09/04/08 01:47:14 Checkin Released
Not_Distributed
rg R12.RG.B.2 8516761 09/12/15 22:45:31 Checkin Released
Not_Distributed
rg R12.RG.B.3 9244863 10/08/17 23:15:15 Checkin Released
Not_Distributed
rlm R12.RLM.A 4510427 07/01/18 17:08:29 Checkin Released
Not_Distributed
rlm R12.RLM.A.1 4691020 07/04/13 10:11:54 Checkin Released
Not_Distributed
rlm R12.RLM.A.2 6001776 07/07/12 15:53:17 Checkin Released
Not_Distributed
rlm R12.RLM.A.3 6258195 07/10/12 00:59:19 Checkin Released
Not_Distributed
rlm R12.RLM.A.4 6506765 08/01/10 23:00:52 Checkin Released
Not_Distributed
rlm R12.RLM.A.5 7290313 08/07/29 04:12:53 Checkin Released
Not_Distributed
rlm R12.RLM.A.6 7290326 08/11/04 02:05:59 Checkin Released
Not_Distributed
rlm R12.RLM.B 6657126 08/08/11 23:43:04 Checkin Released
Not_Distributed
rlm R12.RLM.B.1 7459516 09/04/08 03:24:46 Checkin Released
Not_Distributed
rlm R12.RLM.B.2 8508633 09/12/15 23:41:18 Checkin Released
Not_Distributed
rlm R12.RLM.B.3 9244553 10/08/18 01:30:40 Checkin Released
Not_Distributed
rrs R12.RRS.A 4508570 07/11/29 11:55:48 Checkin Released
Not_Distributed
rrs R12.RRS.B 6657892 08/08/11 23:39:20 Checkin Released
Not_Distributed
rrs R12.RRS.B.1 7455684 09/04/08 08:32:26 Checkin Released
Not_Distributed
rrs R12.RRS.B.2 8506818 09/12/15 23:08:01 Checkin Released
Not_Distributed
rrs R12.RRS.B.3 9242231 10/08/18 00:16:26 Checkin Released
Not_Distributed
scm_pf R12.SCM_PF.A 4514188 07/01/18 17:08:25 Checkin Released
Not_Distributed
scm_pf R12.SCM_PF.A.1 5891335 07/04/13 10:58:52 Checkin Released
Not_Distributed
scm_pf R12.SCM_PF.A.2 6004034 07/07/16 10:11:29 Checkin Released
Not_Distributed
scm_pf R12.SCM_PF.A.3 6264660 07/10/15 10:38:46 Checkin Released
Not_Distributed
scm_pf R12.SCM_PF.A.4 6508212 08/01/14 11:08:14 Checkin Released
By_Metalink
scm_pf R12.SCM_PF.A.5 7292226 08/11/06 11:03:54 Checkin Released
Not_Distributed
scm_pf R12.SCM_PF.A.6 7292303 08/11/06 11:05:10 Checkin Released
By_Metalink
scm_pf R12.SCM_PF.B 6658964 08/08/13 11:11:08 Checkin Released
Not_Distributed
scm_pf R12.SCM_PF.B.1 7456310 09/04/09 09:46:07 Checkin Released
Not_Distributed
scm_pf R12.SCM_PF.B.2 8506830 09/12/16 22:54:17 Checkin Released
By_Metalink
scm_pf R12.SCM_PF.B.3 9245674 10/08/19 04:26:30 Checkin Released
By_Metalink
scp_pf R12.SCP_PF.A 4510600 07/01/18 17:08:29 Checkin Released
Not_Distributed
scp_pf R12.SCP_PF.A.1 5890899 07/04/13 09:34:45 Checkin Released
Not_Distributed
scp_pf R12.SCP_PF.A.2 6002703 07/07/16 10:01:37 Checkin Released
Not_Distributed
scp_pf R12.SCP_PF.A.3 6264419 07/10/15 10:26:36 Checkin Released
Not_Distributed
scp_pf R12.SCP_PF.A.4 6508131 08/01/14 11:06:51 Checkin Released
By_Metalink
scp_pf R12.SCP_PF.A.5 7291368 08/07/29 05:52:54 Checkin Released
Not_Distributed
scp_pf R12.SCP_PF.A.6 7291531 08/11/06 04:19:49 Checkin Released
By_Metalink
scp_pf R12.SCP_PF.B 6659487 08/04/29 15:27:54 Checkin Released By_Dev

scp_pf R12.SCP_PF.B.1 7039001 08/08/13 11:08:23 Checkin Released


Not_Distributed
scp_pf R12.SCP_PF.B.1 7458416 09/04/09 09:40:58 Checkin Released
Not_Distributed
scp_pf R12.SCP_PF.B.2 8507592 09/12/16 22:35:52 Checkin Released
By_Metalink
scp_pf R12.SCP_PF.B.3 9245525 10/08/19 04:20:25 Checkin Released
By_Metalink
sem_pf R12.SEM_PF.A 4455884 07/01/18 17:08:25 Checkin Released
Not_Distributed
sem_pf R12.SEM_PF.A.1 5884594 07/04/12 23:50:44 Checkin Released
Not_Distributed
sem_pf R12.SEM_PF.A.2 6000059 07/07/16 10:04:54 Checkin Released
Not_Distributed
sem_pf R12.SEM_PF.A.3 6252042 07/10/14 23:31:34 Checkin Released
Not_Distributed
sem_pf R12.SEM_PF.A.4 6493617 08/01/13 20:34:12 Checkin Released
Not_Distributed
sem_pf R12.SEM_PF.A.5 6836352 08/05/15 03:30:35 Checkin Released
Not_Distributed
sem_pf R12.SEM_PF.A.6 7293618 08/11/05 20:54:34 Checkin Released
Not_Distributed
sem_pf R12.SEM_PF.B 4565524 08/08/12 00:57:02 Checkin Released
Not_Distributed
sem_pf R12.SEM_PF.B.1 7456676 09/04/08 23:52:39 Checkin Released
Not_Distributed
sem_pf R12.SEM_PF.B.2 8509304 09/12/16 21:15:21 Checkin Released
Not_Distributed
sem_pf R12.SEM_PF.B.3 9246396 10/08/18 23:18:02 Checkin Released
Not_Distributed
sht R12.SHT.A 4510611 07/01/18 17:08:29 Checkin Released
Not_Distributed
sht R12.SHT.A.1 5887313 07/04/13 01:45:52 Checkin Released
Not_Distributed
sht R12.SHT.A.2 6002287 07/07/12 14:48:04 Checkin Released
Not_Distributed
sht R12.SHT.A.3 6263073 07/10/12 01:36:09 Checkin Released
Not_Distributed
sht R12.SHT.A.4 6507049 08/01/10 23:54:48 Checkin Released
Not_Distributed
sht R12.SHT.A.5 7290980 08/07/29 05:19:59 Checkin Released
Not_Distributed
sht R12.SHT.A.6 7291507 08/11/03 13:59:30 Checkin Released
Not_Distributed
sht R12.SHT.B 6657622 08/04/29 14:52:21 Checkin Released
Not_Distributed
sht R12.SHT.B.1 7038971 08/08/12 14:20:25 Checkin Released
Not_Distributed
sht R12.SHT.B.1 7458412 09/04/08 10:18:18 Checkin Released
Not_Distributed
sht R12.SHT.B.2 8507584 09/12/15 23:06:45 Checkin Released
Not_Distributed
sht R12.SHT.B.3 9245535 10/08/18 01:28:02 Checkin Released
Not_Distributed
srv_pf R12.SRV_PF.A 4464549 07/01/18 17:08:27 Checkin Released
Not_Distributed
srv_pf R12.SRV_PF.A.1 5884998 07/04/13 00:15:25 Checkin Released
Not_Distributed
srv_pf R12.SRV_PF.A.2 6000357 07/07/16 03:04:17 Checkin Released
Not_Distributed
srv_pf R12.SRV_PF.A.3 6261907 07/10/12 02:35:04 Checkin Released
Not_Distributed
srv_pf R12.SRV_PF.A.4 6506461 08/01/14 00:21:59 Checkin Released
Not_Distributed
srv_pf R12.SRV_PF.A.5 7291337 08/08/04 00:23:29 Checkin Released
Not_Distributed
srv_pf R12.SRV_PF.A.6 7291434 08/11/05 21:45:35 Checkin Released
Not_Distributed
srv_pf R12.SRV_PF.B 6657060 08/08/13 00:19:40 Checkin Released
Not_Distributed
srv_pf R12.SRV_PF.B.1 7446042 09/04/08 00:03:31 Checkin Released
Not_Distributed
srv_pf R12.SRV_PF.B.2 8509234 09/12/16 01:04:42 Checkin Released
Not_Distributed
srv_pf R12.SRV_PF.B.3 9249143 10/08/18 21:03:39 Checkin Released
Not_Distributed
ssp R12.SSP.A 5348615 07/01/18 17:09:14 Checkin Released
Not_Distributed
ssp R12.SSP.A.1 5889729 07/04/13 01:43:52 Checkin Released
Not_Distributed
ssp R12.SSP.A.2 5997270 07/07/12 22:42:26 Checkin Released
Not_Distributed
ssp R12.SSP.A.3 6196257 07/10/12 10:12:17 Checkin Released
Not_Distributed
ssp R12.SSP.A.4 6506485 08/01/11 08:25:53 Checkin Released
Not_Distributed
ssp R12.SSP.A.5 6835787 08/05/15 02:15:28 Checkin Released
Not_Distributed
ssp R12.SSP.A.6 7291405 08/11/04 03:08:05 Checkin Released
Not_Distributed
ssp R12.SSP.A.7 7644752 09/05/15 00:14:57 Checkin Released
Not_Distributed
ssp R12.SSP.A.8 9349994 10/06/09 22:55:59 Checkin Released
Not_Distributed
ssp R12.SSP.B 6658011 08/08/12 00:56:57 Checkin Released
Not_Distributed
ssp R12.SSP.B.1 7457046 09/04/08 04:09:52 Checkin Released
Not_Distributed
ssp R12.SSP.B.2 8496472 09/12/15 22:03:34 Checkin Released
Not_Distributed
ssp R12.SSP.B.3 9244271 10/07/07 03:32:32 Checkin Released
Not_Distributed
ssp R12.SSP.B.4 11811839 11/06/16 21:38:09 Checkin Released
Not_Distributed
txk R12.TXK.A 4494373 07/01/18 17:08:29 Checkin Released
Not_Distributed
txk R12.TXK.A.1 5909746 07/04/13 08:18:34 Checkin Released
Not_Distributed
txk R12.TXK.A.2 5917601 07/07/13 02:49:15 Checkin Released
Not_Distributed
txk R12.TXK.A.3 6077487 07/10/11 23:44:10 Checkin Released
Not_Distributed
txk R12.TXK.A.4 6329757 08/01/11 02:12:58 Checkin Released
By_Metalink
txk R12.TXK.A.5 6594792 08/07/30 03:15:54 Checkin Released
Not_Distributed
txk R12.TXK.A.6 7237313 08/11/03 23:37:51 Checkin Released
By_Metalink
txk R12.TXK.A.7 9386653 10/03/31 03:02:28 Checkin Released
By_Metalink
txk R12.TXK.B 6430145 08/08/11 21:48:02 Checkin Released
Not_Distributed
txk R12.TXK.B.1 7310275 09/04/07 22:40:27 Checkin Released
Not_Distributed
txk R12.TXK.B.2 7651166 09/12/15 23:43:45 Checkin Released
By_Metalink
txk R12.TXK.B.3 8919489 10/07/08 00:23:29 Checkin Released
By_Metalink
umx R12.UMX.A 4495281 07/01/18 17:08:29 Checkin Released
Not_Distributed
umx R12.UMX.A.1 5907564 07/04/13 08:19:46 Checkin Released
Not_Distributed
umx R12.UMX.A.2 5917323 07/07/13 02:19:45 Checkin Released
Not_Distributed
umx R12.UMX.A.3 6077616 07/10/11 23:47:46 Checkin Released
Not_Distributed
umx R12.UMX.A.4 6354143 08/01/11 03:40:12 Checkin Released
Not_Distributed
umx R12.UMX.A.5 6594784 08/07/30 00:00:37 Checkin Released
Not_Distributed
umx R12.UMX.A.6 7237243 08/11/03 22:19:26 Checkin Released
Not_Distributed
umx R12.UMX.B 6430099 08/08/11 21:51:26 Checkin Released
Not_Distributed
umx R12.UMX.B.1 7310266 09/04/07 22:34:20 Checkin Released
Not_Distributed
umx R12.UMX.B.2 7651155 09/12/15 23:35:34 Checkin Released
Not_Distributed
umx R12.UMX.B.3 8919485 10/07/06 21:42:38 Checkin Released
Not_Distributed
unv_pf R12.UNV_PF.A 4956355 07/01/18 17:08:26 Checkin Released
Not_Distributed
unv_pf R12.UNV_PF.A.1 5922134 07/04/13 19:48:49 Checkin Released
Not_Distributed
unv_pf R12.UNV_PF.A.2 6040143 07/07/16 10:24:52 Checkin Released
Not_Distributed
unv_pf R12.UNV_PF.A.3 6322217 07/10/15 12:33:30 Checkin Released
Not_Distributed
unv_pf R12.UNV_PF.A.4 6512384 08/01/11 07:17:32 Checkin Released
Not_Distributed
unv_pf R12.UNV_PF.A.5 7315544 08/08/08 02:20:29 Checkin Released
Not_Distributed
unv_pf R12.UNV_PF.A.6 7315606 08/11/06 04:05:08 Checkin Released
Not_Distributed
vea R12.VEA.A 4510810 07/01/18 17:08:29 Checkin Released
Not_Distributed
vea R12.VEA.A.1 4253719 07/04/13 10:33:54 Checkin Released
Not_Distributed
vea R12.VEA.A.2 6001788 07/07/12 15:53:41 Checkin Released
Not_Distributed
vea R12.VEA.A.3 6258630 07/10/12 01:00:23 Checkin Released
Not_Distributed
vea R12.VEA.A.4 6506773 08/01/10 23:07:11 Checkin Released
Not_Distributed
vea R12.VEA.A.5 7290391 08/07/29 04:13:42 Checkin Released
Not_Distributed
vea R12.VEA.A.6 7290413 08/11/04 02:08:25 Checkin Released
Not_Distributed
vea R12.VEA.B 6657143 08/08/11 23:43:32 Checkin Released
Not_Distributed
vea R12.VEA.B.1 7459533 09/04/08 03:25:26 Checkin Released
Not_Distributed
vea R12.VEA.B.2 8508645 09/12/15 23:43:03 Checkin Released
Not_Distributed
vea R12.VEA.B.3 9244566 10/08/18 01:31:03 Checkin Released
Not_Distributed
wip R12.WIP.A 4510245 07/01/18 17:08:29 Checkin Released
Not_Distributed
wip R12.WIP.A.1 5885844 07/04/13 09:51:29 Checkin Released
Not_Distributed
wip R12.WIP.A.2 6003694 07/07/12 14:53:25 Checkin Released
Not_Distributed
wip R12.WIP.A.3 6258864 07/10/12 09:38:14 Checkin Released
Not_Distributed
wip R12.WIP.A.4 6508189 08/01/11 09:33:22 Checkin Released
Not_Distributed
wip R12.WIP.A.5 7289248 08/07/29 06:26:53 Checkin Released
Not_Distributed
wip R12.WIP.A.6 7289550 08/11/03 13:30:12 Checkin Released
Not_Distributed
wip R12.WIP.B 6658938 08/08/12 14:13:52 Checkin Released
Not_Distributed
wip R12.WIP.B.1 7455673 09/04/08 08:33:23 Checkin Released
Not_Distributed
wip R12.WIP.B.2 8506806 09/12/15 23:24:12 Checkin Released
Not_Distributed
wip R12.WIP.B.3 9242224 10/08/18 00:14:02 Checkin Released
Not_Distributed
wms R12.WMS.A 4508552 07/01/18 17:08:29 Checkin Released
Not_Distributed
wms R12.WMS.A.1 5889775 07/04/13 00:26:02 Checkin Released
Not_Distributed
wms R12.WMS.A.2 6002090 07/07/13 03:30:09 Checkin Released
Not_Distributed
wms R12.WMS.A.3 6261537 07/10/12 02:19:44 Checkin Released
Not_Distributed
wms R12.WMS.A.4 6506314 08/01/11 00:47:17 Checkin Released
Not_Distributed
wms R12.WMS.A.5 7289245 08/07/29 06:24:17 Checkin Released
Not_Distributed
wms R12.WMS.A.6 7289542 08/11/03 13:29:17 Checkin Released
Not_Distributed
wms R12.WMS.B 6657444 08/08/12 01:46:37 Checkin Released
Not_Distributed
wms R12.WMS.B.1 7456271 09/04/07 23:40:33 Checkin Released
Not_Distributed
wms R12.WMS.B.2 8508186 09/12/15 22:43:37 Checkin Released
Not_Distributed
wms R12.WMS.B.3 9242219 10/08/18 00:06:29 Checkin Released
Not_Distributed
wps R12.WPS.A 4510248 07/01/18 17:08:29 Checkin Released
Not_Distributed
wps R12.WPS.A.1 5886972 07/04/13 01:30:21 Checkin Released
Not_Distributed
wps R12.WPS.A.2 6002174 07/07/12 23:26:39 Checkin Released
Not_Distributed
wps R12.WPS.A.3 6262039 07/10/12 02:23:08 Checkin Released
Not_Distributed
wps R12.WPS.A.4 6506333 08/01/11 00:26:10 Checkin Released
Not_Distributed
wps R12.WPS.A.5 7289237 08/07/29 06:17:02 Checkin Released
Not_Distributed
wps R12.WPS.A.6 7289516 08/11/03 13:25:25 Checkin Released
Not_Distributed
wps R12.WPS.B 6657457 08/08/11 23:16:26 Checkin Released
Not_Distributed
wps R12.WPS.B.1 7456279 09/04/07 23:46:51 Checkin Released
Not_Distributed
wps R12.WPS.B.2 8508198 09/12/15 22:08:26 Checkin Released
Not_Distributed
wps R12.WPS.B.3 9242240 10/08/18 00:10:40 Checkin Released
Not_Distributed
wsh R12.WSH.A 4510435 07/01/18 17:08:29 Checkin Released
Not_Distributed
wsh R12.WSH.A.1 5889792 07/04/13 00:28:05 Checkin Released
Not_Distributed
wsh R12.WSH.A.2 6002113 07/07/12 23:34:02 Checkin Released
Not_Distributed
wsh R12.WSH.A.3 6261597 07/10/12 00:56:09 Checkin Released
Not_Distributed
wsh R12.WSH.A.4 6504762 08/01/10 22:57:35 Checkin Released
Not_Distributed
wsh R12.WSH.A.5 7290280 08/07/29 04:14:24 Checkin Released
Not_Distributed
wsh R12.WSH.A.6 7290291 08/11/04 02:12:51 Checkin Released
Not_Distributed
wsh R12.WSH.B 6657114 08/08/12 00:10:24 Checkin Released
Not_Distributed
wsh R12.WSH.B.1 7459212 09/04/08 03:26:19 Checkin Released
Not_Distributed
wsh R12.WSH.B.2 8508651 09/12/15 23:44:56 Checkin Released
Not_Distributed
wsh R12.WSH.B.3 9244435 10/08/18 00:17:20 Checkin Released
Not_Distributed
wsm R12.WSM.A 4510320 07/01/18 17:08:29 Checkin Released
Not_Distributed
wsm R12.WSM.A.1 5889772 07/04/13 00:24:23 Checkin Released
Not_Distributed
wsm R12.WSM.A.2 6002091 07/07/13 03:32:24 Checkin Released
Not_Distributed
wsm R12.WSM.A.3 6261586 07/10/12 02:19:10 Checkin Released
Not_Distributed
wsm R12.WSM.A.4 6506324 08/01/11 00:45:50 Checkin Released
Not_Distributed
wsm R12.WSM.A.5 7289244 08/07/29 06:21:51 Checkin Released
Not_Distributed
wsm R12.WSM.A.6 7289535 08/11/03 13:28:19 Checkin Released
Not_Distributed
wsm R12.WSM.B 6657446 08/08/11 23:11:40 Checkin Released
Not_Distributed
wsm R12.WSM.B.1 7456269 09/04/07 23:44:55 Checkin Released
Not_Distributed
wsm R12.WSM.B.2 8508187 09/12/15 22:15:38 Checkin Released
Not_Distributed
wsm R12.WSM.B.3 9242255 10/08/18 00:09:55 Checkin Released
Not_Distributed
xdo R12.XDO.A 4495174 07/01/18 17:08:29 Checkin Released
Not_Distributed
xdo R12.XDO.A.1 5907579 07/04/13 08:21:09 Checkin Released
Not_Distributed
xdo R12.XDO.A.2 5917336 07/07/13 02:20:23 Checkin Released
Not_Distributed
xdo R12.XDO.A.3 6077632 07/10/11 23:49:05 Checkin Released
Not_Distributed
xdo R12.XDO.A.4 6354146 08/01/11 03:43:05 Checkin Released
Not_Distributed
xdo R12.XDO.A.5 6594787 08/07/30 00:01:32 Checkin Released
Not_Distributed
xdo R12.XDO.A.6 7237308 08/11/03 22:20:50 Checkin Released
Not_Distributed
xdo R12.XDO.B 6430103 08/08/11 21:58:13 Checkin Released
Not_Distributed
xdo R12.XDO.B.1 7310274 09/04/07 22:35:31 Checkin Released
Not_Distributed
xdo R12.XDO.B.2 7651160 09/12/15 23:36:13 Checkin Released
Not_Distributed
xdo R12.XDO.B.3 8919488 10/07/06 21:43:15 Checkin Released
Not_Distributed
xdp R12.XDP.A 4464408 07/01/18 17:08:27 Checkin Released
Not_Distributed
xdp R12.XDP.A.1 5884209 07/04/12 22:27:06 Checkin Released
Not_Distributed
xdp R12.XDP.A.2 6000269 07/07/12 22:41:26 Checkin Released
Not_Distributed
xdp R12.XDP.A.3 6261855 07/10/10 22:10:15 Checkin Released
Not_Distributed
xdp R12.XDP.A.4 6496924 08/01/11 00:46:20 Checkin Released
Not_Distributed
xdp R12.XDP.A.5 7300280 08/08/04 00:22:00 Checkin Released
Not_Distributed
xdp R12.XDP.A.6 7300339 08/11/03 22:42:57 Checkin Released
Not_Distributed
xdp R12.XDP.B 4561608 08/08/11 23:11:12 Checkin Released
Not_Distributed
xdp R12.XDP.B.1 7445788 09/04/07 23:36:33 Checkin Released
Not_Distributed
xdp R12.XDP.B.2 8509231 09/12/15 23:10:12 Checkin Released
Not_Distributed
xdp R12.XDP.B.3 9249140 10/08/17 23:24:07 Checkin Released
Not_Distributed
xla R12.XLA.A 4442938 07/01/18 17:08:27 Checkin Released
Not_Distributed
xla R12.XLA.A.1 5884382 07/04/12 23:16:11 Checkin Released
Not_Distributed
xla R12.XLA.A.2 5999866 07/07/12 21:09:11 Checkin Released
Not_Distributed
xla R12.XLA.A.3 6250428 07/10/13 11:01:58 Checkin Released
Not_Distributed
xla R12.XLA.A.4 6493835 08/01/11 01:25:44 Checkin Released
Not_Distributed
xla R12.XLA.A.5 6833185 08/05/15 03:14:22 Checkin Released
Not_Distributed
xla R12.XLA.A.6 7293694 08/11/03 23:38:11 Checkin Released
Not_Distributed
xla R12.XLA.B 4565349 08/08/11 23:57:11 Checkin Released
Not_Distributed
xla R12.XLA.B.1 7457096 09/04/08 01:47:46 Checkin Released
Not_Distributed
xla R12.XLA.B.2 8516768 09/12/15 23:06:20 Checkin Released
Not_Distributed
xla R12.XLA.B.3 9244854 10/08/17 23:17:13 Checkin Released
Not_Distributed
xle R12.XLE.A 4442940 07/01/18 17:08:27 Checkin Released
Not_Distributed
xle R12.XLE.A.1 5884387 07/04/12 23:17:29 Checkin Released
Not_Distributed
xle R12.XLE.A.2 5999882 07/07/12 21:24:11 Checkin Released
Not_Distributed
xle R12.XLE.A.3 6251026 07/10/13 11:02:51 Checkin Released
Not_Distributed
xle R12.XLE.A.4 6494085 08/01/11 01:17:53 Checkin Released
Not_Distributed
xle R12.XLE.A.5 6833154 08/05/15 02:58:13 Checkin Released
Not_Distributed
xle R12.XLE.A.6 7293867 08/11/04 00:13:11 Checkin Released
Not_Distributed
xle R12.XLE.B 4565354 08/08/12 00:12:33 Checkin Released
Not_Distributed
xle R12.XLE.B.1 7456895 09/04/08 03:02:22 Checkin Released
Not_Distributed
xle R12.XLE.B.2 8517029 09/12/15 21:27:13 Checkin Released
Not_Distributed
xle R12.XLE.B.3 9244859 10/08/17 23:18:46 Checkin Released
Not_Distributed
xnb R12.XNB.A 4464401 07/01/18 17:08:27 Checkin Released
Not_Distributed
xnb R12.XNB.A.1 5884197 07/04/12 22:26:18 Checkin Released
Not_Distributed
xnb R12.XNB.A.2 6000259 07/07/12 22:40:53 Checkin Released
Not_Distributed
xnb R12.XNB.A.3 6261790 07/10/10 22:07:59 Checkin Released
Not_Distributed
xnb R12.XNB.A.4 6496926 08/01/11 00:48:00 Checkin Released
Not_Distributed
xnb R12.XNB.A.5 7300283 08/08/04 00:22:24 Checkin Released
Not_Distributed
xnb R12.XNB.A.6 7300344 08/11/03 22:43:33 Checkin Released
Not_Distributed
xnb R12.XNB.B 4561615 08/08/11 23:11:40 Checkin Released
Not_Distributed
xnb R12.XNB.B.1 7445789 09/04/07 23:37:10 Checkin Released
Not_Distributed
xnb R12.XNB.B.2 8509232 09/12/15 23:10:58 Checkin Released
Not_Distributed
xnb R12.XNB.B.3 9249141 10/08/17 23:25:10 Checkin Released
Not_Distributed
xnp R12.XNP.A 4464509 07/01/18 17:08:27 Checkin Released
Not_Distributed
xnp R12.XNP.A.1 5884223 07/04/12 22:28:08 Checkin Released
Not_Distributed
xnp R12.XNP.A.2 6000282 07/07/12 22:42:02 Checkin Released
Not_Distributed
xnp R12.XNP.A.3 6261862 07/10/10 22:10:51 Checkin Released
Not_Distributed
xnp R12.XNP.A.4 6496931 08/01/11 00:48:35 Checkin Released
Not_Distributed
xnp R12.XNP.A.5 7300284 08/08/04 00:22:51 Checkin Released
Not_Distributed
xnp R12.XNP.A.6 7300345 08/11/03 22:44:05 Checkin Released
Not_Distributed
xnp R12.XNP.B 4561618 08/08/11 23:12:16 Checkin Released
Not_Distributed
xnp R12.XNP.B.1 7445790 09/04/07 23:37:51 Checkin Released
Not_Distributed
xnp R12.XNP.B.2 8509233 09/12/15 23:11:46 Checkin Released
Not_Distributed
xnp R12.XNP.B.3 9249142 10/08/17 23:26:09 Checkin Released
Not_Distributed
xtr R12.XTR.A 4442946 07/01/18 17:08:27 Checkin Released
Not_Distributed
xtr R12.XTR.A.1 5884395 07/04/12 23:19:14 Checkin Released
Not_Distributed
xtr R12.XTR.A.2 5999916 07/07/12 21:15:18 Checkin Released
Not_Distributed
xtr R12.XTR.A.3 6251061 07/10/13 11:03:37 Checkin Released
Not_Distributed
xtr R12.XTR.A.4 6494093 08/01/11 01:30:59 Checkin Released
Not_Distributed
xtr R12.XTR.A.5 6832891 08/05/15 02:58:40 Checkin Released
Not_Distributed
xtr R12.XTR.A.6 7293751 08/11/04 00:23:34 Checkin Released
Not_Distributed
xtr R12.XTR.B 4539979 08/08/11 10:08:27 Checkin Released
Not_Distributed
xtr R12.XTR.B.1 7456667 09/04/08 01:58:13 Checkin Released
Not_Distributed
xtr R12.XTR.B.2 8516533 09/12/15 21:15:58 Checkin Released
Not_Distributed
xtr R12.XTR.B.3 9244832 10/08/17 22:55:28 Checkin Released
Not_Distributed
zpb R12.ZPB.A 4448752 07/01/18 17:08:28 Checkin Released
Not_Distributed
zpb R12.ZPB.A.1 5633196 07/04/12 22:51:04 Checkin Released
Not_Distributed
zpb R12.ZPB.A.2 5999537 07/07/12 21:03:06 Checkin Released
Not_Distributed
zpb R12.ZPB.A.3 6251476 07/10/13 10:25:06 Checkin Released
Not_Distributed
zpb R12.ZPB.A.4 6494196 08/01/10 23:06:50 Checkin Released
Not_Distributed
zpb R12.ZPB.A.5 6833198 08/05/15 03:15:21 Checkin Released
Not_Distributed
zpb R12.ZPB.A.6 7293699 08/11/03 23:28:40 Checkin Released
Not_Distributed
zpb R12.ZPB.B 6651737 08/08/12 00:00:06 Checkin Released
Not_Distributed
zpb R12.ZPB.B.1 7457106 09/04/08 01:49:50 Checkin Released
Not_Distributed
zpb R12.ZPB.B.2 8516778 09/12/15 22:27:54 Checkin Released
Not_Distributed
zpb R12.ZPB.B.3 9244868 10/08/17 23:18:49 Checkin Released
Not_Distributed
zx R12.ZX.A 4442948 07/01/18 17:08:27 Checkin Released
Not_Distributed
zx R12.ZX.A.1 5884403 07/04/12 23:22:27 Checkin Released
Not_Distributed
zx R12.ZX.A.2 5999947 07/07/12 21:14:21 Checkin Released
Not_Distributed
zx R12.ZX.A.3 6251141 07/10/13 11:04:09 Checkin Released
Not_Distributed
zx R12.ZX.A.4 6494106 08/01/11 01:32:28 Checkin Released
Not_Distributed
zx R12.ZX.A.5 6833170 08/05/15 03:02:14 Checkin Released
Not_Distributed
zx R12.ZX.A.6 7293871 08/11/04 00:16:19 Checkin Released
Not_Distributed
zx R12.ZX.B 4565356 08/08/12 00:13:50 Checkin Released
Not_Distributed
zx R12.ZX.B.1 7456901 09/04/08 02:24:22 Checkin Released
Not_Distributed
zx R12.ZX.B.2 8517032 09/12/15 21:20:39 Checkin Released
Not_Distributed
zx R12.ZX.B.3 9244838 10/08/17 23:19:25 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

echo "
7461070 - R12.AD.B.1 ad 10-APR-09 Checkin Released By_Metalink
6665350 - R12.AD.B ad 13-AUG-08 Checkin Released Not_Distributed
7458155 - R12.AD.B.1 ad 08-APR-09 Checkin Released Not_Distributed
4565490 - R12.FIN_PF.B fin_pf 13-AUG-08 Checkin Released Not_Distributed
4538335 - R12.CE.B ce 11-AUG-08 Checkin Released Not_Distributed
4539979 - R12.XTR.B xtr 11-AUG-08 Checkin Released Not_Distributed
4565226 - R12.AMW.B amw 11-AUG-08 Checkin Released Not_Distributed
4565227 - R12.IBY.B iby 11-AUG-08 Checkin Released Not_Distributed
4565241 - R12.IEX.B iex 11-AUG-08 Checkin Released Not_Distributed
4565254 - R12.ITA.B ita 11-AUG-08 Checkin Released Not_Distributed
4565257 - R12.AP.B ap 11-AUG-08 Checkin Released Not_Distributed
4565259 - R12.JA.B ja 12-AUG-08 Checkin Released Not_Distributed
4565260 - R12.JG.B jg 11-AUG-08 Checkin Released Not_Distributed
4565264 - R12.JL.B jl 11-AUG-08 Checkin Released Not_Distributed
4565266 - R12.AR.B ar 12-AUG-08 Checkin Released Not_Distributed
4565269 - R12.LNS.B lns 11-AUG-08 Checkin Released Not_Distributed
4565274 - R12.OCM.B ocm 11-AUG-08 Checkin Released Not_Distributed
4565278 - R12.OIE.B oie 12-AUG-08 Checkin Released Not_Distributed
4565280 - R12.FA.B fa 11-AUG-08 Checkin Released Not_Distributed
4565284 - R12.OIR.B oir 12-AUG-08 Checkin Released Not_Distributed
4565291 - R12.JAI.B jai 11-AUG-08 Checkin Released Not_Distributed
4565292 - R12.FII.B fii 11-AUG-08 Checkin Released Not_Distributed
4565296 - R12.FUN.B fun 11-AUG-08 Checkin Released Not_Distributed
4565298 - R12.FV.B fv 11-AUG-08 Checkin Released Not_Distributed
4565307 - R12.GL.B gl 11-AUG-08 Checkin Released Not_Distributed
4565320 - R12.IA.B ia 11-AUG-08 Checkin Released Not_Distributed
4565332 - R12.BPA.B bpa 11-AUG-08 Checkin Released Not_Distributed
4565333 - R12.PSA.B psa 12-AUG-08 Checkin Released Not_Distributed
4565336 - R12.PSB.B psb 12-AUG-08 Checkin Released Not_Distributed
4565348 - R12.QRM.B qrm 11-AUG-08 Checkin Released Not_Distributed
4565349 - R12.XLA.B xla 11-AUG-08 Checkin Released Not_Distributed
4565354 - R12.XLE.B xle 12-AUG-08 Checkin Released Not_Distributed
4565356 - R12.ZX.B zx 12-AUG-08 Checkin Released Not_Distributed
4565419 - R12.RG.B rg 11-AUG-08 Checkin Released Not_Distributed
4565524 - R12.SEM_PF.B sem_pf 12-AUG-08 Checkin Released Not_Distributed
4688798 - R12.IGW.B igw 11-AUG-08 Checkin Released Not_Distributed
4688801 - R12.IGI.B igi 12-AUG-08 Checkin Released Not_Distributed
4713717 - R12.JE.B je 12-AUG-08 Checkin Released Not_Distributed
4728614 - R12.OKL.B okl 11-AUG-08 Checkin Released Not_Distributed
6651710 - R12.RCI.B rci 11-AUG-08 Checkin Released Not_Distributed
4565514 - R12.PRC_PF.B prc_pf 13-AUG-08 Checkin Released Not_Distributed
4565358 - R12.POS.B pos 11-AUG-08 Checkin Released Not_Distributed
4565362 - R12.PON.B pon 11-AUG-08 Checkin Released Not_Distributed
4565365 - R12.PO.B po 12-AUG-08 Checkin Released Not_Distributed
4565368 - R12.ICX.B icx 11-AUG-08 Checkin Released Not_Distributed
4565370 - R12.CHV.B chv 11-AUG-08 Checkin Released Not_Distributed
4577103 - R12.POA.B poa 11-AUG-08 Checkin Released Not_Distributed
6652362 - R12.POM.B pom 11-AUG-08 Checkin Released Not_Distributed
5915303 - R12.BIS_PF.B bis_pf 13-AUG-08 Checkin Released Not_Distributed
6664110 - R12.BIS.B bis 11-AUG-08 Checkin Released Not_Distributed
6664204 - R12.BSC.B bsc 11-AUG-08 Checkin Released Not_Distributed
6664239 - R12.EDW.B edw 11-AUG-08 Checkin Released Not_Distributed
6664244 - R12.EWS.B ews 11-AUG-08 Checkin Released Not_Distributed
6430106 - R12.ATG_PF.B atg_pf 12-AUG-08 Checkin Released Not_Distributed
6430051 - R12.AK.B ak 11-AUG-08 Checkin Released Not_Distributed
6430052 - R12.ALR.B alr 11-AUG-08 Checkin Released Not_Distributed
6430059 - R12.AZ.B az 11-AUG-08 Checkin Released Not_Distributed
6430060 - R12.BNE.B bne 11-AUG-08 Checkin Released Not_Distributed
6430064 - R12.EC.B ec 11-AUG-08 Checkin Released Not_Distributed
6430070 - R12.FND.B fnd 11-AUG-08 Checkin Released Not_Distributed
6430094 - R12.JTA.B jta 11-AUG-08 Checkin Released Not_Distributed
6430095 - R12.FRM.B frm 11-AUG-08 Checkin Released Not_Distributed
6430099 - R12.UMX.B umx 11-AUG-08 Checkin Released Not_Distributed
6430101 - R12.JTF.B jtf 11-AUG-08 Checkin Released Not_Distributed
6430103 - R12.XDO.B xdo 11-AUG-08 Checkin Released Not_Distributed
6430145 - R12.TXK.B txk 11-AUG-08 Checkin Released Not_Distributed
6603330 - R12.HR_PF.B hr_pf 13-AUG-08 Checkin Released Not_Distributed
6633693 - R12.IZU.B izu 12-AUG-08 Checkin Released Not_Distributed
6658964 - R12.SCM_PF.B scm_pf 13-AUG-08 Checkin Released Not_Distributed
6663753 - R12.CC_PF.B cc_pf 13-AUG-08 Checkin Released Not_Distributed
6664666 - R12.PJ_PF.B pj_pf 13-AUG-08 Checkin Released Not_Distributed
7307198 - R12.ATG_PF.B.1 atg_pf 07-APR-09 Checkin Released Not_Distributed
7307224 - R12.FND.B.1 fnd 07-APR-09 Checkin Released Not_Distributed
7307331 - R12.AK.B.1 ak 07-APR-09 Checkin Released Not_Distributed
7310220 - R12.ALR.B.1 alr 07-APR-09 Checkin Released Not_Distributed
7310223 - R12.AZ.B.1 az 07-APR-09 Checkin Released Not_Distributed
7310227 - R12.BNE.B.1 bne 07-APR-09 Checkin Released Not_Distributed
7310236 - R12.EC.B.1 ec 07-APR-09 Checkin Released Not_Distributed
7310261 - R12.JTA.B.1 jta 07-APR-09 Checkin Released Not_Distributed
7310264 - R12.FRM.B.1 frm 07-APR-09 Checkin Released Not_Distributed
7310266 - R12.UMX.B.1 umx 07-APR-09 Checkin Released Not_Distributed
7310271 - R12.JTF.B.1 jtf 07-APR-09 Checkin Released Not_Distributed
7310274 - R12.XDO.B.1 xdo 07-APR-09 Checkin Released Not_Distributed
7310275 - R12.TXK.B.1 txk 07-APR-09 Checkin Released Not_Distributed
7389432 - R12.CC_PF.B.1 cc_pf 09-APR-09 Checkin Released Not_Distributed
7387725 - R12.MAS_PF.B.1 mas_pf 08-APR-09 Checkin Released Not_Distributed
7389406 - R12.HZ.B.1 hz 08-APR-09 Checkin Released Not_Distributed
7443557 - R12.IMC.B.1 imc 07-APR-09 Checkin Released Not_Distributed
7443558 - R12.CCT.B.1 cct 07-APR-09 Checkin Released Not_Distributed
7443559 - R12.JTH.B.1 jth 08-APR-09 Checkin Released Not_Distributed
7443560 - R12.JTO.B.1 jto 08-APR-09 Checkin Released Not_Distributed
7443561 - R12.BIX.B.1 bix 08-APR-09 Checkin Released Not_Distributed
7443562 - R12.BIC.B.1 bic 08-APR-09 Checkin Released Not_Distributed
7443563 - R12.IES.B.1 ies 07-APR-09 Checkin Released Not_Distributed
7443564 - R12.IEU.B.1 ieu 07-APR-09 Checkin Released Not_Distributed
7443565 - R12.IEO.B.1 ieo 07-APR-09 Checkin Released Not_Distributed
7443566 - R12.IEM.B.1 iem 07-APR-09 Checkin Released Not_Distributed
7443567 - R12.IEC.B.1 iec 07-APR-09 Checkin Released Not_Distributed
7443568 - R12.IEB.B.1 ieb 07-APR-09 Checkin Released Not_Distributed
7446042 - R12.SRV_PF.B.1 srv_pf 08-APR-09 Checkin Released Not_Distributed
7430737 - R12.IZU.B.1 izu 07-APR-09 Checkin Released Not_Distributed
7446767 - R12.HR_PF.B.1 hr_pf 09-APR-09 Checkin Released Not_Distributed
7457039 - R12.DT.B.1 dt 08-APR-09 Checkin Released Not_Distributed
7457041 - R12.PQH.B.1 pqh 08-APR-09 Checkin Released Not_Distributed
7457042 - R12.PAY.B.1 pay 08-APR-09 Checkin Released Not_Distributed
7457043 - R12.PER.B.1 per 08-APR-09 Checkin Released Not_Distributed
7457044 - R12.HXT.B.1 hxt 08-APR-09 Checkin Released Not_Distributed
7457045 - R12.BEN.B.1 ben 08-APR-09 Checkin Released Not_Distributed
7457046 - R12.SSP.B.1 ssp 08-APR-09 Checkin Released Not_Distributed
7457047 - R12.FF.B.1 ff 08-APR-09 Checkin Released Not_Distributed
7457049 - R12.AME.B.1 ame 08-APR-09 Checkin Released Not_Distributed
7457050 - R12.IRC.B.1 irc 08-APR-09 Checkin Released Not_Distributed
7457051 - R12.PQP.B.1 pqp 08-APR-09 Checkin Released Not_Distributed
7457052 - R12.HRI.B.1 hri 08-APR-09 Checkin Released Not_Distributed
7457053 - R12.PSP.B.1 psp 08-APR-09 Checkin Released Not_Distributed
7457054 - R12.OTA.B.1 ota 08-APR-09 Checkin Released Not_Distributed
7457056 - R12.GHR.B.1 ghr 08-APR-09 Checkin Released Not_Distributed
7456310 - R12.SCM_PF.B.1 scm_pf 09-APR-09 Checkin Released Not_Distributed
7455684 - R12.RRS.B.1 rrs 08-APR-09 Checkin Released Not_Distributed
7456322 - R12.DMF_PF.B.1 dmf_pf 09-APR-09 Checkin Released Not_Distributed
7456494 - R12.CLN.C.1 cln 08-APR-09 Checkin Released Not_Distributed
7456499 - R12.ITG.B.1 itg 08-APR-09 Checkin Released Not_Distributed
7456505 - R12.CZ.B.1 cz 08-APR-09 Checkin Released Not_Distributed
7456509 - R12.PMI.B.1 pmi 08-APR-09 Checkin Released Not_Distributed
7456535 - R12.CSI.B.1 csi 08-APR-09 Checkin Released Not_Distributed
7456539 - R12.CSE.B.1 cse 08-APR-09 Checkin Released Not_Distributed
7456753 - R12.OPM_PF.B.1 opm_pf 09-APR-09 Checkin Released Not_Distributed
7456815 - R12.OM_PF.B.1 om_pf 09-APR-09 Checkin Released Not_Distributed
7458382 - R12.AHL.B.1 ahl 08-APR-09 Checkin Released Not_Distributed
7458383 - R12.CSD.B.1 csd 08-APR-09 Checkin Released Not_Distributed
7458396 - R12.OK_PF.B.1 ok_pf 09-APR-09 Checkin Released Not_Distributed
7458412 - R12.SHT.B.1 sht 08-APR-09 Checkin Released Not_Distributed
7458416 - R12.SCP_PF.B.1 scp_pf 09-APR-09 Checkin Released Not_Distributed
7459212 - R12.WSH.B.1 wsh 08-APR-09 Checkin Released Not_Distributed
7459476 - R12.INL.B.1 inl 08-APR-09 Checkin Released Not_Distributed
7459516 - R12.RLM.B.1 rlm 08-APR-09 Checkin Released Not_Distributed
7459533 - R12.VEA.B.1 vea 08-APR-09 Checkin Released Not_Distributed
7459535 - R12.PLM_PF.B.1 plm_pf 09-APR-09 Checkin Released Not_Distributed
7456340 - R12.PJ_PF.B.1 pj_pf 08-APR-09 Checkin Released Not_Distributed
7456248 - R12.PA.B.1 pa 08-APR-09 Checkin Released Not_Distributed
7456251 - R12.PJI.B.1 pji 08-APR-09 Checkin Released Not_Distributed
7456254 - R12.GMS.B.1 gms 08-APR-09 Checkin Released Not_Distributed
7456260 - R12.FPA.B.1 fpa 08-APR-09 Checkin Released Not_Distributed
7456265 - R12.PJF.B.1 pjf 08-APR-09 Checkin Released Not_Distributed
7456273 - R12.IPA.B.1 ipa 08-APR-09 Checkin Released Not_Distributed
7456280 - R12.PN.B.1 pn 08-APR-09 Checkin Released Not_Distributed
7456295 - R12.PJB.B.1 pjb 08-APR-09 Checkin Released Not_Distributed
7456302 - R12.PJR.B.1 pjr 08-APR-09 Checkin Released Not_Distributed
7456315 - R12.PJC.B.1 pjc 08-APR-09 Checkin Released Not_Distributed
7456321 - R12.PJT.B.1 pjt 08-APR-09 Checkin Released Not_Distributed
7457316 - R12.PJL.B.1 pjl 08-APR-09 Checkin Released Not_Distributed
7456813 - R12.PRC_PF.B.1 prc_pf 09-APR-09 Checkin Released Not_Distributed
7443550 - R12.ICX.B.1 icx 08-APR-09 Checkin Released Not_Distributed
7443551 - R12.CHV.B.1 chv 08-APR-09 Checkin Released Not_Distributed
7443553 - R12.POS.B.1 pos 08-APR-09 Checkin Released Not_Distributed
7443554 - R12.POM.B.1 pom 08-APR-09 Checkin Released Not_Distributed
7443555 - R12.PON.B.1 pon 08-APR-09 Checkin Released Not_Distributed
7443556 - R12.PO.B.1 po 08-APR-09 Checkin Released Not_Distributed
7456722 - R12.POA.B.1 poa 08-APR-09 Checkin Released Not_Distributed
7457000 - R12.FIN_PF.B.1 fin_pf 08-APR-09 Checkin Released Not_Distributed
7456466 - R12.AMW.B.1 amw 08-APR-09 Checkin Released Not_Distributed
7456542 - R12.BPA.B.1 bpa 08-APR-09 Checkin Released Not_Distributed
7456544 - R12.AP.B.1 ap 08-APR-09 Checkin Released Not_Distributed
7456560 - R12.CE.B.1 ce 08-APR-09 Checkin Released Not_Distributed
7456573 - R12.FII.B.1 fii 08-APR-09 Checkin Released Not_Distributed
7456581 - R12.IBY.B.1 iby 08-APR-09 Checkin Released Not_Distributed
7456596 - R12.IGW.B.1 igw 08-APR-09 Checkin Released Not_Distributed
7456621 - R12.JG.B.1 jg 08-APR-09 Checkin Released Not_Distributed
7456629 - R12.LNS.B.1 lns 08-APR-09 Checkin Released Not_Distributed
7456640 - R12.OKL.B.1 okl 08-APR-09 Checkin Released Not_Distributed
7456650 - R12.QRM.B.1 qrm 08-APR-09 Checkin Released Not_Distributed
7456658 - R12.RCI.B.1 rci 08-APR-09 Checkin Released Not_Distributed
7456661 - R12.ITA.B.1 ita 08-APR-09 Checkin Released Not_Distributed
7456667 - R12.XTR.B.1 xtr 08-APR-09 Checkin Released Not_Distributed
7456676 - R12.SEM_PF.B.1 sem_pf 08-APR-09 Checkin Released Not_Distributed
7456696 - R12.JAI.B.1 jai 08-APR-09 Checkin Released Not_Distributed
7456715 - R12.OCM.B.1 ocm 08-APR-09 Checkin Released Not_Distributed
7456818 - R12.AR.B.1 ar 08-APR-09 Checkin Released Not_Distributed
7456850 - R12.IGI.B.1 igi 08-APR-09 Checkin Released Not_Distributed
7456857 - R12.JA.B.1 ja 08-APR-09 Checkin Released Not_Distributed
7456865 - R12.JE.B.1 je 08-APR-09 Checkin Released Not_Distributed
7456868 - R12.OIE.B.1 oie 08-APR-09 Checkin Released Not_Distributed
7456877 - R12.OIR.B.1 oir 08-APR-09 Checkin Released Not_Distributed
7456884 - R12.PSA.B.1 psa 08-APR-09 Checkin Released Not_Distributed
7456890 - R12.PSB.B.1 psb 08-APR-09 Checkin Released Not_Distributed
7456895 - R12.XLE.B.1 xle 08-APR-09 Checkin Released Not_Distributed
7456901 - R12.ZX.B.1 zx 08-APR-09 Checkin Released Not_Distributed
7456957 - R12.FA.B.1 fa 08-APR-09 Checkin Released Not_Distributed
7456973 - R12.FUN.B.1 fun 08-APR-09 Checkin Released Not_Distributed
7456977 - R12.FV.B.1 fv 08-APR-09 Checkin Released Not_Distributed
7456985 - R12.GL.B.1 gl 08-APR-09 Checkin Released Not_Distributed
7456988 - R12.IA.B.1 ia 08-APR-09 Checkin Released Not_Distributed
7457084 - R12.IEX.B.1 iex 08-APR-09 Checkin Released Not_Distributed
7457095 - R12.RG.B.1 rg 08-APR-09 Checkin Released Not_Distributed
7457096 - R12.XLA.B.1 xla 08-APR-09 Checkin Released Not_Distributed
7458599 - R12.BIS_PF.B.1 bis_pf 08-APR-09 Checkin Released Not_Distributed
7458428 - R12.BIS.B.1 bis 07-APR-09 Checkin Released Not_Distributed
7458474 - R12.BSC.B.1 bsc 07-APR-09 Checkin Released Not_Distributed
7458506 - R12.EDW.B.1 edw 07-APR-09 Checkin Released Not_Distributed
7458569 - R12.EWS.B.1 ews 07-APR-09 Checkin Released Not_Distributed
" > ${OUT_DIR}/1211_Base.txt

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

echo "
7651091 - R12.ATG_PF.B.2 atg_pf 09/12/16 Checkin Released By_Metalink
7651104 - R12.FND.B.2 fnd 09/12/15 Checkin Released Not_Distributed
7651136 - R12.AK.B.2 ak 09/12/15 Checkin Released Not_Distributed
7651141 - R12.ALR.B.2 alr 09/12/15 Checkin Released Not_Distributed
7651144 - R12.AZ.B.2 az 09/12/15 Checkin Released Not_Distributed
7651146 - R12.BNE.B.2 bne 09/12/15 Checkin Released Not_Distributed
7651149 - R12.EC.B.2 ec 09/12/15 Checkin Released Not_Distributed
7651152 - R12.JTA.B.2 jta 09/12/15 Checkin Released Not_Distributed
7651154 - R12.FRM.B.2 frm 09/12/15 Checkin Released Not_Distributed
7651155 - R12.UMX.B.2 umx 09/12/15 Checkin Released Not_Distributed
7651157 - R12.JTF.B.2 jtf 09/12/15 Checkin Released Not_Distributed
7651160 - R12.XDO.B.2 xdo 09/12/15 Checkin Released Not_Distributed
7651166 - R12.TXK.B.2 txk 09/12/15 Checkin Released By_Metalink
7717707 - R12.IZU.B.2 izu 09/12/16 Checkin Released By_Metalink
8337373 - R12.HR_PF.B.2 hr_pf 09/12/16 Checkin Released By_Metalink
8496461 - R12.DT.B.2 dt 09/12/15 Checkin Released Not_Distributed
8496464 - R12.PQH.B.2 pqh 09/12/15 Checkin Released Not_Distributed
8496466 - R12.PAY.B.2 pay 09/12/15 Checkin Released Not_Distributed
8496467 - R12.PER.B.2 per 09/12/15 Checkin Released Not_Distributed
8496470 - R12.HXT.B.2 hxt 09/12/15 Checkin Released Not_Distributed
8496471 - R12.BEN.B.2 ben 09/12/15 Checkin Released Not_Distributed
8496472 - R12.SSP.B.2 ssp 09/12/15 Checkin Released Not_Distributed
8496473 - R12.FF.B.2 ff 09/12/15 Checkin Released Not_Distributed
8496475 - R12.AME.B.2 ame 09/12/15 Checkin Released Not_Distributed
8496476 - R12.IRC.B.2 irc 09/12/15 Checkin Released Not_Distributed
8496478 - R12.PQP.B.2 pqp 09/12/15 Checkin Released Not_Distributed
8496479 - R12.HRI.B.2 hri 09/12/15 Checkin Released Not_Distributed
8496480 - R12.PSP.B.2 psp 09/12/15 Checkin Released Not_Distributed
8496481 - R12.OTA.B.2 ota 09/12/15 Checkin Released Not_Distributed
8496482 - R12.GHR.B.2 ghr 09/12/15 Checkin Released Not_Distributed
8402900 - R12.FIN_PF.B.2 fin_pf 09/12/16 Checkin Released By_Metalink
8509304 - R12.SEM_PF.B.2 sem_pf 09/12/16 Checkin Released Not_Distributed
8516496 - R12.AP.B.2 ap 09/12/15 Checkin Released Not_Distributed
8516507 - R12.CE.B.2 ce 09/12/15 Checkin Released Not_Distributed
8516509 - R12.IBY.B.2 iby 09/12/15 Checkin Released Not_Distributed
8516511 - R12.IGW.B.2 igw 09/12/15 Checkin Released Not_Distributed
8516512 - R12.JG.B.2 jg 09/12/15 Checkin Released Not_Distributed
8516519 - R12.LNS.B.2 lns 09/12/15 Checkin Released Not_Distributed
8516520 - R12.OKL.B.2 okl 09/12/15 Checkin Released Not_Distributed
8516524 - R12.QRM.B.2 qrm 09/12/15 Checkin Released Not_Distributed
8516528 - R12.RCI.B.2 rci 09/12/15 Checkin Released Not_Distributed
8516533 - R12.XTR.B.2 xtr 09/12/15 Checkin Released Not_Distributed
8516614 - R12.FA.B.2 fa 09/12/15 Checkin Released Not_Distributed
8516707 - R12.FUN.B.2 fun 09/12/15 Checkin Released Not_Distributed
8516714 - R12.FV.B.2 fv 09/12/15 Checkin Released Not_Distributed
8516733 - R12.GL.B.2 gl 09/12/15 Checkin Released Not_Distributed
8516740 - R12.IA.B.2 ia 09/12/15 Checkin Released Not_Distributed
8516753 - R12.IEX.B.2 iex 09/12/15 Checkin Released Not_Distributed
8516761 - R12.RG.B.2 rg 09/12/15 Checkin Released Not_Distributed
8516768 - R12.XLA.B.2 xla 09/12/15 Checkin Released Not_Distributed
8516935 - R12.AMW.B.2 amw 09/12/15 Checkin Released Not_Distributed
8516954 - R12.AR.B.2 ar 09/12/15 Checkin Released Not_Distributed
8516967 - R12.BPA.B.2 bpa 09/12/15 Checkin Released Not_Distributed
8516971 - R12.IGI.B.2 igi 09/12/15 Checkin Released Not_Distributed
8516983 - R12.JA.B.2 ja 09/12/15 Checkin Released Not_Distributed
8516988 - R12.FII.B.2 fii 09/12/15 Checkin Released Not_Distributed
8516994 - R12.JE.B.2 je 09/12/15 Checkin Released Not_Distributed
8517003 - R12.OIE.B.2 oie 09/12/15 Checkin Released Not_Distributed
8517010 - R12.OIR.B.2 oir 09/12/15 Checkin Released Not_Distributed
8517013 - R12.PSA.B.2 psa 09/12/15 Checkin Released Not_Distributed
8517019 - R12.PSB.B.2 psb 09/12/15 Checkin Released Not_Distributed
8517026 - R12.ITA.B.2 ita 09/12/15 Checkin Released Not_Distributed
8517029 - R12.XLE.B.2 xle 09/12/15 Checkin Released Not_Distributed
8517032 - R12.ZX.B.2 zx 09/12/15 Checkin Released Not_Distributed
8517036 - R12.JAI.B.2 jai 09/12/15 Checkin Released Not_Distributed
8517042 - R12.OCM.B.2 ocm 09/12/15 Checkin Released Not_Distributed
8517089 - R12.JL.B.2 jl 09/12/15 Checkin Released Not_Distributed
8504800 - R12.PJ_PF.B.2 pj_pf 09/12/16 Checkin Released By_Metalink
8516727 - R12.PJT.B.2 pjt 09/12/15 Checkin Released Not_Distributed
8516732 - R12.PJC.B.2 pjc 09/12/15 Checkin Released Not_Distributed
8516735 - R12.PJR.B.2 pjr 09/12/15 Checkin Released Not_Distributed
8516742 - R12.PJB.B.2 pjb 09/12/15 Checkin Released Not_Distributed
8516750 - R12.PJL.B.2 pjl 09/12/15 Checkin Released Not_Distributed
8516756 - R12.PN.B.2 pn 09/12/15 Checkin Released Not_Distributed
8516762 - R12.IPA.B.2 ipa 09/12/15 Checkin Released Not_Distributed
8516769 - R12.PJF.B.2 pjf 09/12/15 Checkin Released Not_Distributed
8516782 - R12.FPA.B.2 fpa 09/12/15 Checkin Released Not_Distributed
8516789 - R12.GMS.B.2 gms 09/12/15 Checkin Released Not_Distributed
8516801 - R12.PJI.B.2 pji 09/12/15 Checkin Released Not_Distributed
8516814 - R12.PA.B.2 pa 09/12/15 Checkin Released Not_Distributed
8506830 - R12.SCM_PF.B.2 scm_pf 09/12/16 Checkin Released By_Metalink
8506799 - R12.DMF_PF.B.2 dmf_pf 09/12/16 Checkin Released Not_Distributed
8506818 - R12.RRS.B.2 rrs 09/12/15 Checkin Released Not_Distributed
8507582 - R12.MTH.B.2 mth 09/12/15 Checkin Released Not_Distributed
8507589 - R12.OM_PF.B.2 om_pf 09/12/16 Checkin Released Not_Distributed
8507590 - R12.OK_PF.B.2 ok_pf 09/12/16 Checkin Released Not_Distributed
8507592 - R12.SCP_PF.B.2 scp_pf 09/12/16 Checkin Released By_Metalink
8508441 - R12.AHL.B.2 ahl 09/12/15 Checkin Released Not_Distributed
8508493 - R12.CSD.B.2 csd 09/12/15 Checkin Released Not_Distributed
8508507 - R12.CSE.B.2 cse 09/12/15 Checkin Released Not_Distributed
8508514 - R12.CSI.B.2 csi 09/12/15 Checkin Released Not_Distributed
8508581 - R12.CZ.B.2 cz 09/12/15 Checkin Released Not_Distributed
8508622 - R12.INL.B.2 inl 09/12/15 Checkin Released Not_Distributed
8508633 - R12.RLM.B.2 rlm 09/12/15 Checkin Released Not_Distributed
8508645 - R12.VEA.B.2 vea 09/12/15 Checkin Released Not_Distributed
8508651 - R12.WSH.B.2 wsh 09/12/15 Checkin Released Not_Distributed
8508666 - R12.CLN.C.2 cln 09/12/15 Checkin Released Not_Distributed
8508674 - R12.PMI.B.2 pmi 09/12/15 Checkin Released Not_Distributed
8508707 - R12.ITG.B.2 itg 09/12/15 Checkin Released Not_Distributed
8508716 - R12.OPM_PF.B.2 opm_pf 09/12/16 Checkin Released Not_Distributed
8508938 - R12.PLM_PF.B.2 plm_pf 09/12/16 Checkin Released Not_Distributed
8522000 - R12.CC_PF.B.2 cc_pf 09/12/17 Checkin Released By_Metalink
8508700 - R12.MAS_PF.B.2 mas_pf 09/12/16 Checkin Released Not_Distributed
8509234 - R12.SRV_PF.B.2 srv_pf 09/12/16 Checkin Released Not_Distributed
8521983 - R12.IEB.B.2 ieb 09/12/15 Checkin Released Not_Distributed
8521984 - R12.IEC.B.2 iec 09/12/15 Checkin Released Not_Distributed
8521985 - R12.IEM.B.2 iem 09/12/15 Checkin Released Not_Distributed
8521987 - R12.IEO.B.2 ieo 09/12/15 Checkin Released Not_Distributed
8521988 - R12.IEU.B.2 ieu 09/12/15 Checkin Released Not_Distributed
8521989 - R12.IES.B.2 ies 09/12/15 Checkin Released Not_Distributed
8521990 - R12.BIC.B.2 bic 09/12/15 Checkin Released Not_Distributed
8521991 - R12.BIX.B.2 bix 09/12/15 Checkin Released Not_Distributed
8521992 - R12.JTO.B.2 jto 09/12/15 Checkin Released Not_Distributed
8521993 - R12.JTH.B.2 jth 09/12/15 Checkin Released Not_Distributed
8521994 - R12.CCT.B.2 cct 09/12/15 Checkin Released Not_Distributed
8521995 - R12.IMC.B.2 imc 09/12/15 Checkin Released Not_Distributed
8521996 - R12.HZ.B.2 hz 09/12/15 Checkin Released Not_Distributed
8522002 - R12.PRC_PF.B.2 prc_pf 09/12/17 Checkin Released By_Metalink
8521997 - R12.PO.B.2 po 09/12/15 Checkin Released Not_Distributed
8522001 - R12.PON.B.2 pon 09/12/15 Checkin Released Not_Distributed
8522003 - R12.ICX.B.2 icx 09/12/15 Checkin Released Not_Distributed
8522004 - R12.CHV.B.2 chv 09/12/15 Checkin Released Not_Distributed
8522016 - R12.POM.B.2 pom 09/12/15 Checkin Released Not_Distributed
8522023 - R12.POA.B.2 poa 09/12/15 Checkin Released Not_Distributed
8530556 - R12.POS.B.2 pos 09/12/15 Checkin Released Not_Distributed
8525503 - R12.BIS_PF.B.2 bis_pf 09/12/17 Checkin Released Not_Distributed
8525701 - R12.EDW.B.2 edw 09/12/15 Checkin Released Not_Distributed
8525702 - R12.EWS.B.2 ews 09/12/15 Checkin Released Not_Distributed
8525703 - R12.BIS.B.2 bis 09/12/15 Checkin Released Not_Distributed
8525704 - R12.BSC.B.2 bsc 09/12/15 Checkin Released Not_Distributed
" > ${OUT_DIR}/1212_Base.txt

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

echo "
7651091 - R12.ATG_PF.B.2 atg_pf 09/12/16 Checkin Released By_Metalink
7717707 - R12.IZU.B.2 izu 09/12/16 Checkin Released By_Metalink
8337373 - R12.HR_PF.B.2 hr_pf 09/12/16 Checkin Released By_Metalink
8402900 - R12.FIN_PF.B.2 fin_pf 09/12/16 Checkin Released By_Metalink
8504800 - R12.PJ_PF.B.2 pj_pf 09/12/16 Checkin Released By_Metalink
8506830 - R12.SCM_PF.B.2 scm_pf 09/12/16 Checkin Released By_Metalink
8522000 - R12.CC_PF.B.2 cc_pf 09/12/17 Checkin Released By_Metalink
8522002 - R12.PRC_PF.B.2 prc_pf 09/12/17 Checkin Released By_Metalink
8525503 - R12.BIS_PF.B.2 bis_pf 09/12/17 Checkin Released Not_Distributed
8919491 - R12.ATG_PF.B.3 atg_pf 10/07/08 Checkin Released By_Metalink
7651091 - R12.ATG_PF.B.2 atg_pf 09/12/16 Checkin Released By_Metalink
8919473 - R12.FND.B.3 fnd 10/07/06 Checkin Released Not_Distributed
8919474 - R12.AK.B.3 ak 10/07/06 Checkin Released Not_Distributed
8919475 - R12.ALR.B.3 alr 10/07/06 Checkin Released Not_Distributed
8919476 - R12.AZ.B.3 az 10/07/06 Checkin Released Not_Distributed
8919478 - R12.BNE.B.3 bne 10/07/06 Checkin Released Not_Distributed
8919479 - R12.EC.B.3 ec 10/07/06 Checkin Released Not_Distributed
8919480 - R12.JTA.B.3 jta 10/07/06 Checkin Released Not_Distributed
8919484 - R12.FRM.B.3 frm 10/07/06 Checkin Released Not_Distributed
8919485 - R12.UMX.B.3 umx 10/07/06 Checkin Released Not_Distributed
8919486 - R12.JTF.B.3 jtf 10/06/07 Checkin Released Not_Distributed
8919488 - R12.XDO.B.3 xdo 10/07/06 Checkin Released Not_Distributed
8919489 - R12.TXK.B.3 txk 10/07/08 Checkin Released By_Metalink
9114911 - R12.HR_PF.B.3 hr_pf 10/07/08 Checkin Released By_Metalink
8337373 - R12.HR_PF.B.2 hr_pf 09/12/16 Checkin Released By_Metalink
9244265 - R12.DT.B.3 dt 10/07/07 Checkin Released Not_Distributed
9244266 - R12.PQH.B.3 pqh 10/07/07 Checkin Released Not_Distributed
9244267 - R12.PAY.B.3 pay 10/07/07 Checkin Released Not_Distributed
9244268 - R12.PER.B.3 per 10/07/07 Checkin Released Not_Distributed
9244269 - R12.HXT.B.3 hxt 10/07/07 Checkin Released Not_Distributed
9244270 - R12.BEN.B.3 ben 10/07/07 Checkin Released Not_Distributed
9244271 - R12.SSP.B.3 ssp 10/07/07 Checkin Released Not_Distributed
9244272 - R12.FF.B.3 ff 10/07/07 Checkin Released Not_Distributed
9244273 - R12.AME.B.3 ame 10/07/07 Checkin Released Not_Distributed
9244274 - R12.IRC.B.3 irc 10/07/07 Checkin Released Not_Distributed
9244276 - R12.PQP.B.3 pqp 10/07/07 Checkin Released Not_Distributed
9244278 - R12.HRI.B.3 hri 10/07/07 Checkin Released Not_Distributed
9244279 - R12.PSP.B.3 psp 10/07/07 Checkin Released Not_Distributed
9244281 - R12.OTA.B.3 ota 10/07/07 Checkin Released Not_Distributed
9244282 - R12.GHR.B.3 ghr 10/07/07 Checkin Released Not_Distributed
9147711 - R12.PJ_PF.B.3 pj_pf 10/08/19 Checkin Released By_Metalink
8504800 - R12.PJ_PF.B.2 pj_pf 09/12/16 Checkin Released By_Metalink
9246511 - R12.PN.B.3 pn 10/08/17 Checkin Released Not_Distributed
9246512 - R12.IPA.B.3 ipa 10/08/17 Checkin Released Not_Distributed
9246513 - R12.PJI.B.3 pji 10/08/17 Checkin Released Not_Distributed
9246515 - R12.PA.B.3 pa 10/08/17 Checkin Released Not_Distributed
9246516 - R12.PJL.B.3 pjl 10/08/17 Checkin Released Not_Distributed
9246517 - R12.FPA.B.3 fpa 10/08/17 Checkin Released Not_Distributed
9246518 - R12.GMS.B.3 gms 10/08/17 Checkin Released Not_Distributed
9246519 - R12.PJB.B.3 pjb 10/08/17 Checkin Released Not_Distributed
9246520 - R12.PJR.B.3 pjr 10/08/17 Checkin Released Not_Distributed
9246521 - R12.PJC.B.3 pjc 10/08/17 Checkin Released Not_Distributed
9246522 - R12.PJT.B.3 pjt 10/08/17 Checkin Released Not_Distributed
9246523 - R12.PJF.B.3 pjf 10/08/17 Checkin Released Not_Distributed
9147733 - R12.FIN_PF.B.3 fin_pf 10/08/18 Checkin Released By_Metalink
8402900 - R12.FIN_PF.B.2 fin_pf 09/12/16 Checkin Released By_Metalink
9244829 - R12.IEX.B.3 iex 10/08/17 Checkin Released Not_Distributed
9244830 - R12.OCM.B.3 ocm 10/08/17 Checkin Released Not_Distributed
9244831 - R12.IGW.B.3 igw 10/08/17 Checkin Released Not_Distributed
9244832 - R12.XTR.B.3 xtr 10/08/17 Checkin Released Not_Distributed
9244833 - R12.OIE.B.3 oie 10/08/17 Checkin Released Not_Distributed
9244834 - R12.QRM.B.3 qrm 10/08/17 Checkin Released Not_Distributed
9244835 - R12.JAI.B.3 jai 10/08/17 Checkin Released Not_Distributed
9244838 - R12.ZX.B.3 zx 10/08/17 Checkin Released Not_Distributed
9244841 - R12.FA.B.3 fa 10/08/17 Checkin Released Not_Distributed
9244842 - R12.FII.B.3 fii 10/08/17 Checkin Released Not_Distributed
9244843 - R12.OKL.B.3 okl 10/08/17 Checkin Released Not_Distributed
9244845 - R12.OIR.B.3 oir 10/08/17 Checkin Released Not_Distributed
9244846 - R12.JA.B.3 ja 10/08/17 Checkin Released Not_Distributed
9244847 - R12.LNS.B.3 lns 10/08/17 Checkin Released Not_Distributed
9244848 - R12.JE.B.3 je 10/08/17 Checkin Released Not_Distributed
9244849 - R12.JG.B.3 jg 10/08/17 Checkin Released Not_Distributed
9244850 - R12.IBY.B.3 iby 10/08/17 Checkin Released Not_Distributed
9244851 - R12.JL.B.3 jl 10/08/17 Checkin Released Not_Distributed
9244853 - R12.FV.B.3 fv 10/08/17 Checkin Released Not_Distributed
9244854 - R12.XLA.B.3 xla 10/08/17 Checkin Released Not_Distributed
9244857 - R12.ITA.B.3 ita 10/08/17 Checkin Released Not_Distributed
9244858 - R12.RCI.B.3 rci 10/08/17 Checkin Released Not_Distributed
9244859 - R12.XLE.B.3 xle 10/08/17 Checkin Released Not_Distributed
9244861 - R12.BPA.B.3 bpa 10/08/17 Checkin Released Not_Distributed
9244862 - R12.CE.B.3 ce 10/08/17 Checkin Released Not_Distributed
9244863 - R12.RG.B.3 rg 10/08/17 Checkin Released Not_Distributed
9244864 - R12.FUN.B.3 fun 10/08/17 Checkin Released Not_Distributed
9244867 - R12.AP.B.3 ap 10/08/17 Checkin Released Not_Distributed
9244869 - R12.IA.B.3 ia 10/08/17 Checkin Released Not_Distributed
9244870 - R12.AR.B.3 ar 10/08/17 Checkin Released Not_Distributed
9244871 - R12.IGI.B.3 igi 10/08/17 Checkin Released Not_Distributed
9244873 - R12.AMW.B.3 amw 10/08/17 Checkin Released Not_Distributed
9244874 - R12.GL.B.3 gl 10/08/17 Checkin Released Not_Distributed
9244875 - R12.PSA.B.3 psa 10/08/17 Checkin Released Not_Distributed
9244876 - R12.PSB.B.3 psb 10/08/17 Checkin Released Not_Distributed
9246396 - R12.SEM_PF.B.3 sem_pf 10/08/18 Checkin Released Not_Distributed
9239092 - R12.IZU.B.3 izu 10/08/17 Checkin Released By_Metalink
7717707 - R12.IZU.B.2 izu 09/12/16 Checkin Released By_Metalink
9245674 - R12.SCM_PF.B.3 scm_pf 10/08/19 Checkin Released By_Metalink
8506830 - R12.SCM_PF.B.2 scm_pf 09/12/16 Checkin Released By_Metalink
9242188 - R12.DMF_PF.B.3 dmf_pf 10/08/19 Checkin Released Not_Distributed
9242231 - R12.RRS.B.3 rrs 10/08/18 Checkin Released Not_Distributed
9242234 - R12.CSI.B.3 csi 10/08/18 Checkin Released Not_Distributed
9242263 - R12.CSE.B.3 cse 10/08/18 Checkin Released Not_Distributed
9244066 - R12.OK_PF.B.3 ok_pf 10/08/19 Checkin Released Not_Distributed
9244153 - R12.CZ.B.3 cz 10/08/18 Checkin Released Not_Distributed
9244158 - R12.OM_PF.B.3 om_pf 10/08/18 Checkin Released Not_Distributed
9244435 - R12.WSH.B.3 wsh 10/08/18 Checkin Released Not_Distributed
9244459 - R12.INL.B.3 inl 10/08/18 Checkin Released Not_Distributed
9244553 - R12.RLM.B.3 rlm 10/08/18 Checkin Released Not_Distributed
9244566 - R12.VEA.B.3 vea 10/08/18 Checkin Released Not_Distributed
9244769 - R12.PLM_PF.B.3 plm_pf 10/08/18 Checkin Released Not_Distributed
9245524 - R12.MTH.B.3 mth 10/08/18 Checkin Released Not_Distributed
9245525 - R12.SCP_PF.B.3 scp_pf 10/08/19 Checkin Released By_Metalink
9245539 - R12.AHL.B.3 ahl 10/08/18 Checkin Released Not_Distributed
9245541 - R12.CSD.B.3 csd 10/08/18 Checkin Released Not_Distributed
9245550 - R12.OPM_PF.B.3 opm_pf 10/08/19 Checkin Released Not_Distributed
9245562 - R12.PMI.B.3 pmi 10/08/18 Checkin Released Not_Distributed
9245563 - R12.CLN.C.3 cln 10/08/18 Checkin Released Not_Distributed
9245564 - R12.ITG.B.3 itg 10/08/18 Checkin Released Not_Distributed
9249345 - R12.CC_PF.B.3 cc_pf 10/08/19 Checkin Released By_Metalink
8522000 - R12.CC_PF.B.2 cc_pf 09/12/17 Checkin Released By_Metalink
9244656 - R12.MAS_PF.B.3 mas_pf 10/08/18 Checkin Released Not_Distributed
9249143 - R12.SRV_PF.B.3 srv_pf 10/08/18 Checkin Released Not_Distributed
9249329 - R12.IEB.B.3 ieb 10/08/18 Checkin Released Not_Distributed
9249330 - R12.IEC.B.3 iec 10/08/18 Checkin Released Not_Distributed
9249331 - R12.IEM.B.3 iem 10/08/18 Checkin Released Not_Distributed
9249332 - R12.IEO.B.3 ieo 10/08/18 Checkin Released Not_Distributed
9249333 - R12.IEU.B.3 ieu 10/08/18 Checkin Released Not_Distributed
9249334 - R12.IES.B.3 ies 10/08/18 Checkin Released Not_Distributed
9249336 - R12.BIC.B.3 bic 10/08/18 Checkin Released Not_Distributed
9249337 - R12.BIX.B.3 bix 10/08/18 Checkin Released Not_Distributed
9249338 - R12.JTO.B.3 jto 10/08/18 Checkin Released Not_Distributed
9249339 - R12.JTH.B.3 jth 10/08/18 Checkin Released Not_Distributed
9249340 - R12.CCT.B.3 cct 10/08/18 Checkin Released Not_Distributed
9249342 - R12.IMC.B.3 imc 10/08/18 Checkin Released Not_Distributed
9249344 - R12.HZ.B.3 hz 10/08/18 Checkin Released Not_Distributed
9249354 - R12.PRC_PF.B.3 prc_pf 10/08/19 Checkin Released By_Metalink
8522002 - R12.PRC_PF.B.2 prc_pf 09/12/17 Checkin Released By_Metalink
9249321 - R12.POS.B.3 pos 10/08/18 Checkin Released Not_Distributed
9249322 - R12.POM.B.3 pom 10/08/18 Checkin Released Not_Distributed
9249324 - R12.CHV.B.3 chv 10/08/18 Checkin Released Not_Distributed
9249326 - R12.ICX.B.3 icx 10/08/18 Checkin Released Not_Distributed
9249327 - R12.PON.B.3 pon 10/08/18 Checkin Released Not_Distributed
9249328 - R12.PO.B.3 po 10/08/18 Checkin Released Not_Distributed
9249380 - R12.POA.B.3 poa 10/08/18 Checkin Released Not_Distributed
9251174 - R12.BIS_PF.B.3 bis_pf 10/08/19 Checkin Released Not_Distributed
8525503 - R12.BIS_PF.B.2 bis_pf 09/12/17 Checkin Released Not_Distributed
9250816 - R12.BIS.B.3 bis 10/08/19 Checkin Released Not_Distributed
9251182 - R12.BSC.B.3 bsc 10/08/19 Checkin Released Not_Distributed
9251192 - R12.EDW.B.3 edw 10/08/19 Checkin Released Not_Distributed
9251197 - R12.EWS.B.3 ews 10/08/19 Checkin Released Not_Distributed
" > ${OUT_DIR}/1213_Base.txt

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

##
## End R12 Support
##

REL115_DATE="Jul 7 22:30"

echo "
Patchset

Product Name Bug_number RELEASED_DATE Status


DISTRIBUTION
--------- ---------------- ---------- ----------------- --------------------
-------------------
abm 11i.ABM.E 1950271 01/09/04 14:37:36 Checkin Released By_Dev

abm 11i.ABM.F 2021911 01/11/06 16:10:43 Checkin Released By_Dev

abm 11i.ABM.G.4 3452690 04/02/27 14:18:42 Checkin Released


By_Metalink
ad 11i.AD.E 1945611 01/11/02 14:26:16 Checkin Released
By_Metalink
ad 11i.AD.F 2141471 02/02/21 15:59:35 Checkin Released
By_Metalink
ad 11i.AD.G 2344175 02/11/05 18:32:04 Checkin Released
By_Metalink
ad 11i.AD.H 2673262 03/06/30 17:12:39 Checkin Released
By_Metalink
ad 11i.AD.I.1 4038964 04/12/02 15:45:52 Checkin Released
By_Metalink
ad 11i.AD.I.2 4229931 05/07/27 12:59:29 Checkin Released
By_Metalink
ad 11i.AD.I.2 4337683 05/07/27 13:07:07 Checkin Released
By_Metalink
ad 11i.AD.I.3 4502904 05/09/01 16:36:54 Checkin Released
By_Metalink
ad 11i.AD.I.3 4712847 06/03/29 14:59:45 Checkin Released
Not_Distributed
ad 11i.AD.I.4 4605654 06/03/29 14:52:16 Checkin Released
By_Metalink
ad 11i.AD.I.4 4712852 06/03/29 15:00:47 Checkin Released
By_Metalink
ad 11i.AD.I.5 5161680 07/05/18 05:40:15 Checkin Released
By_Metalink
ad 11i.AD.I.5 5161676 07/05/18 05:41:43 Checkin Released
By_Metalink
ad 11i.AD.I.6 6502079 08/01/18 11:34:16 Checkin Released
By_Metalink
ad 11i.AD.I.6 6502082 08/01/18 11:35:08 Checkin Released
By_Metalink
ad 11i.AD.I.7 7429248 09/07/28 08:50:34 Checkin Released
By_Metalink
ad 11i.AD.I.7 7429271 09/07/28 08:52:10 Checkin Released
By_Metalink
adx 11i.ADX.A 2488995 02/10/23 15:51:35 Checkin Obsoleted
By_Metalink
adx 11i.ADX.B 2682177 03/06/11 18:19:41 Checkin Released By_Dev

adx 11i.ADX.C 3002409 03/06/20 18:14:49 Checkin Obsoleted


By_Metalink
adx 11i.ADX.D 3130740 03/10/23 19:47:18 Checkin Obsoleted
By_Metalink
adx 11i.ADX.E.1 3817226 04/08/10 01:21:03 Checkin Released
By_Metalink
adx 11i.ADX.F 3453499 05/10/14 17:21:38 Checkin Released
By_Metalink
ahl 11i.AHL.C 1879958 01/07/23 15:17:43 Checkin Released By_Dev

ahl 11i.AHL.D 1901700 01/08/08 09:17:15 Checkin Released By_Dev

ahl 11i.AHL.E 1929710 01/08/15 13:34:09 Checkin Released By_Dev

ahl 11i.AHL.F 1939822 01/08/23 15:58:01 Checkin Released By_Dev

ahl 11i.AHL.G 1956651 01/09/07 09:26:01 Checkin Released By_Dev

ahl 11i.AHL.H 1985831 01/10/02 10:29:45 Checkin Released By_Dev

ahl 11i.AHL.I 2024370 01/10/06 17:06:41 Checkin Released By_Dev

ahl 11i.AHL.J 2139197 01/12/10 15:24:45 Checkin Released By_Dev

ahl 11i.AHL.K 2173447 02/02/01 11:45:37 Checkin Released By_Dev

ahl 11i.AHL.L 2221033 02/03/08 16:27:21 Checkin Released By_Dev

ahl 11i.AHL.M 2269046 02/03/29 22:46:42 Checkin Released By_Dev

ahl 11i.AHL.N 2322414 02/05/01 16:47:29 Checkin Released By_Dev

ahl 11i.AHL.O 2568989 02/12/11 13:00:11 Checkin Released By_Dev

ahl 11i.AHL.P 2700563 03/06/10 17:47:26 Checkin Released By_Dev

ahl 11i.AHL.Q 3132184 04/09/17 13:42:39 Checkin Released


Not_Distributed
ahm 11i.AHM.A 2004002 01/11/02 14:38:49 Checkin Released By_Dev

ahm 11i.AHM.B 2197656 02/01/31 12:09:52 Checkin Released By_Dev

ahm 11i.AHM.C 2298383 02/05/21 11:46:33 Checkin Released By_Dev

ahm 11i.AHM.D 2384215 02/10/23 16:33:01 Checkin Released By_Dev

ak 11i.AK.D 1931844 01/09/10 12:08:43 Checkin Released


By_Metalink
ak 11i.AK.E 2404795 02/09/04 15:32:30 Checkin Released
By_Metalink
ak 11i.AK.F 2657511 03/06/11 15:32:35 Checkin Released
By_Metalink
ak 11i.AK.G 3263645 04/11/04 23:35:44 Checkin Released
By_Metalink
alr 11i.ALR.D 1931404 01/09/04 13:22:56 Checkin Released
By_Metalink
alr 11i.ALR.E 2404398 02/09/05 01:13:34 Checkin Released
By_Metalink
alr 11i.ALR.F 2464368 03/06/11 16:02:14 Checkin Released
By_Metalink
alr 11i.ALR.G 3261254 04/11/04 23:48:12 Checkin Released
By_Metalink
ame 11i.AME.A 3962268 04/12/01 23:52:52 Checkin Released
By_Metalink
ame 11i.AME.B 4428060 05/09/30 04:08:57 Checkin Released
By_Metalink
ame 11i.AME.B.1 6975336 08/07/02 03:18:09 Checkin Released
Not_Distributed
ame 11i.AME.B.2 8208648 09/07/09 06:02:02 Checkin Released
Not_Distributed
ame 11i.AME.B.3 9213940 10/04/18 22:09:11 Checkin Released
Not_Distributed
ame 11i.AME.B.4 10144654 11/04/21 03:27:00 Checkin Released
Not_Distributed
amf 11i.AMF.A 2395526 02/10/11 21:00:36 Checkin Released By_Dev

amf 11i.AMF.B 2640735 03/06/11 15:10:46 Checkin Released By_Dev

amf 11i.AMF.C 3134002 04/10/07 16:15:43 Checkin Released


Not_Distributed
aml 11i.AML.A 2728964 03/06/12 10:43:29 Checkin Released
By_Metalink
aml 11i.AML.B 3236242 04/10/08 15:33:40 Checkin Released
Not_Distributed
ams 11i.AMS.D 1888970 01/10/05 15:43:13 Checkin Released By_Dev

ams 11i.AMS.E 2205116 02/04/03 14:18:12 Checkin Released


By_Metalink
ams 11i.AMS.F 2304444 02/05/09 13:53:36 Checkin Released
By_Metalink
ams 11i.AMS.G 2375183 02/10/11 22:01:59 Checkin Released By_Dev

ams 11i.AMS.H 2460403 03/06/11 21:57:50 Checkin Released By_Dev

ams 11i.AMS.I 3025816 04/10/08 13:07:31 Checkin Released


Not_Distributed
amv 11i.AMV.E 1838218 01/11/02 18:29:50 Checkin Released By_Dev

amv 11i.AMV.F 2223748 02/02/28 12:41:27 Checkin Released


By_Metalink
amv 11i.AMV.G 2440207 02/10/10 11:02:51 Checkin Released By_Dev

amv 11i.AMV.H 2630030 03/06/11 15:28:13 Checkin Released By_Dev

amv 11i.AMV.I 3134012 04/10/07 16:18:06 Checkin Released


Not_Distributed
amw 11i.AMW.A 2972149 03/10/31 12:35:41 Checkin Released
By_Support
amw 11i.AMW.B 3232451 04/03/03 17:41:11 Checkin Released
By_Support
amw 11i.AMW.C 3485924 04/11/05 10:54:52 Checkin Released
By_Metalink
amw 11i.AMW.D 4016750 05/06/02 14:29:14 Checkin Released
By_Metalink
amw 11i.AMW.E 4483674 06/02/13 21:10:08 Checkin Released
By_Metalink
ap 11i.AP.F 1816560 01/07/27 17:49:04 Checkin Released
Not_Distributed
ap 11i.AP.G 1986982 01/11/27 17:32:14 Checkin Released
Not_Distributed
ap 11i.AP.H 2145557 02/03/05 16:57:32 Checkin Released
Not_Distributed
ap 11i.AP.I 2266561 02/05/06 09:39:58 Checkin Released
Not_Distributed
ap 11i.AP.J 2375849 02/07/02 17:16:58 Checkin Released By_Dev
ap 11i.AP.K 2488725 03/04/02 11:59:52 Checkin Released By_Dev

ap 11i.AP.L 2864907 03/12/12 14:24:05 Checkin Released By_Dev

ap 11i.AP.M 3151444 04/10/18 16:49:25 Checkin Released


Not_Distributed
ap 11i.AP.N 3617668 05/04/29 21:39:31 Checkin Released
Not_Distributed
ap 11i.AP.O 4551936 07/02/23 15:08:49 Checkin Released
By_Metalink
ar 11i.AR.F 1763786 01/08/17 21:44:18 Checkin Released
Not_Distributed
ar 11i.AR.G 1966026 01/11/05 16:59:58 Checkin Released
Not_Distributed
ar 11i.AR.H 1991140 01/12/28 14:00:21 Checkin Released
Not_Distributed
ar 11i.AR.I 2100663 02/03/01 15:18:19 Checkin Released
Not_Distributed
ar 11i.AR.J 2182030 02/05/20 21:33:30 Checkin Released
By_Metalink
ar 11i.AR.K 2396506 02/08/16 15:17:40 Checkin Released By_Dev

ar 11i.AR.L 2488726 03/04/02 12:03:37 Checkin Released By_Dev

ar 11i.AR.M 2864959 03/12/12 14:02:15 Checkin Released By_Dev

ar 11i.AR.N 3151465 04/10/18 17:38:25 Checkin Released


Not_Distributed
ar 11i.AR.O 3617855 05/04/29 19:43:59 Checkin Released
Not_Distributed
as 11i.AS.D 1886136 01/10/02 17:34:53 Checkin Released By_Dev

as 11i.AS.E 2054419 01/11/13 12:34:08 Checkin Obsoleted By_Dev

as 11i.AS.F 2206559 02/02/11 11:22:53 Checkin Released By_Dev

as 11i.AS.G 2404253 02/10/11 18:52:51 Checkin Released By_Dev

as 11i.AS.H 2640001 03/06/11 19:01:15 Checkin Released By_Dev

as 11i.AS.I 3046981 04/10/08 14:29:28 Checkin Released


Not_Distributed
asf 11i.ASF.C 1898271 01/10/05 11:23:01 Checkin Released By_Dev

asf 11i.ASF.D 2084023 01/11/04 21:23:58 Checkin Released By_Dev

asf 11i.ASF.E 2209019 02/02/11 11:31:57 Checkin Released By_Dev

asf 11i.ASF.F 2404440 02/10/11 18:58:14 Checkin Released By_Dev

asf 11i.ASF.G 2640034 03/06/11 19:55:41 Checkin Released By_Dev

asf 11i.ASF.H 3046985 04/10/08 14:56:11 Checkin Released


Not_Distributed
asg 11i.ASG.F 1883359 01/07/23 22:50:17 Checkin Released
Not_Distributed
asg 11i.ASG.G 1898321 01/08/06 13:51:30 Checkin Released By_Dev

asg 11i.ASG.H 1922718 01/09/07 15:43:40 Checkin Released By_Dev


asg 11i.ASG.I 1982737 01/10/01 12:58:06 Checkin Released By_Dev

asg 11i.ASG.J 2022254 01/10/07 09:04:17 Checkin Released By_Dev

asg 11i.ASG.K 2080734 01/11/04 10:34:32 Checkin Released By_Dev

asg 11i.ASG.M 2294853 02/04/09 16:44:02 Checkin Released By_Dev

asg 11i.ASG.N 2365376 02/05/09 10:35:29 Checkin Released By_Dev

asg 11i.ASG.O 2421058 02/08/29 11:00:01 Checkin Released By_Dev

asg 11i.ASG.P 2501175 02/10/15 17:50:33 Checkin Released


By_Metalink
asg 11i.ASG.Q 2661232 03/06/11 15:48:49 Checkin Released
By_Metalink
asg 11i.ASG.R 3263401 04/11/04 23:09:17 Checkin Released
By_Metalink
asl 11i.ASL.C 1905213 01/10/12 19:53:35 Checkin Obsoleted By_Dev

asl 11i.ASL.E 2354450 02/05/01 19:04:30 Checkin Obsoleted


By_Metalink
asl 11i.ASL.F 2359042 02/05/05 18:15:32 Checkin Obsoleted
By_Metalink
asl 11i.ASL.G 2509464 02/10/11 16:29:53 Checkin Released By_Dev

asl 11i.ASL.H 2642511 03/06/11 14:46:09 Checkin Released


By_Metalink
asl 11i.ASL.I 3780558 04/10/08 16:21:09 Checkin Released
Not_Distributed
asl 11i.ASL.J 4111404 05/05/06 16:40:44 Checkin Released
By_Metalink
asn 11i.ASN.A 3293018 04/10/13 13:49:41 Checkin Released
Not_Distributed
asn 11i.ASN.B 3955219 05/04/29 18:25:54 Checkin Released
By_Metalink
aso 11i.ASO.G 1808269 01/07/23 22:08:31 Checkin Released
By_Metalink
aso 11i.ASO.H 1912652 01/08/29 15:56:46 Checkin Released By_Dev

aso 11i.ASO.I 1970707 01/11/02 17:39:01 Checkin Released By_Dev

aso 11i.ASO.J 2171630 02/05/31 14:00:15 Checkin Released


By_Metalink
aso 11i.ASO.K 2374852 02/08/31 01:21:49 Checkin Released
By_Metalink
aso 11i.ASO.L 2412097 03/04/04 19:10:21 Checkin Released
By_Metalink
aso 11i.ASO.M 2937137 04/06/21 15:18:57 Checkin Released
By_Metalink
asp 11i.ASP.A 1905229 01/10/12 19:47:53 Checkin Obsoleted By_Dev

asp 11i.ASP.B 2212166 04/10/08 15:06:56 Checkin Released


Not_Distributed
asp 11i.ASP.C 4111409 05/07/28 17:27:49 Checkin Released
By_Metalink
ast 11i.AST.D 1903462 01/10/05 15:44:03 Checkin Released By_Dev
ast 11i.AST.E 2210188 02/02/11 11:21:17 Checkin Released By_Dev

ast 11i.AST.F 2405522 02/10/11 18:50:47 Checkin Released By_Dev

ast 11i.AST.G 2642510 03/06/11 15:27:13 Checkin Released By_Dev

ast 11i.AST.H 3046996 04/10/08 13:47:03 Checkin Released


Not_Distributed
atg_pf 11i.ATG_PF.H 3438354 04/11/11 10:48:56 Checkin Released
By_Metalink
atg_pf 11i.ATG_PF.H.5 5473858 07/04/30 17:23:24 Checkin Released
By_Metalink
atg_pf 11i.ATG_PF.H.6 5903765 07/10/11 02:52:31 Checkin Released
By_Metalink
atg_pf 11i.ATG_PF.H.7 6241631 09/07/28 22:46:03 Checkin Released
By_Metalink
ax 11i.AX.E 2092219 01/12/28 17:05:37 Checkin Released
By_Metalink
ax 11i.AX.F 2397665 02/08/16 15:11:13 Checkin Released By_Dev

ax 11i.AX.G 2646044 03/04/02 11:45:17 Checkin Released By_Dev

ax 11i.AX.H 2865270 03/12/12 14:24:11 Checkin Released By_Dev

ax 11i.AX.I 3151359 04/10/18 06:10:45 Checkin Released


Not_Distributed
ax 11i.AX.J 3617516 05/04/29 16:11:17 Checkin Released
Not_Distributed
az 11i.AZ.C 1935117 01/09/04 16:23:26 Checkin Released
By_Metalink
az 11i.AZ.D 2414932 02/10/22 17:07:19 Checkin Released
By_Metalink
az 11i.AZ.E 2707397 03/06/11 22:04:01 Checkin Released By_Dev

az 11i.AZ.F 3251003 04/11/05 01:58:22 Checkin Released By_Dev

az 11i.AZ.G 4590175 05/10/20 01:53:43 Checkin Released


Not_Distributed
az 11i.AZ.H 5140723 06/05/25 22:11:44 Checkin Released
By_Metalink
az 11i.AZ.H.1 5525463 06/12/21 04:24:10 Checkin Released
By_Metalink
az 11i.AZ.H.2 7293818 08/08/03 23:09:53 Checkin Released
By_Metalink
ben 11i.BEN.E 1849555 01/08/18 08:34:02 Checkin Released
By_Metalink
ben 11i.BEN.F 2004047 01/11/20 09:59:37 Checkin Released
By_Metalink
ben 11i.BEN.G 2156736 02/02/21 19:57:08 Checkin Released
Not_Distributed
ben 11i.BEN.H 2268439 02/05/09 07:22:20 Checkin Released
Not_Distributed
ben 11i.BEN.I 2410055 02/08/02 11:28:34 Checkin Released
Not_Distributed
ben 11i.BEN.J 2632482 02/11/27 04:04:38 Checkin Released
Not_Distributed
ben 11i.BEN.K 2803591 03/05/19 12:00:54 Checkin Released
Not_Distributed
ben 11i.BEN.L 3125827 03/12/05 08:56:31 Checkin Released
Not_Distributed
ben 11i.BEN.M 3418234 04/07/27 10:19:22 Checkin Released
Not_Distributed
ben 11i.BEN.N 3988377 05/03/08 19:37:42 Checkin Released
Not_Distributed
ben 11i.BEN.O 4289992 05/06/30 15:27:45 Checkin Released
Not_Distributed
ben 11i.BEN.O.1 5059523 06/05/31 02:26:28 Checkin Released
Not_Distributed
ben 11i.BEN.O.2 5917495 07/06/22 10:31:23 Checkin Released
Not_Distributed
ben 11i.BEN.O.3 6964718 08/07/02 03:20:31 Checkin Released
Not_Distributed
ben 11i.BEN.O.4 8207863 09/07/09 06:05:34 Checkin Released
Not_Distributed
ben 11i.BEN.O.5 9213942 10/04/18 22:17:49 Checkin Released
Not_Distributed
ben 11i.BEN.O.6 10144663 11/04/21 03:27:48 Checkin Released
Not_Distributed
bic 11i.BIC.K 1907256 01/08/08 13:26:08 Checkin Released
Not_Distributed
bic 11i.BIC.L 1925567 01/08/14 16:12:29 Checkin Released
Not_Distributed
bic 11i.BIC.M 1937599 01/09/10 11:10:52 Checkin Released By_Dev

bic 11i.BIC.N 1986675 01/09/28 15:00:22 Checkin Released By_Dev

bic 11i.BIC.O 2022211 01/10/06 17:02:13 Checkin Released By_Dev

bic 11i.BIC.P 2139157 02/10/29 21:30:21 Checkin Released By_Dev

bic 11i.BIC.Q 2706853 03/02/19 01:02:18 Checkin Released


By_Metalink
bic 11i.BIC.R 3293766 04/01/09 00:03:14 Checkin Released
Not_Distributed
bic 11i.BIC.S 3367777 04/11/05 10:44:55 Checkin Released
By_Metalink
bic 11i.BIC.T 4016830 05/04/29 16:08:25 Checkin Released
By_Metalink
bil 11i.BIL.K 1926686 01/10/05 16:00:44 Checkin Released By_Dev

bil 11i.BIL.L 2206086 02/02/11 11:19:36 Checkin Released By_Dev

bil 11i.BIL.M 2395116 02/10/11 15:37:54 Checkin Released By_Dev

bil 11i.BIL.N 2642409 03/06/11 19:01:03 Checkin Released By_Dev

bil 11i.BIL.O 3061845 04/10/08 11:34:54 Checkin Released


Not_Distributed
bim 11i.BIM.J 1903380 01/07/30 16:13:04 Checkin Released By_Dev

bim 11i.BIM.K 1950770 01/10/04 14:04:15 Checkin Released By_Dev

bim 11i.BIM.L 2032764 01/10/08 11:15:30 Checkin Released By_Dev

bim 11i.BIM.M 2454061 02/10/10 11:40:24 Checkin Released By_Dev

bim 11i.BIM.N 2630063 03/06/11 15:10:17 Checkin Released By_Dev


bim 11i.BIM.O 3025758 04/10/07 16:12:47 Checkin Released
Not_Distributed
bis 11i.BIS.D 1865844 01/09/04 15:56:15 Checkin Obsoleted
By_Metalink
bis 11i.BIS.E 2188903 02/08/30 15:48:28 Checkin Obsoleted
By_Metalink
bis 11i.BIS.F 2598853 02/10/01 10:05:30 Checkin Obsoleted
By_Metalink
bis 11i.BIS.G 2692848 03/04/16 17:56:18 Checkin Released
By_Metalink
bis 11i.BIS.H 3053018 03/10/17 16:15:08 Checkin Obsoleted
By_Metalink
bis 11i.BIS.I 3335090 04/03/16 13:12:44 Checkin Released By_Dev

bis 11i.BIS.I.6 4475819 05/07/07 11:10:21 Checkin Released By_Dev

bis 11i.BIS.J 3673034 04/10/15 09:41:08 Checkin Obsoleted


By_Metalink
bis 11i.BIS.K 3894718 05/01/21 11:51:32 Checkin Released
By_Metalink
bis 11i.BIS.K.1 4429907 05/06/13 14:37:01 Checkin Obsoleted
Not_Distributed
bis 11i.BIS.K.10 4907667 06/02/17 10:45:06 Checkin Released
By_Metalink
bis 11i.BIS.K.11 5046300 06/05/24 03:38:45 Checkin Released
By_Metalink
bis 11i.BIS.K.12 5244165 06/07/19 11:58:18 Checkin Released
By_Metalink
bis 11i.BIS.K.2 4053599 05/06/14 17:34:14 Checkin Obsoleted
Not_Distributed
bis 11i.BIS.K.3 4429908 05/07/11 14:09:48 Checkin Obsoleted
By_Metalink
bis 11i.BIS.K.4 4486887 05/08/04 13:59:28 Checkin Obsoleted
By_Metalink
bis 11i.BIS.K.5 4537118 05/09/01 16:13:48 Checkin Obsoleted
By_Metalink
bis 11i.BIS.K.6 4588399 05/09/16 08:57:52 Checkin Obsoleted
By_Metalink
bis 11i.BIS.K.7 4616240 05/10/28 10:20:33 Checkin Obsoleted
By_Metalink
bis 11i.BIS.K.8 4696627 05/11/30 15:47:06 Checkin Obsoleted
By_Metalink
bis 11i.BIS.K.9 4869030 05/12/23 09:24:37 Checkin Obsoleted
By_Metalink
bis 11i.BIS.L 4429906 05/12/16 10:08:54 Checkin Released
By_Metalink
bis 11i.BIS.L.1 4891131 06/02/08 10:13:07 Checkin Obsoleted
Not_Distributed
bis 11i.BIS.L.10 6617445 07/11/20 03:52:19 Checkin Released
By_Metalink
bis 11i.BIS.L.2 5025065 06/03/31 09:44:07 Checkin Released
By_Metalink
bis 11i.BIS.L.3 5117572 06/05/11 14:55:02 Checkin Released
By_Metalink
bis 11i.BIS.L.4 5212746 06/06/26 11:25:14 Checkin Released
By_Metalink
bis 11i.BIS.L.5 5357902 06/07/28 11:11:53 Checkin Released
By_Metalink
bis 11i.BIS.L.6 5417050 06/09/01 02:42:44 Checkin Released
By_Metalink
bis 11i.BIS.L.7 5506389 06/11/22 22:18:02 Checkin Released
By_Metalink
bis 11i.BIS.L.8 5702526 07/02/21 21:30:28 Checkin Released
By_Metalink
bis 11i.BIS.L.9 5912291 07/06/14 21:18:53 Checkin Released
By_Metalink
bis_pf 11i.BIS_PF.A 2594505 03/02/28 15:33:54 Checkin Released By_Dev

bis_pf 11i.BIS_PF.B 2910183 03/07/15 21:17:44 Checkin Released By_Dev

bis_pf 11i.BIS_PF.C 3086726 03/11/25 18:43:21 Checkin Released


By_Metalink
bis_pf 11i.BIS_PF.C.1 4084433 05/02/25 11:22:57 Checkin Released
By_Metalink
bis_pf 11i.BIS_PF.C.6 4463950 05/09/27 16:24:51 Checkin Released
By_Metalink
bis_pf 11i.BIS_PF.D 3358654 04/10/29 20:41:37 Checkin Released By_Dev

bis_pf 11i.BIS_PF.D.1 4054609 05/01/21 11:55:39 Checkin Released


By_Metalink
bis_pf 11i.BIS_PF.E 4143498 05/05/19 10:56:40 Checkin Released
By_Metalink
bis_pf 11i.BIS_PF.E.1 4429228 05/07/29 10:50:15 Checkin Released
By_Metalink
bis_pf 11i.BIS_PF.E.2 4458450 05/10/21 12:03:56 Checkin Released
By_Metalink
bis_pf 11i.BIS_PF.F 4887502 06/01/27 11:43:53 Checkin Released
By_Metalink
bis_pf 11i.BIS_PF.F.1 5004590 06/07/18 15:55:51 Checkin Released
By_Metalink
bis_pf 11i.BIS_PF.G 5404886 06/10/02 12:26:26 Checkin Released
By_Metalink
bis_pf 11i.BIS_PF.H 5565583 07/02/02 04:25:55 Checkin Released
By_Metalink
biv 11i.BIV.A 1927612 01/08/08 16:05:38 Checkin Released
Not_Distributed
biv 11i.BIV.B 1927707 01/08/08 16:22:54 Checkin Released
Not_Distributed
biv 11i.BIV.C 1927744 01/08/08 16:28:23 Checkin Released
Not_Distributed
biv 11i.BIV.D 1925794 01/08/08 16:40:50 Checkin Released
Not_Distributed
biv 11i.BIV.E 1937617 01/08/23 11:24:51 Checkin Released
Not_Distributed
biv 11i.BIV.F 1953470 01/09/10 11:11:57 Checkin Released By_Dev

biv 11i.BIV.G 1986678 01/09/28 15:01:15 Checkin Released By_Dev

biv 11i.BIV.H 2022213 01/10/06 17:02:48 Checkin Released By_Dev

biv 11i.BIV.I 2139162 02/02/01 11:32:22 Checkin Released By_Dev

biv 11i.BIV.J 2221044 02/03/08 16:42:17 Checkin Released By_Dev

biv 11i.BIV.K 2267084 02/03/29 09:43:26 Checkin Released By_Dev

biv 11i.BIV.L 2319941 02/04/26 16:35:33 Checkin Released By_Dev


biv 11i.BIV.M 2380839 02/05/23 17:13:55 Checkin Released By_Dev

biv 11i.BIV.N 2415896 02/06/28 17:04:08 Checkin Released By_Dev

biv 11i.BIV.O 2482714 02/07/26 15:58:16 Checkin Released By_Dev

biv 11i.BIV.P 2484904 02/07/31 10:38:45 Checkin Released By_Dev

biv 11i.BIV.Q 2592038 02/12/10 17:18:19 Checkin Released By_Dev

biv 11i.BIV.R 2707184 03/06/10 17:13:36 Checkin Released By_Dev

biv 11i.BIV.S 3014204 04/09/17 13:46:40 Checkin Released


Not_Distributed
bix 11i.BIX.M 1856888 01/07/18 17:07:14 Checkin Released By_Dev

bix 11i.BIX.N 1905373 01/09/27 12:32:13 Checkin Released By_Dev

bix 11i.BIX.O 2163294 01/12/28 14:31:17 Checkin Released By_Dev

bix 11i.BIX.P 2241899 02/02/26 19:24:51 Checkin Released By_Dev

bix 11i.BIX.Q 2387256 02/05/23 01:57:56 Checkin Released By_Dev

bix 11i.BIX.R 2483831 02/07/27 15:46:58 Checkin Released By_Dev

bix 11i.BIX.S 2685978 02/11/27 14:10:50 Checkin Released By_Dev

bix 11i.BIX.T 3112625 03/10/29 17:23:24 Checkin Released By_Dev

blc 11i.BLC.A 3965553 05/04/29 11:47:07 Checkin Released By_Dev

blc 11i.BLC.B 4594554 06/02/06 19:49:25 Checkin Released By_Dev

bne 11i.BNE.A 2443697 02/10/10 21:29:42 Checkin Released By_Dev

bne 11i.BNE.B 2677750 03/02/24 01:52:48 Checkin Released


By_Metalink
bne 11i.BNE.C 2819091 03/09/15 21:57:17 Checkin Released
By_Metalink
bne 11i.BNE.D 3218526 05/03/14 20:47:18 Checkin Released
By_Metalink
bom 11i.BOM.F 1886016 01/08/20 20:23:34 Checkin Released
Not_Distributed
bom 11i.BOM.G 2065003 02/01/30 10:19:10 Checkin Released
Not_Distributed
bom 11i.BOM.H 2248494 02/06/27 11:46:21 Checkin Released
Not_Distributed
bom 11i.BOM.I 2691149 03/06/10 14:39:46 Checkin Released By_Dev

bom 11i.BOM.J 2768762 04/09/17 16:27:21 Checkin Released


Not_Distributed
bpa 11i.BPA.A 3391562 04/02/06 17:18:52 Checkin Released
By_Metalink
bpa 11i.BPA.B 3388258 04/11/05 10:32:35 Checkin Released
By_Metalink
bpa 11i.BPA.C 4017028 05/04/29 22:21:11 Checkin Released
By_Metalink
bsc 11i.BSC.C 1880500 01/08/31 16:39:36 Checkin Obsoleted
By_Metalink
bsc 11i.BSC.D 2176458 02/08/30 15:23:28 Checkin Obsoleted
By_Metalink
bsc 11i.BSC.E 2692588 03/04/16 17:55:08 Checkin Released
By_Metalink
bsc 11i.BSC.F 3053020 03/10/17 16:15:52 Checkin Obsoleted
By_Metalink
bsc 11i.BSC.G 3335097 04/04/14 14:27:25 Checkin Released
By_Metalink
bsc 11i.BSC.H 3673035 04/10/15 13:29:28 Checkin Released By_Dev

bsc 11i.BSC.I 3894719 05/02/14 10:45:27 Checkin Released


By_Metalink
bsc 11i.BSC.I.1 4430295 05/06/24 16:16:16 Checkin Obsoleted
Not_Distributed
bsc 11i.BSC.I.10 5046305 06/02/27 10:59:18 Checkin Released
By_Metalink
bsc 11i.BSC.I.11 5065464 06/03/16 15:22:25 Checkin Obsoleted By_Dev

bsc 11i.BSC.I.12 5100729 06/04/05 16:02:50 Checkin Released


By_Metalink
bsc 11i.BSC.I.2 4432193 05/06/24 16:17:26 Checkin Obsoleted
By_Metalink
bsc 11i.BSC.I.3 4455880 05/07/27 10:49:44 Checkin Obsoleted
By_Metalink
bsc 11i.BSC.I.4 4520849 05/08/01 11:39:41 Checkin Obsoleted
By_Metalink
bsc 11i.BSC.I.5 4537117 05/09/30 00:04:05 Checkin Obsoleted
By_Metalink
bsc 11i.BSC.I.6 4643886 05/10/28 10:21:23 Checkin Obsoleted
By_Metalink
bsc 11i.BSC.I.7 4696636 05/11/30 15:48:10 Checkin Obsoleted
By_Metalink
bsc 11i.BSC.I.8 4869037 05/12/23 09:25:08 Checkin Obsoleted
By_Metalink
bsc 11i.BSC.I.9 4907668 06/02/17 10:45:28 Checkin Obsoleted
By_Metalink
bsc 11i.BSC.J 4455179 06/04/21 09:46:07 Checkin Released
By_Metalink
bsc 11i.BSC.J.1 5173643 06/05/18 16:25:31 Checkin Released
By_Metalink
bsc 11i.BSC.J.2 5229796 06/06/27 11:14:22 Checkin Released
By_Metalink
bsc 11i.BSC.J.3 5358428 06/07/28 11:17:55 Checkin Released
By_Metalink
bsc 11i.BSC.J.4 5417064 06/09/01 02:41:59 Checkin Released
By_Metalink
bsc 11i.BSC.J.5 5506382 06/11/22 22:18:57 Checkin Released
By_Metalink
bsc 11i.BSC.J.6 5702530 07/02/21 21:31:25 Checkin Released
By_Metalink
bsc 11i.BSC.J.7 5912304 07/06/14 21:20:50 Checkin Released
By_Metalink
bsc 11i.BSC.J.8 6617861 07/11/20 04:08:35 Checkin Released
By_Metalink
cac 11i.CAC.A 3234006 03/12/12 17:20:29 Checkin Released
By_Metalink
cac 11i.CAC.B 3264822 04/11/04 22:48:28 Checkin Released
By_Metalink
cac 11i.CAC.C 3995315 05/07/28 14:18:49 Checkin Released
By_Metalink
cct 11i.CCT.K 1862721 01/07/19 11:39:10 Checkin Obsoleted By_Dev

cct 11i.CCT.L 1912585 01/09/27 14:14:55 Checkin Released By_Dev

cct 11i.CCT.M 2160934 01/12/31 10:42:56 Checkin Released By_Dev

cct 11i.CCT.N 2165879 02/02/27 14:10:26 Checkin Released By_Dev

cct 11i.CCT.O 2242802 02/05/24 02:47:50 Checkin Released By_Dev

cct 11i.CCT.P 2481890 02/07/28 13:31:20 Checkin Released By_Dev

cct 11i.CCT.Q 2485142 02/12/02 11:16:31 Checkin Released By_Dev

cct 11i.CCT.R 2687381 03/10/29 17:24:21 Checkin Released By_Dev

cc_pf 11i.CC_PF.A 2208036 02/02/01 21:32:44 Checkin Released


By_Metalink
cc_pf 11i.CC_PF.B 2213770 02/04/11 13:28:12 Checkin Released By_Dev

cc_pf 11i.CC_PF.C 2374818 02/07/15 16:07:25 Checkin Released


By_Metalink
cc_pf 11i.CC_PF.P 2484627 02/10/22 17:34:28 Checkin Released
By_Metalink
cc_pf 11i.CC_PF.Q 2644375 03/06/18 17:10:03 Checkin Released
By_Metalink
cc_pf 11i.CC_PF.R 3202573 04/11/05 10:22:22 Checkin Released
By_Metalink
cdr 11i.CDR.A 4189400 06/09/21 14:05:19 Checkin Released By_Dev

cdr 11i.CDR.A.1 5447496 06/12/01 13:04:07 Checkin Released


Not_Distributed
cdr 11i.CDR.A.2 5507719 06/12/01 13:04:59 Checkin Released
Not_Distributed
cdr 11i.CDR.A.3 5666810 06/12/01 13:11:03 Checkin Released
By_Metalink
cdr 11i.CDR.B 5460707 07/03/19 15:34:21 Checkin Released By_Dev

cdr 11i.CDR.C 6138538 07/12/21 07:47:11 Checkin Released By_Dev

cdr 11i.CDR.C.1 6936773 08/06/02 12:21:10 Checkin Released


By_Metalink
cdr 11i.CDR.C.2 7372048 09/02/26 01:12:39 Checkin Released
By_Metalink
cdr 11i.CDR.D 8786733 09/09/04 02:04:45 Checkin Released
By_Metalink
cdr 11i.CDR.D.1 8904380 09/11/17 06:58:32 Checkin Released
By_Metalink
cdr 11i.CDR.E 8904409 10/01/28 20:43:16 Checkin Released
By_Metalink
cdr 11i.CDR.E.1 9367022 10/03/03 01:08:10 Checkin Released
By_Metalink
cdr 11i.CDR.E.2 9465093 10/07/27 00:42:29 Checkin Released
By_Metalink
cdr 11i.CDR.E.3 10372282 11/02/25 01:50:03 Checkin Released
By_Metalink
cdr 11i.CDR.E.4 12651993 11/06/14 01:54:04 Checkin Released
By_Metalink
cdr 11i.CDR.F 9781821 10/08/16 09:36:39 Checkin Released
By_Metalink
cdr 11i.CDR.F.1 10114548 10/11/19 14:45:06 Checkin Released
By_Metalink
cdr 11i.CDR.F.2 11806686 11/03/02 00:18:18 Checkin Released
By_Metalink
ce 11i.CE.E 1907478 01/09/07 18:57:37 Checkin Released
Not_Distributed
ce 11i.CE.F 2167032 02/02/13 16:12:30 Checkin Released
Not_Distributed
ce 11i.CE.G 2243908 02/04/01 13:13:48 Checkin Released By_Dev

ce 11i.CE.H 2488730 03/04/02 12:14:31 Checkin Released By_Dev

ce 11i.CE.I 2864454 03/12/12 13:45:02 Checkin Released By_Dev

ce 11i.CE.J 3151412 04/10/18 06:51:51 Checkin Released


Not_Distributed
ce 11i.CE.K 3617940 05/04/29 15:44:51 Checkin Released
Not_Distributed
chv 11i.CHV.B 1885987 01/08/22 22:24:58 Checkin Released
Not_Distributed
chv 11i.CHV.C 2103370 02/01/30 23:51:11 Checkin Released
Not_Distributed
chv 11i.CHV.D 2236039 02/08/15 17:56:30 Checkin Released
Not_Distributed
chv 11i.CHV.E 2478612 03/06/10 16:24:19 Checkin Released By_Dev

chv 11i.CHV.F 3212221 04/09/17 13:40:03 Checkin Released


Not_Distributed
cle 11i.CLE.A 5093864 06/05/26 04:46:15 Checkin Obsoleted
By_Metalink
cle 11i.CLE.B 5251736 06/06/01 02:19:16 Checkin Obsoleted
By_Metalink
cln 11i.CLN.A 2471486 03/06/26 12:55:33 Checkin Released
By_Metalink
cln 11i.CLN.B 2734844 03/11/20 07:46:53 Checkin Released
By_Metalink
cln 11i.CLN.C 3231176 04/10/11 11:17:53 Checkin Released
Not_Distributed
cn 11i.CN.D 1903542 01/10/03 19:47:56 Checkin Released By_Dev

cn 11i.CN.E 2205314 02/02/11 11:20:38 Checkin Released By_Dev

cn 11i.CN.F 2384176 02/10/11 15:55:44 Checkin Released By_Dev

cn 11i.CN.G 2642404 03/06/11 21:39:53 Checkin Released By_Dev

cn 11i.CN.H 3061842 04/03/18 20:28:19 Checkin Released


By_Metalink
com_pf 11i.COM_PF.A 2036253 01/11/04 10:33:37 Checkin Released By_Dev

crp 11i.CRP.C 2075371 02/01/30 11:24:40 Checkin Released


Not_Distributed
crp 11i.CRP.D 2248435 02/06/27 12:02:15 Checkin Released By_Dev

crp 11i.CRP.E 2691177 03/06/10 15:37:49 Checkin Released By_Dev


crp 11i.CRP.F 2770107 04/09/17 13:39:22 Checkin Released
Not_Distributed
cs 11i.CS.D 1779170 01/08/06 15:43:55 Checkin Released By_Dev

cs 11i.CS.E 1921092 01/08/29 10:31:09 Checkin Released By_Dev

cs 11i.CS.F 1965312 01/09/18 09:54:54 Checkin Released By_Dev

cs 11i.CS.G 2013123 01/10/07 09:05:05 Checkin Released By_Dev

cs 11i.CS.H 2139888 02/01/31 10:58:09 Checkin Released By_Dev

cs 11i.CS.I 2221042 02/03/08 16:27:41 Checkin Released By_Dev

cs 11i.CS.J 2269057 02/03/30 06:08:22 Checkin Released By_Dev

cs 11i.CS.K 2320293 02/05/02 11:13:25 Checkin Released By_Dev

cs 11i.CS.L 2381835 02/06/04 23:20:09 Checkin Released By_Dev

cs 11i.CS.M 2419063 02/07/01 10:44:08 Checkin Released By_Dev

cs 11i.CS.N 2483732 02/08/05 15:14:42 Checkin Released By_Dev

cs 11i.CS.O 2315582 02/12/11 12:56:23 Checkin Released By_Dev

cs 11i.CS.P 2707706 03/06/11 11:46:13 Checkin Released By_Dev

cs 11i.CS.Q 3022934 04/09/17 14:00:21 Checkin Released


Not_Distributed
csc 11i.CSC.D 1695227 01/08/06 13:05:40 Checkin Released By_Dev

csc 11i.CSC.E 1921294 01/08/27 12:16:40 Checkin Released By_Dev

csc 11i.CSC.F 1960898 01/10/02 11:17:27 Checkin Released By_Dev

csc 11i.CSC.G 2026527 01/10/06 18:04:35 Checkin Released By_Dev

csc 11i.CSC.H 2141380 02/02/01 11:29:54 Checkin Released By_Dev

csc 11i.CSC.I 2228368 02/03/08 16:30:52 Checkin Released By_Dev

csc 11i.CSC.J 2268815 02/03/29 22:57:58 Checkin Released By_Dev

csc 11i.CSC.K 2320389 02/05/01 17:00:27 Checkin Released By_Dev

csc 11i.CSC.L 2381837 02/06/04 13:56:18 Checkin Released By_Dev

csc 11i.CSC.M 2419069 02/07/01 10:59:37 Checkin Released By_Dev

csc 11i.CSC.N 2483733 02/08/05 15:15:42 Checkin Released By_Dev

csc 11i.CSC.O 2592183 02/12/10 17:20:44 Checkin Released By_Dev

csc 11i.CSC.P 2707217 03/06/10 19:17:14 Checkin Released By_Dev

csc 11i.CSC.Q 3014206 04/09/17 14:14:19 Checkin Released


Not_Distributed
csd 11i.CSD.D 1806155 01/08/08 17:05:36 Checkin Released
Not_Distributed
csd 11i.CSD.E 1957339 01/09/06 15:20:43 Checkin Released By_Dev

csd 11i.CSD.F 1980409 01/09/10 11:13:49 Checkin Released By_Dev

csd 11i.CSD.G 1986689 01/09/28 15:02:57 Checkin Released By_Dev

csd 11i.CSD.H 2022223 01/10/06 16:55:38 Checkin Released By_Dev

csd 11i.CSD.I 2139165 02/01/31 11:02:04 Checkin Released By_Dev

csd 11i.CSD.J 2221056 02/03/08 16:32:11 Checkin Released By_Dev

csd 11i.CSD.K 2269011 02/03/29 09:43:56 Checkin Released By_Dev

csd 11i.CSD.L 2318184 02/04/26 17:03:33 Checkin Released By_Dev

csd 11i.CSD.M 2381856 02/05/23 17:15:27 Checkin Released By_Dev

csd 11i.CSD.N 2417990 02/06/28 17:05:33 Checkin Released By_Dev

csd 11i.CSD.O 2480165 02/07/26 15:44:56 Checkin Released By_Dev

csd 11i.CSD.P 2485133 02/07/31 10:39:03 Checkin Released By_Dev

csd 11i.CSD.Q 2592184 02/12/13 14:52:39 Checkin Released By_Dev

csd 11i.CSD.R 2712429 03/06/10 19:06:29 Checkin Released By_Dev

csd 11i.CSD.S 3215147 04/09/17 14:02:44 Checkin Released


Not_Distributed
cse 11i.CSE.B 1895339 01/08/08 15:34:53 Checkin Released
Not_Distributed
cse 11i.CSE.C 1925381 01/08/15 09:51:45 Checkin Released By_Dev

cse 11i.CSE.D 1937978 01/09/06 11:26:25 Checkin Released By_Dev

cse 11i.CSE.E 1979670 01/09/28 11:26:50 Checkin Released By_Dev

cse 11i.CSE.F 2022458 01/10/05 14:19:39 Checkin Released By_Dev

cse 11i.CSE.G 2136959 02/02/01 11:36:42 Checkin Released By_Dev

cse 11i.CSE.H 2242084 02/03/08 15:28:39 Checkin Released By_Dev

cse 11i.CSE.I 2261036 02/03/29 10:20:29 Checkin Released By_Dev

cse 11i.CSE.J 2323311 02/04/25 15:32:05 Checkin Released


Not_Distributed
cse 11i.CSE.K 2382060 02/06/02 19:41:35 Checkin Released By_Dev

cse 11i.CSE.L 2431115 02/07/04 11:45:37 Checkin Released By_Dev

cse 11i.CSE.M 2460238 02/08/02 17:20:23 Checkin Released By_Dev

cse 11i.CSE.N 2507649 02/08/30 16:52:58 Checkin Released By_Dev

cse 11i.CSE.O 2696915 03/06/10 14:09:17 Checkin Released By_Dev


cse 11i.CSE.P 3195218 04/09/17 13:30:41 Checkin Released
Not_Distributed
csf 11i.CSF.I 1885277 01/07/24 18:56:21 Checkin Released
Not_Distributed
csf 11i.CSF.J 1900711 01/08/31 00:21:19 Checkin Released
Not_Distributed
csf 11i.CSF.K 1969294 01/10/05 04:50:56 Checkin Released By_Dev

csf 11i.CSF.L 2139908 02/02/01 11:44:22 Checkin Released By_Dev

csf 11i.CSF.M 2230013 02/03/29 23:49:56 Checkin Released By_Dev

csf 11i.CSF.N 2341674 02/05/01 16:57:12 Checkin Released By_Dev

csf 11i.CSF.O 2375508 02/06/04 12:01:22 Checkin Released By_Dev

csf 11i.CSF.P 2415471 02/07/01 20:17:32 Checkin Released By_Dev

csf 11i.CSF.Q 2595798 02/12/10 05:58:20 Checkin Released By_Dev

csf 11i.CSF.R 2702303 03/06/10 15:36:15 Checkin Released By_Dev

csf 11i.CSF.S 3132186 04/09/17 15:07:50 Checkin Released


Not_Distributed
csi 11i.CSI.A 1898287 01/08/08 09:20:03 Checkin Released
Not_Distributed
csi 11i.CSI.B 1925972 01/08/14 16:51:59 Checkin Released By_Dev

csi 11i.CSI.C 1938341 01/08/17 13:09:47 Checkin Obsoleted By_Dev

csi 11i.CSI.D 1944898 01/08/29 17:37:27 Checkin Released By_Dev

csi 11i.CSI.E 1979759 01/09/14 17:47:26 Checkin Released By_Dev

csi 11i.CSI.F 2023695 01/10/06 17:08:09 Checkin Released By_Dev

csi 11i.CSI.G 2136956 02/02/01 11:40:50 Checkin Released By_Dev

csi 11i.CSI.H 2242076 02/03/08 19:58:16 Checkin Released


By_Metalink
csi 11i.CSI.I 2271035 02/03/29 21:59:49 Checkin Released
By_Metalink
csi 11i.CSI.J 2323320 02/04/26 20:14:12 Checkin Released
By_Metalink
csi 11i.CSI.K 2382071 02/06/04 09:57:05 Checkin Released
By_Metalink
csi 11i.CSI.L 2431149 02/07/04 11:48:52 Checkin Released
By_Metalink
csi 11i.CSI.M 2460244 02/08/02 19:59:35 Checkin Released
By_Metalink
csi 11i.CSI.N 2507613 02/08/30 16:56:35 Checkin Released
By_Metalink
csi 11i.CSI.O 2696911 03/06/20 11:09:38 Checkin Released
By_Metalink
csi 11i.CSI.P 3195214 04/09/17 13:55:51 Checkin Released
Not_Distributed
csk 11i.CSK.A 2712365 03/06/10 17:25:24 Checkin Released By_Dev

csk 11i.CSK.B 3215230 04/09/17 13:51:33 Checkin Released


Not_Distributed
csl 11i.CSL.A 1969332 01/10/05 04:51:33 Checkin Released By_Dev

csl 11i.CSL.D 2258969 02/03/10 00:19:16 Checkin Released


By_Metalink
csl 11i.CSL.E 2301142 02/04/03 13:26:55 Checkin Released
By_Metalink
csl 11i.CSL.F 2354454 02/05/01 19:04:46 Checkin Released
By_Metalink
csl 11i.CSL.G 2385366 02/06/13 00:13:52 Checkin Released
By_Metalink
csl 11i.CSL.H 2426720 02/08/29 11:01:27 Checkin Released By_Dev

csl 11i.CSL.I 2507689 02/10/15 17:54:05 Checkin Released


By_Metalink
csl 11i.CSL.J 2661236 03/06/11 15:49:26 Checkin Released
By_Metalink
csl 11i.CSL.K 3263427 04/11/04 23:53:54 Checkin Released
By_Metalink
csm 11i.CSM.A 2468093 02/08/29 11:07:07 Checkin Released By_Dev

csm 11i.CSM.B 2508309 02/10/15 17:56:03 Checkin Released


By_Metalink
csm 11i.CSM.C 2661240 03/06/11 15:49:47 Checkin Released
By_Metalink
csm 11i.CSM.D 3263430 04/11/05 00:09:06 Checkin Released
By_Metalink
csp 11i.CSP.D 1883332 01/08/08 11:37:41 Checkin Released By_Dev

csp 11i.CSP.E 1926092 01/09/06 16:17:57 Checkin Released By_Dev

csp 11i.CSP.F 1980566 01/09/14 23:30:49 Checkin Released By_Dev

csp 11i.CSP.G 2018211 01/10/01 17:23:24 Checkin Released By_Dev

csp 11i.CSP.H 2022505 01/10/06 17:09:26 Checkin Released By_Dev

csp 11i.CSP.I 2139921 02/01/31 11:04:04 Checkin Released By_Dev

csp 11i.CSP.J 2221060 02/03/08 16:33:35 Checkin Released By_Dev

csp 11i.CSP.K 2268782 02/03/29 22:50:02 Checkin Released By_Dev

csp 11i.CSP.L 2320362 02/05/01 16:49:39 Checkin Released By_Dev

csp 11i.CSP.M 2381839 02/06/04 12:25:49 Checkin Released By_Dev

csp 11i.CSP.N 2419058 02/07/01 10:48:34 Checkin Released By_Dev

csp 11i.CSP.O 2483735 02/08/05 15:51:53 Checkin Released By_Dev

csp 11i.CSP.P 2592240 02/12/10 17:23:39 Checkin Released By_Dev

csp 11i.CSP.Q 2707263 03/06/10 18:59:01 Checkin Released By_Dev

csp 11i.CSP.R 3014210 04/09/17 14:46:55 Checkin Released


Not_Distributed
csr 11i.CSR.H 1884278 01/08/31 01:52:53 Checkin Released
Not_Distributed
csr 11i.CSR.I 1969295 01/10/05 04:52:10 Checkin Released By_Dev

csr 11i.CSR.J 2139913 02/01/31 11:06:15 Checkin Released By_Dev

csr 11i.CSR.K 2595799 02/12/10 07:32:33 Checkin Released By_Dev

csr 11i.CSR.L 2702306 03/06/10 15:34:20 Checkin Released By_Dev

csr 11i.CSR.M 3132185 04/09/17 15:01:42 Checkin Released


Not_Distributed
css 11i.CSS.D 1840954 01/08/02 14:22:38 Checkin Released
By_Metalink
css 11i.CSS.E 1917552 01/11/02 17:33:03 Checkin Released By_Dev

css 11i.CSS.F 2139225 02/06/17 16:35:27 Checkin Released By_Dev

css 11i.CSS.G 2420704 02/07/01 10:19:10 Checkin Released By_Dev

css 11i.CSS.H 2569000 02/12/11 13:01:42 Checkin Released By_Dev

css 11i.CSS.I 2708002 03/06/10 17:12:11 Checkin Released By_Dev

css 11i.CSS.J 3214922 04/09/17 14:17:48 Checkin Released


Not_Distributed
csz 11i.CSZ.A 4378713 05/06/06 17:56:25 Checkin Released
By_Metalink
ctb 11i.CTB.A 2655715 02/12/23 16:34:22 Checkin Released
Not_Distributed
ctb 11i.CTB.B 2725762 03/06/06 08:03:34 Checkin Released By_Dev

ctb 11i.CTB.C 2993316 03/09/22 17:52:39 Checkin Released By_Dev

ctb 11i.CTB.D 3316717 04/04/01 15:51:00 Checkin Released By_Dev

ctb 11i.CTB.E 3435718 05/08/19 12:35:07 Checkin Released


Not_Distributed
ctb 11i.CTB.E.1 4570055 05/10/05 06:38:03 Checkin Released
Not_Distributed
ctb 11i.CTB.E.2 4620553 06/04/14 16:05:22 Checkin Released
Not_Distributed
ctb 11i.CTB.E.3 5178840 07/02/16 17:03:42 Checkin Released
Not_Distributed
cug 11i.CUG.B 1901557 01/08/07 16:52:28 Checkin Released
Not_Distributed
cug 11i.CUG.C 1925503 01/08/08 11:32:41 Checkin Released
Not_Distributed
cug 11i.CUG.D 1927029 01/09/10 11:12:46 Checkin Released By_Dev

cug 11i.CUG.E 1986682 01/09/28 15:02:16 Checkin Released By_Dev

cug 11i.CUG.F 2022219 01/10/06 17:46:12 Checkin Released By_Dev

cug 11i.CUG.G 2139170 02/02/01 11:32:43 Checkin Released By_Dev

cug 11i.CUG.H 2221046 02/03/08 16:32:40 Checkin Released By_Dev

cug 11i.CUG.I 2268941 02/03/29 09:44:27 Checkin Released By_Dev

cug 11i.CUG.J 2320664 02/04/29 14:11:46 Checkin Released By_Dev


cug 11i.CUG.K 2380615 02/05/23 17:14:59 Checkin Released By_Dev

cug 11i.CUG.L 2416933 02/06/28 17:05:03 Checkin Released By_Dev

cug 11i.CUG.M 2483054 02/07/26 15:43:51 Checkin Released By_Dev

cug 11i.CUG.N 2486390 02/07/31 10:41:06 Checkin Released By_Dev

cug 11i.CUG.O 2592161 02/12/09 10:18:54 Checkin Released By_Dev

cug 11i.CUG.P 2700678 03/06/10 18:58:33 Checkin Released By_Dev

cug 11i.CUG.Q 3014213 04/09/17 13:50:31 Checkin Released


Not_Distributed
cun 11i.CUN.E 1895475 01/08/08 14:48:07 Checkin Released
Not_Distributed
cun 11i.CUN.F 1927148 01/08/15 14:31:35 Checkin Released By_Dev

cun 11i.CUN.G 1938197 01/09/06 15:15:30 Checkin Released By_Dev

cun 11i.CUN.H 1980389 01/09/28 11:28:17 Checkin Released By_Dev

cun 11i.CUN.I 2022453 01/10/05 14:20:29 Checkin Released By_Dev

cun 11i.CUN.J 2136960 02/02/01 11:33:20 Checkin Released By_Dev

cz 11i.CZ.F 1886047 01/08/28 20:40:02 Checkin Released


By_Metalink
cz 11i.CZ.G 2112122 02/01/29 23:33:31 Checkin Released
By_Metalink
cz 11i.CZ.H 2250291 02/08/09 15:01:35 Checkin Released
By_Metalink
cz 11i.CZ.I 2690432 03/06/20 16:07:19 Checkin Released
By_Metalink
cz 11i.CZ.J 2770105 04/09/17 14:09:19 Checkin Released
Not_Distributed
ddd 11i.DDD.A 2714479 03/05/28 18:05:58 Checkin Released By_Dev

ddd 11i.DDD.B 3001761 03/07/31 14:36:10 Checkin Released By_Dev

ddd 11i.DDD.C 3298209 04/10/08 18:04:32 Checkin Released By_Dev

ddd 11i.DDD.D 3981538 05/02/01 11:05:45 Checkin Released By_Dev

ddd 11i.DDD.E 4187155 05/04/27 14:25:59 Checkin Released


Not_Distributed
dmf_pf 11i.DMF_PF.F 1891480 01/08/31 10:31:41 Checkin Released
By_Metalink
dmf_pf 11i.DMF_PF.G 2133107 02/02/01 11:00:44 Checkin Released
By_Metalink
dmf_pf 11i.DMF_PF.H 2248408 02/08/17 08:03:30 Checkin Released
By_Metalink
dmf_pf 11i.DMF_PF.I 2697753 03/06/23 10:28:07 Checkin Released
By_Metalink
dmf_pf 11i.DMF_PF.J 2771139 04/09/17 18:17:22 Checkin Released
Not_Distributed
dna 11i.DNA.A 4189507 05/04/27 15:13:29 Checkin Released
Not_Distributed
dt 11i.DT.C 2004061 01/10/03 04:35:29 Checkin Released
Not_Distributed
dt 11i.DT.D 2156866 02/02/21 19:55:14 Checkin Released
Not_Distributed
dt 11i.DT.E 2473476 02/11/27 04:18:46 Checkin Released
Not_Distributed
dt 11i.DT.F 2803505 03/05/19 12:08:12 Checkin Released
Not_Distributed
dt 11i.DT.G 3125842 03/12/05 08:57:16 Checkin Released
Not_Distributed
dt 11i.DT.H 3418248 04/07/27 11:10:43 Checkin Released
Not_Distributed
dt 11i.DT.I 3988383 05/03/08 13:26:58 Checkin Released
Not_Distributed
dt 11i.DT.J 4289862 05/06/30 14:58:56 Checkin Released
Not_Distributed
dt 11i.DT.J.1 5059518 06/05/31 02:29:31 Checkin Released
Not_Distributed
dt 11i.DT.J.2 5917513 07/06/22 08:44:34 Checkin Released
Not_Distributed
dt 11i.DT.J.3 6964728 08/07/02 03:22:07 Checkin Released
Not_Distributed
dt 11i.DT.J.4 8207867 09/07/09 05:50:18 Checkin Released
Not_Distributed
dt 11i.DT.J.5 9213938 10/04/18 21:28:20 Checkin Released
Not_Distributed
dt 11i.DT.J.6 10144644 11/04/21 04:17:24 Checkin Released
Not_Distributed
eaa 11i.EAA.B 1950474 01/09/04 14:23:51 Checkin Released
By_Metalink
eam 11i.EAM.G 2128902 02/02/01 18:11:30 Checkin Released By_Dev

eam 11i.EAM.H 2250401 02/08/19 18:01:53 Checkin Released


By_Metalink
eam 11i.EAM.I 2478472 03/06/23 10:36:02 Checkin Released
By_Metalink
eam 11i.EAM.J 3200674 04/09/17 13:39:36 Checkin Released
Not_Distributed
ec 11i.EC.D 1931904 01/09/04 13:42:33 Checkin Released
By_Metalink
ec 11i.EC.E 2408170 02/09/05 03:39:13 Checkin Released
By_Metalink
ec 11i.EC.F 2662787 03/06/11 16:02:41 Checkin Released
By_Metalink
ec 11i.EC.G 3261243 04/11/04 23:12:51 Checkin Released
By_Metalink
ecx 11i.ECX.A 1960477 01/09/07 14:56:22 Checkin Released
By_Metalink
ecx 11i.ECX.B 2206836 02/03/06 09:31:32 Checkin Released
By_Metalink
ecx 11i.ECX.C 2440710 02/09/04 19:12:43 Checkin Released
By_Metalink
edr 11i.EDR.A 2591001 02/12/30 12:00:35 Checkin Released
By_Metalink
edr 11i.EDR.B 2663977 03/07/08 11:25:51 Checkin Released
By_Metalink
edr 11i.EDR.C 2922221 04/09/17 15:24:10 Checkin Released
Not_Distributed
edw 11i.EDW.A 1863365 01/09/04 16:15:21 Checkin Obsoleted
By_Metalink
edw 11i.EDW.B 2182987 02/08/30 15:42:48 Checkin Obsoleted
By_Metalink
edw 11i.EDW.C 2700670 03/05/16 12:08:55 Checkin Released By_Dev

edw 11i.EDW.D 3295042 04/10/11 02:24:58 Checkin Released By_Dev

ego 11i.EGO.A 2714179 03/06/11 20:15:20 Checkin Released By_Dev

ego 11i.EGO.B 3001751 03/07/31 17:53:22 Checkin Released


Not_Distributed
ego 11i.EGO.C 3298205 04/10/08 18:30:10 Checkin Released By_Dev

ego 11i.EGO.D 3961504 05/02/01 11:00:01 Checkin Released By_Dev

ego 11i.EGO.E 4164205 05/04/27 15:40:23 Checkin Released


Not_Distributed
eng 11i.ENG.E 1886068 01/08/21 10:08:44 Checkin Released
Not_Distributed
eng 11i.ENG.F 2065670 02/01/29 19:06:19 Checkin Released
Not_Distributed
eng 11i.ENG.G 2248518 02/06/27 11:19:30 Checkin Released By_Dev

eng 11i.ENG.H 2371323 03/06/10 18:51:04 Checkin Released By_Dev

eng 11i.ENG.I 2769980 04/09/17 14:02:25 Checkin Released


Not_Distributed
eni 11i.ENI.B 1953413 01/09/08 15:28:07 Checkin Obsoleted
By_Metalink
eni 11i.ENI.C 1984648 01/10/17 18:24:43 Checkin Obsoleted
By_Metalink
eni 11i.ENI.D 2168529 02/01/15 11:15:28 Checkin Released By_Dev

eni 11i.ENI.E 2184509 02/07/16 17:37:09 Checkin Obsoleted


By_Metalink
eni 11i.ENI.F 2714518 03/06/11 19:14:43 Checkin Released By_Dev

eni 11i.ENI.G 3012003 03/07/31 14:05:15 Checkin Released


Not_Distributed
eni 11i.ENI.H 3315665 04/10/08 18:03:25 Checkin Released By_Dev

ews 11i.EWS.A 1863414 01/09/04 16:16:02 Checkin Obsoleted


By_Metalink
ews 11i.EWS.B 2182833 02/08/30 15:22:58 Checkin Obsoleted
By_Metalink
ews 11i.EWS.C 2700672 03/05/16 12:09:46 Checkin Released By_Dev

ews 11i.EWS.D 3295045 04/10/11 02:35:37 Checkin Released By_Dev

exchg_pf 11i.EXCHG_PF.A 1865096 01/07/20 13:07:18 Checkin Released


By_Metalink
exchg_pf 11i.EXCHG_PF.B 1985958 01/09/25 22:29:27 Checkin Released
By_Metalink
exchg_pf 11i.EXCHG_PF.C 2147366 02/01/31 13:20:16 Checkin Released
By_Metalink
fa 11i.FA.G 1974812 01/11/12 16:25:53 Checkin Obsoleted
By_Metalink
fa 11i.FA.H 2115788 01/11/19 22:03:04 Checkin Released
Not_Distributed
fa 11i.FA.I 2117740 02/01/22 18:15:43 Checkin Released
Not_Distributed
fa 11i.FA.J 2230269 02/03/29 16:07:57 Checkin Released By_Dev

fa 11i.FA.K 2398923 02/08/16 16:05:39 Checkin Released By_Dev

fa 11i.FA.L 2488733 03/04/01 16:58:14 Checkin Released By_Dev

fa 11i.FA.M 2719046 03/04/30 19:46:20 Checkin Released


By_Metalink
fa 11i.FA.N 2946358 03/12/12 14:11:17 Checkin Released By_Dev

fa 11i.FA.O 3151587 04/10/18 07:49:05 Checkin Released


Not_Distributed
fa 11i.FA.P 3616017 05/04/29 22:51:35 Checkin Released
Not_Distributed
fem 11i.FEM.B 3514740 04/08/27 13:24:07 Checkin Released
Not_Distributed
fem 11i.FEM.C 3701926 04/12/17 16:14:52 Checkin Released
Not_Distributed
fem 11i.FEM.D 4070479 05/09/13 00:42:52 Checkin Released
Not_Distributed
fem 11i.FEM.D.1 4684913 05/10/31 12:04:11 Checkin Released
Not_Distributed
fem 11i.FEM.D.1 5016223 06/05/26 13:26:03 Checkin Released
By_Metalink
fem 11i.FEM.D.10 6402403 07/12/31 10:29:44 Checkin Released
By_Metalink
fem 11i.FEM.D.2 4748190 05/12/01 10:17:33 Checkin Released
Not_Distributed
fem 11i.FEM.D.3 4862893 05/12/20 17:47:28 Checkin Released
Not_Distributed
fem 11i.FEM.D.4 4943697 06/02/01 12:58:30 Checkin Released
Not_Distributed
fem 11i.FEM.D.5 5015981 06/03/15 10:45:16 Checkin Released
Not_Distributed
fem 11i.FEM.D.6 5124355 06/04/14 07:41:54 Checkin Released
Not_Distributed
fem 11i.FEM.D.7 5365609 06/07/14 11:31:15 Checkin Released
By_Metalink
fem 11i.FEM.D.8 5560579 06/10/24 11:46:45 Checkin Released
By_Metalink
fem 11i.FEM.D.9 5903364 07/05/03 11:35:26 Checkin Released
By_Metalink
ff 11i.FF.C 2004077 01/10/03 04:36:03 Checkin Released
Not_Distributed
ff 11i.FF.D 2156864 02/02/21 19:55:30 Checkin Released
Not_Distributed
ff 11i.FF.E 2268446 02/05/09 07:25:07 Checkin Released
Not_Distributed
ff 11i.FF.F 2475632 02/11/27 04:23:13 Checkin Released
Not_Distributed
ff 11i.FF.G 2803574 03/05/19 12:08:39 Checkin Released
Not_Distributed
ff 11i.FF.H 3125846 03/12/05 09:27:19 Checkin Released
Not_Distributed
ff 11i.FF.I 3418286 04/07/27 09:37:11 Checkin Released
Not_Distributed
ff 11i.FF.J 3988387 05/03/08 13:25:28 Checkin Released
Not_Distributed
ff 11i.FF.K 4289856 05/06/30 14:59:36 Checkin Released
Not_Distributed
ff 11i.FF.K.1 5059541 06/05/31 02:30:04 Checkin Released
Not_Distributed
ff 11i.FF.K.2 5917523 07/06/22 08:46:16 Checkin Released
Not_Distributed
ff 11i.FF.K.3 6964733 08/07/02 03:25:44 Checkin Released
Not_Distributed
ff 11i.FF.K.4 8207892 09/07/09 05:52:22 Checkin Released
Not_Distributed
ff 11i.FF.K.5 9213937 10/04/18 22:32:48 Checkin Released
Not_Distributed
ff 11i.FF.K.6 10144638 11/04/21 03:40:28 Checkin Released
Not_Distributed
fii 11i.FII.D 1810489 01/08/24 15:16:55 Checkin Released
Not_Distributed
fii 11i.FII.E 2190434 02/08/16 15:04:51 Checkin Released
Not_Distributed
fii 11i.FII.F 2488736 03/04/18 12:09:50 Checkin Released
By_Metalink
fii 11i.FII.G 2864462 04/11/05 10:41:47 Checkin Released
By_Metalink
fingb_pf 11i.FINGB_PF.B 1719741 02/04/09 13:48:38 Checkin Obsoleted
By_Metalink
fin_pf 11i.FIN_PF.A 1807809 01/08/24 14:51:56 Checkin Released
By_Metalink
fin_pf 11i.FIN_PF.B 2218339 02/04/09 12:57:45 Checkin Released
By_Metalink
fin_pf 11i.FIN_PF.C 2380068 02/08/16 18:45:45 Checkin Released
By_Metalink
fin_pf 11i.FIN_PF.D 2629235 03/04/01 13:30:33 Patchset Closed
Not_Distributed
fin_pf 11i.FIN_PF.D.1 3016445 03/07/31 09:22:48 Checkin Released
By_Metalink
fin_pf 11i.FIN_PF.E 2842697 03/12/12 15:34:58 Checkin Released
By_Metalink
fin_pf 11i.FIN_PF.F 3153675 04/11/05 10:54:38 Checkin Released
By_Metalink
fin_pf 11i.FIN_PF.G 3653484 05/04/29 23:12:35 Checkin Released
By_Metalink
flm 11i.FLM.E 1886265 01/08/21 12:53:46 Checkin Released
Not_Distributed
flm 11i.FLM.F 2075306 02/01/30 11:25:12 Checkin Released
Not_Distributed
flm 11i.FLM.G 2248440 02/06/27 11:18:03 Checkin Released By_Dev

flm 11i.FLM.H 2479225 03/06/10 14:27:45 Checkin Released By_Dev

flm 11i.FLM.I 2768757 04/09/17 13:37:01 Checkin Released


Not_Distributed
fnd 11i.FND.D 1932070 01/10/17 13:03:32 Checkin Released
By_Metalink
fnd 11i.FND.E 2154367 02/02/20 18:19:51 Checkin Released
By_Metalink
fnd 11i.FND.F 2404698 02/09/04 18:17:48 Checkin Released
By_Metalink
fnd 11i.FND.G 2655277 03/06/20 12:00:35 Checkin Released
By_Metalink
fnd 11i.FND.H 3262159 04/11/04 18:20:41 Checkin Released
By_Metalink
fpa 11i.FPA.B 4136223 05/05/15 23:59:11 Checkin Released By_Dev

fpt 11i.FPT.C 1903552 02/07/10 15:48:17 Checkin Released By_Dev

fpt 11i.FPT.D 2456473 02/10/11 16:35:52 Checkin Released By_Dev

frm 11i.FRM.C 1931773 01/08/31 14:19:03 Checkin Released


By_Metalink
frm 11i.FRM.D 2450020 02/10/15 20:33:19 Checkin Released By_Dev

frm 11i.FRM.E 2677848 02/11/21 20:14:02 Checkin Released


By_Metalink
frm 11i.FRM.F 2682790 02/11/24 22:06:12 Checkin Released
By_Metalink
frm 11i.FRM.G 3761838 04/11/15 20:29:56 Checkin Released
By_Metalink
frm 11i.FRM.H 4206794 06/09/20 20:20:14 Checkin Released
By_Metalink
fte 11i.FTE.B 1952700 01/09/11 14:29:47 Checkin Released
Not_Distributed
fte 11i.FTE.C 2122883 02/01/30 16:56:02 Checkin Released
Not_Distributed
fte 11i.FTE.D 2254397 02/06/27 11:55:23 Checkin Released By_Dev

fte 11i.FTE.E 2690445 03/06/10 18:25:58 Checkin Released By_Dev

fte 11i.FTE.F 2770453 04/09/17 13:42:07 Checkin Released


Not_Distributed
ftp 11i.FTP.A 4069846 05/09/15 16:45:15 Checkin Released By_Dev

ftp 11i.FTP.A.1 4688191 05/12/23 14:51:09 Checkin Released By_Dev

ftp 11i.FTP.A.1 5147417 06/05/31 18:07:27 Checkin Released By_Dev

ftp 11i.FTP.A.3 5258023 06/07/21 06:09:43 Checkin Released By_Dev

ftp 11i.FTP.A.4 6711509 08/03/05 21:29:24 Checkin Released


By_Metalink
fv 11i.FV.D 1837509 01/08/27 18:02:21 Checkin Released
Not_Distributed
fv 11i.FV.E 1947442 01/11/29 04:56:35 Checkin Released
Not_Distributed
fv 11i.FV.F 2219341 02/05/17 09:21:19 Checkin Released
Not_Distributed
fv 11i.FV.G 2408789 03/04/02 12:42:54 Checkin Released By_Dev

fv 11i.FV.H 2750026 03/06/02 15:20:26 Checkin Released


By_Metalink
fv 11i.FV.I 2986214 03/12/12 14:11:03 Checkin Released By_Dev

fv 11i.FV.J 3151594 04/10/18 07:28:39 Checkin Released


Not_Distributed
fv 11i.FV.K 3617912 05/04/29 17:50:12 Checkin Released
Not_Distributed
fwk 11i.FWK.H 3262919 04/11/04 15:45:33 Checkin Released
By_Metalink
gcs 11i.GCS.A 3061521 03/12/22 09:05:42 Checkin Released By_Dev
gcs 11i.GCS.B 3271405 04/11/05 10:34:43 Checkin Released By_Dev

gcs 11i.GCS.C 4017392 05/04/29 17:46:12 Checkin Released By_Dev

gcs 11i.GCS.D 4616595 05/11/18 17:38:44 Checkin Released By_Dev

ghr 11i.GHR.C 1663200 01/09/28 12:27:20 Checkin Released


By_Metalink
ghr 11i.GHR.D 2156846 02/02/21 19:56:05 Checkin Released
Not_Distributed
ghr 11i.GHR.E 2268587 02/05/09 07:23:07 Checkin Released
Not_Distributed
ghr 11i.GHR.F 2410056 02/08/02 10:30:49 Checkin Released
Not_Distributed
ghr 11i.GHR.G 2634729 02/11/27 04:33:07 Checkin Released
Not_Distributed
ghr 11i.GHR.H 2803596 03/05/19 12:09:16 Checkin Released
Not_Distributed
ghr 11i.GHR.I 3125839 03/12/05 09:23:54 Checkin Released
Not_Distributed
ghr 11i.GHR.J 3418292 04/07/27 11:14:26 Checkin Released
Not_Distributed
ghr 11i.GHR.K 3988392 05/03/08 13:33:18 Checkin Released
Not_Distributed
ghr 11i.GHR.L 4289874 05/06/30 15:01:01 Checkin Released
Not_Distributed
ghr 11i.GHR.L.1 5059529 06/05/31 02:31:22 Checkin Released
Not_Distributed
ghr 11i.GHR.L.2 5917526 07/06/22 08:47:40 Checkin Released
Not_Distributed
ghr 11i.GHR.L.3 6964735 08/07/02 03:26:34 Checkin Released
Not_Distributed
ghr 11i.GHR.L.4 8207904 09/07/09 05:58:53 Checkin Released
Not_Distributed
ghr 11i.GHR.L.5 9213935 10/04/18 22:20:41 Checkin Released
Not_Distributed
ghr 11i.GHR.L.6 10144624 11/04/21 03:41:56 Checkin Released
Not_Distributed
gl 11i.GL.E 1900156 01/08/24 16:42:28 Checkin Released
Not_Distributed
gl 11i.GL.F 2153419 02/01/30 16:51:38 Checkin Released
Not_Distributed
gl 11i.GL.G 2336010 02/05/24 14:51:23 Checkin Released By_Dev

gl 11i.GL.H 2488743 03/04/02 11:56:03 Checkin Released By_Dev

gl 11i.GL.I 2864979 03/12/12 15:29:22 Checkin Released By_Dev

gl 11i.GL.J 3151409 04/10/18 07:01:56 Checkin Released


Not_Distributed
gl 11i.GL.K 3617593 05/04/29 17:27:14 Checkin Released
Not_Distributed
gma 11i.GMA.G 1770114 01/08/13 12:24:45 Checkin Released
Not_Distributed
gma 11i.GMA.H 1979212 02/01/11 18:56:46 Checkin Released
Not_Distributed
gma 11i.GMA.I 2192881 02/07/02 15:12:26 Checkin Released
Not_Distributed
gma 11i.GMA.J 2294171 02/12/26 13:32:13 Checkin Released
Not_Distributed
gma 11i.GMA.K 2663933 03/06/09 07:18:37 Checkin Released
Not_Distributed
gma 11i.GMA.L 2916578 04/09/17 15:55:27 Checkin Released
Not_Distributed
gmd 11i.GMD.G 1769533 01/08/13 14:55:27 Checkin Released
Not_Distributed
gmd 11i.GMD.H 1979534 02/01/12 06:07:14 Checkin Released
Not_Distributed
gmd 11i.GMD.I 2192885 02/07/03 08:34:27 Checkin Released
Not_Distributed
gmd 11i.GMD.J 2294175 02/12/26 13:39:53 Checkin Released
Not_Distributed
gmd 11i.GMD.K 2663936 03/06/09 10:55:13 Checkin Released
Not_Distributed
gmd 11i.GMD.L 2916585 04/09/17 15:05:27 Checkin Released
Not_Distributed
gme 11i.GME.G 1769596 01/08/13 13:34:58 Checkin Released
Not_Distributed
gme 11i.GME.H 1979540 02/01/12 06:10:46 Checkin Released
Not_Distributed
gme 11i.GME.I 2192904 02/07/03 07:47:02 Checkin Released
Not_Distributed
gme 11i.GME.J 2294178 02/12/26 13:48:01 Checkin Released
Not_Distributed
gme 11i.GME.K 2663939 03/06/09 09:02:10 Checkin Released
Not_Distributed
gme 11i.GME.L 2916589 04/09/17 13:07:52 Checkin Released
Not_Distributed
gmf 11i.GMF.G 1769518 01/08/13 13:48:37 Checkin Released
Not_Distributed
gmf 11i.GMF.H 1979547 02/01/11 18:53:11 Checkin Released
Not_Distributed
gmf 11i.GMF.I 2192909 02/07/02 15:09:45 Checkin Released
Not_Distributed
gmf 11i.GMF.J 2294183 02/12/26 13:49:19 Checkin Released
Not_Distributed
gmf 11i.GMF.K 2663940 03/06/09 07:20:34 Checkin Released
Not_Distributed
gmf 11i.GMF.L 2916592 04/09/17 13:19:50 Checkin Released
Not_Distributed
gmi 11i.GMI.G 1766259 01/08/13 13:49:13 Checkin Released
Not_Distributed
gmi 11i.GMI.H 1979552 02/01/12 06:14:46 Checkin Released
Not_Distributed
gmi 11i.GMI.I 2192912 02/07/03 08:15:54 Checkin Released
Not_Distributed
gmi 11i.GMI.J 2294188 02/12/26 13:50:09 Checkin Released
Not_Distributed
gmi 11i.GMI.K 2663941 03/06/09 09:44:20 Checkin Released
Not_Distributed
gmi 11i.GMI.L 2916596 04/09/17 13:30:54 Checkin Released
Not_Distributed
gml 11i.GML.G 1769528 01/08/13 12:41:06 Checkin Released
Not_Distributed
gml 11i.GML.H 1979561 02/01/11 18:52:18 Checkin Released
Not_Distributed
gml 11i.GML.I 2192913 02/07/03 08:17:53 Checkin Released
Not_Distributed
gml 11i.GML.J 2294192 02/12/26 13:51:06 Checkin Released
Not_Distributed
gml 11i.GML.K 2663943 03/06/09 07:22:17 Checkin Released
Not_Distributed
gml 11i.GML.L 2916602 04/09/17 13:53:41 Checkin Released
Not_Distributed
gmp 11i.GMP.G 1755479 01/08/13 12:36:25 Checkin Released
Not_Distributed
gmp 11i.GMP.H 1979568 02/01/11 12:57:51 Checkin Released
Not_Distributed
gmp 11i.GMP.I 2192921 02/07/03 08:42:26 Checkin Released
Not_Distributed
gmp 11i.GMP.J 2294225 02/12/26 13:51:51 Checkin Released
Not_Distributed
gmp 11i.GMP.K 2663944 03/06/09 09:04:47 Checkin Released
Not_Distributed
gmp 11i.GMP.L 2916603 04/09/17 13:51:36 Checkin Released
Not_Distributed
gms 11i.GMS.F 1741469 01/07/27 15:49:42 Checkin Released
By_Metalink
gms 11i.GMS.G 1937576 01/09/07 18:15:45 Checkin Released
By_Metalink
gms 11i.GMS.H 1984680 01/12/04 22:04:19 Checkin Released
By_Metalink
gms 11i.GMS.I 2166451 02/03/31 09:42:53 Checkin Released
By_Metalink
gms 11i.GMS.J 2492776 02/11/25 14:05:23 Checkin Released
By_Metalink
gms 11i.GMS.K 2691082 03/05/12 16:26:08 Checkin Released
By_Metalink
gms 11i.GMS.L 3018908 03/12/05 11:40:04 Checkin Released
By_Metalink
gms 11i.GMS.M 3521076 05/05/15 23:58:54 Checkin Released
Not_Distributed
gr 11i.GR.G 1766734 01/08/13 13:21:30 Checkin Released
Not_Distributed
gr 11i.GR.H 1979575 02/01/11 12:53:30 Checkin Released
Not_Distributed
gr 11i.GR.I 2192926 02/07/03 05:35:04 Checkin Released
Not_Distributed
gr 11i.GR.J 2294228 02/12/26 13:52:35 Checkin Released
Not_Distributed
gr 11i.GR.K 2663945 03/06/09 07:24:05 Checkin Released
Not_Distributed
gr 11i.GR.L 2916605 04/09/17 14:06:40 Checkin Released
Not_Distributed
hcp 11i.HCP.A 4186798 05/08/19 12:49:31 Checkin Released
Not_Distributed
hcp 11i.HCP.A.1 4570063 05/10/05 06:32:45 Checkin Released
Not_Distributed
hcp 11i.HCP.A.2 4620559 06/04/14 16:07:35 Checkin Released
Not_Distributed
hcp 11i.HCP.A.3 5178876 07/02/16 17:04:15 Checkin Released
Not_Distributed
hct 11i.HCT.A 2660832 02/12/23 16:35:53 Checkin Released
Not_Distributed
hct 11i.HCT.B 2725765 03/05/22 18:09:42 Checkin Released By_Dev
hct 11i.HCT.C 3002052 03/09/22 13:13:59 Checkin Released By_Dev

hct 11i.HCT.D 3316737 04/04/01 14:10:51 Checkin Released By_Dev

hct 11i.HCT.E 4176283 05/08/19 13:00:31 Checkin Released


Not_Distributed
hct 11i.HCT.E.1 4570066 05/10/05 06:34:16 Checkin Released
Not_Distributed
hct 11i.HCT.E.2 4620563 06/04/14 16:08:26 Checkin Released
Not_Distributed
hct 11i.HCT.E.3 5178908 07/02/16 17:05:28 Checkin Released
Not_Distributed
hc_pf 11i.HC_PF.A 2719586 02/12/23 16:46:50 Checkin Released
By_Metalink
hc_pf 11i.HC_PF.B 2871064 03/06/06 10:12:31 Checkin Released
By_Metalink
hc_pf 11i.HC_PF.C 3032405 03/09/22 18:41:10 Checkin Released
By_Metalink
hc_pf 11i.HC_PF.D 3254355 04/04/01 15:51:35 Checkin Released
By_Metalink
hc_pf 11i.HC_PF.E 4178883 05/08/19 13:02:41 Checkin Released
By_Metalink
hc_pf 11i.HC_PF.E.1 4567082 05/10/05 06:42:18 Checkin Released
By_Metalink
hc_pf 11i.HC_PF.E.2 4620608 06/04/14 16:08:51 Checkin Released
By_Metalink
hc_pf 11i.HC_PF.E.3 5178799 07/02/16 17:06:55 Checkin Released
By_Metalink
hri 11i.HRI.C 1663218 01/11/06 08:35:27 Checkin Released
By_Metalink
hri 11i.HRI.D 2373387 02/07/16 06:08:15 Checkin Released
By_Metalink
hri 11i.HRI.E 2483421 02/10/10 07:33:11 Checkin Released
By_Metalink
hri 11i.HRI.F 3177666 04/02/05 08:07:49 Checkin Released
By_Metalink
hri 11i.HRI.G 4001448 05/11/04 03:16:14 Checkin Released
By_Metalink
hr_pf 11i.HR_PF.A 2115771 02/02/24 08:16:26 Checkin Released
By_Metalink
hr_pf 11i.HR_PF.B 2268451 02/05/09 11:10:46 Checkin Released
By_Metalink
hr_pf 11i.HR_PF.C.1 2502761 02/08/08 07:15:02 Checkin Released
By_Metalink
hr_pf 11i.HR_PF.D 2632500 02/12/20 07:12:39 Checkin Released
By_Metalink
hr_pf 11i.HR_PF.E 2803988 03/05/30 01:39:19 Checkin Released
By_Metalink
hr_pf 11i.HR_PF.F 2968701 03/07/31 05:51:33 Checkin Released
By_Metalink
hr_pf 11i.HR_PF.G 3116666 03/12/05 17:02:06 Checkin Released
By_Metalink
hr_pf 11i.HR_PF.H 3233333 04/07/31 11:03:49 Checkin Released
By_Metalink
hr_pf 11i.HR_PF.I 3127777 04/11/04 21:17:15 Checkin Released
Not_Distributed
hr_pf 11i.HR_PF.J 3333633 05/03/14 03:20:29 Checkin Released
By_Metalink
hr_pf 11i.HR_PF.K 3500000 05/07/05 13:15:32 Checkin Released
By_Metalink
hr_pf 11i.HR_PF.K.1 5055050 06/05/31 03:01:38 Checkin Released
By_Metalink
hr_pf 11i.HR_PF.K.2 5337777 07/06/22 16:43:12 Checkin Released
By_Metalink
hr_pf 11i.HR_PF.K.3 6699770 08/07/02 03:55:17 Checkin Released
By_Metalink
hr_pf 11i.HR_PF.K.4 7666111 09/07/10 02:46:58 Checkin Released
By_Metalink
hr_pf 11i.HR_PF.K.5 9062727 10/04/19 04:20:16 Checkin Released
By_Metalink
hr_pf 11i.HR_PF.K.6 10015566 11/04/21 10:21:57 Checkin Released
By_Metalink
hxc 11i.HXC.B 2398786 02/05/31 15:33:19 Checkin Released
Not_Distributed
hxc 11i.HXC.C 2717041 03/03/27 11:51:31 Checkin Obsoleted
Not_Distributed
hxt 11i.HXT.C 1663255 02/03/03 12:43:40 Checkin Released
By_Metalink
hxt 11i.HXT.D 2398780 02/08/09 23:08:25 Checkin Released
By_Metalink
hxt 11i.HXT.E 2716711 03/06/12 01:21:58 Checkin Released By_Dev

hxt 11i.HXT.F 3042947 03/07/25 07:49:15 Checkin Released


By_Metalink
hxt 11i.HXT.G 3285055 04/03/15 11:23:50 Checkin Released
By_Metalink
hxt 11i.HXT.H 3530830 04/11/04 19:05:44 Checkin Released
By_Metalink
hxt 11i.HXT.I 4188854 05/05/09 09:12:01 Checkin Released
By_Metalink
hxt 11i.HXT.J 4428056 05/12/18 21:50:31 Checkin Released
By_Metalink
hxt 11i.HXT.J.1 9214252 09/12/17 21:46:25 Checkin Released
Not_Distributed
hxt 11i.HXT.J.2 9214257 09/12/17 21:57:47 Checkin Released
Not_Distributed
hxt 11i.HXT.J.3 9214258 09/12/17 21:58:58 Checkin Released
Not_Distributed
hxt 11i.HXT.J.4 9214263 09/12/27 22:34:16 Checkin Released
Not_Distributed
hxt 11i.HXT.J.5 9213930 10/04/18 22:13:18 Checkin Released
Not_Distributed
hxt 11i.HXT.J.6 10144612 11/04/21 03:42:42 Checkin Released
Not_Distributed
hz 11i.HZ.E 1886227 01/09/07 16:41:45 Checkin Obsoleted
By_Metalink
hz 11i.HZ.F 1921951 01/09/28 15:47:57 Checkin Released
By_Metalink
hz 11i.HZ.G 2111967 02/01/31 13:35:59 Checkin Released
By_Metalink
hz 11i.HZ.H 2116159 02/04/19 21:38:06 Checkin Released
By_Metalink
hz 11i.HZ.I 2239222 02/08/16 15:21:10 Checkin Released
By_Metalink
hz 11i.HZ.J 2488745 03/04/02 14:23:17 Checkin Released
By_Metalink
hz 11i.HZ.K 2790616 03/07/03 15:45:40 Checkin Released
By_Metalink
hz 11i.HZ.L 3036401 03/12/12 15:02:35 Checkin Released
By_Metalink
hz 11i.HZ.M 3151672 04/11/04 21:09:19 Checkin Released
By_Metalink
hz 11i.HZ.N 3618299 05/04/29 22:20:14 Checkin Released
By_Metalink
ia 11i.IA.A 3289862 04/11/05 10:27:12 Checkin Released
By_Metalink
ia 11i.IA.B 4056377 05/04/29 15:28:53 Checkin Released
Not_Distributed
iba 11i.IBA.D 1903260 01/10/05 18:19:01 Checkin Released By_Dev

ibc 11i.IBC.A 2417049 02/10/10 11:05:42 Checkin Released


By_Support
ibc 11i.IBC.B 2629974 03/04/24 19:38:54 Checkin Released
By_Metalink
ibc 11i.IBC.C 3025788 04/11/05 09:34:41 Checkin Released
By_Metalink
ibe 11i.IBE.H 1808300 01/08/29 21:31:03 Checkin Obsoleted By_Dev

ibe 11i.IBE.I 1971029 01/11/02 17:03:30 Checkin Released By_Dev

ibe 11i.IBE.J 2168901 02/02/18 17:59:13 Checkin Released


By_Metalink
ibe 11i.IBE.K 2234708 02/05/14 20:13:32 Checkin Released
By_Metalink
ibe 11i.IBE.L 2376394 02/05/31 13:58:44 Checkin Released
By_Metalink
ibe 11i.IBE.M 2400949 02/08/31 01:25:09 Checkin Released
By_Metalink
ibe 11i.IBE.N 2400955 02/10/25 18:33:32 Checkin Released
By_Metalink
ibe 11i.IBE.O 2636442 03/04/01 18:00:09 Checkin Released
By_Metalink
ibe 11i.IBE.P 3071058 04/06/21 21:19:25 Checkin Released
By_Metalink
ibu 11i.IBU.G 1815583 01/09/20 20:07:43 Checkin Released By_Dev

ibu 11i.IBU.H 2009497 01/11/02 19:05:13 Checkin Released By_Dev

ibu 11i.IBU.I 2136774 02/05/31 14:16:26 Checkin Released


By_Metalink
ibu 11i.IBU.J 2418799 02/07/02 11:00:52 Checkin Released By_Dev

ibu 11i.IBU.K 2484557 02/08/02 10:46:25 Checkin Released By_Dev

ibu 11i.IBU.L 2505350 02/08/08 18:05:45 Checkin Released By_Dev

ibu 11i.IBU.M 2569009 02/09/13 14:31:22 Checkin Released By_Dev

ibu 11i.IBU.N 2594194 02/12/12 10:45:51 Checkin Released By_Dev

ibu 11i.IBU.O 2709518 03/06/10 20:24:57 Checkin Released By_Dev

ibu 11i.IBU.P 3215243 04/09/17 14:48:25 Checkin Released


Not_Distributed
iby 11i.IBY.E 1806015 01/07/24 17:13:02 Checkin Released
Not_Distributed
iby 11i.IBY.F 1901319 01/08/08 16:02:36 Checkin Released
Not_Distributed
iby 11i.IBY.G 1924412 01/08/15 14:32:24 Checkin Released By_Dev

iby 11i.IBY.H 1939825 01/09/07 10:24:31 Checkin Released By_Dev

iby 11i.IBY.I 1982049 01/09/28 11:27:45 Checkin Released By_Dev

iby 11i.IBY.J 2022617 01/11/04 10:35:44 Checkin Released By_Dev

iby 11i.IBY.K 2173029 02/02/01 11:54:54 Checkin Released


Not_Distributed
iby 11i.IBY.L 2268040 02/08/22 11:15:46 Checkin Released By_Dev

iby 11i.IBY.M 2527157 02/09/13 19:47:24 Checkin Released


Not_Distributed
iby 11i.IBY.N 2683795 03/04/02 12:09:30 Checkin Released
By_Metalink
iby 11i.IBY.O 3042827 03/12/12 14:54:47 Checkin Released
By_Metalink
iby 11i.IBY.P 3151563 04/10/18 07:52:10 Checkin Released
Not_Distributed
iby 11i.IBY.Q 3616207 05/04/29 22:56:49 Checkin Released By_Dev

icx 11i.ICX.E 1886211 01/08/22 09:55:43 Checkin Released


Not_Distributed
icx 11i.ICX.F 2096654 02/01/31 16:22:37 Checkin Released
Not_Distributed
icx 11i.ICX.G 2319967 02/08/15 17:24:21 Checkin Released
Not_Distributed
icx 11i.ICX.H 2478494 03/06/10 18:01:04 Checkin Released By_Dev

icx 11i.ICX.I 3212296 04/09/17 14:26:04 Checkin Released


Not_Distributed
ieb 11i.IEB.K 1868632 01/07/19 12:08:54 Checkin Released By_Dev

ieb 11i.IEB.L 1916617 01/09/27 12:56:16 Checkin Released By_Dev

ieb 11i.IEB.M 2161778 01/12/28 16:26:48 Checkin Released By_Dev

ieb 11i.IEB.N 2241284 02/02/27 11:11:19 Checkin Released By_Dev

ieb 11i.IEB.O 2383615 02/05/23 12:00:56 Checkin Released By_Dev

ieb 11i.IEB.P 2482290 02/07/29 08:41:14 Checkin Released By_Dev

ieb 11i.IEB.Q 2682730 02/11/29 16:55:28 Checkin Released By_Dev

ieb 11i.IEB.R 3103016 03/10/29 17:27:09 Checkin Released By_Dev

iec 11i.IEC.A 1917946 01/09/27 12:40:43 Checkin Obsoleted


By_Metalink
iec 11i.IEC.B 2151089 01/12/29 22:16:43 Checkin Released By_Dev

iec 11i.IEC.C 2241598 02/02/27 12:53:30 Checkin Released By_Dev

iec 11i.IEC.D 2288033 02/05/23 20:55:48 Checkin Released By_Dev

iec 11i.IEC.F 2394621 02/05/29 15:22:50 Checkin Released By_Dev


iec 11i.IEC.G 2481366 02/07/29 05:58:21 Checkin Released By_Dev

iec 11i.IEC.H 2687987 02/11/29 11:24:22 Checkin Released By_Dev

iec 11i.IEC.R 3103006 03/10/29 17:35:23 Checkin Released By_Dev

iem 11i.IEM.K 1873056 01/07/19 12:28:43 Checkin Released By_Dev

iem 11i.IEM.L 1915274 01/09/27 18:35:44 Checkin Released By_Dev

iem 11i.IEM.M 2135496 01/12/28 16:08:33 Checkin Released By_Dev

iem 11i.IEM.N 2240514 02/02/27 12:49:08 Checkin Released By_Dev

iem 11i.IEM.O 2387043 02/05/24 08:39:10 Checkin Released By_Dev

iem 11i.IEM.P 2484317 02/07/28 19:28:55 Checkin Released By_Dev

iem 11i.IEM.Q 2688479 02/11/28 23:37:43 Checkin Released By_Dev

iem 11i.IEM.R 3105039 03/10/29 17:36:42 Checkin Released


Not_Distributed
ieo 11i.IEO.K 1863663 01/07/19 12:44:44 Checkin Released By_Dev

ieo 11i.IEO.L 1918151 01/09/27 13:03:12 Checkin Released By_Dev

ieo 11i.IEO.M 2145418 01/12/31 06:31:49 Checkin Released By_Dev

ieo 11i.IEO.N 2243184 02/02/27 11:31:59 Checkin Released By_Dev

ieo 11i.IEO.O 2384304 02/05/23 16:58:45 Checkin Released By_Dev

ieo 11i.IEO.P 2486037 02/07/29 16:44:48 Checkin Released By_Dev

ieo 11i.IEO.Q 2690842 02/12/02 11:56:31 Checkin Released By_Dev

ieo 11i.IEO.R 3112614 03/10/29 17:29:39 Checkin Released By_Dev

ies 11i.IES.K 1863440 01/07/30 09:22:19 Checkin Released


By_Metalink
ies 11i.IES.L 1914655 01/09/27 14:02:04 Checkin Released By_Dev

ies 11i.IES.M 2162202 01/12/27 10:33:48 Checkin Released By_Dev

ies 11i.IES.N 2348942 02/05/23 15:29:35 Checkin Released By_Dev

ies 11i.IES.O 2474397 02/07/26 14:55:19 Checkin Released By_Dev

ies 11i.IES.P 2688381 02/11/29 12:01:33 Checkin Released By_Dev

ies 11i.IES.Q 2785906 03/02/04 17:40:37 Checkin Released


Not_Distributed
ies 11i.IES.R 3105044 03/10/29 17:32:04 Checkin Released By_Dev

ieu 11i.IEU.K 1868639 01/07/30 13:36:15 Checkin Released


By_Metalink
ieu 11i.IEU.L 1916618 01/09/27 21:21:56 Checkin Released By_Dev

ieu 11i.IEU.M 2161777 01/12/29 17:21:43 Checkin Released By_Dev


ieu 11i.IEU.N 2241283 02/02/27 11:21:46 Checkin Released By_Dev

ieu 11i.IEU.O 2383611 02/05/23 21:15:38 Checkin Released By_Dev

ieu 11i.IEU.P 2482288 02/07/29 09:36:47 Checkin Released By_Dev

ieu 11i.IEU.Q 2682729 02/11/29 16:58:29 Checkin Released By_Dev

ieu 11i.IEU.R 3101379 03/10/29 17:31:02 Checkin Released By_Dev

iex 11i.IEX.C 1903536 02/06/04 11:32:47 Checkin Released By_Dev

iex 11i.IEX.D 2402713 02/10/11 15:48:55 Checkin Released By_Dev

iex 11i.IEX.E 2681531 03/06/13 05:06:14 Checkin Released


By_Metalink
iex 11i.IEX.F 2989439 03/12/16 14:14:36 Checkin Released
By_Metalink
iex 11i.IEX.G 3274195 04/11/05 10:52:27 Checkin Released
By_Metalink
iex 11i.IEX.H 3999182 05/05/13 16:15:31 Checkin Released
By_Metalink
igc 11i.IGC.F 1873209 01/08/24 08:27:42 Checkin Obsoleted
By_Metalink
igc 11i.IGC.G 2098428 01/12/12 23:11:53 Checkin Obsoleted
By_Metalink
igi 11i.IGI.F 1830981 01/08/12 22:20:34 Checkin Released
Not_Distributed
igi 11i.IGI.G 1856104 01/08/28 12:19:58 Checkin Released
Not_Distributed
igi 11i.IGI.H 1949153 02/01/11 20:57:46 Checkin Released
Not_Distributed
igi 11i.IGI.I 2128662 02/03/06 22:30:45 Checkin Released
Not_Distributed
igi 11i.IGI.J 2419536 02/08/30 21:11:55 Checkin Released
By_Metalink
igi 11i.IGI.K 2459356 03/04/02 13:02:17 Checkin Released By_Dev

igi 11i.IGI.L 2766653 03/05/30 21:33:16 Checkin Released


By_Metalink
igi 11i.IGI.M 2986210 03/12/12 14:13:09 Checkin Released By_Dev

igi 11i.IGI.N 3151665 04/10/18 07:21:51 Checkin Released


Not_Distributed
igi 11i.IGI.O 3615915 05/04/29 23:04:37 Checkin Released
Not_Distributed
igp 11i.IGP.A 3570941 04/11/05 11:45:38 Checkin Released
By_Metalink
igr 11i.IGR.A 4233605 05/05/25 17:30:57 Checkin Released
By_Metalink
igr 11i.IGR.A.1 5311462 06/06/28 12:02:55 Checkin Released
By_Metalink
igr 11i.IGR.A.2 5837572 07/03/12 14:28:58 Checkin Released
By_Metalink
igs 11i.IGS.E 1949658 01/08/31 06:21:06 Checkin Released
By_Metalink
igs 11i.IGS.F 2245714 02/03/13 06:09:23 Checkin Released
By_Metalink
igs 11i.IGS.G 2266630 02/04/11 21:55:28 Checkin Released By_Dev

igs 11i.IGS.H 2319620 02/07/31 13:19:45 Checkin Released


By_Metalink
igs 11i.IGS.I 2658168 03/01/31 09:04:11 Checkin Released
By_Metalink
igs 11i.IGS.J 2799224 03/04/04 10:04:52 Checkin Released
By_Metalink
igs 11i.IGS.K 2903331 03/08/01 14:53:28 Checkin Released By_Dev

igs 11i.IGS.L 3082081 04/04/01 08:19:50 Checkin Released By_Dev

igs 11i.IGS.L.1 5014084 06/03/06 18:59:29 Checkin Released


By_Metalink
igs 11i.IGS.M 4531385 05/12/22 13:49:33 Checkin Released
By_Metalink
igs 11i.IGS.M.1 5014174 06/06/23 16:55:18 Checkin Released
By_Metalink
igs 11i.IGS.M.10 7498324 08/12/22 22:39:45 Checkin Released
By_Metalink
igs 11i.IGS.M.11 8220472 09/03/16 00:38:01 Checkin Released
By_Metalink
igs 11i.IGS.M.12 8627557 09/08/14 00:53:15 Checkin Released
By_Metalink
igs 11i.IGS.M.13 9023045 09/12/14 00:46:59 Checkin Released
By_Metalink
igs 11i.IGS.M.14 9322614 10/03/25 08:59:04 Checkin Released
By_Metalink
igs 11i.IGS.M.15 9794644 10/08/06 00:14:09 Checkin Released
By_Metalink
igs 11i.IGS.M.16 11709624 11/03/16 03:26:20 Checkin Released
By_Metalink
igs 11i.IGS.M.2 5524932 06/11/22 12:16:34 Checkin Released
By_Metalink
igs 11i.IGS.M.3 5769147 07/03/16 13:21:26 Checkin Released
By_Metalink
igs 11i.IGS.M.4 6006278 07/06/22 11:19:55 Checkin Released
By_Metalink
igs 11i.IGS.M.5 6196811 07/08/29 14:34:10 Checkin Released
By_Metalink
igs 11i.IGS.M.6 6609859 07/12/21 08:53:48 Checkin Released
By_Metalink
igs 11i.IGS.M.7 6800905 08/03/18 09:06:01 Checkin Released
By_Metalink
igs 11i.IGS.M.8 6992417 08/06/16 03:51:47 Checkin Released
By_Metalink
igs 11i.IGS.M.9 7252704 08/08/22 07:59:13 Checkin Released
By_Metalink
igw 11i.IGW.C 1814546 01/11/08 18:06:54 Checkin Released
Not_Distributed
igw 11i.IGW.D 2295451 02/09/03 15:53:53 Checkin Released
Not_Distributed
igw 11i.IGW.E 2492817 03/04/02 14:28:11 Checkin Released
By_Metalink
igw 11i.IGW.F 3093820 03/12/12 15:22:51 Checkin Released
By_Metalink
igw 11i.IGW.G 3981425 04/12/23 21:14:20 Checkin Released
By_Metalink
imc 11i.IMC.A 2201671 02/02/01 18:46:06 Checkin Released
Not_Distributed
imc 11i.IMC.B 2396751 02/10/23 20:11:44 Checkin Released By_Dev

imc 11i.IMC.C 2667549 03/01/23 17:31:56 Checkin Released By_Dev

imc 11i.IMC.D 2751066 03/01/23 17:35:02 Checkin Released


Not_Distributed
imc 11i.IMC.E 2767047 03/01/24 10:13:38 Checkin Released
Not_Distributed
imc 11i.IMC.F 2767053 03/01/24 10:24:43 Checkin Released
Not_Distributed
imc 11i.IMC.G 2767055 03/01/24 10:33:37 Checkin Released
Not_Distributed
imc 11i.IMC.H 2767060 03/01/24 10:56:24 Checkin Released
Not_Distributed
imc 11i.IMC.I 2767062 03/02/06 15:13:42 Checkin Released
By_Metalink
imc 11i.IMC.J 2767066 03/04/23 17:04:17 Checkin Released
By_Metalink
imc 11i.IMC.K 3161885 03/12/24 14:33:50 Checkin Released
By_Metalink
imc 11i.IMC.L 3284214 04/11/05 10:40:03 Checkin Released
By_Metalink
imc 11i.IMC.M 4017594 05/04/29 17:37:41 Checkin Released
By_Metalink
imt 11i.IMT.A 2216180 02/03/05 19:00:55 Checkin Released By_Dev

imt 11i.IMT.B 2244723 02/03/29 19:00:13 Checkin Released By_Dev

imt 11i.IMT.C 2299195 02/04/23 20:09:12 Checkin Released


By_Metalink
inv 11i.INV.F 1886015 01/08/28 20:24:42 Checkin Released
By_Metalink
inv 11i.INV.G 2004922 02/01/30 20:25:04 Checkin Released
By_Metalink
inv 11i.INV.H 2248490 02/08/16 19:01:06 Checkin Released
By_Metalink
inv 11i.INV.I 2371213 03/06/20 17:21:58 Checkin Released
By_Metalink
inv 11i.INV.J 2770966 04/09/17 17:54:55 Checkin Released
Not_Distributed
ipa 11i.IPA.D 1617586 02/05/17 12:58:42 Checkin Released
By_Metalink
ipa 11i.IPA.E 2484640 03/02/17 14:40:23 Checkin Released
By_Metalink
ipa 11i.IPA.F 3069070 03/11/28 09:15:06 Checkin Released
Not_Distributed
ipatch 11i.IPATCH.B 2495518 02/11/05 11:32:13 Checkin Released By_Dev

ipd 11i.IPD.E 1952224 01/09/06 16:21:56 Checkin Released


By_Metalink
ipd 11i.IPD.F 1980661 01/10/17 18:23:42 Checkin Obsoleted
By_Metalink
ipd 11i.IPD.G 2067542 01/11/09 09:53:44 Checkin Released By_Dev

ipd 11i.IPD.H 2105854 01/11/29 01:54:54 Checkin Released


By_Metalink
ipd 11i.IPD.I 2131545 01/12/15 14:26:51 Checkin Released By_Dev
ipd 11i.IPD.J 2166223 02/01/14 16:43:04 Checkin Released By_Dev

ipd 11i.IPD.K 2183248 02/05/01 19:09:37 Checkin Released


By_Metalink
ipd 11i.IPD.L 2360840 02/07/16 17:35:35 Checkin Released
By_Metalink
ipd 11i.IPD.M 2777269 04/01/22 00:12:58 Checkin Released
By_Metalink
irc 11i.IRC.A 2385730 02/05/23 15:39:41 Checkin Released
By_Metalink
irc 11i.IRC.B 2982658 03/07/07 00:36:44 Checkin Released
By_Metalink
irc 11i.IRC.C 3197168 04/02/27 12:23:27 Checkin Released
By_Metalink
irc 11i.IRC.D 3469985 04/11/04 19:15:45 Checkin Released
By_Metalink
irc 11i.IRC.E 4428071 06/01/18 04:01:49 Checkin Released
By_Metalink
irc 11i.IRC.E.1 5061111 06/06/30 03:54:30 Checkin Released
By_Metalink
irc 11i.IRC.E.2 6208000 07/11/16 03:11:11 Checkin Released
By_Metalink
irc 11i.IRC.E.3 6964709 08/07/02 03:27:52 Checkin Released
Not_Distributed
irc 11i.IRC.E.4 8208171 09/07/09 06:03:53 Checkin Released
Not_Distributed
irc 11i.IRC.E.5 9213928 10/04/18 22:06:00 Checkin Released
Not_Distributed
irc 11i.IRC.E.6 10144607 11/04/21 03:43:36 Checkin Released
Not_Distributed
isc 11i.ISC.B 2695944 04/09/17 13:30:54 Checkin Released
Not_Distributed
isx 11i.ISX.A 2132737 01/12/05 00:04:05 Checkin Obsoleted By_Dev

isx 11i.ISX.B 2284575 02/05/06 13:57:22 Checkin Obsoleted


By_Metalink
ita 11i.ITA.A 3904312 05/02/21 21:39:11 Checkin Released
By_Metalink
itg 11i.ITG.E 1742929 01/07/17 13:55:45 Checkin Released
By_Metalink
itg 11i.ITG.F 2692950 04/10/11 11:19:03 Checkin Released
Not_Distributed
itm 11i.ITM.A 4189546 05/04/27 15:16:43 Checkin Released
Not_Distributed
ja 11i.JA.E 1749145 02/02/12 18:07:37 Checkin Released
Not_Distributed
ja 11i.JA.F 2202589 03/04/02 12:06:13 Checkin Released By_Dev

ja 11i.JA.G 2865286 03/12/12 14:07:44 Checkin Released By_Dev

ja 11i.JA.H 3151471 04/10/18 07:15:27 Checkin Released


Not_Distributed
ja 11i.JA.I 3618260 05/04/29 15:29:52 Checkin Released
Not_Distributed
je 11i.JE.E 1794254 01/10/26 14:34:36 Checkin Released
Not_Distributed
je 11i.JE.F 2009602 02/04/11 11:21:20 Checkin Released By_Dev

je 11i.JE.G 2271080 03/04/02 12:07:56 Checkin Released By_Dev


je 11i.JE.H 2865293 03/12/12 15:23:51 Checkin Released By_Dev

je 11i.JE.I 3151480 04/10/18 06:31:02 Checkin Released


Not_Distributed
je 11i.JE.J 3617971 05/04/29 16:08:13 Checkin Released
Not_Distributed
jg 11i.JG.F 1781750 01/08/24 13:29:12 Checkin Released
Not_Distributed
jg 11i.JG.G 1961403 01/12/27 18:53:45 Checkin Released By_Dev

jg 11i.JG.H 2132882 03/04/02 12:19:41 Checkin Released By_Dev

jg 11i.JG.I 2865290 03/12/12 14:49:30 Checkin Released By_Dev

jg 11i.JG.J 3151483 04/10/18 16:52:07 Checkin Released


Not_Distributed
jg 11i.JG.K 3616248 05/04/29 17:45:56 Checkin Released
Not_Distributed
jl 11i.JL.G 1773953 01/08/24 16:49:40 Checkin Released
Not_Distributed
jl 11i.JL.H 1919833 01/12/14 17:59:43 Checkin Released
Not_Distributed
jl 11i.JL.I 2123121 02/05/03 09:24:28 Checkin Released
Not_Distributed
jl 11i.JL.J 2310959 03/04/02 12:08:44 Checkin Released By_Dev

jl 11i.JL.K 2865296 03/12/12 14:50:43 Checkin Released By_Dev

jl 11i.JL.L 3151519 04/10/18 16:56:47 Checkin Released


Not_Distributed
jl 11i.JL.M 3617454 05/04/29 15:40:43 Checkin Released
Not_Distributed
jta 11i.JTA.A 1830830 01/08/19 21:17:31 Checkin Obsoleted
By_Metalink
jta 11i.JTA.B 2065484 01/11/02 21:31:22 Checkin Released By_Dev

jta 11i.JTA.C 2154180 02/05/16 17:44:36 Checkin Obsoleted By_Dev

jta 11i.JTA.D 2368042 02/08/23 19:28:14 Checkin Released


By_Metalink
jta 11i.JTA.E 2640247 03/06/11 15:38:50 Checkin Released
By_Metalink
jta 11i.JTA.F 3262486 04/11/04 22:41:32 Checkin Released
By_Metalink
jth 11i.JTH.R 3100686 04/11/05 10:04:31 Checkin Released
By_Metalink
jtm 11i.JTM.A 1911146 01/10/12 19:45:14 Checkin Released By_Dev

jtm 11i.JTM.C 2427321 02/08/29 11:43:13 Checkin Released By_Dev

jtm 11i.JTM.D 2514185 02/10/15 17:52:29 Checkin Released


By_Metalink
jtm 11i.JTM.E 2670197 03/06/11 15:42:15 Checkin Released
By_Metalink
jtm 11i.JTM.F 3263420 04/11/04 23:36:46 Checkin Released
By_Metalink
jto 11i.JTO.R 3105667 04/11/05 10:05:31 Checkin Released
By_Metalink
jtp 11i.JTP.A 2014756 02/08/07 15:20:18 Checkin Obsoleted
By_Metalink
jts 11i.JTS.A 2004385 01/11/02 14:45:52 Checkin Released By_Dev

jts 11i.JTS.B 2197077 02/01/31 16:49:31 Checkin Released


By_Metalink
jts 11i.JTS.C 2244601 02/02/28 18:01:34 Checkin Released
By_Metalink
jts 11i.JTS.D 2282470 02/04/01 10:22:05 Checkin Released
By_Metalink
jts 11i.JTS.E 2386712 02/10/22 14:56:06 Checkin Released
By_Metalink
jtt 11i.JTT.A 1883175 01/08/18 23:49:03 Checkin Released
By_Metalink
jtt 11i.JTT.B 2239956 02/05/15 18:15:56 Checkin Released By_Dev

jtt 11i.JTT.C 2276388 02/08/21 18:46:21 Checkin Released


By_Metalink
jtt 11i.JTT.D 2420923 03/04/11 23:18:28 Checkin Released
By_Metalink
jtt 11i.JTT.E 3127042 04/11/04 17:53:24 Checkin Released
By_Metalink
jtu 11i.JTU.A 2092384 01/12/06 06:02:10 Checkin Released
By_Metalink
jtu 11i.JTU.B 2684570 03/04/01 18:21:09 Checkin Released
By_Metalink
jtu 11i.JTU.C 2917386 03/07/16 11:52:57 Checkin Released
By_Metalink
jty 11i.JTY.A 2712613 03/04/03 16:29:03 Checkin Released
Not_Distributed
jty 11i.JTY.B 3061831 04/02/20 15:04:37 Checkin Released
By_Support
jty 11i.JTY.C 3495600 04/11/05 09:39:04 Checkin Released
By_Metalink
lns 11i.LNS.A 3431623 04/09/16 16:22:44 Checkin Released By_Dev

lns 11i.LNS.B 3897247 05/04/08 14:20:50 Checkin Released


By_Metalink
mas_pf 11i.MAS_PF.A 3386886 04/11/05 10:16:48 Checkin Released
By_Metalink
mkt_pf 11i.MKT_PF.A 2459266 02/10/11 22:22:36 Checkin Released
By_Metalink
mkt_pf 11i.MKT_PF.B 2630927 03/06/24 18:05:32 Checkin Released
By_Metalink
mrp 11i.MRP.E 1886035 01/08/21 14:14:12 Checkin Released
Not_Distributed
mrp 11i.MRP.F 2075266 02/01/30 11:25:58 Checkin Released
Not_Distributed
mrp 11i.MRP.G 2248430 02/06/27 11:41:52 Checkin Released
Not_Distributed
mrp 11i.MRP.H 2479230 03/06/10 19:02:37 Checkin Released By_Dev

mrp 11i.MRP.I 2769918 04/09/17 13:59:13 Checkin Released


Not_Distributed
msc 11i.MSC.E 1886018 01/08/06 12:57:10 Checkin Released
Not_Distributed
msc 11i.MSC.F 2106703 02/01/30 19:13:56 Checkin Released
Not_Distributed
msc 11i.MSC.G 2250385 02/06/27 16:50:25 Checkin Released By_Dev
msc 11i.MSC.H 2478170 03/06/10 19:11:51 Checkin Released By_Dev

msc 11i.MSC.I 3200649 04/09/17 17:10:12 Checkin Released


Not_Distributed
msd 11i.MSD.E 1886010 01/08/06 12:57:09 Checkin Released
Not_Distributed
msd 11i.MSD.F 2075438 02/01/30 18:24:46 Checkin Released
Not_Distributed
msd 11i.MSD.G 2250395 02/06/27 12:47:06 Checkin Released By_Dev

msd 11i.MSD.H 2478195 03/06/10 14:49:03 Checkin Released By_Dev

msd 11i.MSD.I 3200658 04/09/17 13:46:59 Checkin Released


Not_Distributed
mso 11i.MSO.E 1886444 01/08/06 12:58:12 Checkin Released
Not_Distributed
mso 11i.MSO.F 2112188 02/01/30 18:43:50 Checkin Released
Not_Distributed
mso 11i.MSO.G 2250387 02/06/27 12:48:57 Checkin Released By_Dev

mso 11i.MSO.H 2478230 03/06/10 14:47:18 Checkin Released By_Dev

mso 11i.MSO.I 3200659 04/09/17 13:43:47 Checkin Released


Not_Distributed
msr 11i.MSR.C 1886157 01/08/06 12:57:56 Checkin Released
Not_Distributed
msr 11i.MSR.D 2075445 02/01/30 18:45:54 Checkin Released
Not_Distributed
msr 11i.MSR.E 2250391 02/06/27 12:48:08 Checkin Released By_Dev

msr 11i.MSR.F 2478234 03/06/10 14:38:55 Checkin Released By_Dev

msr 11i.MSR.G 3200664 04/09/17 13:34:37 Checkin Released


Not_Distributed
mst 11i.MST.A 3099306 04/09/17 13:28:07 Checkin Released
Not_Distributed
msx 11i.MSX.A 2122893 02/01/30 16:42:18 Checkin Released
Not_Distributed
mwa 11i.MWA.D 1886741 01/08/21 13:19:28 Checkin Released
Not_Distributed
mwa 11i.MWA.E 2069426 02/01/29 18:16:10 Checkin Released
Not_Distributed
mwa 11i.MWA.F 2212671 02/06/27 11:08:21 Checkin Released By_Dev

mwa 11i.MWA.G 2691017 03/06/10 14:16:26 Checkin Released By_Dev

mwa 11i.MWA.H 2770126 04/09/17 13:19:59 Checkin Released


Not_Distributed
oam 11i.OAM.G 2737099 03/06/11 15:57:58 Checkin Released
By_Metalink
oam 11i.OAM.H 3258830 04/11/04 14:52:06 Checkin Released
By_Metalink
ocm 11i.OCM.A 3391365 04/04/28 11:57:55 Checkin Released
By_Metalink
ocm 11i.OCM.B 3373464 04/10/18 09:01:55 Checkin Released By_Dev

ocm 11i.OCM.C 3620763 05/04/29 19:54:56 Checkin Released By_Dev


ocm 11i.OCM.D 4594570 06/02/06 19:57:57 Checkin Released
By_Metalink
oie 11i.OIE.C 1633915 01/08/24 18:21:28 Checkin Released
Not_Distributed
oie 11i.OIE.D 1834628 01/09/05 17:50:51 Checkin Released
Not_Distributed
oie 11i.OIE.E 1960506 02/03/24 11:23:41 Checkin Released
Not_Distributed
oie 11i.OIE.F 2530274 02/10/25 15:27:11 Checkin Released
Not_Distributed
oie 11i.OIE.G 2624855 03/04/02 13:52:30 Checkin Released By_Dev

oie 11i.OIE.H 2800610 04/01/30 16:36:00 Checkin Released By_Dev

oie 11i.OIE.I 3376648 04/11/04 21:19:10 Checkin Released


By_Metalink
oie 11i.OIE.J 3618125 05/02/01 05:03:01 Checkin Released By_Dev

oie 11i.OIE.K 4165000 07/02/09 15:21:57 Checkin Released


By_Metalink
oir 11i.OIR.A 2065564 02/01/31 11:04:51 Checkin Released
Not_Distributed
oir 11i.OIR.B 2245483 02/03/20 20:31:57 Checkin Released
Not_Distributed
oir 11i.OIR.C 2396507 02/08/16 15:11:18 Checkin Released By_Dev

oir 11i.OIR.D 2502503 03/04/02 11:52:23 Checkin Released By_Dev

oir 11i.OIR.E 2864967 03/12/12 14:27:37 Checkin Released By_Dev

oir 11i.OIR.F 3151380 04/11/04 21:07:58 Checkin Released


By_Metalink
oir 11i.OIR.G 3618333 05/04/29 17:56:11 Checkin Released
By_Metalink
oit 11i.OIT.C 1707487 02/01/30 18:02:52 Checkin Released
By_Metalink
oit 11i.OIT.D 2397276 03/06/10 12:15:31 Checkin Released
By_Metalink
okb 11i.OKB.A 2194417 02/02/21 10:27:10 Checkin Obsoleted By_Dev

okc 11i.OKC.E 1818852 01/11/02 18:47:27 Checkin Released By_Dev

okc 11i.OKC.F 2176825 02/01/22 18:07:26 Checkin Released By_Dev

okc 11i.OKC.G 2219802 02/02/22 18:32:56 Checkin Released


Not_Distributed
okc 11i.OKC.H 2260510 02/03/15 18:48:54 Checkin Released By_Dev

okc 11i.OKC.I 2310831 02/04/24 16:45:30 Checkin Released By_Dev

okc 11i.OKC.J 2371847 02/05/23 14:20:09 Checkin Released By_Dev

okc 11i.OKC.K 2420023 02/06/27 22:25:56 Checkin Released By_Dev

okc 11i.OKC.L 2440018 02/09/13 16:20:56 Checkin Released By_Dev

okc 11i.OKC.M 2696923 03/06/10 14:07:50 Checkin Released By_Dev

okc 11i.OKC.N 3195187 04/09/17 17:27:05 Checkin Released


Not_Distributed
oke 11i.OKE.F 1886062 01/08/30 15:33:13 Checkin Released
By_Metalink
oke 11i.OKE.G 2069413 02/01/29 15:18:22 Checkin Released
By_Metalink
oke 11i.OKE.H 2212661 02/08/07 15:47:08 Checkin Released
By_Metalink
oke 11i.OKE.I 2475721 03/06/23 16:35:06 Checkin Released
By_Metalink
oke 11i.OKE.J 3195207 04/09/17 16:48:24 Checkin Released
Not_Distributed
oki 11i.OKI.A 1917529 01/11/02 18:37:15 Checkin Released By_Dev

oki 11i.OKI.B 2176891 02/01/22 18:01:30 Checkin Released By_Dev

oki 11i.OKI.C 2219805 02/02/22 18:32:36 Checkin Released


Not_Distributed
oki 11i.OKI.D 2260487 02/03/15 18:50:50 Checkin Released By_Dev

oki 11i.OKI.E 2310844 02/04/24 16:58:32 Checkin Released


Not_Distributed
oki 11i.OKI.F 2371859 02/05/23 14:11:19 Checkin Released By_Dev

oki 11i.OKI.G 2420078 02/06/27 22:26:21 Checkin Released By_Dev

oki 11i.OKI.H 2440079 02/09/13 16:21:49 Checkin Released By_Dev

oki 11i.OKI.I 2696943 03/06/10 13:21:30 Checkin Released By_Dev

oki 11i.OKI.J 3195201 04/09/17 14:18:24 Checkin Released


Not_Distributed
okl 11i.OKL.A 2194408 02/03/06 18:00:45 Checkin Released By_Dev

okl 11i.OKL.B 2269974 02/05/15 12:19:51 Checkin Released By_Dev

okl 11i.OKL.C 2375622 02/06/18 09:14:48 Checkin Released By_Dev

okl 11i.OKL.D 2420911 02/09/25 09:59:31 Checkin Released By_Dev

okl 11i.OKL.E 2698797 03/06/20 12:49:22 Checkin Released


By_Metalink
okl 11i.OKL.F 3101250 04/09/17 13:42:06 Checkin Released
By_Metalink
okl 11i.OKL.G 3981693 05/01/28 14:50:01 Checkin Released
By_Metalink
okl 11i.OKL.H 4551977 06/02/06 20:14:02 Checkin Released
By_Metalink
oko 11i.OKO.A 1919211 01/11/02 18:39:40 Checkin Released By_Dev

oko 11i.OKO.B 2176888 02/01/22 18:01:44 Checkin Released By_Dev

oko 11i.OKO.C 2219807 02/02/22 18:32:23 Checkin Released


Not_Distributed
oko 11i.OKO.D 2260534 02/03/15 18:51:08 Checkin Released By_Dev

oko 11i.OKO.E 2371874 02/05/23 14:10:33 Checkin Released By_Dev

oko 11i.OKO.F 2420089 02/06/27 22:26:46 Checkin Released By_Dev


oko 11i.OKO.G 2440082 02/09/13 16:22:41 Checkin Released By_Dev

oko 11i.OKO.H 2696951 03/06/10 13:20:56 Checkin Released By_Dev

oko 11i.OKO.I 3195197 04/09/17 14:22:30 Checkin Released


Not_Distributed
okr 11i.OKR.C 1819009 01/11/02 18:36:52 Checkin Released By_Dev

okr 11i.OKR.D 2176833 02/01/22 18:01:12 Checkin Released By_Dev

okr 11i.OKR.E 2219810 02/02/22 18:32:08 Checkin Released


Not_Distributed
okr 11i.OKR.F 2260529 02/03/15 18:50:30 Checkin Released By_Dev

okr 11i.OKR.G 2310852 02/04/24 16:42:51 Checkin Released By_Dev

okr 11i.OKR.H 2371852 02/05/23 14:10:54 Checkin Released By_Dev

okr 11i.OKR.I 2420075 02/06/27 22:28:05 Checkin Released By_Dev

okr 11i.OKR.J 2440003 02/09/13 16:24:30 Checkin Released By_Dev

okr 11i.OKR.K 2696947 03/06/10 13:18:51 Checkin Released By_Dev

okr 11i.OKR.L 3440839 04/09/17 14:04:11 Checkin Released


Not_Distributed
oks 11i.OKS.F 1818915 01/11/02 18:38:33 Checkin Released By_Dev

oks 11i.OKS.G 2176874 02/01/22 18:05:39 Checkin Released By_Dev

oks 11i.OKS.H 2219812 02/02/22 18:31:55 Checkin Released


Not_Distributed
oks 11i.OKS.I 2260524 02/03/15 18:49:38 Checkin Released By_Dev

oks 11i.OKS.J 2310838 02/04/24 16:41:58 Checkin Released By_Dev

oks 11i.OKS.K 2371843 02/05/23 14:19:31 Checkin Released By_Dev

oks 11i.OKS.L 2420046 02/06/27 22:29:24 Checkin Released By_Dev

oks 11i.OKS.M 2440051 02/09/13 16:29:26 Checkin Released By_Dev

oks 11i.OKS.N 2696936 03/06/10 14:39:23 Checkin Released By_Dev

oks 11i.OKS.O 3195193 04/09/17 15:37:18 Checkin Released


Not_Distributed
okx 11i.OKX.F 1819342 01/11/02 18:30:01 Checkin Released By_Dev

okx 11i.OKX.G 2176883 02/01/22 18:00:34 Checkin Released By_Dev

okx 11i.OKX.H 2219818 02/02/22 18:31:35 Checkin Released


Not_Distributed
okx 11i.OKX.I 2260505 02/03/15 18:50:06 Checkin Released By_Dev

okx 11i.OKX.J 2371868 02/05/23 14:10:04 Checkin Released By_Dev

okx 11i.OKX.K 2420077 02/06/27 22:29:57 Checkin Released By_Dev

okx 11i.OKX.L 2440048 02/09/13 16:25:43 Checkin Released By_Dev


okx 11i.OKX.M 2696938 03/06/10 14:06:19 Checkin Released By_Dev

okx 11i.OKX.N 3195204 04/09/17 14:10:36 Checkin Released


Not_Distributed
ok_pf 11i.OK_PF.A 1990919 02/01/11 09:51:21 Checkin Released By_Dev

ok_pf 11i.OK_PF.B 2180833 02/01/25 12:23:43 Checkin Released


By_Metalink
ok_pf 11i.OK_PF.C 2230161 02/02/23 01:39:59 Checkin Released
By_Metalink
ok_pf 11i.OK_PF.D 2260849 02/03/22 12:15:57 Checkin Released
By_Metalink
ok_pf 11i.OK_PF.E 2311069 02/04/24 22:18:09 Checkin Released
By_Metalink
ok_pf 11i.OK_PF.F 2371883 02/05/29 15:33:39 Checkin Released
By_Metalink
ok_pf 11i.OK_PF.G 2420493 02/06/27 22:30:05 Checkin Released
By_Metalink
ok_pf 11i.OK_PF.H 2440054 02/09/13 16:38:14 Checkin Released
By_Metalink
ok_pf 11i.OK_PF.I 2661036 03/06/20 17:37:49 Checkin Released
By_Metalink
ok_pf 11i.OK_PF.J 3195181 04/09/17 18:32:35 Checkin Released
Not_Distributed
om_pf 11i.OM_PF.F 1942144 01/09/01 07:44:37 Checkin Released
By_Metalink
om_pf 11i.OM_PF.G 2118482 02/02/05 14:31:26 Checkin Released
By_Metalink
om_pf 11i.OM_PF.H 2250333 02/08/22 13:27:09 Checkin Released
By_Metalink
om_pf 11i.OM_PF.I 2698175 03/06/20 17:24:21 Checkin Released
By_Metalink
om_pf 11i.OM_PF.J 3210616 04/09/18 02:27:18 Checkin Released
Not_Distributed
ont 11i.ONT.F 1885954 01/08/17 09:51:23 Checkin Released
Not_Distributed
ont 11i.ONT.G 2112226 02/01/31 16:12:08 Checkin Released
Not_Distributed
ont 11i.ONT.H 2250301 02/06/27 11:28:23 Checkin Released By_Dev

ont 11i.ONT.I 2475849 03/06/11 10:23:44 Checkin Released By_Dev

ont 11i.ONT.J 2770166 04/09/17 21:02:36 Checkin Released


Not_Distributed
opi 11i.OPI.A 1354197 03/12/24 16:11:33 Checkin Released
Not_Distributed
opi 11i.OPI.B 2695953 04/09/17 14:30:57 Checkin Released
Not_Distributed
opm_pf 11i.OPM_PF.G 1844177 01/09/05 10:40:48 Checkin Released
By_Metalink
opm_pf 11i.OPM_PF.H.1 2220884 02/02/12 15:38:50 Checkin Released
By_Metalink
opm_pf 11i.OPM_PF.I 2216258 02/07/30 19:07:47 Checkin Released
By_Metalink
opm_pf 11i.OPM_PF.J 2433137 02/12/30 12:27:05 Checkin Released
By_Metalink
opm_pf 11i.OPM_PF.K 2727874 03/07/08 11:25:31 Checkin Released
By_Metalink
opm_pf 11i.OPM_PF.L 2916642 04/09/17 16:14:39 Checkin Released
Not_Distributed
ota 11i.OTA.E 2004082 01/12/20 06:48:52 Checkin Released
By_Metalink
ota 11i.OTA.F 2296468 02/05/20 12:30:55 Checkin Released
By_Metalink
ota 11i.OTA.G 2489786 02/10/11 08:06:20 Checkin Released
By_Metalink
ota 11i.OTA.H 2897819 03/07/18 09:46:45 Checkin Released
By_Metalink
ota 11i.OTA.I 3291795 04/11/04 18:48:02 Checkin Released
By_Metalink
ota 11i.OTA.J 4428068 05/11/07 23:13:05 Checkin Released
By_Metalink
ota 11i.OTA.J.1 5086157 06/06/01 22:35:37 Checkin Released
By_Metalink
ota 11i.OTA.J.2 5550150 07/10/14 22:23:03 Checkin Released
By_Metalink
ota 11i.OTA.J.3 7446888 08/11/13 04:36:47 Checkin Released
By_Metalink
ota 11i.OTA.J.4 8207995 09/07/09 06:06:41 Checkin Released
Not_Distributed
ota 11i.OTA.J.5 9213927 10/04/18 22:14:58 Checkin Released
Not_Distributed
ota 11i.OTA.J.6 10144601 11/04/21 03:44:10 Checkin Released
Not_Distributed
owf 11i.OWF.A 2656935 02/11/05 12:09:41 Checkin Released
Not_Distributed
owf 11i.OWF.B 2656979 02/11/05 12:28:01 Checkin Released
Not_Distributed
owf 11i.OWF.C 2657019 02/11/05 12:38:32 Checkin Released
Not_Distributed
owf 11i.OWF.D 2657020 02/11/05 12:41:26 Checkin Released
Not_Distributed
owf 11i.OWF.E 2657023 02/11/05 12:46:04 Checkin Released
Not_Distributed
owf 11i.OWF.F 2657033 03/01/09 16:51:38 Checkin Released
Not_Distributed
owf 11i.OWF.G 2728236 03/06/11 16:19:44 Checkin Released
By_Metalink
owf 11i.OWF.H 3258819 04/11/04 16:08:06 Checkin Released
By_Metalink
ozf 11i.OZF.D 3073155 04/10/09 11:17:16 Checkin Released
Not_Distributed
ozf 11i.OZF.D.1 7340510 08/12/19 11:28:22 Checkin Released
By_Metalink
pa 11i.PA.F 1843095 01/08/24 16:04:48 Checkin Obsoleted
By_Metalink
pa 11i.PA.G 2019789 01/09/29 16:53:44 Checkin Released
By_Metalink
pa 11i.PA.H 2028970 01/12/18 13:10:57 Checkin Released
By_Metalink
pa 11i.PA.I 2185776 02/05/15 06:11:46 Checkin Released
Not_Distributed
pa 11i.PA.J 2381316 02/08/30 11:53:05 Checkin Released
Not_Distributed
pa 11i.PA.K 2484622 03/04/23 22:32:38 Checkin Released By_Dev

pa 11i.PA.L 2991508 03/11/28 11:10:22 Checkin Released


Not_Distributed
pa 11i.PA.M 3409392 05/05/16 00:39:51 Checkin Released
Not_Distributed
pay 11i.PAY.E 1849550 01/08/18 08:36:47 Checkin Released By_Dev

pay 11i.PAY.F 2004035 01/11/20 10:01:54 Checkin Released


By_Metalink
pay 11i.PAY.G 2156706 02/02/21 19:58:25 Checkin Released
Not_Distributed
pay 11i.PAY.H 2268438 02/05/09 07:21:24 Checkin Released
Not_Distributed
pay 11i.PAY.I 2410054 02/08/02 10:34:18 Checkin Released
Not_Distributed
pay 11i.PAY.J 2475648 02/11/27 04:40:22 Checkin Released
Not_Distributed
pay 11i.PAY.K 2803583 03/05/19 16:32:48 Checkin Released
Not_Distributed
pay 11i.PAY.L 3125812 03/12/05 09:18:16 Checkin Released
Not_Distributed
pay 11i.PAY.M 3418225 04/07/27 10:07:38 Checkin Released
Not_Distributed
pay 11i.PAY.N 3988350 05/03/08 14:39:37 Checkin Released
Not_Distributed
pay 11i.PAY.O 4289868 05/06/30 15:41:52 Checkin Released
Not_Distributed
pay 11i.PAY.O.1 5059537 06/05/31 02:34:42 Checkin Released
Not_Distributed
pay 11i.PAY.O.2 5917533 07/06/22 10:45:38 Checkin Released
Not_Distributed
pay 11i.PAY.O.3 6964746 08/07/02 03:29:41 Checkin Released
Not_Distributed
pay 11i.PAY.O.4 8207913 09/07/09 06:10:48 Checkin Released
Not_Distributed
pay 11i.PAY.O.5 9213889 10/04/18 22:24:11 Checkin Released
Not_Distributed
pay 11i.PAY.O.6 10144274 11/04/21 03:46:20 Checkin Released
Not_Distributed
per 11i.PER.F 1849547 01/08/18 03:12:53 Checkin Released By_Dev

per 11i.PER.G 1988754 01/11/20 10:06:33 Checkin Released


By_Metalink
per 11i.PER.H 2155076 02/02/22 03:22:04 Checkin Released
Not_Distributed
per 11i.PER.I 2268434 02/05/09 07:18:57 Checkin Released
Not_Distributed
per 11i.PER.J 2410052 02/08/02 10:42:26 Checkin Released
Not_Distributed
per 11i.PER.K 2475706 02/11/27 07:07:16 Checkin Released
Not_Distributed
per 11i.PER.L 2803589 03/05/19 12:19:14 Checkin Released
Not_Distributed
per 11i.PER.M 3125760 03/12/05 09:33:15 Checkin Released
Not_Distributed
per 11i.PER.N 3418216 04/07/27 09:48:01 Checkin Released
Not_Distributed
per 11i.PER.O 3952535 05/03/08 16:20:45 Checkin Released
Not_Distributed
per 11i.PER.P 4289431 05/06/30 15:19:59 Checkin Released
Not_Distributed
per 11i.PER.P.1 5059548 06/05/31 02:47:49 Checkin Released
Not_Distributed
per 11i.PER.P.2 5917536 07/06/22 09:33:48 Checkin Released
Not_Distributed
per 11i.PER.P.3 6964755 08/07/02 03:31:32 Checkin Released
Not_Distributed
per 11i.PER.P.4 8207918 09/07/09 06:08:35 Checkin Released
Not_Distributed
per 11i.PER.P.5 9213913 10/04/18 22:28:29 Checkin Released
Not_Distributed
per 11i.PER.P.6 10144542 11/04/21 03:47:57 Checkin Released
Not_Distributed
pft 11i.PFT.A 3841200 05/09/12 23:40:54 Checkin Released
Not_Distributed
pft 11i.PFT.A.1 4687900 05/10/31 12:08:49 Checkin Released By_Dev

pft 11i.PFT.A.1 5018672 06/05/26 13:55:28 Checkin Released


By_Metalink
pft 11i.PFT.A.2 4748198 05/12/01 10:18:26 Checkin Released
Not_Distributed
pft 11i.PFT.A.3 4922942 06/01/05 16:34:35 Checkin Released
Not_Distributed
pft 11i.PFT.A.4 5365617 06/07/14 11:35:10 Checkin Released By_Dev

pft 11i.PFT.A.5 5560569 06/10/24 11:54:25 Checkin Released


By_Metalink
pft 11i.PFT.A.6 5903383 07/05/03 11:59:43 Checkin Released
By_Metalink
pft 11i.PFT.A.7 6402392 07/12/31 10:35:14 Checkin Released
By_Metalink
pjm 11i.PJM.D 1886032 01/08/20 20:21:13 Checkin Released
Not_Distributed
pjm 11i.PJM.E 2012959 02/01/29 18:15:31 Checkin Released
Not_Distributed
pjm 11i.PJM.F 2212672 02/06/27 12:06:53 Checkin Released By_Dev

pjm 11i.PJM.G 2478564 03/06/10 14:18:24 Checkin Released By_Dev

pjm 11i.PJM.H 2770116 04/09/17 13:21:39 Checkin Released


Not_Distributed
pjr 11i.PJR.A 1844779 01/07/20 17:03:05 Checkin Released
By_Metalink
pjr 11i.PJR.B 1896962 01/08/24 20:22:11 Checkin Released
By_Metalink
pjr 11i.PJR.C 2034194 01/12/13 09:44:36 Checkin Released
By_Metalink
pjr 11i.PJR.D 2185783 02/05/14 20:14:31 Checkin Released
Not_Distributed
pj_pf 11i.PJ_PF.A 2185805 02/02/25 11:52:28 Checkin Released
Not_Distributed
pj_pf 11i.PJ_PF.B 2185807 02/02/25 11:59:09 Checkin Released
Not_Distributed
pj_pf 11i.PJ_PF.C 2185808 02/02/25 12:02:49 Checkin Released
Not_Distributed
pj_pf 11i.PJ_PF.D 2185813 02/02/25 12:04:53 Checkin Released
Not_Distributed
pj_pf 11i.PJ_PF.E 2185814 02/02/25 12:07:03 Checkin Released
Not_Distributed
pj_pf 11i.PJ_PF.F 2185815 02/02/25 12:20:59 Checkin Released
Not_Distributed
pj_pf 11i.PJ_PF.G 2185818 02/02/25 12:27:39 Checkin Released
Not_Distributed
pj_pf 11i.PJ_PF.H 2185820 02/02/25 12:30:00 Checkin Released
Not_Distributed
pj_pf 11i.PJ_PF.I 2185788 02/05/15 07:18:21 Checkin Released
Not_Distributed
pj_pf 11i.PJ_PF.J 2381317 02/08/30 13:30:32 Checkin Released
Not_Distributed
pj_pf 11i.PJ_PF.K 2484626 03/04/23 23:07:17 Checkin Released
By_Metalink
pj_pf 11i.PJ_PF.L 3074777 03/11/28 11:25:47 Checkin Released
By_Metalink
pj_pf 11i.PJ_PF.L.10 3397153 04/11/05 11:03:47 Checkin Released
By_Metalink
pj_pf 11i.PJ_PF.M 3485155 05/05/16 00:45:55 Checkin Released
By_Metalink
plm_pf 11i.PLM_PF.A 2720739 03/06/12 11:07:56 Checkin Released By_Dev

plm_pf 11i.PLM_PF.B 3016576 03/07/31 18:03:30 Checkin Released By_Dev

plm_pf 11i.PLM_PF.C 3298676 04/11/03 17:47:21 Checkin Released By_Dev

plm_pf 11i.PLM_PF.D 3990439 05/02/23 14:01:56 Checkin Released By_Dev

plm_pf 11i.PLM_PF.E 4203793 05/04/27 17:07:13 Checkin Released By_Dev

pmi 11i.PMI.D 1986248 01/09/11 07:28:19 Checkin Released By_Dev

pmi 11i.PMI.E 2364726 02/09/13 15:15:46 Checkin Released


By_Metalink
pmi 11i.PMI.F 2591002 03/03/20 15:12:52 Checkin Released
By_Metalink
pmi 11i.PMI.G 2663956 03/12/05 12:19:53 Checkin Released
By_Metalink
pmi 11i.PMI.H 3416752 04/10/07 15:27:42 Checkin Released
Not_Distributed
pn 11i.PN.E 1907767 01/10/02 06:16:53 Checkin Released
Not_Distributed
pn 11i.PN.F 2149380 02/01/22 16:17:35 Checkin Released
Not_Distributed
pn 11i.PN.G 2210731 02/03/18 19:16:07 Checkin Released
Not_Distributed
pn 11i.PN.H 2398753 02/08/16 16:16:52 Checkin Released By_Dev

pn 11i.PN.I 2488748 03/04/02 12:12:29 Checkin Released By_Dev

pn 11i.PN.J 2864951 03/09/30 11:22:19 Checkin Released


By_Metalink
pn 11i.PN.K 3151458 04/10/18 08:02:06 Checkin Released By_Dev

pn 11i.PN.L 3618077 05/04/29 18:44:55 Checkin Released


By_Metalink
pn 11i.PN.M 5591144 07/06/27 18:17:02 Checkin Released
By_Metalink
po 11i.PO.E 1885835 01/08/22 22:30:36 Checkin Released
Not_Distributed
po 11i.PO.F 2102542 02/01/31 16:17:06 Checkin Released
Not_Distributed
po 11i.PO.G 2235892 02/08/15 17:35:15 Checkin Released
Not_Distributed
po 11i.PO.H 2478541 03/06/11 12:56:54 Checkin Released By_Dev

po 11i.PO.I 3212265 04/09/17 17:12:27 Checkin Released


Not_Distributed
poa 11i.POA.E 2478594 03/06/10 16:08:17 Checkin Released By_Dev

poa 11i.POA.F 3212251 04/09/17 13:47:50 Checkin Released


Not_Distributed
pom 11i.POM.F 1951253 01/09/11 12:29:30 Checkin Released
Not_Distributed
pom 11i.POM.G 2119861 02/01/30 19:54:00 Checkin Released
Not_Distributed
pom 11i.POM.H 2476102 04/07/30 07:40:09 Checkin Released
By_Metalink
pon 11i.PON.H 2360814 02/08/28 09:37:31 Checkin Released
By_Metalink
pon 11i.PON.I 2476027 03/06/10 14:24:58 Checkin Released By_Dev

pon 11i.PON.J 3212274 04/09/17 14:01:08 Checkin Released


Not_Distributed
pos 11i.POS.A 1887407 01/08/22 22:31:30 Checkin Released
Not_Distributed
pos 11i.POS.B 2103103 02/01/31 10:49:57 Checkin Released
Not_Distributed
pos 11i.POS.C 2236030 02/08/15 17:54:11 Checkin Released By_Dev

pos 11i.POS.D 2478572 03/06/10 13:45:53 Checkin Released By_Dev

pos 11i.POS.E 3212271 04/09/17 14:51:01 Checkin Released


Not_Distributed
pov 11i.POV.A 2120440 02/01/30 17:01:45 Checkin Released
Not_Distributed
pqh 11i.PQH.C 2004090 01/10/03 04:58:07 Checkin Released
Not_Distributed
pqh 11i.PQH.D 2156867 02/02/21 19:54:45 Checkin Released
Not_Distributed
pqh 11i.PQH.E 2268441 02/05/09 07:23:53 Checkin Released
Not_Distributed
pqh 11i.PQH.F 2410057 02/08/02 11:03:07 Checkin Released
Not_Distributed
pqh 11i.PQH.G 2632495 02/11/27 06:08:49 Checkin Released
Not_Distributed
pqh 11i.PQH.H 2803594 03/05/19 12:25:30 Checkin Released
Not_Distributed
pqh 11i.PQH.I 3125833 03/12/05 09:03:38 Checkin Released
Not_Distributed
pqh 11i.PQH.J 3418295 04/07/28 03:08:23 Checkin Released
Not_Distributed
pqh 11i.PQH.K 3988395 05/03/08 14:01:52 Checkin Released
Not_Distributed
pqh 11i.PQH.L 4289882 05/06/30 15:05:19 Checkin Released
Not_Distributed
pqh 11i.PQH.L.1 5059550 06/05/31 02:53:56 Checkin Released
Not_Distributed
pqh 11i.PQH.L.2 5917547 07/06/22 08:56:02 Checkin Released
Not_Distributed
pqh 11i.PQH.L.3 6964759 08/07/02 03:33:12 Checkin Released
Not_Distributed
pqh 11i.PQH.L.4 8207921 09/07/09 05:53:30 Checkin Released
Not_Distributed
pqh 11i.PQH.L.5 9213914 10/04/18 21:43:19 Checkin Released
Not_Distributed
pqh 11i.PQH.L.6 10144561 11/04/21 04:09:33 Checkin Released
Not_Distributed
pqp 11i.PQP.C 2004098 01/10/03 04:42:22 Checkin Released
Not_Distributed
pqp 11i.PQP.D 2156869 02/02/21 19:53:59 Checkin Released
Not_Distributed
pqp 11i.PQP.E 2268444 02/05/09 07:24:33 Checkin Released
Not_Distributed
pqp 11i.PQP.F 2410074 02/08/02 11:04:07 Checkin Released
Not_Distributed
pqp 11i.PQP.G 2632507 02/11/27 06:11:45 Checkin Released
Not_Distributed
pqp 11i.PQP.H 2803595 03/05/19 12:26:21 Checkin Released
Not_Distributed
pqp 11i.PQP.I 3125836 03/12/05 09:02:30 Checkin Released
Not_Distributed
pqp 11i.PQP.J 3418304 04/07/28 03:21:51 Checkin Released
Not_Distributed
pqp 11i.PQP.K 3988399 05/03/08 14:11:55 Checkin Released
Not_Distributed
pqp 11i.PQP.L 4289895 05/06/30 15:06:35 Checkin Released
Not_Distributed
pqp 11i.PQP.L.1 5059552 06/05/31 02:55:15 Checkin Released
Not_Distributed
pqp 11i.PQP.L.2 5917552 07/06/22 08:54:04 Checkin Released
Not_Distributed
pqp 11i.PQP.L.3 6964761 08/07/02 03:34:14 Checkin Released
Not_Distributed
pqp 11i.PQP.L.4 8207926 09/07/09 05:55:41 Checkin Released
Not_Distributed
pqp 11i.PQP.L.5 9213916 10/04/18 22:03:07 Checkin Released
Not_Distributed
pqp 11i.PQP.L.6 10144567 11/04/21 03:48:38 Checkin Released
Not_Distributed
prc_pf 11i.PRC_PF.F 1891381 01/08/28 22:11:19 Checkin Released
By_Metalink
prc_pf 11i.PRC_PF.G 2141229 02/02/01 18:15:11 Checkin Released
By_Metalink
prc_pf 11i.PRC_PF.H 2320032 02/08/15 18:41:30 Checkin Released
By_Metalink
prc_pf 11i.PRC_PF.I 2700001 03/06/20 16:20:21 Checkin Released
By_Metalink
prc_pf 11i.PRC_PF.J 3219529 04/09/17 18:25:32 Checkin Released
Not_Distributed
prp 11i.PRP.A 2606463 03/04/04 21:00:44 Checkin Released
By_Metalink
prp 11i.PRP.B 3070696 04/11/05 09:41:13 Checkin Released
By_Metalink
psa 11i.PSA.D 1791610 01/07/16 22:11:47 Checkin Released
Not_Distributed
psa 11i.PSA.E 1905293 01/08/27 18:01:28 Checkin Released
Not_Distributed
psa 11i.PSA.F 2265646 02/04/08 22:02:34 Checkin Released
By_Metalink
psa 11i.PSA.G 2492811 03/04/02 12:49:52 Checkin Released By_Dev

psa 11i.PSA.H 2864973 03/12/12 14:14:28 Checkin Released By_Dev

psa 11i.PSA.I 3153659 04/10/18 07:08:37 Checkin Released


Not_Distributed
psa 11i.PSA.J 3618203 05/04/29 17:21:30 Checkin Released
Not_Distributed
psb 11i.PSB.F 1932032 01/08/28 02:04:55 Checkin Released
Not_Distributed
psb 11i.PSB.G 2079200 02/02/05 12:29:22 Checkin Released
Not_Distributed
psb 11i.PSB.H 2412968 03/04/02 14:54:29 Checkin Released By_Dev

psb 11i.PSB.I 2864862 03/12/12 14:19:23 Checkin Released By_Dev

psb 11i.PSB.J 3151556 04/10/18 07:06:48 Checkin Released


Not_Distributed
psb 11i.PSB.K 3617407 05/04/29 15:55:36 Checkin Released
Not_Distributed
psp 11i.PSP.D 1804365 01/08/27 18:03:40 Checkin Released
By_Metalink
psp 11i.PSP.E 2014950 01/11/20 15:47:18 Checkin Released
By_Metalink
psp 11i.PSP.F 2295469 02/08/21 12:33:31 Checkin Released
By_Metalink
psp 11i.PSP.G 2492770 03/04/02 16:17:20 Checkin Released
By_Metalink
psp 11i.PSP.H 2840510 03/12/05 09:00:28 Checkin Released
Not_Distributed
psp 11i.PSP.I 3418306 04/07/28 03:33:19 Checkin Released
Not_Distributed
psp 11i.PSP.J 3988402 05/03/08 13:54:21 Checkin Released
Not_Distributed
psp 11i.PSP.K 4289880 05/06/30 15:33:19 Checkin Released
Not_Distributed
psp 11i.PSP.K.1 5059556 06/05/31 02:56:32 Checkin Released
Not_Distributed
psp 11i.PSP.K.2 5917559 07/06/22 09:08:26 Checkin Released
Not_Distributed
psp 11i.PSP.K.3 6964762 08/07/02 03:34:56 Checkin Released
Not_Distributed
psp 11i.PSP.K.4 8207934 09/07/09 05:57:07 Checkin Released
Not_Distributed
psp 11i.PSP.K.5 9213918 10/04/18 21:56:27 Checkin Released
Not_Distributed
psp 11i.PSP.K.6 10144571 11/04/21 03:49:22 Checkin Released
Not_Distributed
pv 11i.PV.C 1903602 01/10/03 14:49:19 Checkin Released By_Dev

pv 11i.PV.D 2089495 01/11/04 21:25:08 Checkin Released By_Dev

pv 11i.PV.E 2267833 02/05/28 14:25:42 Checkin Released


By_Metalink
pv 11i.PV.F 2383307 02/10/11 19:06:30 Checkin Released By_Dev

pv 11i.PV.G 2630022 03/06/11 21:10:13 Checkin Released By_Dev

pv 11i.PV.H 3025814 04/10/09 10:57:17 Checkin Released


Not_Distributed
pv 11i.PV.H.1 6429776 07/11/27 23:31:55 Checkin Released
By_Metalink
qa 11i.QA.E 1886023 01/08/20 21:22:30 Checkin Released
Not_Distributed
qa 11i.QA.F 2064811 02/01/30 10:44:22 Checkin Released
Not_Distributed
qa 11i.QA.G 2248481 02/06/27 12:04:38 Checkin Released By_Dev

qa 11i.QA.H 2479232 03/06/10 18:59:13 Checkin Released By_Dev

qa 11i.QA.I 2769925 04/09/17 14:29:39 Checkin Released


Not_Distributed
qot 11i.QOT.A 2175384 02/05/31 13:58:11 Checkin Released
By_Metalink
qot 11i.QOT.B 2380531 02/08/31 01:23:18 Checkin Released
By_Metalink
qot 11i.QOT.C 2549599 03/04/04 17:16:39 Checkin Released
By_Metalink
qot 11i.QOT.D 2937175 04/06/21 19:06:44 Checkin Released
By_Metalink
qp 11i.QP.F 1886007 01/08/16 15:46:33 Checkin Released
Not_Distributed
qp 11i.QP.G 2112249 02/01/31 16:14:02 Checkin Released
Not_Distributed
qp 11i.QP.H 2250316 02/06/27 11:23:35 Checkin Released By_Dev

qp 11i.QP.I 2478163 03/06/11 08:09:33 Checkin Released By_Dev

qp 11i.QP.J 2770137 04/09/17 14:24:37 Checkin Released


Not_Distributed
qrm 11i.QRM.A 2352122 02/06/07 16:00:10 Checkin Released
Not_Distributed
qrm 11i.QRM.B 2502497 03/04/02 11:56:42 Checkin Released By_Dev

qrm 11i.QRM.C 2864467 03/12/12 13:47:39 Checkin Released By_Dev

qrm 11i.QRM.D 3151463 04/10/18 07:22:16 Checkin Released


Not_Distributed
qrm 11i.QRM.E 3617746 05/04/29 17:05:58 Checkin Released
Not_Distributed
rcm 11i.RCM.A 3849014 04/12/17 17:31:15 Checkin Released
Not_Distributed
rcm 11i.RCM.B 4017563 05/07/01 18:35:09 Checkin Released
Not_Distributed
rg 11i.RG.D 2153415 02/01/30 16:55:06 Checkin Released
Not_Distributed
rg 11i.RG.E 2322330 02/05/24 16:36:17 Checkin Released
Not_Distributed
rg 11i.RG.F 2490905 03/04/02 11:46:28 Checkin Released By_Dev

rg 11i.RG.G 2865016 03/12/12 13:29:03 Checkin Released By_Dev

rg 11i.RG.H 3151391 04/10/18 08:16:36 Checkin Released


Not_Distributed
rg 11i.RG.I 3559501 05/04/29 15:36:13 Checkin Released
Not_Distributed
rlm 11i.RLM.F 1886063 01/08/16 18:05:30 Checkin Released
Not_Distributed
rlm 11i.RLM.G 2112239 02/01/31 16:26:16 Checkin Released
Not_Distributed
rlm 11i.RLM.H 2250322 02/06/27 11:54:38 Checkin Released By_Dev

rlm 11i.RLM.I 2478373 03/06/10 15:11:33 Checkin Released By_Dev

rlm 11i.RLM.J 2770345 04/09/17 13:48:17 Checkin Released


Not_Distributed
scm_pf 11i.SCM_PF.J 3384350 04/11/05 10:52:10 Checkin Released
By_Metalink
scp_pf 11i.SCP_PF.F 1922595 01/08/30 19:49:17 Checkin Released
By_Metalink
scp_pf 11i.SCP_PF.G 2143725 02/01/30 19:18:18 Checkin Released
By_Metalink
scp_pf 11i.SCP_PF.H 2250399 02/08/15 17:42:35 Checkin Released
By_Metalink
scp_pf 11i.SCP_PF.I 2696797 03/06/23 11:00:16 Checkin Released
By_Metalink
scp_pf 11i.SCP_PF.J 3200668 04/09/17 18:22:33 Checkin Released
Not_Distributed
sem_pf 11i.SEM_PF.A 4020035 05/09/15 16:54:31 Checkin Released By_Dev

sls_pf 11i.SLS_PF.A 2026647 01/12/07 12:27:44 Checkin Released By_Dev

sls_pf 11i.SLS_PF.B 2141511 01/12/20 13:52:22 Checkin Released By_Dev

sls_pf 11i.SLS_PF.C 2167337 02/01/17 15:52:00 Checkin Released


By_Metalink
sls_pf 11i.SLS_PF.D 2221190 02/02/17 18:45:28 Checkin Released By_Dev

sls_pf 11i.SLS_PF.E 2315208 02/05/07 16:40:24 Checkin Released


By_Metalink
sls_pf 11i.SLS_PF.F 2435494 02/10/11 20:11:22 Checkin Released
By_Metalink
sls_pf 11i.SLS_PF.G 2645935 03/06/24 20:10:30 Checkin Released
By_Metalink
srv_pf 11i.SRV_PF.A 2034307 01/11/04 10:32:39 Checkin Released By_Dev

srv_pf 11i.SRV_PF.B 2192849 02/02/01 11:49:38 Checkin Released


By_Metalink
srv_pf 11i.SRV_PF.C 2246110 02/03/08 20:07:49 Checkin Released
By_Metalink
srv_pf 11i.SRV_PF.D 2279455 02/03/30 07:55:43 Checkin Released
By_Metalink
srv_pf 11i.SRV_PF.E 2339532 02/05/02 22:19:30 Checkin Released
By_Metalink
srv_pf 11i.SRV_PF.F 2388141 02/06/04 23:20:47 Checkin Released
By_Metalink
srv_pf 11i.SRV_PF.G 2416844 02/07/02 17:23:54 Checkin Obsoleted
By_Metalink
srv_pf 11i.SRV_PF.H 2477294 02/09/14 19:04:39 Checkin Released
By_Metalink
srv_pf 11i.SRV_PF.I 2713120 03/06/23 12:02:13 Checkin Released
By_Metalink
srv_pf 11i.SRV_PF.J 3169650 04/09/17 15:16:00 Checkin Released
Not_Distributed
ssp 11i.SSP.C 2004106 01/10/03 04:31:25 Checkin Released
Not_Distributed
ssp 11i.SSP.D 2156872 02/02/21 19:53:23 Checkin Released
Not_Distributed
ssp 11i.SSP.E 2268448 02/05/09 07:25:50 Checkin Released
Not_Distributed
ssp 11i.SSP.F 2410065 02/08/02 11:04:37 Checkin Released
Not_Distributed
ssp 11i.SSP.G 2475747 02/11/27 06:12:14 Checkin Released
Not_Distributed
ssp 11i.SSP.H 2803590 03/05/19 12:26:54 Checkin Released
Not_Distributed
ssp 11i.SSP.I 3125824 03/12/05 08:58:35 Checkin Released
Not_Distributed
ssp 11i.SSP.J 3418312 04/07/28 04:43:36 Checkin Released
Not_Distributed
ssp 11i.SSP.K 3988404 05/03/08 13:38:03 Checkin Released
Not_Distributed
ssp 11i.SSP.L 4289899 05/06/30 15:09:11 Checkin Released
Not_Distributed
ssp 11i.SSP.L.1 5059561 06/05/31 02:57:16 Checkin Released
Not_Distributed
ssp 11i.SSP.L.2 5917565 07/06/22 08:48:53 Checkin Released
Not_Distributed
ssp 11i.SSP.L.3 6964764 08/07/02 03:35:45 Checkin Released
Not_Distributed
ssp 11i.SSP.L.4 8207937 09/07/09 06:00:26 Checkin Released
Not_Distributed
ssp 11i.SSP.L.5 9213926 10/04/18 22:00:26 Checkin Released
Not_Distributed
ssp 11i.SSP.L.6 10144591 11/04/21 03:49:58 Checkin Released
Not_Distributed
txk 11i.TXK.A 2668469 03/06/20 10:50:56 Checkin Released
By_Metalink
txk 11i.TXK.B 3219567 04/11/04 18:12:26 Checkin Released
By_Metalink
umx 11i.UMX.H 3264818 04/11/04 22:51:16 Checkin Released
By_Metalink
vea 11i.VEA.F 1886075 01/08/16 18:06:05 Checkin Released
Not_Distributed
vea 11i.VEA.G 2112243 02/01/31 16:25:10 Checkin Released
Not_Distributed
vea 11i.VEA.H 2250329 02/06/27 11:30:01 Checkin Released By_Dev

vea 11i.VEA.I 2478411 03/06/10 15:08:31 Checkin Released By_Dev

vea 11i.VEA.J 2770336 04/09/17 13:59:59 Checkin Released


Not_Distributed
wip 11i.WIP.E 1885978 01/08/20 18:42:47 Checkin Released
Not_Distributed
wip 11i.WIP.F 2064997 02/01/29 19:00:57 Checkin Released
Not_Distributed
wip 11i.WIP.G 2212393 02/06/27 11:15:46 Checkin Released By_Dev

wip 11i.WIP.H 2478579 03/06/10 19:31:53 Checkin Released By_Dev

wip 11i.WIP.I 2768748 04/09/17 15:10:19 Checkin Released


Not_Distributed
wms 11i.WMS.C 1885986 01/08/28 20:17:52 Checkin Released
By_Metalink
wms 11i.WMS.D 2064994 02/01/30 09:49:13 Checkin Released
Not_Distributed
wms 11i.WMS.E 2212391 02/06/27 13:53:50 Checkin Released By_Dev

wms 11i.WMS.F 2478530 03/06/10 19:34:35 Checkin Released By_Dev

wms 11i.WMS.G 2770088 04/09/17 16:04:33 Checkin Released


Not_Distributed
wps 11i.WPS.D 1885983 01/08/20 18:43:17 Checkin Released
Not_Distributed
wps 11i.WPS.E 2065005 02/01/30 09:41:08 Checkin Released
Not_Distributed
wps 11i.WPS.F 2212395 02/06/27 11:16:43 Checkin Released By_Dev

wps 11i.WPS.G 2482422 03/06/10 14:30:37 Checkin Released By_Dev

wps 11i.WPS.H 2768755 04/09/17 15:21:43 Checkin Released


Not_Distributed
wsh 11i.WSH.F 1886020 01/08/16 15:44:32 Checkin Released
Not_Distributed
wsh 11i.WSH.G 2113104 02/01/31 16:29:13 Checkin Released
Not_Distributed
wsh 11i.WSH.H 2250313 02/06/27 11:51:21 Checkin Released By_Dev

wsh 11i.WSH.I 2478452 03/06/10 15:13:19 Checkin Released By_Dev

wsh 11i.WSH.J 2770367 04/09/17 16:40:06 Checkin Released


Not_Distributed
wsm 11i.WSM.E 1886031 01/08/20 18:33:46 Checkin Released
Not_Distributed
wsm 11i.WSM.F 2064974 02/01/29 18:59:46 Checkin Released
Not_Distributed
wsm 11i.WSM.G 2248506 02/06/27 12:00:57 Checkin Released By_Dev

wsm 11i.WSM.H 2691993 03/06/10 15:22:46 Checkin Released By_Dev

wsm 11i.WSM.I 2770100 04/09/17 14:56:30 Checkin Released


Not_Distributed
xdo 11i.XDO.H 3263588 04/11/04 18:04:19 Checkin Released
By_Metalink
xdp 11i.XDP.F 1838428 01/07/12 16:16:59 Checkin Released
Not_Distributed
xdp 11i.XDP.G 1881072 01/07/26 10:52:03 Checkin Released
Not_Distributed
xdp 11i.XDP.H 1904805 01/08/08 09:14:55 Checkin Released By_Dev

xdp 11i.XDP.J 1927340 01/08/15 20:54:36 Checkin Released By_Dev

xdp 11i.XDP.K 1939943 01/08/23 15:38:21 Checkin Released By_Dev

xdp 11i.XDP.L 1955397 01/09/10 12:07:01 Checkin Released By_Dev

xdp 11i.XDP.M 1986203 01/10/02 10:03:21 Checkin Released By_Dev

xdp 11i.XDP.N 2026248 01/10/07 09:04:03 Checkin Released By_Dev

xdp 11i.XDP.O 2139204 02/01/31 11:04:42 Checkin Released By_Dev

xdp 11i.XDP.P 2221045 02/03/08 16:28:05 Checkin Released By_Dev

xdp 11i.XDP.Q 2271554 02/03/29 23:47:37 Checkin Released By_Dev


xdp 11i.XDP.R 2318266 02/05/01 17:01:55 Checkin Released By_Dev

xdp 11i.XDP.S 2383954 02/06/04 12:27:57 Checkin Released By_Dev

xdp 11i.XDP.T 2422023 02/07/01 10:18:14 Checkin Released By_Dev

xdp 11i.XDP.U 2493492 02/08/05 16:33:15 Checkin Released By_Dev

xdp 11i.XDP.V 2568977 02/12/11 13:04:10 Checkin Released By_Dev

xdp 11i.XDP.W 2739476 03/06/10 17:07:55 Checkin Released By_Dev

xdp 11i.XDP.X 3214732 04/09/17 13:38:19 Checkin Released


Not_Distributed
xla 11i.XLA.D 1810485 01/08/24 15:20:42 Checkin Released
Not_Distributed
xla 11i.XLA.E 2182672 02/01/29 12:29:49 Checkin Released
Not_Distributed
xla 11i.XLA.F 2490908 03/04/02 12:23:06 Checkin Released By_Dev

xla 11i.XLA.G 2864918 03/12/12 15:16:39 Checkin Released By_Dev

xla 11i.XLA.H 3151394 04/10/18 08:40:32 Checkin Released


Not_Distributed
xla 11i.XLA.I 3615242 05/04/29 17:21:27 Checkin Released
Not_Distributed
xnb 11i.XNB.A 2221073 02/03/08 16:41:31 Checkin Obsoleted By_Dev

xnb 11i.XNB.B 2275632 05/10/26 10:03:02 Checkin Released


By_Metalink
xnc 11i.XNC.E 1838495 01/07/16 09:39:35 Checkin Released
Not_Distributed
xnc 11i.XNC.F 1881255 01/07/27 13:09:36 Checkin Released
Not_Distributed
xnc 11i.XNC.G 1907017 01/08/08 13:40:06 Checkin Released
Not_Distributed
xnc 11i.XNC.H 1925657 01/09/10 11:15:07 Checkin Released By_Dev

xnc 11i.XNC.I 1986710 01/09/28 15:03:52 Checkin Released By_Dev

xnc 11i.XNC.J 2022228 01/10/06 17:10:14 Checkin Released By_Dev

xnc 11i.XNC.K 2139173 02/02/01 16:15:35 Checkin Released


By_Metalink
xnc 11i.XNC.L 2219529 02/06/04 15:57:31 Checkin Released
By_Metalink
xnc 11i.XNC.M 2490454 02/10/16 17:59:37 Checkin Released By_Dev

xnc 11i.XNC.N 2701907 03/04/15 00:12:06 Checkin Released By_Dev

xni 11i.XNI.A 2026754 01/10/06 17:56:16 Checkin Released By_Dev

xni 11i.XNI.B 2139216 02/01/31 11:05:07 Checkin Released By_Dev

xni 11i.XNI.C 2242105 02/03/08 15:33:11 Checkin Released By_Dev

xni 11i.XNI.D 2271040 02/03/29 10:28:06 Checkin Released By_Dev


xni 11i.XNI.E 2323328 02/04/25 15:33:39 Checkin Released By_Dev

xni 11i.XNI.F 2382053 02/06/02 19:41:11 Checkin Released By_Dev

xni 11i.XNI.G 2431154 02/07/04 11:46:11 Checkin Released By_Dev

xni 11i.XNI.H 2460273 02/08/02 19:50:19 Checkin Released By_Dev

xni 11i.XNI.I 2508005 02/08/30 16:51:17 Checkin Released By_Dev

xni 11i.XNI.J 2696920 03/06/10 14:10:08 Checkin Released By_Dev

xni 11i.XNI.K 3195219 04/09/17 13:32:03 Checkin Released


Not_Distributed
xnp 11i.XNP.F 1838418 01/07/12 17:14:22 Checkin Released
Not_Distributed
xnp 11i.XNP.G 1881147 01/07/26 16:31:30 Checkin Released By_Dev

xnp 11i.XNP.H 1904983 01/08/08 09:15:38 Checkin Released By_Dev

xnp 11i.XNP.J 1927626 01/08/15 11:47:25 Checkin Released By_Dev

xnp 11i.XNP.K 1939514 01/08/23 10:44:53 Checkin Released By_Dev

xnp 11i.XNP.L 1954679 01/09/10 12:08:04 Checkin Released By_Dev

xnp 11i.XNP.M 1986548 01/10/02 10:04:15 Checkin Released By_Dev

xnp 11i.XNP.N 2026259 01/10/07 09:05:31 Checkin Released By_Dev

xnp 11i.XNP.O 2139213 02/01/31 11:05:38 Checkin Released By_Dev

xnp 11i.XNP.P 2221047 02/03/08 16:28:26 Checkin Released By_Dev

xnp 11i.XNP.Q 2271557 02/03/29 23:48:08 Checkin Released By_Dev

xnp 11i.XNP.R 2318279 02/05/01 17:02:46 Checkin Released By_Dev

xnp 11i.XNP.S 2383957 02/06/04 12:29:55 Checkin Released By_Dev

xnp 11i.XNP.T 2422038 02/07/01 10:19:39 Checkin Released By_Dev

xnp 11i.XNP.U 2495327 02/08/05 16:34:13 Checkin Released By_Dev

xnp 11i.XNP.V 2568995 02/12/11 13:05:46 Checkin Released By_Dev

xnp 11i.XNP.W 2732312 03/06/10 17:08:58 Checkin Released By_Dev

xnp 11i.XNP.X 3214804 04/09/17 13:44:16 Checkin Released


Not_Distributed
xns 11i.XNS.E 1838412 01/07/27 15:46:53 Checkin Released
Not_Distributed
xns 11i.XNS.G 1908882 01/08/01 14:14:30 Checkin Released By_Dev

xns 11i.XNS.H 1926866 01/08/16 11:04:08 Checkin Released


Not_Distributed
xns 11i.XNS.I 1940573 01/09/10 11:16:19 Checkin Released By_Dev

xns 11i.XNS.J 1983817 01/09/28 15:06:19 Checkin Released By_Dev


xns 11i.XNS.K 2022232 01/10/06 17:12:00 Checkin Released By_Dev

xns 11i.XNS.L 2139176 02/02/13 12:37:53 Checkin Released By_Dev

xns 11i.XNS.M 2221075 02/03/08 16:30:20 Checkin Released By_Dev

xns 11i.XNS.N 2268912 02/03/29 09:44:53 Checkin Released By_Dev

xns 11i.XNS.O 2320196 02/04/26 17:04:14 Checkin Released By_Dev

xns 11i.XNS.P 2380838 02/05/23 17:19:09 Checkin Released By_Dev

xns 11i.XNS.Q 2414815 02/06/28 17:06:47 Checkin Released By_Dev

xns 11i.XNS.R 2461167 02/07/26 17:05:27 Checkin Released By_Dev

xns 11i.XNS.S 2485213 02/07/31 10:41:30 Checkin Released By_Dev

xns 11i.XNS.T 2592233 02/12/10 17:12:40 Checkin Released By_Dev

xns 11i.XNS.U 2707272 03/06/10 18:57:59 Checkin Released By_Dev

xns 11i.XNS.V 3014217 04/09/17 14:15:17 Checkin Released


Not_Distributed
xtr 11i.XTR.E 1907073 01/08/24 16:30:43 Checkin Obsoleted
By_Metalink
xtr 11i.XTR.F 1952883 01/11/16 16:39:52 Checkin Released
Not_Distributed
xtr 11i.XTR.G 2223523 02/04/12 16:28:14 Checkin Released
Not_Distributed
xtr 11i.XTR.H 2428924 02/08/30 15:43:13 Checkin Released
By_Metalink
xtr 11i.XTR.I 2554877 03/04/02 12:05:18 Checkin Released By_Dev

xtr 11i.XTR.J 2864476 03/12/12 13:50:14 Checkin Released By_Dev

xtr 11i.XTR.K 3151450 04/10/18 07:49:38 Checkin Released


Not_Distributed
xtr 11i.XTR.L 3610848 05/04/29 23:11:41 Checkin Released
Not_Distributed
zpb 11i.ZPB.A 3264437 04/10/01 10:25:08 Checkin Released By_Dev

zpb 11i.ZPB.B 3337047 05/09/15 12:56:04 Checkin Released


By_Metalink
" > ${OUT_DIR}/11i_patchsets.txt

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

REL110_DATE="Dec 15 2005"

echo "

Patchset

Product Name Bug_number RELEASED_ DISTRIBUTION Status

--------- ------------ ---------- --------- -------------------


--------------------
ad 11.0.AD.A 680657 24-JUL-98 By_Metalink Checkin Released

ad 11.0.AD.B 732272 16-NOV-98 By_Metalink Checkin Released

ad 11.0.AD.D 1264943 18-MAY-00 By_Metalink Checkin Released

ak 11.0.AK.A 674072 24-JUL-98 By_Metalink Checkin Released

ak 11.0.AK.B 733964 13-NOV-98 By_Metalink Checkin Released

ak 11.0.AK.C 800372 08-FEB-99 Not_Distributed Checkin Obsoleted

ak 11.0.AK.E 1187363 14-MAR-00 By_Metalink Checkin Released

alr 11.0.ALR.A 755917 16-NOV-98 By_Metalink Checkin Released

alr 11.0.ALR.B 1007920 28-SEP-99 By_Metalink Checkin Released

alr 11.0.ALR.C 1094651 02-DEC-99 By_Metalink Checkin Released

ap 11.0.AP.A 671202 23-JUL-98 By_Metalink Checkin Released

ap 11.0.AP.B 730174 13-NOV-98 By_Metalink Checkin Released

ap 11.0.AP.C 789454 08-APR-99 By_Metalink Checkin Released

ap 11.0.AP.D 986073 08-NOV-99 By_Metalink Checkin Released

ap 11.0.AP.E 1274264 07-JUN-00 By_Metalink Checkin Released

ap 11.0.AP.F 1274267 09-MAR-01 By_Metalink Checkin Released

ap 11.0.AP.G 1862578 04-OCT-01 By_Metalink Checkin Released

ap 11.0.AP.H 2213610 07-JUN-02 By_Metalink Checkin Released

ap 11.0.AP.I 2679412 05-JUN-03 By_Metalink Checkin Released

ar 11.0.AR.A 671198 23-JUL-98 By_Metalink Checkin Released

ar 11.0.AR.B 731338 13-NOV-98 By_Metalink Checkin Released

ar 11.0.AR.C 789457 08-APR-99 By_Metalink Checkin Released

ar 11.0.AR.D 961231 12-NOV-99 By_Metalink Checkin Released

ar 11.0.AR.E 1073957 12-APR-00 By_Metalink Checkin Released

ar 11.0.AR.F 1081952 15-SEP-00 By_Metalink Checkin Released

ar 11.0.AR.G 1267691 30-APR-01 By_Metalink Checkin Released

ar 11.0.AR.H 1471898 30-NOV-01 By_Metalink Checkin Released

ar 11.0.AR.I 2133106 26-FEB-02 By_Metalink Checkin Released

ar 11.0.AR.J 2521716 17-DEC-02 By_Metalink Checkin Released

as 11.0.AS.A 673417 24-JUL-98 By_Metalink Checkin Released


as 11.0.AS.B 733304 16-NOV-98 By_Metalink Checkin Released

as 11.0.AS.C 809836 08-APR-99 By_Metalink Checkin Released

ax 11.0.AX.A 665471 24-JUL-98 By_Metalink Checkin Released

ax 11.0.AX.B 731655 13-NOV-98 By_Metalink Checkin Released

ax 11.0.AX.C 809273 08-APR-99 By_Metalink Checkin Released

ax 11.0.AX.D 1031220 17-DEC-99 By_Metalink Checkin Released

ax 11.0.AX.E 1240002 09-MAY-00 By_Metalink Checkin Released

ax 11.0.AX.F 1639941 28-MAR-01 By_Metalink Checkin Released

ax 11.0.AX.G 2024200 02-NOV-01 By_Metalink Checkin Released

ax 11.0.AX.H 2657387 14-APR-03 By_Metalink Checkin Released

az 11.0.AZ.A 732155 16-NOV-98 By_Metalink Checkin Released

az 11.0.AZ.B 809856 08-APR-99 By_Metalink Checkin Released

az 11.0.AZ.C 1007031 04-OCT-99 By_Metalink Checkin Released

bis 11.0.BIS.A 962177 13-OCT-99 By_Metalink Checkin Released

bom 11.0.BOM.A 673241 24-JUL-98 By_Metalink Checkin Released

bom 11.0.BOM.B 732960 13-NOV-98 By_Metalink Checkin Released

bom 11.0.BOM.C 805925 08-APR-99 By_Metalink Checkin Released

bom 11.0.BOM.D 964665 04-OCT-99 By_Metalink Checkin Released

bom 11.0.BOM.E 1198519 11-APR-00 By_Metalink Checkin Released

bom 11.0.BOM.F 1281322 06-NOV-00 By_Metalink Checkin Released

bom 11.0.BOM.G 1516931 24-APR-01 By_Metalink Checkin Released

bom 11.0.BOM.H 1828617 09-NOV-01 By_Metalink Checkin Released

ce 11.0.CE.A 671201 23-JUL-98 By_Metalink Checkin Released

ce 11.0.CE.B 730326 13-NOV-98 By_Metalink Checkin Released

ce 11.0.CE.C 789456 08-APR-99 By_Metalink Checkin Released

ce 11.0.CE.D 976590 04-OCT-99 By_Metalink Checkin Released

ce 11.0.CE.E 1156812 20-MAR-00 By_Metalink Checkin Released

ce 11.0.CE.F 1243106 11-OCT-00 By_Metalink Checkin Released

ce 11.0.CE.G 1401280 25-MAY-01 By_Metalink Checkin Released


ce 11.0.CE.H 2039331 02-NOV-01 By_Metalink Checkin Released

chv 11.0.CHV.A 673943 24-JUL-98 By_Metalink Checkin Released

chv 11.0.CHV.B 733151 16-NOV-98 By_Metalink Checkin Released

chv 11.0.CHV.C 810486 08-APR-99 By_Metalink Checkin Released

cn 11.0.CN.A 673490 23-JUL-98 By_Metalink Checkin Released

cn 11.0.CN.B 682700 13-NOV-98 By_Metalink Checkin Released

cs 11.0.CS.A 673544 27-JUL-98 By_Metalink Checkin Released

cs 11.0.CS.B 733153 13-NOV-98 By_Metalink Checkin Released

ec 11.0.EC.A 667248 24-JUL-98 By_Metalink Checkin Released

ec 11.0.EC.B 726287 16-NOV-98 By_Metalink Checkin Released

ec 11.0.EC.C 779201 08-APR-99 By_Metalink Checkin Released

ec 11.0.EC.D 953788 07-OCT-99 By_Metalink Checkin Released

ec 11.0.EC.E 1246876 16-MAY-00 By_Metalink Checkin Released

eng 11.0.ENG.A 673242 24-JUL-98 By_Metalink Checkin Released

eng 11.0.ENG.B 732779 13-NOV-98 By_Metalink Checkin Released

eng 11.0.ENG.C 801548 08-APR-99 By_Metalink Checkin Released

eng 11.0.ENG.D 962673 04-OCT-99 By_Metalink Checkin Released

eng 11.0.ENG.E 1380493 29-MAR-01 By_Metalink Checkin Released

ews 11.0.EWS.A 1863399 06-SEP-01 By_Metalink Checkin Released

ews 11.0.EWS.B 2942645 05-MAY-03 Not_Distributed Checkin Released

ews 11.0.EWS.C 2949198 12-JUN-03 By_Metalink Checkin Released

fa 11.0.FA.A 681385 24-JUL-98 By_Metalink Checkin Released

fa 11.0.FA.B 733163 13-NOV-98 By_Metalink Checkin Released

fa 11.0.FA.C 811357 24-MAR-99 By_Metalink Checkin Released

fa 11.0.FA.D 1042202 04-NOV-99 By_Metalink Checkin Released

fa 11.0.FA.E 1350298 28-AUG-00 By_Metalink Checkin Released

fa 11.0.FA.F 1391289 31-OCT-00 By_Metalink Checkin Released

fa 11.0.FA.G 1626136 15-JUN-01 By_Metalink Checkin Released

fa 11.0.FA.H 2183897 12-JUN-02 By_Metalink Checkin Released

ff 11.0.FF.A 727481 13-NOV-98 Not_Distributed Checkin Obsoleted


fnd 11.0.FND.A 677585 24-JUL-98 By_Metalink Checkin Released

fnd 11.0.FND.B 731294 18-SEP-98 By_Metalink Checkin Released

fnd 11.0.FND.C 733155 13-NOV-98 By_Metalink Checkin Released

fnd 11.0.FND.D 794429 08-APR-99 By_Metalink Checkin Released

fnd 11.0.FND.E 1003972 05-NOV-99 By_Metalink Checkin Released

fnd 11.0.FND.F 1155774 14-FEB-00 By_Metalink Checkin Released

fnd 11.0.FND.G 1349521 13-OCT-00 By_Metalink Checkin Released

fnd 11.0.FND.H 1527541 22-DEC-00 By_Metalink Checkin Released

fnd 11.0.FND.I 1675981 30-MAR-01 By_Metalink Checkin Released

fnd 11.0.FND.J 1818756 28-AUG-01 By_Metalink Checkin Released

fnd 11.0.FND.K 1998783 15-FEB-02 By_Metalink Checkin Released

fnd 11.0.FND.L 2261910 20-MAY-02 By_Metalink Checkin Released

fnd 11.0.FND.M 2414196 07-NOV-02 By_Metalink Checkin Released

fnd 11.0.FND.N 2660599 08-DEC-03 By_Metalink Checkin Released

gl 11.0.GL.A 673369 24-JUL-98 By_Metalink Checkin Released

gl 11.0.GL.B 728311 13-NOV-98 By_Metalink Checkin Released

gl 11.0.GL.C 794545 08-APR-99 By_Metalink Checkin Released

gl 11.0.GL.D 991532 01-OCT-99 By_Metalink Checkin Released

gl 11.0.GL.E 1178837 01-MAR-00 By_Metalink Checkin Released

gma 11.0.GMA.A 960154 25-AUG-99 By_Metalink Checkin Released

gma 11.0.GMA.B 1160482 06-MAR-00 By_Metalink Checkin Released

gma 11.0.GMA.C 1306749 09-JUN-00 By_Metalink Checkin Released

gma 11.0.GMA.D 1355660 16-AUG-00 By_Metalink Checkin Released

gma 11.0.GMA.E 1538116 03-JAN-01 By_Metalink Checkin Released

gma 11.0.GMA.F 1732341 19-APR-01 By_Metalink Checkin Released

gma 11.0.GMA.G 2182048 18-FEB-02 By_Metalink Checkin Released

gmd 11.0.GMD.A 949774 17-JAN-00 By_Metalink Checkin Released

gmd 11.0.GMD.B 1154827 21-JAN-00 By_Metalink Checkin Released

gmd 11.0.GMD.C 1270146 24-MAY-00 Not_Distributed Checkin Released


gmd 11.0.GMD.D 1355004 02-AUG-00 Not_Distributed Checkin Released

gmd 11.0.GMD.E 1489000 12-DEC-00 Not_Distributed Checkin Released

gmd 11.0.GMD.F 1729749 10-APR-01 Not_Distributed Checkin Released

gmd 11.0.GMD.G 2182642 28-JAN-02 Not_Distributed Checkin Released

gme 11.0.GME.A 949768 14-JAN-00 Not_Distributed Checkin Obsoleted

gme 11.0.GME.B 1152959 21-JAN-00 By_Metalink Checkin Released

gme 11.0.GME.C 1269769 24-MAY-00 Not_Distributed Checkin Released

gme 11.0.GME.D 1357020 02-AUG-00 Not_Distributed Checkin Released

gme 11.0.GME.E 1489025 11-DEC-00 Not_Distributed Checkin Released

gme 11.0.GME.F 1715353 11-APR-01 Not_Distributed Checkin Released

gme 11.0.GME.G 2181946 28-JAN-02 Not_Distributed Checkin Released

gmf 11.0.GMF.A 949736 14-JAN-00 By_Metalink Checkin Released

gmf 11.0.GMF.B 1152955 21-JAN-00 By_Metalink Checkin Released

gmf 11.0.GMF.C 1270214 24-MAY-00 Not_Distributed Checkin Released

gmf 11.0.GMF.D 1356176 02-AUG-00 Not_Distributed Checkin Released

gmf 11.0.GMF.E 1489022 11-DEC-00 Not_Distributed Checkin Released

gmf 11.0.GMF.F 1715665 10-APR-01 Not_Distributed Checkin Released

gmf 11.0.GMF.G 2182027 28-JAN-02 Not_Distributed Checkin Released

gmi 11.0.GMI.A 949771 14-JAN-00 By_Metalink Checkin Released

gmi 11.0.GMI.B 1152982 21-JAN-00 By_Metalink Checkin Released

gmi 11.0.GMI.C 1270132 24-MAY-00 Not_Distributed Checkin Released

gmi 11.0.GMI.D 1354933 02-AUG-00 Not_Distributed Checkin Released

gmi 11.0.GMI.E 1489065 11-DEC-00 Not_Distributed Checkin Released

gmi 11.0.GMI.F 1715326 10-APR-01 Not_Distributed Checkin Released

gmi 11.0.GMI.G 2181851 28-JAN-02 Not_Distributed Checkin Released

gml 11.0.GML.A 949775 14-JAN-00 By_Metalink Checkin Released

gml 11.0.GML.B 1154946 21-JAN-00 By_Metalink Checkin Released

gml 11.0.GML.C 1270241 24-MAY-00 Not_Distributed Checkin Released

gml 11.0.GML.D 1355776 02-AUG-00 Not_Distributed Checkin Released

gml 11.0.GML.E 1488958 11-DEC-00 Not_Distributed Checkin Released


gml 11.0.GML.F 1715335 10-APR-01 Not_Distributed Checkin Released

gml 11.0.GML.G 2182059 28-JAN-02 Not_Distributed Checkin Released

gmp 11.0.GMP.A 949718 14-JAN-00 By_Metalink Checkin Released

gmp 11.0.GMP.B 1152976 21-JAN-00 By_Metalink Checkin Released

gmp 11.0.GMP.C 1270042 24-MAY-00 Not_Distributed Checkin Released

gmp 11.0.GMP.D 1356119 02-AUG-00 Not_Distributed Checkin Released

gmp 11.0.GMP.E 1488965 11-DEC-00 Not_Distributed Checkin Released

gmp 11.0.GMP.F 1715292 10-APR-01 Not_Distributed Checkin Released

gmp 11.0.GMP.G 2181982 28-JAN-02 Not_Distributed Checkin Released

icx 11.0.ICX.A 673481 24-JUL-98 By_Metalink Checkin Released

icx 11.0.ICX.B 726288 16-NOV-98 By_Metalink Checkin Released

icx 11.0.ICX.D 1008974 14-JAN-00 By_Metalink Checkin Released

icx 11.0.ICX.E 1380631 27-NOV-00 By_Metalink Checkin Released

inv 11.0.INV.A 674050 24-JUL-98 By_Metalink Checkin Released

inv 11.0.INV.B 733118 13-NOV-98 By_Metalink Checkin Released

inv 11.0.INV.C 802155 09-APR-99 By_Metalink Checkin Released

inv 11.0.INV.D 953727 06-OCT-99 By_Metalink Checkin Released

inv 11.0.INV.E 1141878 17-APR-00 By_Metalink Checkin Released

inv 11.0.INV.F 1346039 14-NOV-00 By_Metalink Checkin Released

inv 11.0.INV.G 1516669 26-APR-01 By_Metalink Checkin Released

inv 11.0.INV.H 1828520 11-OCT-01 By_Metalink Checkin Released

inv 11.0.INV.I 2525843 10-FEB-03 By_Metalink Checkin Released

ja 11.0.JA.A 673389 24-JUL-98 By_Metalink Checkin Released

ja 11.0.JA.B 730960 13-NOV-98 By_Metalink Checkin Released

ja 11.0.JA.C 810651 08-APR-99 By_Metalink Checkin Released

ja 11.0.JA.D 1041981 15-DEC-99 By_Metalink Checkin Released

ja 11.0.JA.E 1128796 25-FEB-00 By_Metalink Checkin Released

ja 11.0.JA.F 1179731 06-NOV-00 By_Metalink Checkin Released

ja 11.0.JA.G 1491337 16-APR-03 By_Metalink Checkin Released


je 11.0.JE.A 674021 24-JUL-98 By_Metalink Checkin Released

je 11.0.JE.B 731452 16-NOV-98 By_Metalink Checkin Released

je 11.0.JE.C 808881 08-APR-99 By_Metalink Checkin Released

je 11.0.JE.D 1045047 03-DEC-99 Not_Distributed Checkin Obsoleted

je 11.0.JE.E 1117641 23-DEC-99 By_Metalink Checkin Released

je 11.0.JE.F 1122217 03-MAR-00 By_Metalink Checkin Released

je 11.0.JE.G 1197155 05-OCT-00 By_Metalink Checkin Released

je 11.0.JE.H 1323273 14-NOV-00 By_Metalink Checkin Released

je 11.0.JE.I 1483579 20-DEC-00 By_Metalink Checkin Released

je 11.0.JE.J 1540350 18-MAY-01 By_Metalink Checkin Released

je 11.0.JE.K 1761138 13-DEC-01 By_Metalink Checkin Released

je 11.0.JE.L 2106557 25-OCT-02 By_Metalink Checkin Released

je 11.0.JE.M 2533133 29-JUL-03 By_Metalink Checkin Released

jg 11.0.JG.A 674028 24-JUL-98 By_Metalink Checkin Released

jg 11.0.JG.B 730942 16-NOV-98 By_Metalink Checkin Released

jg 11.0.JG.C 808880 08-APR-99 By_Metalink Checkin Released

jg 11.0.JG.D 1045612 02-DEC-99 By_Metalink Checkin Released

jg 11.0.JG.E 1076207 14-JAN-00 By_Metalink Checkin Released

jg 11.0.JG.F 1122226 16-FEB-00 By_Metalink Checkin Released

jg 11.0.JG.G 1198626 26-JUL-00 By_Metalink Checkin Released

jg 11.0.JG.H 1323278 27-SEP-00 By_Metalink Checkin Released

jg 11.0.JG.I 1418645 02-JUL-01 By_Metalink Checkin Released

jg 11.0.JG.J 1838010 11-OCT-02 By_Metalink Checkin Released

jl 11.0.JL.A 673327 24-JUL-98 By_Metalink Checkin Released

jl 11.0.JL.B 733076 16-NOV-98 By_Metalink Checkin Released

jl 11.0.JL.C 810661 08-APR-99 By_Metalink Checkin Released

jl 11.0.JL.D 1056710 30-DEC-99 By_Metalink Checkin Released

jl 11.0.JL.E 1129520 02-MAR-00 By_Metalink Checkin Released

jl 11.0.JL.F 1178693 22-MAY-00 By_Metalink Checkin Released

jl 11.0.JL.G 1277386 31-JUL-00 By_Metalink Checkin Released


jl 11.0.JL.H 1337993 02-OCT-00 By_Metalink Checkin Released

jl 11.0.JL.I 1405327 11-DEC-00 By_Metalink Checkin Released

jl 11.0.JL.J 1493522 12-MAR-01 By_Metalink Checkin Released

jl 11.0.JL.K 1662572 22-APR-02 By_Metalink Checkin Released

jl 11.0.JL.L 2249545 28-MAR-03 By_Metalink Checkin Released

mrp 11.0.MRP.A 674065 24-JUL-98 By_Metalink Checkin Released

mrp 11.0.MRP.B 730718 13-NOV-98 By_Metalink Checkin Released

mrp 11.0.MRP.C 809721 08-APR-99 By_Metalink Checkin Released

mrp 11.0.MRP.D 968037 13-OCT-99 By_Metalink Checkin Released

mrp 11.0.MRP.E 1226624 28-APR-00 By_Metalink Checkin Released

mrp 11.0.MRP.F 1374653 01-MAY-01 By_Metalink Checkin Released

mrp 11.0.MRP.G 2525863 13-FEB-03 By_Metalink Checkin Released

oe 11.0.OE.A 671359 25-JUL-98 By_Metalink Checkin Released

oe 11.0.OE.B 729768 16-NOV-98 By_Metalink Checkin Released

oe 11.0.OE.C 779207 08-APR-99 By_Metalink Checkin Released

oe 11.0.OE.D 953825 11-OCT-99 By_Metalink Checkin Released

oe 11.0.OE.E 1151493 03-APR-00 By_Metalink Checkin Released

oe 11.0.OE.F 1330648 10-OCT-00 By_Metalink Checkin Released

oe 11.0.OE.G 1517168 03-MAY-01 By_Metalink Checkin Released

oe 11.0.OE.H 1829464 12-NOV-01 By_Metalink Checkin Released

oe 11.0.OE.I 2525889 04-FEB-03 By_Metalink Checkin Released

ota 11.0.OTA.A 676871 27-JUL-98 By_Metalink Checkin Released

ota 11.0.OTA.B 727031 17-NOV-98 By_Metalink Checkin Released

ota 11.0.OTA.D 1138446 07-APR-00 By_Metalink Checkin Released

pa 11.0.PA.A 673512 24-JUL-98 By_Metalink Checkin Released

pa 11.0.PA.B 728728 16-NOV-98 By_Metalink Checkin Released

pa 11.0.PA.C 789455 08-APR-99 By_Metalink Checkin Released

pa 11.0.PA.D 998393 08-DEC-99 By_Metalink Checkin Released

pa 11.0.PA.E 1121140 23-MAR-00 By_Metalink Checkin Released


pa 11.0.PA.F 1121147 29-JAN-01 By_Metalink Checkin Released

pa 11.0.PA.G 1401724 19-JUN-01 By_Metalink Checkin Released

pa 11.0.PA.H 1965374 06-NOV-01 By_Metalink Checkin Released

pay 11.0.PAY.A 676893 25-JUL-98 By_Metalink Checkin Released

pay 11.0.PAY.B 727153 13-NOV-98 By_Dev Checkin Released

pay 11.0.PAY.D 1178488 30-AUG-00 By_Dev Checkin Released

pay 11.0.PAY.E 1384951 25-SEP-00 By_Metalink Checkin Released

pay 11.0.PAY.F 1897502 02-OCT-01 By_Metalink Checkin Released

pay 11.0.PAY.G 2348416 11-JUL-02 By_Metalink Checkin Released

pay 11.0.PAY.H 2892285 30-JUN-03 By_Metalink Checkin Released

per 11.0.PER.A 676870 24-JUL-98 By_Metalink Checkin Released

per 11.0.PER.B 727052 17-NOV-98 By_Metalink Checkin Released

per 11.0.PER.C 794083 08-APR-99 By_Metalink Checkin Released

per 11.0.PER.D 1052044 14-MAR-00 By_Metalink Checkin Released

per 11.0.PER.E 1316387 09-SEP-00 By_Metalink Checkin Released

per 11.0.PER.F 1586128 09-AUG-01 By_Metalink Checkin Released

per 11.0.PER.G 2346373 09-JUL-02 By_Metalink Checkin Released

per 11.0.PER.H 2836424 13-JUN-03 By_Metalink Checkin Released

pjm 11.0.PJM.A 673436 23-JUL-98 By_Metalink Checkin Released

pjm 11.0.PJM.B 732735 13-NOV-98 By_Metalink Checkin Released

pjm 11.0.PJM.C 735154 08-APR-99 By_Metalink Checkin Released

pjm 11.0.PJM.D 820222 30-SEP-99 By_Metalink Checkin Released

pjm 11.0.PJM.E 967252 07-MAR-00 By_Metalink Checkin Released

pjm 11.0.PJM.F 1307067 15-APR-01 By_Metalink Checkin Released

po 11.0.PO.A 674012 24-JUL-98 By_Metalink Checkin Released

po 11.0.PO.B 733403 16-NOV-98 By_Metalink Checkin Released

po 11.0.PO.C 803606 08-APR-99 By_Metalink Checkin Released

po 11.0.PO.D 954257 30-SEP-99 By_Metalink Checkin Released

po 11.0.PO.E 1142343 09-MAR-00 By_Metalink Checkin Released

po 11.0.PO.F 1330514 30-NOV-00 By_Metalink Checkin Released


po 11.0.PO.G 1524517 04-MAY-01 By_Metalink Checkin Released

po 11.0.PO.H 1618257 01-NOV-01 By_Metalink Checkin Released

po 11.0.PO.I 2525970 02-JAN-03 By_Metalink Checkin Released

qa 11.0.QA.A 673563 23-JUL-98 By_Metalink Checkin Released

qa 11.0.QA.B 732413 16-NOV-98 By_Metalink Checkin Released

qa 11.0.QA.C 802157 09-APR-99 By_Metalink Checkin Released

qa 11.0.QA.D 970716 04-OCT-99 By_Metalink Checkin Released

rg 11.0.RG.A 673371 24-JUL-98 By_Metalink Checkin Released

rg 11.0.RG.B 728312 13-NOV-98 By_Metalink Checkin Released

rg 11.0.RG.C 794546 08-APR-99 By_Metalink Checkin Released

rg 11.0.RG.D 991533 01-OCT-99 By_Metalink Checkin Released

rg 11.0.RG.E 1178842 01-MAR-00 By_Metalink Checkin Released

rla 11.0.RLA.A 673900 25-JUL-98 By_Metalink Checkin Released

rla 11.0.RLA.B 770520 30-NOV-98 By_Metalink Checkin Released

rla 11.0.RLA.C 779909 08-APR-99 By_Metalink Checkin Released

rla 11.0.RLA.D 995588 21-SEP-99 By_Metalink Checkin Released

ssp 11.0.SSP.A 727774 13-NOV-98 Not_Distributed Checkin Obsoleted

veh 11.0.VEH.A 674152 24-JUL-98 By_Metalink Checkin Released

veh 11.0.VEH.B 770525 30-NOV-98 By_Metalink Checkin Released

veh 11.0.VEH.C 779913 08-APR-99 By_Metalink Checkin Released

veh 11.0.VEH.D 995200 21-SEP-99 By_Metalink Checkin Released

wip 11.0.WIP.A 671381 24-JUL-98 By_Metalink Checkin Released

wip 11.0.WIP.B 733371 16-NOV-98 By_Metalink Checkin Released

wip 11.0.WIP.C 803439 08-APR-99 By_Metalink Checkin Released

wip 11.0.WIP.D 953912 08-OCT-99 By_Metalink Checkin Released

wip 11.0.WIP.E 1189534 02-MAY-00 By_Metalink Checkin Released

wip 11.0.WIP.F 1374066 25-OCT-00 By_Metalink Checkin Released

wip 11.0.WIP.G 2525857 13-FEB-03 By_Metalink Checkin Released

" > ${OUT_DIR}/110_patchsets.txt


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

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

echo "

Patchset

Produ Name Bug_number RELEASED_ Status DISTRIBUTION

----- ------------ ---------- --------- --------------------


----------------------------------------
ak 10.7.AK.A 772668 02-DEC-98 Checkin Released By_Metalink

alr 10.7.ALR.A 777169 16-DEC-98 Checkin Released By_Metalink

alr 10.7.ALR.B 1087301 30-NOV-99 Checkin Released By_Metalink

ap 10.7.AP.Q 760839 29-JAN-99 Checkin Released By_Metalink

ap 10.7.AP.R 778194 02-APR-99 Checkin Released By_Metalink

ap 10.7.AP.S 839870 28-MAY-99 Checkin Released By_Metalink

ap 10.7.AP.T 883663 13-AUG-99 Checkin Released By_Metalink

ap 10.7.AP.U 928642 19-JAN-00 Checkin Released By_Metalink

ap 10.7.AP.V 1054826 20-APR-00 Checkin Released By_Metalink

ap 10.7.AP.W 1178883 05-OCT-00 Checkin Released By_Metalink

ap 10.7.AP.X 1366330 22-OCT-02 Checkin Released By_Metalink

ar 10.7.AR.P 791987 04-FEB-99 Checkin Released By_Metalink

ar 10.7.AR.Q 816966 12-MAR-99 Checkin Released By_Metalink

ar 10.7.AR.R 818461 17-MAY-99 Checkin Released By_Metalink

ar 10.7.AR.S 872699 02-SEP-99 Checkin Released By_Metalink

ar 10.7.AR.T 953844 08-FEB-00 Checkin Released By_Metalink

ar 10.7.AR.U 1064762 19-APR-00 Checkin Released By_Metalink

ar 10.7.AR.V 1216554 24-AUG-00 Checkin Released By_Metalink

ar 10.7.AR.W 1300203 22-NOV-00 Checkin Released By_Metalink

ar 10.7.AR.X 1392573 22-FEB-02 Checkin Released By_Metalink

as 10.7.AS.H 808428 23-FEB-99 Checkin Released By_Metalink

as 10.7.AS.I 887107 12-JUL-99 Checkin Released By_Metalink


as 10.7.AS.J 1169464 Checkin in Progress Not_Distributed

ax 10.7.AX.G 1375389 17-OCT-00 Checkin Released By_Metalink

bom 10.7.BOM.D 793712 24-FEB-99 Checkin Released By_Metalink

bom 10.7.BOM.E 1391193 25-APR-01 Checkin Released By_Metalink

ce 10.7.CE.I 773311 05-FEB-99 Checkin Released By_Metalink

ce 10.7.CE.J 793624 10-JUN-99 Checkin Released By_Metalink

ce 10.7.CE.K 891240 04-JAN-00 Checkin Released By_Metalink

ce 10.7.CE.L 1096211 12-JUL-00 Checkin Released By_Metalink

cn 10.7.CN.D 682047 08-JAN-99 Checkin Released By_Metalink

crp 10.7.CRP.A 770567 19-FEB-99 Checkin Released By_Metalink

cs 10.7.CS.A 806162 18-FEB-99 Checkin Released By_Metalink

ec 10.7.EC.D 804173 19-FEB-99 Checkin Released By_Metalink

ec 10.7.EC.E 898125 04-AUG-99 Checkin Released By_Metalink

eng 10.7.ENG.A 778272 19-FEB-99 Checkin Released By_Metalink

ews 10.7.EWS.A 1863399 06-SEP-01 Checkin Released By_Metalink

ews 10.7.EWS.B 2942645 05-MAY-03 Checkin Released Not_Distributed

ews 10.7.EWS.C 2949212 12-JUN-03 Checkin Released By_Metalink

fa 10.7.FA.E 790169 17-FEB-99 Checkin Obsoleted Not_Distributed

fa 10.7.FA.F 1007276 Checkin Obsoleted Not_Distributed

fa 10.7.FA.G 1204405 24-MAR-00 Checkin Released By_Metalink

fa 10.7.FA.H 1641147 15-JUN-01 Checkin Released By_Metalink

fnd 10.7.FND.C 774541 23-FEB-99 Checkin Released By_Metalink

fnd 10.7.FND.D 1207242 19-MAY-00 Checkin Obsoleted By_Metalink

fnd 10.7.FND.E 1535384 20-FEB-01 Checkin Released By_Metalink

fnd 10.7.FND.F 1761055 Checkin in Progress Not_Distributed

gl 10.7.GL.A 765116 02-FEB-99 Checkin Released By_Metalink

inv 10.7.INV.C 776860 24-FEB-99 Checkin Released By_Metalink

inv 10.7.INV.D 873657 20-OCT-99 Checkin Released By_Metalink

inv 10.7.INV.E 1274435 01-AUG-00 Checkin Released By_Metalink


inv 10.7.INV.F 1636768 31-JUL-01 Checkin Released By_Metalink

je 10.7.JE.A 773450 19-FEB-99 Checkin Released By_Metalink

je 10.7.JE.B 1050740 15-DEC-99 Checkin Released By_Metalink

je 10.7.JE.C 1134756 20-APR-00 Checkin Released By_Metalink

je 10.7.JE.D 1274708 09-MAY-01 Checkin Released By_Metalink

jg 10.7.JG.A 773370 19-FEB-99 Checkin Released By_Metalink

jg 10.7.JG.B 1050742 15-DEC-99 Checkin Released By_Metalink

jg 10.7.JG.C 1134757 19-APR-00 Checkin Released By_Metalink

jl 10.7.JL.A 774104 19-FEB-99 Checkin Released By_Metalink

mrp 10.7.MRP.D 769039 23-FEB-99 Checkin Released By_Metalink

oe 10.7.OE.G 794583 05-FEB-99 Checkin Released By_Metalink

oe 10.7.OE.H 906163 10-SEP-99 Checkin Released By_Metalink

oe 10.7.OE.I 1266017 12-JUL-00 Checkin Released By_Metalink

oe 10.7.OE.J 1588061 27-JUN-01 Checkin Released By_Metalink

ota 10.7.OTA.A 1242344 27-SEP-00 Checkin Released By_Metalink

pa 10.7.PA.G 768250 19-JAN-99 Checkin Released By_Metalink

pa 10.7.PA.H 784658 03-MAR-99 Checkin Released By_Metalink

pa 10.7.PA.I 825984 08-APR-99 Checkin Released By_Metalink

pa 10.7.PA.J 855493 01-JUN-99 Checkin Released By_Metalink

pa 10.7.PA.K 880357 15-JUL-99 Checkin Released By_Metalink

pa 10.7.PA.L 914962 11-OCT-99 Checkin Released By_Metalink

pa 10.7.PA.M 970952 03-FEB-00 Checkin Released By_Metalink

pa 10.7.PA.N 1045531 31-AUG-00 Checkin Released By_Metalink

po 10.7.PO.M 805382 26-FEB-99 Checkin Released By_Metalink

po 10.7.PO.N 864603 19-JUL-99 Checkin Released By_Metalink

po 10.7.PO.O 1267514 07-AUG-00 Checkin Released By_Metalink

po 10.7.PO.P 1618257 13-JUL-01 Checkin Released By_Metalink

qa 10.7.QA.A 772670 24-FEB-99 Checkin Released By_Metalink

rg 10.7.RG.A 776469 02-FEB-99 Checkin Released By_Metalink

rla 10.7.RLA.A 913103 23-JUN-99 Checkin Obsoleted Not_Distributed


rla 10.7.RLA.B 1020315 08-OCT-99 Checkin Released By_Metalink

wip 10.7.WIP.A 783344 24-FEB-99 Checkin Released By_Metalink

wip 10.7.WIP.B 1305352 21-SEP-00 Checkin Released By_Metalink

" > /tmp/107_patchsets.txt

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

REL107NCA_DATE="Dec 15 2005"

echo "

Produ Bug_number RELEASED_ Status DISTRIBUTION

----- ---------- --------- --------------------


----------------------------------------
ak 769665 10-FEB-99 Checkin Released By_Metalink

alr 777396 08-FEB-99 Checkin Released By_Metalink

ap 589316 17-JAN-98 Checkin Released By_Metalink

ap 612807 29-JAN-98 Checkin Released By_Metalink

ap 640928 24-APR-98 Checkin Released By_Metalink

ap 654870 22-MAY-98 Checkin Released By_Metalink

ap 667009 22-JUN-98 Checkin Released By_Metalink

ap 680265 31-JUL-98 Checkin Released By_Metalink

ap 713584 14-AUG-98 Checkin Released By_Metalink

ap 701049 31-AUG-98 Checkin Released By_Metalink

ap 715811 09-OCT-98 Checkin Released By_Metalink

ap 727477 06-NOV-98 Checkin Released By_Metalink

ap 743049 01-DEC-98 Checkin Released By_Metalink

ap 760837 29-JAN-99 Checkin Released By_Metalink

ap 778193 02-APR-99 Checkin Released By_Metalink

ap 839866 28-MAY-99 Checkin Released By_Metalink

ap 883661 13-AUG-99 Checkin Released By_Metalink

ap 928641 19-JAN-00 Checkin Released By_Metalink

ap 1054830 20-APR-00 Checkin Released By_Metalink

ap 1178815 05-OCT-00 Checkin Released By_Metalink


ap 1366335 22-OCT-02 Checkin Released By_Metalink

ar 603787 10-FEB-98 Checkin Released By_Metalink

ar 617988 19-MAR-98 Checkin Released By_Metalink

ar 638494 11-MAY-98 Checkin Released By_Metalink

ar 662661 12-JUN-98 Checkin Released By_Metalink

ar 677042 22-JUL-98 Checkin Released By_Metalink

ar 693797 14-AUG-98 Checkin Released By_Metalink

ar 709134 21-SEP-98 Checkin Released By_Metalink

ar 739028 28-OCT-98 Checkin Released By_Metalink

ar 754409 24-NOV-98 Checkin Released By_Metalink

ar 757245 04-FEB-99 Checkin Released By_Metalink

ar 816975 12-MAR-99 Checkin Released By_Metalink

ar 818459 17-MAY-99 Checkin Released By_Metalink

ar 872698 02-SEP-99 Checkin Released By_Metalink

ar 953843 08-FEB-00 Checkin Released By_Metalink

ar 1064761 19-APR-00 Checkin Released By_Metalink

ar 1216551 24-AUG-00 Checkin Released By_Metalink

ar 1300201 22-NOV-00 Checkin Released By_Metalink

ar 1392572 22-FEB-02 Checkin Released By_Metalink

as 599800 06-FEB-98 Checkin Released By_Metalink

as 599807 16-FEB-98 Checkin Released By_Metalink

as 638227 06-APR-98 Checkin Released By_Metalink

as 682204 05-AUG-98 Checkin Released By_Metalink

as 723999 14-SEP-98 Checkin Released By_Metalink

as 734068 24-SEP-98 Checkin Released By_Metalink

as 789502 22-JAN-99 Checkin Released By_Metalink

as 808426 23-FEB-99 Checkin Released By_Metalink

as 887110 12-JUL-99 Checkin Released By_Metalink

ax 588315 17-FEB-98 Checkin Released By_Metalink


ax 641386 14-MAR-98 Checkin Released By_Metalink

ax 725093 09-SEP-98 Checkin Released By_Metalink

ax 1375389 17-OCT-00 Checkin Released By_Metalink

bom 556037 17-JAN-98 Checkin Released By_Metalink

bom 719013 04-SEP-98 Checkin Released By_Metalink

bom 733086 21-SEP-98 Checkin Released By_Metalink

bom 792715 24-FEB-99 Checkin Released By_Metalink

bom 1391279 25-APR-01 Checkin Released By_Metalink

ce 669836 09-JUN-98 Checkin Released By_Metalink

ce 681835 17-JUL-98 Checkin Released By_Metalink

ce 695988 01-SEP-98 Checkin Released By_Metalink

ce 724748 25-SEP-98 Checkin Released By_Metalink

ce 725305 29-DEC-98 Checkin Released By_Metalink

ce 773312 05-FEB-99 Checkin Released By_Metalink

ce 793623 10-JUN-99 Checkin Released By_Metalink

ce 891243 04-JAN-00 Checkin Released By_Metalink

ce 1096205 12-JUL-00 Checkin Released By_Metalink

chv 674148 11-JUN-98 Checkin Released By_Metalink

chv 724328 01-SEP-98 Checkin Released By_Metalink

chv 798865 26-FEB-99 Checkin Released By_Metalink

cn 590716 23-JAN-98 Checkin Released By_Metalink

cn 621351 13-FEB-98 Checkin Released By_Metalink

cn 627879 29-JUN-98 Checkin Released By_Metalink

cn 682049 08-JAN-99 Checkin Released By_Metalink

crp 770572 19-FEB-99 Checkin Released By_Metalink

cs 806307 18-FEB-99 Checkin Released By_Metalink

ec 751344 21-OCT-98 Checkin Released By_Metalink

ec 752129 23-OCT-98 Checkin Released By_Metalink

ec 753732 26-OCT-98 Checkin Released By_Metalink

ec 809431 19-FEB-99 Checkin Released By_Metalink


ec 898132 04-AUG-99 Checkin Released By_Metalink

eng 778327 19-FEB-99 Checkin Released By_Metalink

fa 588254 16-FEB-98 Checkin Released By_Metalink

fa 712143 06-AUG-98 Checkin Released By_Metalink

fa 1204409 24-MAR-00 Checkin Released By_Metalink

fa 1641147 15-JUN-01 Checkin Released By_Metalink

fnd 649296 03-APR-98 Checkin Released By_Metalink

fnd 716111 15-SEP-98 Checkin Released By_Metalink

fnd 774541 23-FEB-99 Checkin Released By_Metalink

fnd 1207242 07-DEC-00 Checkin Obsoleted By_Metalink

fnd 1535384 20-FEB-01 Checkin Released By_Metalink

gl 765114 02-FEB-99 Checkin Released By_Metalink

inv 712273 14-AUG-98 Checkin Released By_Metalink

inv 759918 13-NOV-98 Checkin Released By_Metalink

inv 768400 24-FEB-99 Checkin Released By_Metalink

inv 873656 20-OCT-99 Checkin Released By_Metalink

inv 1272140 01-AUG-00 Checkin Released By_Metalink

inv 1636763 31-JUL-01 Checkin Released By_Metalink

je 776598 19-FEB-99 Checkin Released By_Metalink

je 1102822 15-DEC-99 Checkin Released By_Metalink

je 1134760 20-APR-00 Checkin Released By_Metalink

je 1274715 09-MAY-01 Checkin Released By_Metalink

jg 776597 19-FEB-99 Checkin Released By_Metalink

jg 1102834 15-DEC-99 Checkin Released By_Metalink

jg 1134762 19-APR-00 Checkin Released By_Metalink

mrp 547014 23-JAN-98 Checkin Released By_Metalink

mrp 630836 23-FEB-98 Checkin Released By_Metalink

mrp 713252 12-AUG-98 Checkin Released By_Metalink

mrp 769037 23-FEB-99 Checkin Released By_Metalink


oe 590184 21-JAN-98 Checkin Released By_Metalink

oe 586431 10-FEB-98 Checkin Released By_Metalink

oe 640639 14-AUG-98 Checkin Released By_Metalink

oe 716030 21-AUG-98 Checkin Released By_Metalink

oe 728335 18-SEP-98 Checkin Released By_Metalink

oe 794454 05-FEB-99 Checkin Released By_Metalink

oe 906170 10-SEP-99 Checkin Released By_Metalink

oe 1266020 12-JUL-00 Checkin Released By_Metalink

oe 1621441 27-JUN-01 Checkin Released By_Metalink

ota 1242343 27-SEP-00 Checkin Released By_Metalink

pa 672977 05-JUN-98 Checkin Released By_Metalink

pa 726024 09-SEP-98 Checkin Released By_Metalink

pa 730820 16-SEP-98 Checkin Released By_Metalink

pa 748675 03-NOV-98 Checkin Released By_Metalink

pa 751042 09-DEC-98 Checkin Released By_Metalink

pa 768249 19-JAN-99 Checkin Released By_Metalink

pa 784657 03-MAR-99 Checkin Released By_Metalink

pa 825983 08-APR-99 Checkin Released By_Metalink

pa 855491 01-JUN-99 Checkin Released By_Metalink

pa 880356 15-JUL-99 Checkin Released By_Metalink

pa 914961 11-OCT-99 Checkin Released By_Metalink

pa 970951 03-FEB-00 Checkin Released By_Metalink

pa 1045535 31-AUG-00 Checkin Released By_Metalink

po 564686 16-FEB-98 Checkin Released By_Metalink

po 658032 05-MAY-98 Checkin Released By_Metalink

po 653197 29-MAY-98 Checkin Released By_Metalink

po 666026 29-JUL-98 Checkin Released By_Metalink

po 692533 20-AUG-98 Checkin Released By_Metalink

po 711317 21-NOV-98 Checkin Released By_Metalink

po 743210 26-FEB-99 Checkin Released By_Metalink


po 781975 19-JUL-99 Checkin Released By_Metalink

po 1267182 07-AUG-00 Checkin Released By_Metalink

po 1618264 13-JUL-01 Checkin Released By_Metalink

qa 772671 24-FEB-99 Checkin Released By_Metalink

rg 765115 02-FEB-99 Checkin Released By_Metalink

wip 769867 24-FEB-99 Checkin Released By_Metalink

wip 1305412 09-OCT-00 Checkin Released By_Metalink

" > ${OUT_DIR}/107NCA_patchsets.txt

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

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

10.7 Patch Sets #4

Product 10.7 Server 10.7 NCA 10SC P16.1


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

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

###
## These are the Baselines that are appended at the end of the Reports
###

echo "
The complete list of Mini-Packs that constitute 11.0.2 Maintenance Pack is as
follows.

MINI-PACKS BUG NO
------------ ------
11.0.AD.B 732272
11.0.AK.B 733964
11.0.ALR.A 755917
11.0.AP.B 730174
11.0.AR.B 731338
11.0.AS.B 733304
11.0.AX.B 731655
11.0.AZ.A 732155
11.0.BOM.B 732960
11.0.CE.B 730326
11.0.CHV.B 733151
11.0.CN.B 682700
11.0.CS.B 733153
11.0.EC.B 726287
11.0.ENG.B 732779
11.0.FA.B 733163
11.0.FF.A 727481
11.0.FND.C 733155
11.0.GL.B 728311
11.0.ICX.B 726288
11.0.INV.B 733118
11.0.JA.B 730960
11.0.JE.B 731452
11.0.JG.B 730942
11.0.JL.B 733076
11.0.MRP.B 730718
11.0.OE.B 729768
11.0.OTA.B 727031
11.0.PA.B 728728
11.0.PAY.B 727153
11.0.PER.B 727052
11.0.PJM.B 732735
11.0.PO.B 733403
11.0.QA.B 732413
11.0.RG.B 728312
11.0.RLA.A 673900
11.0.SSP.A 727774
11.0.VEH.A 674152
11.0.WIP.B 733371
" > ${OUT_DIR}/1102_Base.txt

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

echo "
The complete list of Mini-Packs that constitute 11.0.3 Maintenance Pack is as
follows.

MINI-PACKS BUG NO
---------- ------
11.0.TECH.D 794429
11.0.ALR.A 755917
11.0.AP.C 789454
11.0.AR.C 789457
11.0.AS.C 809836
11.0.AX.C 809273
11.0.AZ.B 809856
11.0.BOM.C 805925
11.0.CE.C 789456
11.0.CHV.C 810486
11.0.CN.B 682700
11.0.CS.B 733153
11.0.EC.C 779201
11.0.ENG.C 801548
11.0.FA.C 811357
11.0.GL.C 794545
11.0.HR.C 794083
11.0.INV.C 802155
11.0.JA.C 810651
11.0.JE.C 808881
11.0.JG.C 808880
11.0.JL.C 810661
11.0.MRP.C 809721
11.0.OE.C 779207
11.0.PA.C 789455
11.0.PJM.C 735154
11.0.PO.C 803606
11.0.QA.C 802157
11.0.RG.C 794546
11.0.RLA.C 779909
11.0.VEH.C 779913
11.0.WIP.C 803439
" > ${OUT_DIR}/1103_Base.txt

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

echo "
Base patchsets listing for 11.5.1 install not currently available.
- Patchset Listings are typically included in release notes and readme files.
- For more details, see aru.us.oracle.com
" > ${OUT_DIR}/1151_Base.txt

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

echo "
1354512 - This is 11.5.2 Patchset with all the Included Patches Below
1289413 - PATCH 11i.CE.A
1316500 - Patch 11.5.MWA.A
1329016 - 11.5.AX.A
1330649 - Patch 11.5.CZ.B
1332650 - Consolidated BIS 11.5.BIS.A Patchset
1336609 - Patch 11.5.IEO.B
1336610 - Patch 11.5.IEB.B
1336613 - Patch 11.5.IEU.B
1338332 - Patch 11.5.BIX.B
1338344 - Patch 11.5.BIL.A
1338414 - Patch 11.5.BIM.B
1338602 - CRM 11.5.2 ASF Checkin
1338804 - Oracle Customer Support Core Release 11i v 11.5.2
1338815 - Oracle iSupport Release 11i v 11.5.2 minipack
1338820 - Oracle Support Release 11i v 11.5.2 minipack.
1338891 - Patch 11i.AR.A
1338967 - Patch 11.5.FRM.A
1339127 - Patch 11.5.CN.B
1339203 - ARU for 11.5.AMS.B
1339240 - Patch 11.5.CSR.B
1339243 - Patch 11.5.CSF.B
1339470 - Patch 11.5.CCT.B
1339472 - Patch 11.5.AST.B
1339474 - Patch 11.5.IEM.B
1339478 - Patch 11.5.FPT.A
1339480 - Patch 11.5.IES.B
1339484 - Patch 11.5.IEX.A
1339544 - Patch 11.5.AMV.B
1339577 - Patch 11.5.OKC.B
1339581 - Patch 11.5.OKS.B
1339582 - Patch 11.5.OKX.B
1339658 - Mini-pack 11.5.GL.A
1339668 - Patch 11.5.CSD.B
1339680 - Project Manufacturing 11.5.PJM.A Mini-Pack
1339726 - Patch 11.5.AS.A
1339729 - Patch 11.5.CSP.B
1339837 - Patch 11.5.RG.A
1339847 - Oracle Customer Care Release 11.5.2 minipack
1339886 - Patch 11.5.BIC.B
1340230 - Oracle CRM Gateway for Mobile Devices 11.5.2 minipack
1340244 - Patch 11.5.JTF.B
1340318 - Patch 11.5.IBE.B
1340371 - Patch 11.5.IBY.B
1341007 - PATCH 11i.AP.A
1341602 - Patch 11.5.IBA.B
1342175 - Patch 11i.PN.A
1342177 - Patch 11i.FII.A
1342181 - Patch 11i.XTR.A
1342447 - Patch 11i.XLA.A
1343092 - Patch 11i.BEN.A
1343114 - Patch 11i.DT.A
1343117 - Patch 11i.FF.A
1343144 - Patch 11i.GHR.A
1343148 - Patch 11i.HRI.A
1343155 - Patch 11i.HXT.A
1343442 - Patch 11i.IPA.A
1343447 - Patch 11i.PA.A
1343449 - Patchset 11.5.AK.A
1344139 - Patch 11i.OTA.A
1344140 - Patch 11i.PAY.A
1344328 - Patch 11i.PER.A
1344341 - Patch 11i.PQH.A
1344352 - Patch 11i.SSP.A
1344365 - Patch 11i.PQP.A
1344783 - Patch 11.5.AZ.A
1344802 - Patch 11i.FND.A
1345059 - Patch 11i.JE.A
1345067 - Patch 11i.JG.A
1345427 - Patch 11i.JL.A
1345428 - Patch 11i.JA.A
1345671 - Patch 11i.FA.A
1345691 - Patch 11i.CUA.A
1345781 - Patch 11i.CUN.B
1345789 - Patch 11i.XDP.B
1345792 - Patch 11i.XNP.B
1345796 - Patch 11i.XNC.A
1345813 - Patch 11i.XNS.B
1346047 - Patch 11i.MRP.A
1346054 - Patch 11i.MSD.A
1346146 - Patch 11i.PSP.A
1346739 - Patch 11i.HXC.A
1348277 - Patch 11i.ALR.A
1348543 - Patch 11i.BOM.B
1348546 - Patch 11i.ICX.A
1348548 - Patch 11i.WIP.A
1349836 - Patch 11i.ASO.B (11.5.2)
1350136 - Patch 11i.PO.A
1350331 - Patch 11i.POA.A
1351004 - This is the release 11.5.2 AD Minipack
1351279 - Patch 11i.IGW.A
1351671 - Patch 11i.PSB.B
1351729 - Patch 11i.PSA.A
1352783 - Patch 11i.EC.B
1353483 - Patch 11i.ENG.A
1354026 - Patch 11i.ISC.A
1354041 - Patch 11i.CRP.A
1354044 - Patch 11i.FLM.A
1354051 - Patch 11i.MSC.A
1354054 - Patch 11i.MSO.A
1354061 - Patch 11i.RHX.A
1354103 - Patch 11i.OE.A
1354128 - 11i.B Oracle Order Management Product (11i.ONT.B)
1354693 - Patch 11i.RLA.A
1354697 - Patch 11i.VEH.A
1354701 - Patch 11i.RLM.B
1354704 - Patch 11i.VEA.B
1355645 - Patch 11i.PMI.B
1355660 - Patch 11i.GMA.B
1357262 - Patch 11i.QP.B
1357277 - Patch 11i.WSM.A
1357281 - Patch 11i.WSH.B
1357312 - Patch 11i.INV.B
1357316 - Patch 11i.QA.A
1361180 - Patchset 11i.WPS.A
1375550 - PERFORMANCE ISSUE ON FNDFFUPG
1381968 - PKM1152: QP - DUPLICATE ACTIONS IN THE DB DRIVER
1382072 - CRM 11.5.2:OPS: PKM1152: INV - DUPLICATE ACTIONS IN THE DB DRIVER
1383329 - PKM1152.5: $SRS$.APXAAREP FLEXFIELD FAILS DURING UPGRADE FROM 11.0.3
1386971 - UPG1152: ORA-01403: NO DATA FOUND
1387492 - PKM1152.3: BEN - DUPLICATE ACTIONS IN THE DB DRIVER
1387839 - PKM1152.3: PAY - DUPLICATE ACTIONS IN THE DB DRIVER
1388492 - PKM1152.5: PO - DUPLICATE ACTIONS IN THE DB DRIVER
1389216 - Patch 11i.GMS.B
1390634 - PKM1152: FNDLANG.LDT FAILS DURING UPGRADE FROM 11.0.3
1391240 - PKM1152.6: WMS INVALID OBJECTS IN FRESH DATABASE
1392476 - Patch 11i.SHT.A
1392544 - AXXCMEXC: ERROR HANDLING ENHANCEMENT
1395737 - PKM1152:CRM 11.5.2:OPS: SQL SCRIPT FAILURE
1397442 - UPG1152.1:AUTOPATCH: PERFORMANCE ISSUE - AX57545.SQL RUNNING 3hrs
1398685 - Simulated bug abstract
1399166 - UPG1152:FNDLOAD FAILURE WHEN UPGRADING VISION FROM 11.5.1
1402145 - NEW VERSION OF PERSSHR.DRV REQUIRED FOR PER PATCHSET A
1404149 - PROBLEMS DISPLAYING NON AMERICAN CHARACTERS IN NETSCAPE
1405540 - PKM1152:WFMFLBJT.FMX DID NOT BUILD
1406029 - PKM1152.3: POACMME.SLT NEEDS TO BE RUN BEFORE POACRESP.LDT
1406850 - PKM1152.5: GMF - B1198173.SQL FAILS DURING ADPATCH
1406939 - UPG1152.3:AUTOUPGRADE FAILS RUNNING FNDLOAD FAILS FOR INVCASSN.LCT
1407139 - Removed contents of afhelp.slt; Fixed an iHelp BIDI bug
1407225 - PKM1152.3: SLT FILES LOCATED IN IMPORT SHOULD BE IN IMPORT/US
1407385 - PKM1152.3: AOL LCT FILES SHIPPED IN MSC APPL_TOP-ALSO USED IN PATCH
1408060 - MOVE JDBC111.ZIP TO ALL TIERS
1408082 - PKM1152.3: LDT FILES LOCATED IN IMPORT DIR, THEY SHOULD BE IN US DIR
1408161 - RENAME OWA_INIT PACKAGE TO OWA_CUSTOM FOR WEBDB2.5
1408565 - PKM1152: PSA SHOULD NOT OWN GMS.PL* AND PSAC.PL* IN PSA FILE DRIVERS
1409389 - FND_STATS INVALID STATUS
1410715 - PATCHES TO R11.5.2 FND PATCHSET (11I.FND.A)
1410721 - PKM1152.3: WFT FILES ARE LOCATED IN IMPORT DIR, SHOULD BE IN US DIR
1411854 - REMOVE POA/11.5.0/BIN IN POA FILE DRIVER
1412043 - PKM1152.3: INVALID FILE NAME B813148.MSG
1412365 - WRONG SUB-PHASING OF .JLT FILES
1412366 - WRONG SUB-PHASING OF .JLT FILES
1412368 - WRONG SUB-PHASING OF .JLT FILES
1412370 - WRONG SUB-PHASING OF .JLT FILES
1413236 - PKM1152.3 TRACKING PKM RAISED ISSUES AGAINST ADEVRT DB
1413514 - PKM1152.5:FNDFFVGN CALLS IN 11.5.2 FAILS IN APPS_MRC DATABASE
1413660 - WFLOAD FAILS WITH ORA-1 ON NLS 11.5.1 UPGRADE TO 11.5.2
1414192 - PKM1152.3 CHANGES TO STUB OUT hrbeexpr.pk*
1414681 - DUMMY BUG TO GET UPGRADE FIXES INTO 11.5.2
1416162 - PKM1152.5: MSC - DEPENDENCY ISSUES DURING UPGRADE FROM 11.5.1
1416168 - PKM1152.5: PER - DEPENDENCY ISSUES DURING UPGRADE FROM 11.5.1
1416176 - PKM1152.5: WSM - DEPENDENCY ISSUES DURING UPGRADE FROM 11.5.1
1416180 - PKM1152.5: AZ - DEPENDENCY ISSUES DURING UPGRADE FROM 11.5.1
1417392 - SYNCHRONZE AR MLS TABLE HZ_TIMEZONES_TL
1419960 - PKM1152.5: PQH MLS TABLES NOT BEING SYNC'ED IN PQHNLINS.SQL FILE
1420477 - PKM1152.5: OEFLEX.LDT MISSING IN ADMIN TIER UPGRADE
1420525 - PKM1152.5: INV & WMS FAILURE INCORRECT ARGS TO 'LOAD_ROW'
1420533 - PKM1152.5: FAILURE USING COMBINED DB DRIVER ON 11.5.0 DATABASE
1420584 - PKM1152: ICXNLADD.SQL where clause bind variable not prefixed cor
1420734 - UPG1152.5:INVALID OBJECT (WMS)
1423452 - UPG1152:FNDLOAD FAILURE WHEN UPGRADE VISION FROM 11.5.1
1430301 - PKM1152.6: AP - APXSEQXS.PLS FAILS DURING UPGRADE FROM 11.0.3
1431418 - FNDLOAD FAILURE WHEN UPGRADING VISION FROM 11.5.1
1432790 - PKM1152.6: AK - AKDELLKP.SQL FAILS DURING UPGRADE FROM 11.0.3
1449449 - PKM1152.7: AMV - AMVICCN.SQL FAILS (Extra comma after Index Name)
1449644 - ADD AD FIXES TO REL 11.5.2 MAINTENANCE PACK NOT IN AD 11.5.2 MINI
1455789 - 11.5.2: CS,CSC,IBE,IEB,MWA,QA *.DEP FILES NOT IN FND 11.5.2 SUB FILE
1462755 - R1152: NEED SCRIPT TO RESIZE OR ADD TABLESPACES FOR UPGRADES
" > ${OUT_DIR}/1152_Base.txt

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

echo "
1301609 - CRM 11.5.1 SCROLL BARS ON RO'S AND RJ'S SEARCH SCREENS LOSE POSITIONS
1306413 - CRM FAMILY PACK 1
1335577 - Patch 11i.FV.A
1338967 - Patch 11.5.FRM.A
1340371 - Patch 11.5.IBY.B
1343092 - Patch 11i.BEN.A
1343114 - Patch 11i.DT.A
1343117 - Patch 11i.FF.A
1343144 - Patch 11i.GHR.A
1343148 - Patch 11i.HRI.A
1343155 - Patch 11i.HXT.A
1344139 - Patch 11i.OTA.A
1344140 - Patch 11i.PAY.A
1344328 - Patch 11i.PER.A
1344341 - Patch 11i.PQH.A
1344352 - Patch 11i.SSP.A
1344365 - Patch 11i.PQP.A
1344783 - Patch 11.5.AZ.A
1346739 - Patch 11i.HXC.A
1350331 - Patch 11i.POA.A
1350478 - UNABLE TO LOG INTO TEST115
1352783 - Patch 11i.EC.B
1355645 - Patch 11i.PMI.B
1356868 - Patch 11i.AX.B
1364051 - IMARKETING 11.5.2 ROLLUP PATCH
1380728 - PATCH 11i.AP.B
1381844 - CRM 11.5.2:OPS: SQL SCRIPT FAILURE (IEB)
1383329 - PKM1152.5: $SRS$.APXAAREP FLEXFIELD FAILS DURING UPGRADE FROM 11.0.3
1387554 - CRM 11.5.2:OPS: INVALID OBJECTS (CCT)
1392476 - Patch 11i.SHT.A
1393884 - Patch 11i.AR.B
1396022 - UPGRADE TO 11.5.2.DROP2 FAILS AT IEOSVRDL.SQL
1397357 - ROLLUP PATCH2 FOR ISTORE
1400635 - Patch 11i.GMA.C
1403768 - CALL CENTER ROLLUP PATCH-2
1405835 - BUG FOR CONSOLIDATED ARU
1406220 - INV PATCH 1357312 ERR RELINK WICDOL EXIT CODE 127 ACC NOT FOUND HP-UX
1407036 - ASO Roll-up Patch 2
1408597 - Patch 11i.PA.B
1411854 - REMOVE POA/11.5.0/BIN IN POA FILE DRIVER
1413300 - V1151: ACTUAL VALUES FOR HRI PERFORMANCE MEASURES NOT POSTING ON PHP
1421319 - 11i.JL.B patchset
1421320 - Patch 11i.JE.B
1421322 - Patch 11i.JG.B
1421326 - Patch 11i.JA.B
1421641 - PATCH 11i.CE.B
1421650 - Patch 11i.FII.B
1421657 - Patch 11i.PN.B
1421670 - Patch 11i.XLA.B
1421673 - Patch 11i.XTR.B
1422989 - Patch 11i.CUA.B
1423378 - Mini-pack 11i.GL.B
1423381 - Patch 11i.RG.B
1425942 - Patch 11i.PO.B
1425974 - Patch 11i.ONT.C
1426000 - Patch 11i.OE.B
1426003 - Patch 11i.RLM.C
1426005 - Patch 11i.VEA.C
1426045 - Patch 11i.ICX.B
1426159 - Patch 11i.WSM.B
1426167 - Patch 11i.MSC.B
1426170 - Patch 11i.FLM.B
1426172 - Patch 11i.MRP.B
1426173 - Patch 11i.MSO.B
1426176 - Patch 11i.MSD.B
1426184 - Patch 11i.BOM.C
1426193 - Project Manufacturing 11i.PJM.B Mini-Pack
1426196 - PKM1153.1: Duplicate calls from the FP1 db driver
1426205 - Patch 11i.QA.B
1426212 - Patch 11i.INV.C
1426213 - Patch 11i.ENG.B
1426215 - Patch 11i.WSH.C
1426225 - Patch 11i.WPS.B
1426235 - Patch 11i.WMS.A
1426249 - Patch 11i.IPA.B
1426250 - Patch 11i.CZ.C
1426271 - Patch 11i.QP.C
1426291 - Patch 11i.WIP.B
1428045 - Patch 11i.MWA.B
1430301 - PKM1152.6: AP - APXSEQXS.PLS FAILS DURING UPGRADE FROM 11.0.3
1448977 - 11.5.3 vision fixes
1449654 - Patch 11i.GMS.C
1449665 - Patch 11i.IGW.B
1449673 - Patch 11i.PSB.C
1449709 - Patch 11i.PSP.B
1454466 - Patch 11i.FND.B
1454857 - 11.5.3 COMMUNICATIONS PRODUCT FAMILY - RUP
1455027 - Patch 11i.AK.B
1455250 - Patch 11i.PSA.B
1455252 - Patchset 11i.BIS.B
1455924 - CONSOLIDATION PATCH FOR 11.5.3 ADDITIONS TO PATCHSET A FOR PAYROLL
1456037 - PER PATCH FOR RELEASE 11.5.3
1457397 - CALL CENTER INTELLIGENCE ARU FOR 11.5.3 PATCHSET H
1457440 - Marketing Intelligence - BIM ARU FOR 11.5.3 PATCHSET H
1457712 - Sales Intelligence - BIL ARU FOR 11.5.3 PATCHSET H
1457950 - Customer Intelligence - BIC ARU FOR 11.5.3 PATCHSET H
1459186 - Patch 11i.ALR.B
1460338 - RELEASE: POTENTIAL UTF8 TABLE REGISTRATION LDT ISSUES
1460403 - OM and OTA integration patch
1463080 - SALES AND MARKETING PATCHSET-H
1469129 - V1153CRM - MERGED PATCH REQUIRED FOR BUG 1455564 AND BUG 1458072
1474395 - RELEASE: dbupg<prod>.txt files for Financials,Project,Global and SEM
1474928 - JTF RUP3 for 11.5.3
1475047 - CRM 11.5.3: SERVICE CONTRIBUTION TO 11.5.3-COPY SERVICE RUP2 10/20/00
1475226 - SALES AND MARKETING PATCHSET-H1
1475253 - MINI PATCH ON TOP OF ASO ROLL-UP PATCH 2
1475426 - AD Release 11.5.3 MiniPack (Patch 11i.AD.C)
1475524 - TO RESOLVE LANGCODE VARIABLE CONFLICT WITH JTF RUP3 PATCH
1476238 - PKM 1153: DATABASE DRIVER HAS INCOMPATIBLE RELEASE.
1476514 - JAVASCRIPT ERROR RETURN WHEN CREATE NEW EXPENSE REPORT IS CALLED
1477136 - Patch 11i.ASL.A
1477185 - PKM1153: ERROR IN COMPILE OF CAMPAIGNSELECTORBASEDSHCRT.JAVA
1477193 - AMS FIXES FOR JAVA COMPILATION ERRORS IN PKM ENVIRONMENT
1477264 - CRM 11.5.3:OPS:JAVA BUILD FAILURE FOR IEO RUP (11.5.3)
1477394 - 11i AKLOAD PRE-REQ PATCH (CHANGES #8)
1477547 - PKM1153: INVISMMX.RDF FAILED TO BUILD
1478499 - PKM1153.1: FAILURES IN PROD.TXT AND FILE.DRV FILES
1478744 - PV BUG : ARU CONTAINING SOME STUB FILES-NEEDED FOR AUTOPATCH PROCESS
1478760 - BUG FOR PKM REQUIREMENTS
1478794 - PUT AN OBSOLETED FMX FILE BACK TO CNFILE.DRV
1478853 - PKM1153.1: CNCOL.ODF FAILS DURING UPGRADE FROM 11.5.2
1479783 - ARU for bug 1479783-modify position of .rdf and .ogd files in driver
1480200 - PRE-REQ ARU FOR ARU # 345437
1480734 - CRM11.5.3: FILE DRIVER CHANGES
1480761 - PKM1153.1: XDP - XDPSCRSP.LDT FAILS DURING UPGRADE
1480857 - PKM1153.1: BIL - BILREV.JLT FAILS DURING UPGRADE
1480900 - PKM1153.1: BIX - BIXRESP.LDT FAILS DURING UPGRADE
1480958 - PKM1153.1: ASG - ASGPUB.SQL FAILS DURING UPGRADE
1481050 - PKM1153.1: CN - MISSING FILES IN 11.5.3
1481342 - PKM1153.1: AK - DUPLICATE DB DRIVER ACTIONS
1481385 - PKM1153.1: CRM-JTF-CS - DUPLICATE DB DRIVER ACTIONS
1481423 - PKM1153.1: CRM-AMS - DUPLICATE DB DRIVER ACTIONS.
1481432 - PKM1153.1: CUN MISSING FILES LISTED IN THE FILE DRIVER
1481441 - PKM1153.1: CRM-JTF - MISSING FILES LISTED IN THE FILE DRIVER
1481449 - PKM1153.1: AST MISSING FILES LISTED IN THE FILE DRIVER
1481455 - PKM1153.1: MISSING FILES LISTED IN THE FILE DRIVER
1481471 - PKM1153.1: CRM-ASO -PL/SQL LIBRARY FOR FORMS FAILS TO BUILD IN 11.5.3
1481474 - PKM1153.1: XNCORDWK.FMX FAILS TO GENERATE IN 11.5.3
1481486 - PKM1153.1: JTF REPORTS PLL JTFBCHBN FAILS TO GENERATE
1481556 - PKM1153.1: INVALID OBJECTS IN 11.5.3
1481583 - PKM1153.1: BEN - DUPLICATE DB DRIVER ACTIONS
1481604 - PKM1153_1: DUPLICATE DB DRIVER ACTIONS
1481642 - PKM1153.1: PAY - DUPLICATE DB DRIVER ACTIONS
1481644 - PKM1153.1: HR - DUPLICATE DB DRIVER ACTIONS
1482261 - PKM1153.1: MISSING FILES LISTED IN THE FILE DRIVER
1482344 - Fix for PKM1153.1: OKS - INVALID OBJECTS IN 11.5.3
1482346 - PKM1153.1: XNC - INVALID OBJECTS IN 11.5.3
1482381 - PKM1153: TCA FILES REQUIRED FOR CRM IN 11.5.3
1482487 - PKM1153_1: DUPLICATE DB DRIVER ACTIONS
1482608 - PKM1153.1: INVALID SYNTAX IN THE 11.5.3 DB DRIVER
1482615 - ARU to correct syntax in driver d1457950.drv
1482618 - PKM1153.1:INCORRECT SYNTAX IN THE DB DRIVER
1482626 - PKM1153.1:INCORRECT SYNTAX IN 11.5.3 DB DRIVER
1482908 - CCFP1QA EMAIL DESKTOP PREVIEW,MARKED MESSAGE,GET JAVA.LANG.EXCEPTION
1483148 - PKM1153.1: INVALID OBJECTS IN 11.5.3
1484104 - 11.5.3: PA_PROJECT_PARTIES.GRANT_ID SHOULD BE NUMBER INSTEAD RAW(16)
1484172 - IBUCONTEXT.GETORGCONTACTS RETURN WRONG RESULT/SOMETIMES THROWS EXCEP
1484280 - SCRIPT TO CHECK IF REPLICATION OBJECTS EXIST OR NOT
1485505 - PKM1153.1: CRM-AMS - DUPLICATE DB DRIVER ACTIONS (REF:1481423).
1485685 - BUG RAISED TO RELEASE THE HRWRKFLOW.SQL AS PART OF 11.5.3
1485972 - PKM1153.1: CS - DUPLICATE DB DRIVER ACTIONS (CALLS TO AK)
1486218 - PKM1153.1: OZFNLADD.SQL FAILS DURING UPGRADE TO 11.5.3
1486568 - PKM1153.1: JTF - DUPLICATE DB DRIVER ACTIONS (CALLS TO AK)
1486594 - PKM1153.1:AMV-DUPLICATE DB DRIVER ACTIONS(AK)ADDED PATCH REQUIRED
1488237 - PKM1153.2:ASO - INCORRECT SYNTAX IN THE 11.5.3 DB DRIVER
1488611 - TRACKING DELIVERY OF 11.5.0 TO 11.5.1 DRIVERS
1489226 - DB DRIVER FIX - CALLS IN 1151.DRV BUT NOT IN 11.5.2
1489449 - This is the database upgrading driver for ICX from 11.5.2 to 11.5.3
1489450 - USED FOR DBUPGCZ.TXT DELIEVERY
1489464 - Distribution Family's products dbupg<prod>.txt for PKM 11.5.3
1489473 - DBUPGENG.TXT DEVELIERY
1489806 - PKM1153.2:AST - FILES NOT LISTED IN THE FILE DRIVER
1489809 - PKM1153.2:JTF - DB DRIVER CALLS UPLOAD_PARTIAL INSTEAD OF UPLOAD
1489811 - PKM1153.2:JTF - NO DATA FOUND
1489823 - PKM1153.2:AS - DUPLICATE DB DRIVER ACTIONS
1489825 - PKM1153.2:ASO - DUPLICATE DB DRIVER ACTIONS
1489827 - PKM1153.2:AZ - DUPLICATE DB DRIVER ACTIONS
1489942 - PKM1153.2:IBA - DUPLICATE DB DRIVER ACTIONS
1489946 - PKM1153.2:IBE - DUPLICATE DB DRIVER ACTIONS
1489947 - PKM1153.2:IBU - DUPLICATE DB DRIVER ACTIONS
1489953 - PKM1153.2:IEM - DUPLICATE DB DRIVER ACTIONS
1489977 - PKM1153.2:IEO/IEU/CCT - DUPLICATE DB DRIVER ACTIONS
1489991 - PKM1153.2:JTF - DUPLICATE DB DRIVER ACTIONS.
1489997 - PKM1153.3: MSC - DUPLICATE DB DRIVER ACTIONS
1489999 - #PKM1153.2:OKC - DUPLICATE DB DRIVER ACTIONS
1490002 - PKM1153.2:OTA - DUPLICATE DB DRIVER ACTIONS
1490054 - PKM1153.2:PAY - DUPLICATE CALLS IN THE 11.5.3 DB DRIVER
1490062 - PKM1153.2:PER - DUPLICATE DB DRIVER ACTIONS
1490626 - PKM1153.2:MRC - AR_REV_REC_QT FAILS DURING UPGRADE OF MRC SCHEMA
1490956 - PKM1153.2: AMS - DUPLICATE DB DRIVER ACTIONS
1491006 - PKM1153.2: PQH - DUPLICATE DB DRIVER ACTIONS
1491255 - PKM1153.2: BIL - BILREV.JLT AND BILPROD.JLT FAILS DURING UPGRADE
1492412 - DRIVER FOR UPGRADES FROM 11.5.0 TO 11.5.1
1492425 - FILE TO UPGRADE FROM 11.5.0 TO 11.5.1
1492492 - DBUPGEC.TXT TO UPGRADE FROM 11.5.0 TO 11.5.1
1492498 - DBUPGECX.TXT TO UPGRADE FROM 11.5.0 TO 11.5.1
1492559 - DBUPGALR.TXT TO UPGRADE ALR FROM 11.5.0 TO 11.5.1
1492635 - PKM1153.2: DUPLICATE CALLS IN DB DRIVER (1306413)
1492716 - PKM 11.5.3.DROP2 :DRIVER FOR 11.5.0 TO 11.5.1 FOR OKC/OKS
1492792 - PKM1153.2: CN - FORM CNSBPS.FMX FAILS TO GENERATE
1492824 - PKM1153.2: AR - DUPLICATE DB DRIVER ACTIONS
1492827 - PKM1153.2: PN - DUPLICATE DB DRIVER ACTIONS
1492856 - CRM 11.5.3:OPS:STUB DRIVERS NEEDED FOR 11.5.0 -> 11.5.1 UPGRADE
1493421 - SAC1152: UPGRADING REL 11.0.3->11.5.2 FNDLOAD FAIL FIND APCONCPG.LDT
1493423 - RELEASE: AP - DUPLICATE DB DRIVER ACTIONS WITH AOL
1493431 - PKM1153.2: AR - DUPLICATE DB DRIVER ACTIONS
1493442 - RELEASE: MODIFY DATABASE DRIVER TO MATCH AOL PHASING
1493504 - FII: 11.5.3 AOL DATABASE DRIVER CHANGES -- CALL TO AFDICT.LDT
1493507 - PN: 11.5.3 AOL DATABASE DRIVER CHANGES -- CALL TO AFDICT.LDT
1493511 - XLA: 11.5.3 AOL DATABASE DRIVER CHANGES -- CALL TO AFDICT.LDT
1493515 - XTR: 11.5.3 AOL DATABASE DRIVER CHANGES -- CALL TO AFDICT.LDT
1493573 - RELEASE: CE - DUPLICATE DB DRIVER ACTIONS WITH AOL
1493596 - CHANGE PATCHSET 'B' DRIVER TO CORRECT SUB-PHASED FOR FND LDT FILES
1493634 - PKM1153.2: CUN - MISSING FILES LISTED IN THE FILE DRIVER
1493978 - PKM1153.2: ASF - MISSING FILES LISTED IN THE FILE DRIVER
1493995 - DUMMY BUG FOR PLANNING CONSOLIDATED DBUPG<PROD>.TXT
1494046 - DUMMY BUG FOR DBUPG<MFG_FAMILY_PROD>.TXT
1494241 - PKM1153.2: JTF - MISSING FILES(jtffmengsamp.sh)LISTED IN FILE DRIVER
1495146 - PKM1153.2: AMV - MISSING 11.5.2 FILES
1495163 - PKM1153.2: ASG - MISSING 11.5.2 FILES
1495168 - PKM1153.2: AST - MISSING 11.5.2 FILES
1495179 - PATCHSET FOR MISSING FILE FROM BUG 1495179
1495189 - PKM1153.2: BIM - MISSING 11.5.2 FILES
1495197 - PKM1153.2: CN - MISSING 11.5.2 FILES
1495202 - PKM1153.2: CS - MISSING 11.5.2 FILES
1495208 - PKM1153.2: CSC - MISSING 11.5.2 FILES
1495215 - PKM1153.2: CSP - MISSING 11.5.2 FILES
1495238 - IBE - MISSING 11.5.2 FILES
1495241 - PKM1153.2: IBU - MISSING 11.5.2 FILES
1495254 - PKM1153.2: JTF - MISSING 11.5.2 FILES
1495263 - PKM1153.2: OKS - MISSING 11.5.2 FILES
1495268 - PKM1153.2: OKX - MISSING 11.5.2 FILES
1495305 - PKM1153.2: XDP - MISSING 11.5.2 FILES
1495310 - PKM1153.2: XNC - MISSING 11.5.2 FILES
1495317 - PKM1153.2: XNP - MISSING 11.5.2 FILES
1495328 - XNS - 11.5.2 files not in 11.5.3 patch
1495545 - PKM1153.2 CS - UPGRADE FROM 1151 TO 1153 FAILS WITH LDT'S
1495552 - PKM1153.2: IBU - UPGRADE FROM 1151 TO 1153 FAILS WITH LDT'S
1495569 - Fixed bug 1495569 by not pre-fetching System AppsEnvironmentStore
1495660 - PKM1153.2: CCT - DUPLICATE DB DRIVER ACTIONS (FND CALLS)
1495671 - PKM1153.2: JTF - DUPLICATE DB DRIVER ACTIONS (FND CALLS)
1495676 - PKM1153.2:JTF - DUPLICATE DB DRIVER ACTIONS (AOL CALLS - FP1)
1495709 - PKM1153.2:CS - DUPLICATE DB DRIVER ACTIONS (FND CALLS)
1495717 - PKM1153.2:IBA - DUPLICATE DB DRIVER ACTIONS (FND CALLS)
1495725 - PKM1153.2:IBE - DUPLICATE DB DRIVER ACTIONS (FND CALLS)
1495820 - PKM1153.2: AMS - MISSING 11.5.2 FILES
1497100 - MODIFY THE DB DRIVER FOR BUG 1489988
1497530 - PKM1153.2:PV - OPSNLS: ISSUES WITH - PVNLADD.SQL
1497881 - PKM1153.2: IEX - MISSING 11.5.2 FILES
1497883 - PKM1153.2: FPT - MISSING 11.5.2 FILES
1497910 - PKM1153.2: AS - MISSING 11.5.2 FILES
1497943 - PKM1153.2: BIL - MISSING 11.5.2 FILES
1498459 - MERGED DRIVER CORRECTIONS FOR D1480946.DRV
1500306 - HZ_ORG_CONTACTS : DEPT, RANK FIELDS DO NOT HAVE LOOKUP VALUES
1500432 - PKM1153.3: AST - FILE IN PATCH NOT LISTED IN THE FILE DRIVER
1501273 - PKM1153.3:IEX- FIX FOR 1497589 REQUIRED IN 11.5.3 (XLATION ISSUE)
1501306 - FPT: THIS BUG REPLACES BUG 1500455
1501333 - PKM1153.3: AS - FILES INCLUDED IN THE PATCH NOT LISTED IN FILE DRIVER
1501627 - PKM1153.3: IEM - DUPLICATE DB DRIVER ACTIONS
1501745 - PKM1153.3: DUPLICATE CALL IN DB DRIVER
1501749 - PKM1153.3: JG - DUPLICATE DB DRIVER ACTIONS
1501758 - PKM1153.3: GMA/PO - DUPLICATE DB DRIVER ACTIONS
1501862 - PKM1153.3: FPT - MISSING FPTJAR.DEP AND FPTIES.JAR
1501870 - BUMMY BUG FOR 1489997
1501871 - UPG1152 FIX FOR CSSEDTT.LDT/LCT FOR OPS
1503641 - PKM1153.3: FPT - MISSING FILES IN 11.5.3 APPL_TOP
1503685 - PKM1153.3: IEX - MISSING FILE IEXINDLS.FMB
1503730 - CUN - MISSING FILES LISTED IN THE FILE DRIVER
1503777 - CRM UPG11.5.2:NLS: ERROR IN SCRIPT FOR MIGRATING TO MLS
1503976 - Patch 11i.SHT.B
1504318 - USER HOOK PRE-PROCESSOR SUPPORT DEFERRED COMPILATION
1504905 - PKM1153.3: JA - DUPLICATE DB DRIVER ACTIONS
1508353 - PKM1153.3: PO - 10.7 UPGRADE FAILS DUE TO POATT04T.SQL, POATT04E.SQL
1508581 - AR - UPDATE DB DRIVER CALLS FOR AD BUG 1324702
1508598 - PN - UPDATE DB DRIVER CALLS FOR AD BUG 1324702
1509000 - FIX FOR DBUPGENG.TXT
1510212 - DUMMY BUG FOR DBUPGWSM.TXT
1510749 - PKM1153.3:AS - FNDLOAD FAILURES ON RE-RUNNING 1153 DB DRIVER
1510894 - PKM1153.3:CST FLEX FIELD COMPILATION FAILS IN UPGRADED 1153 DB
1512391 - PKM1153.3: AMV - 1150 TO 1153 UPGRADE FAILURES
1512393 - PKM1153.3: CCT - 1150 TO 1153 UPGRADE FAILURES
1512395 - PKM1153.3: CN - 1150 TO 1153 UPGRADE FAILURES
1512399 - PKM1153.3: CSC - 1150 TO 1153 UPGRADE FAILURES
1512404 - PKM1153.3: CSF - 1150 TO 1153 UPGRADE FAILURES
1512406 - PKM1153.3: CSP - 1150 TO 1153 UPGRADE FAILURES
1512412 - PKM1153.3: CSR - 1150 TO 1153 UPGRADE FAILURES
1512418 - PKM1153.3: JTF - 1150 TO 1153 UPGRADE FAILURES
1512420 - PKM1153.3: OKC - 1150 TO 1153 UPGRADE FAILURES
1512423 - PKM1153.3: OKS - 1150 TO 1153 UPGRADE FAILURES
1512427 - PKM1153.3: CZ - 1150 TO 1153 UPGRADE FAILURES
1516735 - RELEASE: AP - 11.5.3 DRIVER CALLS FOR AK PRE-REQ
1516919 - AR - UPDATE DB DRIVER CALLS FOR AK
1517051 - BUG# NEEDED TO CREATE ARU FIX FOR AK 1313614 FOR D1475047.DRV DRIVER
1517197 - PKM115.3 : PER BUG 1499832 IS NOT INCLUDED IN THE 11.5.3,
1517259 - RELEASE: MODIFY DATABASE DRIVER TO MATCH AOL SET 0 STANDARD
1517410 - PKM1153.3 ASG-INVALID OBJECT IN 11.5.3
1517459 - BUG FOR PS CANDIDATE CHECKIN DRIVER FOR 11.5.3 (PATCHSET H)
1517692 - PKM1153.3: AMS - 1150 TO 1153 FAILURES
1517695 - PKM1153.3: AMV - 1150 TO 1153 FAILURES
1517696 - PKM1153.3: AR - 1150 TO 1153 FAILURES
1517697 - PKM1153.3: BIC - 1150 TO 1153 FAILURES
1517698 - BIX Call Center Intelligence
1517701 - PKM1153.3: CCT - 1150 TO 1153 FAILURES
1517702 - PKM1153.3: CN - 1150 TO 1153 FAILURES
1517703 - PKM1153.3: CSC - 1150 TO 1153 FAILURES
1517705 - PKM1153.3: CSD - 1150 TO 1153 FAILURES
1517708 - PKM1153.3: CSF - 1150 TO 1153 FAILURES
1517712 - PKM1153.3: CS - 1150 TO 1153 FAILURES
1517717 - PKM1153.3: FPT - 1150 TO 1153 FAILURES
1517723 - PKM1153.3: IEU - 1150 TO 1153 FAILURES
1517724 - PKM1153.3: IEX - 1150 TO 1153 FAILURES
1517728 - PKM1153.3: JTF - 1150 TO 1153 FAILURES
1517731 - PKM1153.3: MSD - 1150 TO 1153 FAILURES
1517733 - PKM1153.3: OKC - 1150 TO 1153 FAILURES
1517734 - PKM1153.3: PA - 1150 TO 1153 FAILURES
1517737 - PKM1153.3: PQH - 1150 TO 1153 FAILURES
1517738 - Updated dbupgqp.txt : change UPLOAD to UPLOAD_PARTIAL
1518408 - PKM1153.3: HR - 1150 TO 1153 FAILURES
1518732 - PKM1153: FND PRE-REQ CORRECTION IN D1474928.DRV
1518875 - PKM1153.3: AS-INVALID OBJECT
1518941 - PKM1153.3: CN-INVALID OBJECT
1518963 - PKM1153.3: OKC-INVALID OBJECT
1519020 - PKM1153.3: AR - 1150 TO 1153 FAILURES
1519021 - BIM Marketing Intelligence
1519301 - PKM1153.3 CHANGES NEEDED ON DRIVER D1475047.DRV
1519305 - PKM1153 CHANGES FOR ON DATABASE DRIVER D1475047.DRV
1519313 - PKM1153 CHANGES NEEDED ON DRIVER D1407036.DRV
1519325 - PKM1153 CHANGES NEEDED ON DATABASE DRIVER D1407036.DRV
1519330 - PKM1153 DATABASE DRIVER CHANGES NEEDED FO D1407036.DRV
1519353 - PKM1153.3:AMV-D1405835.DRV SHOULD HAVE SECTION FOR 1313614
1519369 - PKM1153.3:IBE-D1405835.DRV SHOULD HAVE SECTION FOR 1313614
1520477 - PKM1153.3: ASF-INVALID OBJECT
1520670 - PKM1153.3: CS - CHANGES TO D1475047.DRV
1520746 - Patch 11i.FA.B
1521170 - CRM11.5.1:ECOM43 CLICKING CHECK INVENTORY BUTTON LEADS TO JSP ERROR
1521391 - PKM1153.3: (JBIS) JTFBISCF.LDT CAUSING LOADER ERRORS
1521714 - PKM1153.3: PQH - 1150 TO 1153 FAILURES
1523057 - PKM1153.3-FP1 DB DRIVER CHANGES
1523289 - VIS1153CRM:OMO/FULFILLMENT: CANNOT UPLOAD MASTER DOCUMENTS
1524274 - 11i AKLOAD PRE-REQ PATCH (CHANGES #9)
1524596 - PKM1153.3: GMI-INVALID OBJECT
1524619 - PKM1153.3: GMI-INVALID OBJECT
1524692 - CRM 11.5.3: MODIFY THE BIXFILE.DRV. IN 1457440
1524698 - BIM Marketing Intelligence
1524793 - PKM1153.3: 7 GRAPHICS FILES FAIL GENERATION VIA ADADMIN. BILPH011..
1525010 - BUG # NEEDED TO PROVIDE ARU FOR BUG 1519016
1525233 - PKM1153.3NLS: FAILING DURING UPGRADE TO 11.5.3 AT FILE ICXSRC.LDT
1525759 - PKM1153.3 NLS: CSKBCTXP.SQL FAILS DURING UPGRADE TO 11.5.3
1526182 - INCLUDE CHANGES TO SUPPORT JTF RUP 3
1527355 - PKM 1153: DATABASE DRIVER HAS INCOMPATIBLE RELEASE.
1528399 - FINAL 11.5.3 APPSWEB.CFG
1529369 - VIS1153:OPM CANNOT OPEN THE INVENTORY QUANTITY FORM
1529433 - VIS1153:OM:NOTHING IN LOV FOR ORDEREDITEMS ON ORDER LINE AFTER UPG..
1529607 - UNABLE TO SAVE A DEBRIEF LINE IN FIELD SERVICE REPORT
1529925 - ARU for bug 1529925 - cleanup scripts for menus & reports for 11.5.3.
1529927 - VIS1153 PURCH: MISSING SET UP SUB MENU FOR E-CATALOG ADMIN
1530264 - VIS1153CRM:<SCRIPTING>:BLANK SCREEN WHEN ATTEMPTING TO EXECUTE SCRIPT
1531453 - INFORMATION TEMPLATE CAN NOT BE SEEN IN CORE APP FROM SPP5.0
1531826 - Static generation of ATTRIBUTE MAPPING (BUILD_CONTEXTS)
1531844 - MISSING MENU OPTIONS AFTER APPLYING PATCHSET B PROJECTS 11I(11.5.1)
1531920 - Fix Quick Find Search in the menu bar for iSupport
1531968 - VIS1153 IPROC CANNOT START WORKFLOW GENERATOR FOR ACCOUNT
1532006 - PKM1153.3: UTF8 CONVERSION ISSUES AMS PL/SQL CODE AMS_SOURCECODE_PVT
1532130 - PKM1153.3: UTF8 CONVERSION FOR CE SEEDDATA FND_FLEX_VALIDATION_TABLES
1535655 - PKM1153.3: PA PRODUCT, WFT FILES ARE LOCATED IN IMPORT DIR, US DIR
1537380 - TCA: TCA FILES REQUIRED FOR CRM IN 11.5.3
1538244 - DELIVERY OF CORRECT PYVENDOR.ZIP FOR 11.5.3
1539130 - VIS1153CRM: HTML GENERATED BY POSTING CAUSES ISTORE HOME PAGE TO ...
1540310 - PKM1153.4: LIBCZ.SO FAILS TO RELINK
1540525 - PKM1153.3:AS - DIFFERING
1540654 - Errors WHEN CREATING CONTRACT FROM QUOTE
1540870 - PKM1153.3:CS - DIFFERING
1540876 - PKM1153.3:CS - DIFFERING
1540896 - PKM1153.3:IEO CHANGES REQUIRED IN D1403768.DRV
1541558 - BUG FIX FOR BELGIAN LOCALIZATION
1541754 - ARHCPREL -CANNOT INSERT NULL INTO HZ_PARTY_RELATIONSHIPS.PARTY_...
1541767 - PKM11.5.3 : FIXES ON DATABASE DRIVER D1475047.DRV
1541941 - UNABLE TO SEND MESSAGE, ORA-24039 QUEUE XNP_OUT_MSG_Q NOT MULTI ...
1542006 - P1 BUG BY PKM RELATED TO PHASE IN PMI 11.5.3 DRIVER
1542077 - FOR PKM'S 11.5.3 ENVIRONMENT, INSERTING FROM KNOWLEDGE BASE TAB...
1542244 - CLICKING ON GO BUTTON IN CREATE RETURN IS NOT WORKING
1542384 - iSupport: Fix Quick Find Search and permission error, View ...
1542665 - NEED DEMO IMAGE FILES IN 11.5.3
1542751 - CRM 11.5.1 : ASO_I_ORDER_LINES_V IS RETURNING DUPLICATE ROWS
1544031 - 11.5.3 MAINTENANCE PACK ONLINE HELP
1544301 - PKM1153.3:CS - DIFFERING
1544362 - PKM1153.3:IEO - DIFFERING
1544371 - PKM1153.3:AMV - DIFFERING
1544400 - PKM1153.3:CN - GRAPHICS FILES(OGD) LISTED IN WRONG TIER IN CNFILE.DRV
1544666 - BUG FIX FOR THE PKM BUG - DIFFERING "BEGIN BUG-END BUG" CONTENTS
1545868 - V1151CRM:REPLACEMENT PATCH REQUIRE BACKGROUND COLOR FOR TABS MENU...
1545922 - JBIS: PATCH FOR THE ADS (DEMO)
1545952 - PKM1153.3:JTF-AR MIGRATION SCRIPT STUB OUT
1546001 - PKM1153.3:IBE INCORRECT DRIVER SYNTAX-D1397357.DRV-LOWERCASE-FNDLOAD
1546216 - PKM1153.4: WMS - FORM WMSSTSOF.FMX FAILS TO GENERATE
1546332 - BUG FOR CREATING PKM ARU WITHOUT DRIVER FILE TO REPLACE OLD ONE
1530013 - NOT SURE whats here
1548428 - PKM115.3 RAISED TO RELEASE PYUSNGB1.SQL, PYUSNGB2.SQL AND 'ZEROED'..
1548850 - JBIS 11.5.3: Added missing files for wireless/bibeans in the driver.
1549028 - PKM1153.4: INV DESCRIPTIVE FLEXFIELD $SRS$.INCFIF COMPILATION FAILS
1549062 - PKM1153.4: AMV - 11.5.3 DB DRIVER FAILURE
1549074 - PKM1153.4: CS - 11.5.3 DB DRIVER FAILURE
1549227 - PKM1153.4: IEX -- IEXINDLS.FMX FAILS TO GENERATE
1549229 - PKM1153.4: HR - 11.5.3 UPGRADE SQL ERRORS
1549456 - UPG1153D3:PEUPGJOB.SQL FAILS WITH ORA-02296: CANNOT ENABLE (HR.)-NULL
1550453 - PKM1153.4: CS - 11.5.3 DB DRIVER FAILURE - BUG TO CREATE CHECKIN
1550461 - PKM1153.4:AMV: JOINED LINES IN D1397357.DRV
1550788 - PKM1153.2:CRM-OKS - INVALID OBJECTS IN 11.5.3
1551231 - PKM1153.4: MSC INCORRECT SYNTAX IN THE DBUPGMSC.TXT
1551235 - DUMMY BUG FOR DBUPGOPI.TXT
1552061 - DBUPGVEH.TXT ARU Check-in
1552229 - TRACKING BUG FOR DBUPG<PROD>.TXT
1554146 - PKM1153.3: CCT - 1150 TO 1153 UPGRADE FAILURES
1554317 - PKM1153.5:JTF-EXIT STATEMENT MISSING IN FILES JTFWATTS.PLS AND JTF..
1554346 - PKM1153.5: XNP - XNPDRCRQ.SQL FAILS DURING 11.5.1 TO 11.5.3 UPGRADE
1563204 - PKM1153.5: OKC - 1150 TO 1153 UPGRADE FAILURES
1563407 - PKM1153.5: HR 11.5.0 UPGRADE FAILS DUE TO DEPENDENCY
1563411 - PKM1153.5: JTF DEPENDENCY FAILURE 11.5.0 UPGRADE
1563413 - PKM1153.5: XDP UPGRADE FROM 11.5.0 DEPENDENCY FAILURES
1563416 - PKM1153.5: AZ UPGRADE FAILURE IN 11.5.0 DATABASE
1567699 - PKM1153.5:CRM Family Pack 1 Driver changes required for 11.5.3
1569590 - MODIFY THE SCRIPT ONT00007.SQL TO DELETE ONLY SEEDED DATA
1570973 - PKM1153.5: AD - AFPLNS01.SQL FAILS DURING 10.7 TO 1153 UPGRADE
1576467 - PKM1153.5: AMV - 1150 TO 1153 FAILURES
1577515 - TCA: ADDITIONAL TCA FILES REQUIRED FOR 11.5.3
1577521 - ARHCPREL -CANNOT INSERT NULL INTO HZ_PARTY_RELATIONSHIPS.PARTY_RE..
1577766 - ARU FIX FOR BUG 1563204 - PKM1153.5: OKC MULTIPLE FAILURE UPGRADI..
1579900 - PKM1153.5:CSXSEDSC.FMB OBSOLETE IN 11I BUT OKXFILE.DRV MENTIONS IT
1581189 - PKM1153.5: MSC - ISSUE WITH DBUPGMSC.TXT
1581504 - FILES FOR CREATING ARU FOR BIS 11.5.3 RELEASE
1581765 - PKM1153.5: APPSWEB.CFG FILE CONT.. PROMPTS TO DOWNLOAD OAJINIT.EXE
1586890 - PKM1153.5: MSC - ISSUE WITH DBUPGMSC.TXT
1587705 - BUG TO UPDATE THE MERGED DRIVER FILE FOR PKM1153
1588195 - PKM1153.5 : JAR FILE INCONSISTENCY
" > ${OUT_DIR}/1153_Base.txt

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

echo "
1627493 - AD MiniPack D Applications Installation Utilities
1553747 - AK MiniPack C Common Modules
1575525 - ALR MiniPack C Alert
1615230 - AMV MiniPack D Marketing Encyclopedia System
1476751 - AP MiniPack C Payables
1403734 - AR MiniPack C Receivables
1647480 - AS MiniPack C Sales
1580949 - ASG MiniPack D CRM Gateway for Mobile Devices
1612644 - ASL MiniPack B Field Sales/Laptop
1615185 - ASO MiniPack D Order Capture
1480962 - AX MiniPack C Global Accounting Engine
1569738 - AZ MiniPack B Implementation Wizard
1566786 - BEN MiniPack C Advanced Benefits
1612182 - BIC MiniPack I Customer Intelligence
1612601 - BIL MiniPack I Sales Intelligence
1610593 - BIM MiniPack I Marketing Intelligence
1573079 - BIS MiniPack C Business Intelligence
1610902 - BIX MiniPack I Call Center Intelligence
1538064 - BOM MiniPack D Bills of Material
1563322 - CCT MiniPack E Telephony Manager
1476747 - CE MiniPack C Cash Management
1581141 - CS MiniPack C Service
1581135 - CSC MiniPack C Customer Care
1580944 - CSD MiniPack C Depot Repair
1634215 - CSF MiniPack D Field Service
1580960 - CSP MiniPack C Spares Management
1634221 - CSR MiniPack D Scheduler
1338820 - CSS MiniPack B Support
1656580 - CUE MiniPack A Billing Connect
1581102 - CUN MiniPack C Network Logistics
1538246 - CZ MiniPack D Configurator
1553933 - EC MiniPack C e-Commerce Gateway
1538273 - ENG MiniPack C Engineering
1584277 - FA MiniPack E Assets
1571062 - FII MiniPack C Financials Intelligence
1538271 - FLM MiniPack C Flow Manufacturing
1553256 - FND MiniPack C Applications Object Library
1566176 - FPT MiniPack B Banking Center
1512530 - FRM MiniPack B Report Manager
1558776 - FV MiniPack B US Federal General Ledger
1483299 - GHR MiniPack B US Federal Human Resources
1561690 - GL Mini-pack C General Ledger
1559588 - GMA MiniPack E OPM Systems
1555262 - GMD MiniPack E OPM Product Development
1552818 - GME MiniPack E OPM Process Execution
1555222 - GMF MiniPack E OPM Financials
1555187 - GMI MiniPack E OPM Inventory
1555150 - GML MiniPack E OPM Logistics
1555186 - GMP MiniPack E OPM Process Planning
1571096 - GMS MiniPack D Grants Accounting
1555158 - GR MiniPack E OPM Regulatory Management
1566836 - HRI MiniPack B HR Intelligence
1483168 - HXT MiniPack B Time Management
1581138 - HZ MiniPack A Trading Community
1491331 - IBA MiniPack C iMarketing
1613014 - IBE MiniPack E iStore
1581146 - IBU MiniPack C iSuppport
1593795 - IBY MiniPack D iPayment
1538792 - icx MiniPack C Internet Procurement
1563319 - IEB MiniPack E Interaction Blending
1563325 - IEM MiniPack E eMail Center
1563315 - IEO MiniPack E Call Center Technology
1563320 - IES MiniPack E Scripting
1563317 - IEU MiniPack E Universal Work Queue
1577476 - IEX MiniPack B Collections
1582449 - IGI MiniPack D Public Sector Financials (International)
1555586 - IGS MiniPack B Student Information System
1449665 - IGW MiniPack B Grants Proposal
1538130 - INV MiniPack D Inventory
1571138 - IPA MiniPack C Capital Resource Logistics
1475098 - JA MiniPack C Financials for Asia/Pacific
1476832 - JE MiniPack C Financials for EMEA
1505787 - JG MiniPack D Financials Common Country
1499761 - JL MiniPack D Financials for the Americas
1558976 - JTF MiniPack C CRM Foundation
1538254 - MRP MiniPack C Master Scheduling/MRP
1538250 - MSC MiniPack C Advanced Supply Chain Planning
1426176 - MSD MiniPack B Demand Planning
1538256 - MSO MiniPack C Constraint Based Optimization
1428045 - MWA MiniPack B Mobile Applications
1586479 - OIE MiniPack A Internet Expenses
1605866 - OIT MiniPack A Internet Time
1663469 - OKX MiniPack D Contracts Integration
1538204 - ONT MiniPack D Order Management
1566806 - OTA MiniPack C Training Administration
1618069 - PA MiniPack D Projects
1566770 - PAY MiniPack C Payroll
1566759 - PER MiniPack C Human Resources
1426193 - PJM MiniPack B Project Manufacturing
1511520 - PMI MiniPack C Process Manufacturing Intelligence
1548838 - PN MiniPack C Property Manager
1538571 - po MiniPack C Purchasing
1350331 - poa MiniPack A Purchasing Intelligence
1455250 - PSA MiniPack B Public Sector Advanced Features
1549308 - PSB MiniPack D Public Sector Budgeting
1569137 - PSP MiniPack C Labor Distribution
1538366 - QA MiniPack C Quality
1538197 - QP MiniPack D Advanced Pricing
1423381 - RG MiniPack B Report Generator
1538692 - RLM MiniPack D Release Management
1344352 - SSP MiniPack A UK Human Resources (Statutory Sick Pay)
1538704 - VEA MiniPack D Automotive Integration Kit
1538276 - WIP MiniPack C Work in Process
1426235 - WMS MiniPack A Warehouse Management System
1426225 - WPS MiniPack B Manufacturing Scheduling
1538358 - WSH MiniPack D Shipping Execution Common
1538292 - WSM MiniPack C Shop Floor Management
1580975 - XDP MiniPack C SDP Provisioning
1571112 - XLA MiniPack C Common Accounting Modules
1590648 - XNC MiniPack B Sales for Communications
1580986 - XNP MiniPack C SDP Number Portability
1592420 - XNS MiniPack D Service for Communications
1565561 - XTR MiniPack C Treasury
1551167 - Family Pack D Discrete Manufacturing Suite
1614311 - Family Pack E Process Manufacturing Suite
1552650 - Family Pack D Supply Chain Planning Suite
1554100 - Family Pack D Procurement Suite
1550583 - Family Pack D Order Management Suite
" > ${OUT_DIR}/1154_Base.txt

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

echo "
1612182 - bic Customer Intelligence, Minipack I
1610593 - bim Marketing Intelligence, Minipack H
1612601 - bil Sales Intelligence, Minipack I
1791967 - bix Call Center Intelligence, Minipack K
1491331 - iba iMarketing, Minipack C
1810206 - iby iPayment, iPayment consolidated patch
1715488 - ibe iStore, Minipack G
1753403 - ibu iSupport, Minipack F
1615230 - amv Marketing Encyclopedia System, Minipack D
1716551 - aso Order Capture, Minipack F
1612644 - asl Field Sales/Laptop, Minipack B
1793487 - asl Field Sales/Laptop, Field Sales/Laptop consolidated patch
1647480 - as Sales, Minipack C
1809318 - as Sales, Sales and Marketing family patch (11.5.4.07A)
1761133 - okx Contracts Integration, Minipack E (Contracts Family Pack)
1581135 - csc Customer Care, Minipack C
1581141 - cs Service, Minipack C
1809709 - cs Service, Service consolidated patch (minipatch #21)
1580944 - csd Depot Repair, Minipack C
1802211 - csd Depot Repair, Depot Repair consolidated patch
1634215 - csf Field Service, Minipack D
1634221 - csr Scheduler, Minipack D
1580960 - csp Spares Management, Minipack C
1771573 - ieb Interaction Blending, Minipack I
1771450 - ieo Call Center Technology, Minipack I
1770998 - cct Telephony Manager, Minipack I
1769679 - ies Scripting, Minipack I
1770207 - ieu Universal Work Queue, Minipack I
1769721 - iem eMail Center, Minipack I
1810202 - xdp SDP Provisioning, SDP Provisioning consolidated patch
1809893 - xnp SDP Number Portability, SDP Number Portability consolidated patch

1809180 - xns Service for Communications, consolidated patch


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

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

echo "
1810489 - fii Financial Intelligence, minipack D
1571138 - ipa CRL Financials Projects, minipack C
1682122 - pn Property Manager, minipack D
1797013 - ax Global Accounting Engine, minipack D
1810485 - xla Common Accounting Modules, minipack D
1505785 - je European Localizations, minipack D
1781750 - jg Regional Localizations, minipack F
1834628 - oie Internet Expenses, minipack D
1900156 - gl General Ledger, minipack E
1801262 - rg Application Report Generator, minipack C
1807809 - family Financials Suite, Family Pack A
1816560 - ap Payables, minipack F
1794240 - fa Assets, minipack F
1763786 - ar Receivables, minipack F
1711366 - xtr Treasury, minipack D
1675976 - oit Internet Time, minipack B
1931773 - frm Report Manager, minipack C
1773953 - jl Latin America Localizations, minipack G
1527618 - ce Cash Management, minipack D
1565772 - ja Asia/Pacific Localizations, minipack D
1921951 - hz Trading Community, minipack F
2019789 - pa Projects, minipack G
1896962 - prm Project Resource Management, minipack B
1844177 - family Process Manufacturing Suite, Family Pack G
1891480 - family Discrete Manufacturing Suite, Family Pack F
1922595 - family Supply Chain Planning Suite, Family Pack F
1891381 - family Procurement Suite, Family Pack F
1942144 - family Order Management Suite, Family Pack F
1566836 - hri Human Resources Intelligence, minipack B
1849555 - ben Advanced Benefits, minipack E
1849550 - pay Payroll, minipack E
1849547 - per Human Resources Personnel, minipack F
1483168 - hxt Time Management, minipack B
1663230 - ota Training, minipack D
1950474 - eaa SEM Exchange, minipack B
1865844 - bis Business Intelligence System, minipack D
1880500 - bsc Balanced Scorecard, minipack C
1931844 - ak Common Modules, minipack D
1931904 - ec e-Commerce Gateway, minipack D
1931404 - alr Alert, minipack D
1960477 - ecx XML Gateway, minipack A
1935117 - az Application Implementation, minipack C
1856104 - igi Public Sector Financials International, minipack G
1804365 - psp Labor Distribution, minipack D
1949658 - igs Student System, minipack E
1905293 - psa Public Sector Applications, minipack E
1932032 - psb Public Sector Budgeting, minipack F
1937576 - gms Grants Accounting, minipack G
1449665 - igw Grants Proposal, minipack B
1483299 - ghr Government HR, minipack B
1837509 - fv Federal Financials, minipack D
" > ${OUT_DIR}/1156_Base.txt

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

echo "
1883175 - jtt CRM Technology Foundation, Minipack A
2065484 - jta CRM Application Foundation, Minipack A
2197077 - jts CRM Self Service Administration, Minipack B
2080734 - asg CRM Gateway for Mobile Devices, Minipack K
2197656 - ahm Hosting Manager, Minipack B
2201671 - imc Customers Online, Minipack A
2209985 - bic Customer Intelligence, Consolidated patch
2015819 - imt iMeeting, Consolidated patch
2168901 - ibe iStore, Consolidated patch
2173029 - iby iPayment, Minipack K
2145439 - ibu iSupport, Consolidated patch
2128846 - css Support, Consolidated patch
2174843 - aso Order Capture, Consolidated patch
2145346 - ams Marketing, Consolidated patch
1832818 - amv Marketing Encyclopedia System, Minipack E
2196876 - bim Marketing Intelligence, Consolidated patch
2189271 - pv Partner Relationship Management, Consolidated patch
2221190 - Sales Suite, Family pack C
2180833 - Contracts Suite, Family pack B
2208036 - Call Center Suite, Family pack A
2036253 - Communications Suite, Family pack A
2139173 - xnc Sales for Communications, Minipack K
2192849 - Service Suite, Family pack B
2207715 - csf Field Service, Consolidated patch
2153415 - rg Application Report Generator, Minipack D
2117740 - fa Assets, Minipack I
1571138 - ipa CRL Financials Projects, Minipack C
1907478 - ce Cash Management, Minipack E
1810485 - xla Common Accounting Modules, Minipack D
1810489 - fii Financial Intelligence, Minipack D
1807809 - Financials Suite, Family pack A
2153419 - gl General Ledger, Minipack F
2092219 - ax Global Accounting Engine, Minipack E
1834628 - oie Internet Expenses, Minipack D
1707487 - oit Internet Time, Minipack C
2065564 - oir iReceivables, Minipack A
1986982 - ap Payables, Minipack G
2149380 - pn Property Manager, Minipack F
1991140 - ar Receivables, Minipack H
1931773 - frm Report Manager, Minipack C
2111967 - hz Trading Community, Minipack G
1952883 - xtr Treasury, Minipack F
1565772 - ja Asia/Pacific Localizations, Minipack D
1794254 - je European Localizations, Minipack E
1919833 - jl Latin America Localizations, Minipack H
1961403 - jg Regional Localizations, Minipack G
2028970 - pa Projects, Minipack H
2069413 - oke Project Contracts, Minipack G
2034194 - pjr Project Resource Management, Minipack C
2133107 - Discrete Manufacturing Suite, Family pack G
2220884 - Process Manufacturing Suite, Family pack H
2143725 - Supply Chain Planning Suite, Family pack G
2141229 - Procurement Suite, Family pack G
2118482 - Order Management Suite, Family pack G
1663218 - hri Human Resources Intelligence, Minipack C
2115771 - Human Resources Suite, Family pack A
1483168 - hxt Time Management, Minipack B
1346739 - hxc Time Capture, Minipack A
2004082 - ota Training, Minipack E
2021911 - abm Activity Based Management, Minipack F
1865844 - bis Business Intelligence System, Minipack D
1863365 - edw Enterprise Data Warehouse, Minipack A
1950474 - eaa SEM Exchange, Minipack B
1880500 - bsc Balanced Scorecard, Minipack C
1931404 - alr Alert, Minipack D
1935117 - az Application Implementation, Minipack C
2154367 - fnd Application Object Library, Minipack E
1931844 - ak Common Modules, Minipack D
1931904 - ec e-Commerce Gateway, Minipack D
1960477 - ecx XML Gateway, Minipack A
1984680 - gms Grants Accounting, Minipack H
1814546 - igw Grants Proposal, Minipack C
2014950 - psp Labor Distribution, Minipack E
1905293 - psa Public Sector Applications, Minipack E
2079200 - psb Public Sector Budgeting, Minipack G
1949153 - igi Public Sector Financials International, Minipack H
1949658 - igs Student System, Minipack E
1947442 - fv Federal Financials, Minipack E
2206559 - as, 11i.AS.F 11-FEB-02 Patchset Superseded By_Dev
2156736 - ben, 11i.BEN.G 21-FEB-02 Patchset Superseded Not_Distributed
2065003 - bom, 11i.BOM.G 30-JAN-02 Patchset Superseded Not_Distributed
2205314 - cn, 11i.CN.E 11-FEB-02 Patchset Superseded By_Dev
2075371 - crp, 11i.CRP.C 30-JAN-02 Patchset Superseded Not_Distributed
2139888 - cs, 11i.CS.H 31-JAN-02 Patchset Superseded By_Dev
2112122 - cz, 11i.CZ.G 29-JAN-02 Patchset Superseded By_Metalink
2156866 - dt, 11i.DT.D 21-FEB-02 Patchset Superseded Not_Distributed
2065670 - eng, 11i.ENG.F 29-JAN-02 Patchset Superseded Not_Distributed
2156864 - ff, 11i.FF.D 21-FEB-02 Patchset Superseded Not_Distributed
2004922 - inv, 11i.INV.G 30-JAN-02 Patchset Superseded By_Metalink
2075266 - mrp, 11i.MRP.F 30-JAN-02 Patchset Superseded Not_Distributed
2156706 - pay, 11i.PAY.G 21-FEB-02 Patchset Superseded Not_Distributed
2155076 - per, 11i.PER.H 22-FEB-02 Patchset Superseded Not_Distributed
2102542 - po, 11i.PO.F 31-JAN-02 Patchset Superseded Not_Distributed
2064811 - qa, 11i.QA.F 30-JAN-02 Patchset Superseded Not_Distributed
2156872 - ssp, 11i.SSP.D 21-FEB-02 Patchset Superseded Not_Distributed
2064997 - wip, 11i.WIP.F 29-JAN-02 Patchset Superseded Not_Distributed
2103370 - chv, 11i.CHV.C 30-JAN-02 Patchset Superseded Not_Distributed
2096654 - icx, 11i.ICX.F 31-JAN-02 Patchset Superseded Not_Distributed
2075306 - flm, 11i.FLM.F 30-JAN-02 Patchset Superseded Not_Distributed
2156846 - ghr, 11i.GHR.D 21-FEB-02 Patchset Superseded Not_Distributed
2106703 - msc, 11i.MSC.F 30-JAN-02 Patchset Superseded Not_Distributed
2012959 - pjm, 11i.PJM.E 29-JAN-02 Patchset Superseded Not_Distributed
2160934 - cct, 11i.CCT.M 31-DEC-01 Patchset Superseded By_Dev
1838218 - amv, 11i.AMV.E 02-NOV-01 Patchset Superseded By_Dev
2209019 - asf, 11i.ASF.E 11-FEB-02 Patchset Superseded By_Dev
1970707 - aso, 11i.ASO.I 02-NOV-01 Patchset Superseded By_Metalink
2210188 - ast, 11i.AST.E 11-FEB-02 Patchset Superseded By_Dev
2022211 - bic, 11i.BIC.O 06-OCT-01 Patchset Superseded By_Dev
2206086 - bil, 11i.BIL.L 11-FEB-02 Patchset Superseded By_Dev
1610593 - bim, 11i.BIM.H 27-FEB-01 Patchset Superseded By_Metalink
2163294 - bix, 11i.BIX.O 28-DEC-01 Patchset Superseded By_Dev
2141380 - csc, 11i.CSC.H 01-FEB-02 Patchset Superseded By_Dev
2139165 - csd, 11i.CSD.I 31-JAN-02 Patchset Superseded By_Dev
2139908 - csf, 11i.CSF.L 01-FEB-02 Patchset Superseded By_Dev
2139921 - csp, 11i.CSP.I 31-JAN-02 Patchset Superseded By_Dev
1917552 - css, 11i.CSS.E 02-NOV-01 Patchset Superseded By_Dev
2136960 - cun, 11i.CUN.J 01-FEB-02 Patchset Released By_Dev
1979212 - gma, 11i.GMA.H 11-JAN-02 Patchset Superseded Not_Distributed
1979534 - gmd, 11i.GMD.H 12-JAN-02 Patchset Superseded Not_Distributed
1979540 - gme, 11i.GME.H 12-JAN-02 Patchset Superseded Not_Distributed
1979547 - gmf, 11i.GMF.H 11-JAN-02 Patchset Superseded Not_Distributed
1979552 - gmi, 11i.GMI.H 12-JAN-02 Patchset Superseded Not_Distributed
1979561 - gml, 11i.GML.H 11-JAN-02 Patchset Superseded Not_Distributed
1979568 - gmp, 11i.GMP.H 11-JAN-02 Patchset Superseded Not_Distributed
1979575 - gr, 11i.GR.H 11-JAN-02 Patchset Superseded Not_Distributed
1306459 - iba, 11i.IBA.A 21-JUN-00 Patchset Superseded Not_Distributed
2009497 - ibu, 11i.IBU.H 02-NOV-01 Patchset Superseded By_Dev
2135496 - iem, 11i.IEM.M 28-DEC-01 Patchset Superseded By_Dev
2145418 - ieo, 11i.IEO.M 31-DEC-01 Patchset Superseded By_Dev
2162202 - ies, 11i.IES.M 27-DEC-01 Patchset Superseded By_Dev
2161777 - ieu, 11i.IEU.M 29-DEC-01 Patchset Superseded By_Dev
1746626 - jtf, 11i.JTF.D 04-JUN-01 Patchset Released By_Metalink
2112188 - mso, 11i.MSO.F 30-JAN-02 Patchset Superseded Not_Distributed
2176825 - okc, 11i.OKC.F 22-JAN-02 Patchset Superseded By_Dev
2176874 - oks, 11i.OKS.G 22-JAN-02 Patchset Superseded By_Dev
2176883 - okx, 11i.OKX.G 22-JAN-02 Patchset Superseded By_Dev
2112226 - ont, 11i.ONT.G 31-JAN-02 Patchset Superseded Not_Distributed
1986248 - pmi, 11i.PMI.D 11-SEP-01 Patchset Superseded By_Dev
1711292 - poa, 11i.POA.B 02-MAY-01 Patchset Released Not_Distributed
2112249 - qp, 11i.QP.G 31-JAN-02 Patchset Superseded Not_Distributed
2112239 - rlm, 11i.RLM.G 31-JAN-02 Patchset Superseded Not_Distributed
2112243 - vea, 11i.VEA.G 31-JAN-02 Patchset Superseded Not_Distributed
2064994 - wms, 11i.WMS.D 30-JAN-02 Patchset Superseded Not_Distributed
2065005 - wps, 11i.WPS.E 30-JAN-02 Patchset Superseded Not_Distributed
2113104 - wsh, 11i.WSH.G 31-JAN-02 Patchset Superseded Not_Distributed
2139204 - xdp, 11i.XDP.O 31-JAN-02 Patchset Superseded By_Dev
2139213 - xnp, 11i.XNP.O 31-JAN-02 Patchset Superseded By_Dev
2022232 - xns, 11i.XNS.K 06-OCT-01 Patchset Superseded By_Dev
2064974 - wsm, 11i.WSM.F 29-JAN-02 Patchset Superseded Not_Distributed
2139913 - csr, 11i.CSR.J 31-JAN-02 Patchset Released By_Dev
2161778 - ieb, 11i.IEB.M 28-DEC-01 Patchset Superseded By_Dev
2075438 - msd, 11i.MSD.F 30-JAN-02 Patchset Superseded Not_Distributed
2069426 - mwa, 11i.MWA.E 29-JAN-02 Patchset Superseded Not_Distributed
2156867 - pqh, 11i.PQH.D 21-FEB-02 Patchset Superseded Not_Distributed
2156869 - pqp, 11i.PQP.D 21-FEB-02 Patchset Superseded Not_Distributed
2089495 - pv, 11i.PV.D 04-NOV-01 Patchset Superseded By_Dev
2128902 - eam, 11i.EAM.G 01-FEB-02 Patchset Superseded By_Dev
2176833 - okr, 11i.OKR.D 22-JAN-02 Patchset Superseded By_Dev
2075445 - msr, 11i.MSR.D 30-JAN-02 Patchset Superseded Not_Distributed
2103103 - pos, 11i.POS.B 31-JAN-02 Patchset Superseded Not_Distributed
2139162 - biv, 11i.BIV.I 01-FEB-02 Patchset Superseded By_Dev
2136956 - csi, 11i.CSI.G 01-FEB-02 Patchset Superseded By_Dev
1969332 - csl, 11i.CSL.A 05-OCT-01 Patchset Superseded By_Dev
2139170 - cug, 11i.CUG.G 01-FEB-02 Patchset Superseded By_Dev
2176891 - oki, 11i.OKI.B 22-JAN-02 Patchset Superseded By_Dev
2151089 - iec, 11i.IEC.B 29-DEC-01 Patchset Superseded By_Dev
2136959 - cse, 11i.CSE.G 01-FEB-02 Patchset Superseded By_Dev
2176888 - oko, 11i.OKO.B 22-JAN-02 Patchset Superseded By_Dev
2173447 - ahl, 11i.AHL.K 01-FEB-02 Patchset Superseded By_Dev
2139216 - xni, 11i.XNI.B 31-JAN-02 Patchset Superseded By_Dev
" > ${OUT_DIR}/1157_Base.txt

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

echo "
2276388 - jtt CRM Technology Foundation ,Minipack C
2368042 - jta CRM Applications Foundation ,Minipack D
2386712 - jts CRM Self Service Administration ,Minipack E
2501175 - asg CRM Gateway for Mobile Services ,Minipack P
2384215 - ahm Hosting Manager ,Minipack D
2396751 - imc Customers Online ,Minipack B
2022211 - bic Customer Intelligence ,Minipack O
2395116 - bil Sales Intelligence ,Minipack M
2387256 - bix Interaction Center Intelligence ,Minipack Q
2400949 - ibe iStore ,Minipack M
2527157 - iby iPayment ,Minipack M
2505350 - ibu iSupport ,Minipack L
2139225 - css Support ,Minipack F
2374852 - aso Order Capture ,Minipack K
2459266 - Marketing Suite ,Family Pack A
2375183 - ams Marketing ,Minipack G
2383307 - pv Partner Relationship Management ,Minipack F
2395526 - amf Fulfillment Services ,Minipack A
2417049 - ibc iContent ,Minipack A
2440207 - amv Marketing Encyclopedia System ,Minipack G
2454061 - bim Marketing Intelligence ,Minipack M
2435494 - Sales Suite ,Family Pack F
2404253 - as Sales ,Minipack G
2404440 - asf Sales Online ,Minipack F
2384176 - cn Sales Compensation ,Minipack F
2405522 - ast TeleSales ,Minipack F
2402713 - iex Collections ,Minipack D
2380531 - qot Quoting ,Minipack B
2509464 - asl Sales Offline ,Minipack G
2440054 - Contracts Suite ,Family Pack H
2420911 - okl Lease Management ,Minipack D
2477294 - Service Suite ,Family Pack H
2507613 - csi Install Base ,Minipack N
2507689 - csl Field Service/Laptop ,Minipack I
2508309 - csm Field Service/Handheld ,Minipack B
2374818 - Interaction Center Suite ,Family Pack C
2384304 - ieo Interaction Center Technology ,Minipack O
2242802 - cct Telephony Manager ,Minipack O
2288033 - iec Advanced Outbound ,Minipack D
2383615 - ieb Interaction Blending ,Minipack O
2348942 - ies Scripting ,Minipack N
2383611 - ieu Universal Work Queue ,Minipack O
2387043 - iem eMail Center ,Minipack O
2190434 - fii Financial Intelligence ,Minipack E
2380068 - Financials Suite ,Family Pack C
2322330 - rg Application Report Generator ,Minipack E
2398923 - fa Assets ,Minipack K
1617586 - ipa CRL Financials Projects ,Minipack D
2243908 - ce Cash Management ,Minipack G
2182672 - xla Common Accounting Modules ,Minipack E
2336010 - gl General Ledger ,Minipack G
1960506 - oie Internet Expenses ,Minipack E
2375849 - ap Payables ,Minipack J
2239222 - hz Trading Community ,Minipack I
2223523 - xtr Treasury ,Minipack G
2352122 - qrm Risk Management ,Minipack A
2265646 - psa Public Sector Applications ,Minipack F
2079200 - psb Public Sector Budgeting ,Minipack G
2128662 - igi Public Sector Financials International ,Minipack I
2219341 - fv Federal Financials ,Minipack F
1749145 - ja Asia/Pacific Localizations ,Minipack E
2009602 - je European Localizations ,Minipack F
2123121 - jl Latin America Localizations ,Minipack I
1961403 - jg Regional Localizations ,Minipack G
2381317 - Projects Suite ,Family Pack J
1707487 - oit Internet Time ,Minipack C
2212661 - oke Project Contracts ,Minipack H
2034194 - pjr Project Resource Management ,Minipack C
2248408 - Discrete Manufacturing Suite ,Family Pack H
2216258 - Process Manufacturing Suite ,Family Pack I
2250401 - eam Enterprise Asset Management ,Minipack H
2364726 - pmi OPM Intelligence ,Minipack E
2250399 - Supply Chain Planning Suite ,Family Pack H
2320032 - Procurement Suite ,Family Pack H
2360814 - pon Sourcing ,Minipack H
2250333 - Order Management Suite ,Family Pack H
2502761 - Human Resources Suite ,Family Pack C.1
2373387 - hri Human Resources Intelligence ,Minipack D
2398780 - hxt Time Management ,Minipack D
2296468 - ota Training Administration ,Minipack F
2385730 - irc iRecruitment ,Minipack A
1950474 - eaa SEM Exchange ,Minipack B
2182833 - ews Enterprise Warehouse Source ,Minipack B
2182987 - edw Enterprise Data Warehouse ,Minipack B
2188903 - bis Business Intelligence System ,Minipack E
2176458 - bsc Balanced Scorecard ,Minipack D
2282494 - abm Activity Based Management ,Minipack G.1
2404398 - alr Alert ,Minipack E
2414932 - az Application Implementation ,Minipack D
2404698 - fnd Application Object Library ,Minipack F
2404795 - ak Common Modules ,Minipack E
2408170 - ec e-Commerce Gateway ,Minipack E
2440710 - ecx XML Gateway ,Minipack C
2319620 - igs Student System ,Minipack H
2295469 - psp Labor Distribution ,Minipack F
2166451 - gms Grants Accounting ,Minipack I
2295451 - igw Grants Proposal ,Minipack D
2443697 - bne Web Applications Desktop Integrator ,Minipack A
2450020 - frm Report Manager ,Minipack D
2397665 - ax, 11i.AX.F 16-AUG-02 Patchset Released By_Dev
2410052 - per, 11i.PER.J 02-AUG-02 Patchset Superseded Not_Distributed
2410054 - pay, 11i.PAY.I 02-AUG-02 Patchset Superseded Not_Distributed
2268446 - ff, 11i.FF.E 09-MAY-02 Patchset Superseded Not_Distributed
2156866 - dt, 11i.DT.D 21-FEB-02 Patchset Superseded Not_Distributed
2410065 - ssp, 11i.SSP.F 02-AUG-02 Patchset Superseded Not_Distributed
2410055 - ben, 11i.BEN.I 02-AUG-02 Patchset Superseded Not_Distributed
2248481 - qa, 11i.QA.G 27-JUN-02 Patchset Released By_Dev
2319967 - icx, 11i.ICX.G 15-AUG-02 Patchset Released Not_Distributed
2398753 - pn, 11i.PN.H 16-AUG-02 Patchset Released By_Dev
2410056 - ghr, 11i.GHR.F 02-AUG-02 Patchset Superseded Not_Distributed
2410057 - pqh, 11i.PQH.F 02-AUG-02 Patchset Superseded Not_Distributed
2410074 - pqp, 11i.PQP.F 02-AUG-02 Patchset Superseded Not_Distributed
1346739 - hxc, 11i.HXC.A 07-OCT-00 Patchset Superseded By_Metalink
2250322 - rlm, 11i.RLM.H 27-JUN-02 Patchset Released By_Dev
2250329 - vea, 11i.VEA.H 27-JUN-02 Patchset Released By_Dev
2396506 - ar, 11i.AR.K 16-AUG-02 Patchset Released By_Dev
1733032 - oe, 11i.OE.C 03-MAY-01 Patchset Released Not_Distributed
2381316 - pa, 11i.PA.J 30-AUG-02 Patchset Released Not_Distributed
2248490 - inv, 11i.INV.H 16-AUG-02 Patchset Released By_Metalink
2235892 - po, 11i.PO.G 15-AUG-02 Patchset Released Not_Distributed
2236039 - chv, 11i.CHV.D 15-AUG-02 Patchset Released Not_Distributed
2248494 - bom, 11i.BOM.H 27-JUN-02 Patchset Released Not_Distributed
2248518 - eng, 11i.ENG.G 27-JUN-02 Patchset Released By_Dev
2248430 - mrp, 11i.MRP.G 27-JUN-02 Patchset Released Not_Distributed
2248435 - crp, 11i.CRP.D 27-JUN-02 Patchset Released By_Dev
2212393 - wip, 11i.WIP.G 27-JUN-02 Patchset Released By_Dev
2250291 - cz, 11i.CZ.H 09-AUG-02 Patchset Released By_Metalink
2212672 - pjm, 11i.PJM.F 27-JUN-02 Patchset Released By_Dev
2248440 - flm, 11i.FLM.G 27-JUN-02 Patchset Released By_Dev
2250385 - msc, 11i.MSC.G 27-JUN-02 Patchset Released By_Dev
2139888 - cs, 11i.CS.H 31-JAN-02 Patchset Superseded By_Dev
2192881 - gma, 11i.GMA.I 02-JUL-02 Patchset Superseded Not_Distributed
2192885 - gmd, 11i.GMD.I 03-JUL-02 Patchset Superseded Not_Distributed
2192904 - gme, 11i.GME.I 03-JUL-02 Patchset Superseded Not_Distributed
2192909 - gmf, 11i.GMF.I 02-JUL-02 Patchset Superseded Not_Distributed
2192912 - gmi, 11i.GMI.I 03-JUL-02 Patchset Superseded Not_Distributed
2192913 - gml, 11i.GML.I 03-JUL-02 Patchset Superseded Not_Distributed
2192921 - gmp, 11i.GMP.I 03-JUL-02 Patchset Superseded Not_Distributed
2192926 - gr, 11i.GR.I 03-JUL-02 Patchset Superseded Not_Distributed
2136960 - cun, 11i.CUN.J 01-FEB-02 Patchset Released By_Dev
1746626 - jtf, 11i.JTF.D 04-JUN-01 Patchset Released By_Metalink
2440018 - okc, 11i.OKC.L 13-SEP-02 Patchset Released By_Dev
2440051 - oks, 11i.OKS.M 13-SEP-02 Patchset Released By_Dev
2141380 - csc, 11i.CSC.H 01-FEB-02 Patchset Superseded By_Dev
2485133 - csd, 11i.CSD.P 31-JUL-02 Patchset Superseded By_Dev
2139908 - csf, 11i.CSF.L 01-FEB-02 Patchset Superseded By_Dev
2318279 - xnp, 11i.XNP.R 01-MAY-02 Patchset Superseded By_Dev
2318266 - xdp, 11i.XDP.R 01-MAY-02 Patchset Superseded By_Dev
2490454 - xnc, 11i.XNC.M 16-OCT-02 Patchset Released By_Dev
2485213 - xns, 11i.XNS.S 31-JUL-02 Patchset Superseded By_Dev
2456473 - fpt, 11i.FPT.D 11-OCT-02 Patchset Released By_Dev
1306459 - iba, 11i.IBA.A 21-JUN-00 Patchset Superseded Not_Distributed
2173029 - iby, 11i.IBY.K 01-FEB-02 Patchset Superseded By_Metalink
1711292 - poa, 11i.POA.B 02-MAY-01 Patchset Released Not_Distributed
2250387 - mso, 11i.MSO.G 27-JUN-02 Patchset Released By_Dev
2250301 - ont, 11i.ONT.H 27-JUN-02 Patchset Released By_Dev
2250316 - qp, 11i.QP.H 27-JUN-02 Patchset Released By_Dev
2250313 - wsh, 11i.WSH.H 27-JUN-02 Patchset Released By_Dev
2250395 - msd, 11i.MSD.G 27-JUN-02 Patchset Released By_Dev
2212391 - wms, 11i.WMS.E 27-JUN-02 Patchset Released By_Dev
2212395 - wps, 11i.WPS.F 27-JUN-02 Patchset Released By_Dev
2440048 - okx, 11i.OKX.L 13-SEP-02 Patchset Released By_Dev
2139921 - csp, 11i.CSP.I 31-JAN-02 Patchset Superseded By_Dev
2139913 - csr, 11i.CSR.J 31-JAN-02 Patchset Superseded By_Dev
2248506 - wsm, 11i.WSM.G 27-JUN-02 Patchset Released By_Dev
2212671 - mwa, 11i.MWA.F 27-JUN-02 Patchset Released By_Dev
2254397 - fte, 11i.FTE.D 27-JUN-02 Patchset Released By_Dev
2250391 - msr, 11i.MSR.E 27-JUN-02 Patchset Released By_Dev
2440003 - okr, 11i.OKR.J 13-SEP-02 Patchset Released By_Dev
2508005 - xni, 11i.XNI.I 30-AUG-02 Patchset Released By_Dev
2236030 - pos, 11i.POS.C 15-AUG-02 Patchset Released By_Dev
2484904 - biv, 11i.BIV.P 31-JUL-02 Patchset Superseded By_Dev
2486390 - cug, 11i.CUG.N 31-JUL-02 Patchset Superseded By_Dev
2440079 - oki, 11i.OKI.H 13-SEP-02 Patchset Released By_Dev
2394621 - iec, 11i.IEC.F 29-MAY-02 Patchset Superseded By_Dev
2507649 - cse, 11i.CSE.N 30-AUG-02 Patchset Released By_Dev
2440082 - oko, 11i.OKO.G 13-SEP-02 Patchset Released By_Dev
2514185 - jtm, 11i.JTM.D 15-OCT-02 Patchset Released By_Metalink
2322414 - ahl, 11i.AHL.N 01-MAY-02 Patchset Superseded By_Dev
2344175 - ad, 11i.AD.G 05-NOV-02 Patchset Released By_Metalink
" > ${OUT_DIR}/1158_Base.txt

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

echo "
2655277 - fnd Application Object Library, Minipack G
2657511 - ak Common Modules, Minipack F
2668469 - txk Techstack, Minipack A
2728236 - owf Workflow, Minipack G
2662787 - ec e-Commerce Gateway, Minipack F
2464368 - alr Alert, Minipack F
2707397 - az Application Implementation, Minipack E
2737099 - oam Applications Manager, Minipack G
2661232 - asg CRM Gateway for Mobile Devices, Minipack Q
2420923 - jtt CRM Technology Foundation, Minipack D
2670197 - jtm Mobile Application Foundation, Minipack E
2640247 - jta CRM Applications Foundation, Minipack E
2677750 - bne Web Applications Desktop Integrator, Minipack B
2682790 - frm Report Manager, Minipack F
2767066 - imc Customers Online, Minipack J
2706853 - bic Customer Intelligence, Minipack Q
2645935 - Sales Suite, Family pack G
2642404 - cn Sales Compensation, Minipack G
2549599 - qot Quoting, Minipack C
2636442 - ibe iStore, Minipack O
2412097 - aso Order Capture, Minipack L
2606463 - prp Proposals, Minipack A
2630927 - Marketing Suite, Family pack B
2728964 - aml Leads Management, Minipack A
2661036 - Contracts Suite, Family pack I
2713120 - Service Suite, Family pack I
2661236 - csl Field Service/Laptop, Minipack J
2661240 - csm Field Service / Handheld, Minipack C
2696911 - csi Install Base, Minipack O
2644375 - Interaction Center Suite, Family pack Q
2629235 - Financials Suite, Family pack D
2488736 - fii Financial Intelligence, Minipack F
1707487 - oit Internet Time, Minipack C
2681531 - iex Collections, Minipack E
2683795 - iby iPayment, Minipack N
2698797 - okl Lease Management, Minipack E
2697753 - Discrete Manufacturing Suite, Family pack I
2433137 - Process Manufacturing Suite, Family pack J
2591002 - pmi OPM Intelligence, Minipack F
2471486 - cln Supply Chain Trading Connector, Minipack A
2591001 - edr E Records, Minipack A
2478472 - eam Enterprise Asset Management, Minipack I
2696797 - Advanced Planning Suite, Family pack I
2700001 - Procurement Suite, Family pack I
2698175 - Order Management Suite, Family pack I
2803988 - Human Resources Suite, Family pack E
2483421 - hri Human Resources Intelligence, Minipack E
2716711 - hxt Time Management, Minipack E
2489786 - ota Training, Minipack G
2385730 - irc iRecruitment, Minipack A
2484626 - Projects Suite, Family pack K
2475721 - oke Project Contracts, Minipack I
2692848 - bis Business Intelligence System, Minipack G
2700670 - edw Enterprise Data Warehouse, Minipack C
2700672 - ews Enterprise Warehouse Source, Minipack C
2692588 - bsc Balanced Scorecard, Minipack E
2720739 - Product Lifecycle Management Suite, Family pack A
2492770 - psp Labor Distribution, Minipack G
2799224 - igs Student System, Minipack J
2691082 - gms Grants Accounting, Minipack K
2492817 - igw Grants Proposal, Minipack E
2282494 - abm Patchset Released on 15-MAR-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.ABM.G.1
2673262 - ad Patchset Released on 30-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.AD.H
2700563 - ahl Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.AHL.P
2384215 - ahm Patchset Released on 23-OCT-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.AHM.D
2640735 - amf Patchset Released on 11-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.AMF.B
2460403 - ams Patchset Released on 11-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.AMS.H
2630030 - amv Patchset Released on 11-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.AMV.H
2488725 - ap Patchset Released on 02-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.AP.K
2488726 - ar Patchset Released on 02-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.AR.L
2640001 - as Patchset Released on 11-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.AS.H
2640034 - asf Patchset Released on 11-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.ASF.G
2642511 - asl Patchset Released on 11-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.ASL.H
2642510 - ast Patchset Released on 11-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.AST.G
2646044 - ax Patchset Released on 02-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.AX.G
2803591 - ben Patchset Released on 19-MAY-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.BEN.K
2642409 - bil Patchset Released on 11-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.BIL.N
2630063 - bim Patchset Released on 11-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.BIM.N
2707184 - biv Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.BIV.R
2685978 - bix Patchset Released on 27-NOV-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.BIX.S
2691149 - bom Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.BOM.I
2485142 - cct Patchset Released on 02-DEC-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.CCT.Q
2488730 - ce Patchset Released on 02-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.CE.H
2478612 - chv Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.CHV.E
2691177 - crp Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.CRP.E
2707706 - cs Patchset Released on 11-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.CS.P
2707217 - csc Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.CSC.P
2712429 - csd Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.CSD.R
2696915 - cse Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.CSE.O
2702303 - csf Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.CSF.R
2707263 - csp Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.CSP.Q
2702306 - csr Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.CSR.L
2708002 - css Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.CSS.I
2700678 - cug Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.CUG.P
2690432 - cz Patchset Released on 20-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.CZ.I
2714479 - ddd Patchset Released on 28-MAY-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.DDD.A
2803505 - dt Patchset Released on 19-MAY-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.DT.F
1950474 - eaa Patchset Released on 04-SEP-01 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.EAA.B
2440710 - ecx Patchset Released on 04-SEP-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.ECX.C
2714179 - ego Patchset Released on 11-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.EGO.A
2371323 - eng Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.ENG.H
2714518 - eni Patchset Released on 11-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.ENI.F
2488733 - fa Patchset Superseded on 01-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.FA.L
2803574 - ff Patchset Released on 19-MAY-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.FF.G
2479225 - flm Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.FLM.H
2456473 - fpt Patchset Released on 11-OCT-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.FPT.D
2690445 - fte Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.FTE.E
2408789 - fv Patchset Superseded on 02-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.FV.G
2803596 - ghr Patchset Released on 19-MAY-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.GHR.H
2488743 - gl Patchset Released on 02-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.GL.H
2294171 - gma Patchset Superseded on 26-DEC-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.GMA.J
2294175 - gmd Patchset Superseded on 26-DEC-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.GMD.J
2294178 - gme Patchset Superseded on 26-DEC-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.GME.J
2294183 - gmf Patchset Superseded on 26-DEC-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.GMF.J
2294188 - gmi Patchset Superseded on 26-DEC-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.GMI.J
2294192 - gml Patchset Superseded on 26-DEC-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.GML.J
2294225 - gmp Patchset Superseded on 26-DEC-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.GMP.J
2294228 - gr Patchset Superseded on 26-DEC-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.GR.J
2717041 - hxc Patchset Released on 27-MAR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.HXC.C
1306459 - iba Patchset Superseded on 21-JUN-00 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.IBA.A
2629974 - ibc Patchset Released on 24-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.IBC.B
2709518 - ibu Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.IBU.O
2478494 - icx Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.ICX.H
2682730 - ieb Patchset Released on 29-NOV-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.IEB.Q
2687987 - iec Patchset Released on 29-NOV-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.IEC.H
2688479 - iem Patchset Released on 28-NOV-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.IEM.Q
2690842 - ieo Patchset Released on 02-DEC-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.IEO.Q
2785906 - ies Patchset Released on 04-FEB-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.IES.Q
2682729 - ieu Patchset Released on 29-NOV-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.IEU.Q
2459356 - igi Patchset Superseded on 02-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.IGI.K
2371213 - inv Patchset Released on 20-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.INV.I
2484640 - ipa Patchset Released on 17-FEB-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.IPA.E
2202589 - ja Patchset Released on 02-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.JA.F
2271080 - je Patchset Released on 02-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.JE.G
2132882 - jg Patchset Released on 02-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.JG.H
2310959 - jl Patchset Released on 02-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.JL.J
2386712 - jts Patchset Released on 22-OCT-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.JTS.E
2479230 - mrp Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.MRP.H
2478170 - msc Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.MSC.H
2478195 - msd Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.MSD.H
2478230 - mso Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.MSO.H
2478234 - msr Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.MSR.F
2691017 - mwa Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.MWA.G
1733032 - oe Patchset Released on 03-MAY-01 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.OE.C
2696923 - okc Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.OKC.M
2696943 - oki Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.OKI.I
2696951 - oko Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.OKO.H
2696947 - okr Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.OKR.K
2696936 - oks Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.OKS.N
2696938 - okx Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.OKX.M
2475849 - ont Patchset Released on 11-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.ONT.I
2484622 - pa Patchset Released on 23-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.PA.K
2803583 - pay Patchset Released on 19-MAY-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.PAY.K
2803589 - per Patchset Released on 19-MAY-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.PER.L
2478564 - pjm Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.PJM.G
2488748 - pn Patchset Released on 02-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.PN.I
2478541 - po Patchset Released on 11-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.PO.H
2478594 - poa Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.POA.E
2476027 - pon Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.PON.I
2478572 - pos Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.POS.D
2803594 - pqh Patchset Released on 19-MAY-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.PQH.H
2803595 - pqp Patchset Released on 19-MAY-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.PQP.H
2492811 - psa Patchset Released on 02-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.PSA.G
2412968 - psb Patchset Released on 02-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.PSB.H
2630022 - pv Patchset Released on 11-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.PV.G
2479232 - qa Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.QA.H
2478163 - qp Patchset Released on 11-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.QP.I
2502497 - qrm Patchset Released on 02-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.QRM.B
2490905 - rg Patchset Released on 02-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.RG.F
2478373 - rlm Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.RLM.I
2803590 - ssp Patchset Released on 19-MAY-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.SSP.H
2478411 - vea Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.VEA.I
2478579 - wip Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.WIP.H
2478530 - wms Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.WMS.F
2482422 - wps Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.WPS.G
2478452 - wsh Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.WSH.I
2691993 - wsm Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.WSM.H
2739476 - xdp Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.XDP.W
2490908 - xla Patchset Released on 02-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.XLA.F
2701907 - xnc Patchset Released on 15-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.XNC.N
2696920 - xni Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.XNI.J
2732312 - xnp Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.XNP.W
2707272 - xns Patchset Released on 10-JUN-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.XNS.U
2554877 - xtr Patchset Released on 02-APR-03 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.XTR.I
2431154 - xni Patchset Superseded on 04-JUL-02 as noted in
FND_PRODUCT_INSTALLATIONS.PATCH_LEVEL, 11i.XNI.G
" > ${OUT_DIR}/1159_Base.txt

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

echo "
3452690 - abm Patchset Released on 27-FEB-04 from Note:259484.1, 11i.ABM.G.4
4038964 - ad Patchset Released on 02-DEC-04, 11i.AD.I.1
3132184 - ahl Patchset Released on 17-SEP-04, 11i.AHL.Q
2384215 - ahm Patchset Released on 23-OCT-02, 11i.AHM.D
3263645 - ak Patchset Released on 04-NOV-04 from Note:259484.1, 11i.AK.G
3261254 - alr Patchset Released on 04-NOV-04 from Note:259484.1, 11i.ALR.G
3134002 - amf Patchset Released on 07-OCT-04, 11i.AMF.C
3025816 - ams Patchset Released on 08-OCT-04, 11i.AMS.I
3134012 - amv Patchset Released on 07-OCT-04, 11i.AMV.I
3485924 - amw Patchset Released on 05-NOV-04 from Note:259484.1, 11i.AMW.C
3151444 - ap Patchset Released on 18-OCT-04, 11i.AP.M
3151465 - ar Patchset Released on 18-OCT-04, 11i.AR.N
3046981 - as Patchset Released on 08-OCT-04, 11i.AS.I
3046985 - asf Patchset Released on 08-OCT-04, 11i.ASF.H
3263401 - asg Patchset Released on 04-NOV-04 from Note:259484.1, 11i.ASG.R
3780558 - asl Patchset Released on 08-OCT-04, 11i.ASL.I
3293018 - asn Patchset Released on 13-OCT-04 from Note:259484.1, 11i.ASN.A
2937137 - aso Patchset Released on 21-JUN-04, 11i.ASO.M
2212166 - asp Patchset Released on 08-OCT-04, 11i.ASP.B
3046996 - ast Patchset Released on 08-OCT-04, 11i.AST.H
3151359 - ax Patchset Released on 18-OCT-04, 11i.AX.I
3251003 - az Patchset Released on 05-NOV-04 from Note:259484.1, 11i.AZ.F
3418234 - ben Patchset Released on 27-JUL-04, 11i.BEN.M
3367777 - bic Patchset Released on 05-NOV-04 from Note:259484.1, 11i.BIC.S
3061845 - bil Patchset Released on 08-OCT-04, 11i.BIL.O
3025758 - bim Patchset Released on 07-OCT-04, 11i.BIM.O
3673034 - bis Patchset Released on 15-OCT-04 from Note:259484.1, 11i.BIS.J
3014204 - biv Patchset Released on 17-SEP-04, 11i.BIV.S
3112625 - bix Patchset Released on 29-OCT-03, 11i.BIX.T
2819091 - bne Patchset Released on 15-SEP-03 from Note:259484.1, 11i.BNE.C
2768762 - bom Patchset Released on 17-SEP-04, 11i.BOM.J
3673035 - bsc Patchset Released on 15-OCT-04 from Note:259484.1, 11i.BSC.H
2687381 - cct Patchset Released on 29-OCT-03, 11i.CCT.R
3151412 - ce Patchset Released on 18-OCT-04, 11i.CE.J
3212221 - chv Patchset Released on 17-SEP-04, 11i.CHV.F
3231176 - cln Patchset Released on 11-OCT-04 from Note:259484.1, 11i.CLN.C
3061842 - cn Patchset Released on 18-MAR-04, 11i.CN.H
2770107 - crp Patchset Released on 17-SEP-04, 11i.CRP.F
3022934 - cs Patchset Released on 17-SEP-04, 11i.CS.Q
3014206 - csc Patchset Released on 17-SEP-04, 11i.CSC.Q
3215147 - csd Patchset Released on 17-SEP-04, 11i.CSD.S
3195218 - cse Patchset Released on 17-SEP-04, 11i.CSE.P
3132186 - csf Patchset Released on 17-SEP-04, 11i.CSF.S
3195214 - csi Patchset Released on 17-SEP-04, 11i.CSI.P
3263427 - csl Patchset Released on 04-NOV-04 from Note:259484.1, 11i.CSL.K
3263430 - csm Patchset Released on 05-NOV-04 from Note:259484.1, 11i.CSM.D
3014210 - csp Patchset Released on 17-SEP-04, 11i.CSP.R
3132185 - csr Patchset Released on 17-SEP-04, 11i.CSR.M
3214922 - css Patchset Released on 17-SEP-04, 11i.CSS.J
3014213 - cug Patchset Released on 17-SEP-04, 11i.CUG.Q
2136960 - cun Patchset Released on 01-FEB-02, 11i.CUN.J
2770105 - cz Patchset Released on 17-SEP-04, 11i.CZ.J
3298209 - ddd Patchset Released on 08-OCT-04, 11i.DDD.C
3418248 - dt Patchset Released on 27-JUL-04, 11i.DT.H
1950474 - eaa Patchset Released on 04-SEP-01, 11i.EAA.B
3200674 - eam Patchset Released on 17-SEP-04, 11i.EAM.J
3261243 - ec Patchset Released on 04-NOV-04 from Note:259484.1, 11i.EC.G
2440710 - ecx Patchset Released on 04-SEP-02, 11i.ECX.C
2922221 - edr Patchset Released on 17-SEP-04, 11i.EDR.C
3298205 - ego Patchset Released on 08-OCT-04, 11i.EGO.C
2769980 - eng Patchset Released on 17-SEP-04, 11i.ENG.I
3315665 - eni Patchset Released on 08-OCT-04, 11i.ENI.H
3151587 - fa Patchset Released on 18-OCT-04, 11i.FA.O
3514740 - fem Patchset Superseded on 27-AUG-04, 11i.FEM.B
3418286 - ff Patchset Released on 27-JUL-04, 11i.FF.I
2864462 - fii Patchset Released on 05-NOV-04 from Note:259484.1, 11i.FII.G
2768757 - flm Patchset Released on 17-SEP-04, 11i.FLM.I
3262159 - fnd Patchset Released on 04-NOV-04 from Note:259484.1, 11i.FND.H
2456473 - fpt Patchset Released on 11-OCT-02, 11i.FPT.D
2682790 - frm Patchset Superseded on 24-NOV-02, 11i.FRM.F
2770453 - fte Patchset Released on 17-SEP-04, 11i.FTE.F
3151594 - fv Patchset Released on 18-OCT-04, 11i.FV.J
3271405 - gcs Patchset Released on 05-NOV-04 from Note:259484.1, 11i.GCS.B
3418292 - ghr Patchset Released on 27-JUL-04, 11i.GHR.J
3151409 - gl Patchset Released on 18-OCT-04, 11i.GL.J
2916578 - gma Patchset Released on 17-SEP-04, 11i.GMA.L
2916585 - gmd Patchset Released on 17-SEP-04, 11i.GMD.L
2916589 - gme Patchset Released on 17-SEP-04, 11i.GME.L
2916592 - gmf Patchset Released on 17-SEP-04, 11i.GMF.L
2916596 - gmi Patchset Released on 17-SEP-04, 11i.GMI.L
2916602 - gml Patchset Released on 17-SEP-04, 11i.GML.L
2916603 - gmp Patchset Released on 17-SEP-04, 11i.GMP.L
3018908 - gms Patchset Released on 05-DEC-03 from Note:259484.1, 11i.GMS.L
2916605 - gr Patchset Released on 17-SEP-04, 11i.GR.L
3177666 - hri Patchset Released on 05-FEB-04 from Note:259484.1, 11i.HRI.F
2717041 - hxc Patchset Obsoleted on 27-MAR-03, 11i.HXC.C
3530830 - hxt Patchset Released on 04-NOV-04 from Note:259484.1, 11i.HXT.H
3289862 - ia Patchset Released on 05-NOV-04 from Note:259484.1, 11i.IA.A
1306459 - iba Patchset Superseded on 21-JUN-00, 11i.IBA.A
3025788 - ibc Patchset Released on 05-NOV-04, 11i.IBC.C
3071058 - ibe Patchset Released on 21-JUN-04, 11i.IBE.P
3215243 - ibu Patchset Released on 17-SEP-04, 11i.IBU.P
3151563 - iby Patchset Released on 18-OCT-04, 11i.IBY.P
3212296 - icx Patchset Released on 17-SEP-04, 11i.ICX.I
3103016 - ieb Patchset Released on 29-OCT-03, 11i.IEB.R
3103006 - iec Patchset Released on 29-OCT-03, 11i.IEC.R
2688479 - iem Patchset Superseded on 28-NOV-02, 11i.IEM.Q
3112614 - ieo Patchset Released on 29-OCT-03, 11i.IEO.R
3105044 - ies Patchset Released on 29-OCT-03, 11i.IES.R
3101379 - ieu Patchset Released on 29-OCT-03, 11i.IEU.R
3274195 - iex Patchset Released on 05-NOV-04 from Note:259484.1, 11i.IEX.G
3151665 - igi Patchset Released on 18-OCT-04, 11i.IGI.N
3082081 - igs Patchset Released on 01-APR-04 from Note:259484.1, 11i.IGS.L
3093820 - igw Patchset Superseded on 12-DEC-03 from Note:259484.1, 11i.IGW.F
3284214 - imc Patchset Released on 05-NOV-04 from Note:259484.1, 11i.IMC.L
2770966 - inv Patchset Released on 17-SEP-04, 11i.INV.J
3069070 - ipa Patchset Released on 28-NOV-03, 11i.IPA.F
2695944 - isc Patchset Released on 17-SEP-04, 11i.ISC.B
2692950 - itg Patchset Released on 11-OCT-04 from Note:259484.1, 11i.ITG.F
3151471 - ja Patchset Released on 18-OCT-04, 11i.JA.H
3151480 - je Patchset Released on 18-OCT-04, 11i.JE.I
3151483 - jg Patchset Released on 18-OCT-04, 11i.JG.J
3151519 - jl Patchset Released on 18-OCT-04, 11i.JL.L
3263420 - jtm Patchset Released on 04-NOV-04 from Note:259484.1, 11i.JTM.F
2386712 - jts Patchset Released on 22-OCT-02, 11i.JTS.E
2769918 - mrp Patchset Released on 17-SEP-04, 11i.MRP.I
3200649 - msc Patchset Released on 17-SEP-04, 11i.MSC.I
3200658 - msd Patchset Released on 17-SEP-04, 11i.MSD.I
3200659 - mso Patchset Released on 17-SEP-04, 11i.MSO.I
3200664 - msr Patchset Released on 17-SEP-04, 11i.MSR.G
3099306 - mst Patchset Released on 17-SEP-04, 11i.MST.A
2770126 - mwa Patchset Released on 17-SEP-04, 11i.MWA.H
1733032 - oe Patchset Released on 03-MAY-01, 11i.OE.C
3195187 - okc Patchset Released on 17-SEP-04, 11i.OKC.N
3195207 - oke Patchset Released on 17-SEP-04, 11i.OKE.J
3195201 - oki Patchset Released on 17-SEP-04, 11i.OKI.J
3101250 - okl Patchset Released on 17-SEP-04 from Note:259484.1, 11i.OKL.F
3195197 - oko Patchset Released on 17-SEP-04, 11i.OKO.I
3440839 - okr Patchset Released on 17-SEP-04, 11i.OKR.L
3195193 - oks Patchset Released on 17-SEP-04, 11i.OKS.O
3195204 - okx Patchset Released on 17-SEP-04, 11i.OKX.N
2770166 - ont Patchset Released on 17-SEP-04, 11i.ONT.J
2695953 - opi Patchset Released on 17-SEP-04, 11i.OPI.B
3291795 - ota Patchset Released on 04-NOV-04 from Note:259484.1, 11i.OTA.I
3073155 - ozf Patchset Released on 09-OCT-04, 11i.OZF.D
2991508 - pa Patchset Released on 28-NOV-03, 11i.PA.L
3418225 - pay Patchset Released on 27-JUL-04, 11i.PAY.M
3418216 - per Patchset Released on 27-JUL-04, 11i.PER.N
2770116 - pjm Patchset Released on 17-SEP-04, 11i.PJM.H
3416752 - pmi Patchset Released on 07-OCT-04 from Note:259484.1, 11i.PMI.H
3151458 - pn Patchset Released on 18-OCT-04, 11i.PN.K
3212265 - po Patchset Released on 17-SEP-04, 11i.PO.I
3212251 - poa Patchset Released on 17-SEP-04, 11i.POA.F
3212274 - pon Patchset Released on 17-SEP-04, 11i.PON.J
3212271 - pos Patchset Released on 17-SEP-04, 11i.POS.E
3418295 - pqh Patchset Released on 28-JUL-04, 11i.PQH.J
3418304 - pqp Patchset Released on 28-JUL-04, 11i.PQP.J
3070696 - prp Patchset Released on 05-NOV-04, 11i.PRP.B
3153659 - psa Patchset Released on 18-OCT-04, 11i.PSA.I
3151556 - psb Patchset Released on 18-OCT-04, 11i.PSB.J
3418306 - psp Patchset Released on 28-JUL-04, 11i.PSP.I
3025814 - pv Patchset Released on 09-OCT-04, 11i.PV.H
2769925 - qa Patchset Released on 17-SEP-04, 11i.QA.I
2937175 - qot Patchset Released on 21-JUN-04, 11i.QOT.D
2770137 - qp Patchset Released on 17-SEP-04, 11i.QP.J
3151463 - qrm Patchset Released on 18-OCT-04, 11i.QRM.D
3151391 - rg Patchset Released on 18-OCT-04, 11i.RG.H
2770345 - rlm Patchset Released on 17-SEP-04, 11i.RLM.J
3418312 - ssp Patchset Released on 28-JUL-04, 11i.SSP.J
2770336 - vea Patchset Released on 17-SEP-04, 11i.VEA.J
2768748 - wip Patchset Released on 17-SEP-04, 11i.WIP.I
2770088 - wms Patchset Released on 17-SEP-04, 11i.WMS.G
2768755 - wps Patchset Released on 17-SEP-04, 11i.WPS.H
2770367 - wsh Patchset Released on 17-SEP-04, 11i.WSH.J
2770100 - wsm Patchset Released on 17-SEP-04, 11i.WSM.I
3263588 - xdo Patchset Released on 04-NOV-04 from Note:259484.1, 11i.XDO.H
3214732 - xdp Patchset Released on 17-SEP-04, 11i.XDP.X
3151394 - xla Patchset Released on 18-OCT-04, 11i.XLA.H
2701907 - xnc Patchset Released on 15-APR-03, 11i.XNC.N
3195219 - xni Patchset Released on 17-SEP-04, 11i.XNI.K
3214804 - xnp Patchset Released on 17-SEP-04, 11i.XNP.X
3014217 - xns Patchset Released on 17-SEP-04, 11i.XNS.V
3151450 - xtr Patchset Released on 18-OCT-04, 11i.XTR.K
3264437 - zpb Patchset Released on 01-OCT-04, 11i.ZPB.A
" > ${OUT_DIR}/11510_Base.txt

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

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

Get_Arguments # Parse command line ie. patchsets.sh parm1=yes parm2=3


# check for help -h etc..

if [ "${report}" = "last_updated" ];then


Last_Updated_Report
exit
fi

Setup_Env # set up options like default directories


echo "Finished: Setup_Env"

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


Build_Applied_Patches_Report
exit
fi

# Takes optional bug= applied_date= product


if [ "${report}" = "merged_patches" ];then
echo "Running Merged Patches Report with options:"

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


echo " ... not limiting to one bug, add bug= to limt report."
else
echo " ... limiting to bug $bug merged patches."
fi

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


echo " ... not limiting to one product, add product= to limt report."
else
echo " ... limiting to product $product merged patches."
fi

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


applied_date=01-JAN-05; export applied_date
echo " ... defaulting date 01-JAN-05, find patches older than this."
else
echo " ... limiting applied_date $applied_date to find patches older than
this."
fi

Build_Merged_Patches_Report
exit
fi

# Build_Patchset_Lists - Moved into Setup_Env before Pseudo code.

Get_Version

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


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

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

if [ `echo "${BaseAppsVer}" | grep '11.5'` ];then


Compare_Patches_11i # This only runs if 11.5.X is present (Report_11i.txt)
fi

if [ `echo "${BaseAppsVer}" | grep '12.'` ];then


Compare_Patches_R12 # This only runs if 12.X.X is present (Report_R12.txt)
fi

Send_Results
echo "Finished: All Steps"

You might also like