thx
The patches you apply depend on what modules you are using and whether
the intention is to migrate to R12. You will need to be more specific
to figure out what you must/should do.
If you send me an email off-line I can get you the list of patches we
apply during our E-Business Suite class on the Vision database.
--
Daniel A. Morgan
Oracle Ace Director & Instructor
University of Washington
damo...@x.washington.edu (replace x with u to respond)
Puget Sound Oracle Users Group
www.psoug.org
Welcome to the wonderful world of apps, and ERP in general.
We use the script below to check whether pre-reqs are applied, but yes
it isn't for nothing that there are courses on applying patches for
apps - and that other ERP makers release patches daily as well.
set verify off
ACCEPT bug_no PROMPT 'Enter Bug Number: '
select
'YES on '||to_char(CREATION_DATE,'dd-Mon-yyyy') applied
from
ad_bugs
where
bug_number = '&bug_no'
and exists (
select
null
from
ad_bugs
where
bug_number = '&bug_no')
union all
select
'NO' applied
from
dual
where
not exists (
select
null
from
ad_bugs
where
bug_number = '&bug_no');
regards
Niall
Ahh that's why oracle consulting loves to get involved with stuff like
this!
I should probably have mentioned the Patch Wizard in OAM (Oracle
Applications Manager) in case you haven't found it yet. That will give
you lists of all updates, recommended updates and new code levels (in
case you wish to patch but not introduce new functionality in an
automated way).
Niall Litchfield
http://www.orawin.info/
regards
Niall
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Nial,
maybe I'm overlooking something, but what is the difference between
select
'YES on '||to_char(CREATION_DATE,'dd-Mon-yyyy') applied
from
ad_bugs
where
bug_number = '&bug_no'
and exists (
select
null
from
ad_bugs
where
bug_number = '&bug_no')
and
select
'YES on '||to_char(CREATION_DATE,'dd-Mon-yyyy') applied
from
ad_bugs
where
bug_number = '&bug_no'
?
Don't have ad_bugs here to test this....
Shakespeare