Patch information of CM

Hi everyone,
I have installed EP 6.0 SP2 on windows 2003 with cd #51030419. The default patch level for portal content is patch 4 which can be seen in the portal_version file.
I have also installed CM and COLL from the same CD and now i am trying to check the patch level and no where it mentions at what default patch level will it be when its installed.
Any help will be appreciated.
Thanks,
Fahad

Hi Fahad,
if you have aready installed KMC, you can see detailed version info for EP as well as for KMC via System Adminstration - Support - Support Desk - Version, eg 6.0.2.27.1_ContentManagement_Collaboration means EP6 SP2 P27 HF1.
Hope it helps
Detlev

Similar Messages

  • CSA MC Install error: Unable to load patch information

    When we try to install CSA MC 5.2.0.263 (and 5.2.0.203) on Windows Server 2003 Ent Ed (or R2) we receive error:
    "Unable to load patch information into the database"
    How to solve the given error?

    Just a couple things to check. If running the CSA agent on the MC make sure its disabled during the upgrade
    You have enough free space in the installation directory

  • CSA 6.0 will not install. Crashes on Patch Information.

    I have tried to install CSA 6.0 a few times and it crashes on "Unable to load patch information into database. setup will now abort". can anyone tell me why this keeps happening. I have installed 5.2 just fine but I want to use 6.

    If you encounter problems with installing or uninstalling the CSA, perform the following tasks:
    • Verify that you rebooted the server.
    • Verify that the Cisco Security Agent service is not disabled and that its Startup Type value is
    Automatic.
    • Obtain the installation logs from :\Program Files\Cisco\CSAgent\log. Review the
    Cisco Security AgentInstallInfo.txt and driver_install.log files.
    • For installations, verify that you installed the Network Shim. The driver_install.log file should state
    that csanet2k.inf installed. If the Network Shim is not installed, uninstall the Agent and then install
    the Agent again.
    • Verify that you did not use Terminal Services.

  • How to get latest CPU patch information

    Hi Gurus,
    Good Morning.
    How to get latest CPU patch information for our EBS 11i system, how to get alerts when ever they released CPU patches.

    Check  the SAWWAN'S Excellent previous post regarding developer patches , this post will give you entire information about Developer patches.
    Re: how to find the developer version
    Re: Developer 6i patches
    Check this metalink notes , hope this helps.
    Note: 466890.1 - Script to find Apache, Java, Jinitiator, Forms version and JVM details for Oracle E-Business Suite 11i
    Note: 392793.1 - How to Obtain Oracle Forms Version in Oracle Applications 11i from Command Line
    Edited by: Amigo on Dec 22, 2010 9:20 AM
    Edited by: Amigo on Dec 22, 2010 9:21 AM
    Edited by: Amigo on Dec 22, 2010 9:26 AM

  • Patching Information for EBS 11.5.10.2

    Hi All,
    I am new to apps installation
    I installed the application on Linux, but need to know the patches to be applied (in the sequence) using adpatch as well as OPatch,
    Please provide from where i get all the patching information
    Many thanks in advance...

    Revieweing Readme is Mandatory Step, however at a high level you would start with
    1. Applying OS Patches/JDK Patches if any
    2. Apply DB Patches
    3. Apply TechStack Patches/Forms Patches
    4. Apply Oracle Applications Patches.
    while applying oracle apps patches you can use option adpatch option=prereq which would tell if you missed any prereq, however as said before it doesnt list all the prereqs and u need to review the readme.

  • Powershell Patching Information: Problems using Export-CSV / looping

    I've made a simple script that obtains patching information from a series of servers.
    The csv file I use to reference my servers is called patchlevels.csv and just contains some basic information.
    ServerName,OS,ServicePack,Patches,,,,,,,
    SERVER1,Server 2003 R2 Enterprise,SP2,,,,,,,,
    SERVER2,Server 2003 R2 Enterprise X64 Edition,SP2,,,,,,,,
    Yup, that's exactly as its formatted ^
    The problem I am having is updating the Patches column with a link to the server-specific htm file (I figure I can always save as xlsx within Excel to get clickable hyperlinks). I have failed multiple times over the last few hours using
    export-csv to try and update the Patches cell(s).
    Here is my script minus any failed export-csv references for clarity's sake:
    $currentPath = "$pwd\"
    $HostFileName = "patchlevels.csv"
    $CSVLoc = $currentPath + $HostFileName
    Import-Csv "$CSVLoc" | ForEach-Object {
    Write-Host "Processing..."
    Write-Host "------------------------------------------------------------" -ForegroundColor Yellow
    $ServerName=$_.ServerName
    $ServerFile = "$ServerName.htm"
    $OS=$_.OS
    $ServicePack=$_.ServicePack
    $_.Patches = $_.Patches.replace("[","$ServerFile")
    Write-Host "Server Name: $ServerName"
    Write-Host "Operating System: $OS"
    Write-Host "Service Pack: $ServicePack"
    Write-Host "Processing Patch List"
    wmic /node:$ServerName /output:$ServerName.htm qfe list
    Write-Host "Patch List generated for $ServerName"
    Write-Host "------------------------------------------------------------" -ForegroundColor Yellow
    Write-Host "END PROCESSING"
    I can see two things that may be wrong:
    1) Formatting of my CSV file (,,,,,,)
    2) I am not sure about the formatting of $_.Patches = $_.Patches.replace("[","$ServerFile")
    And obviously, I'm missing the export-csv commands to update the patchlevels.csv file with the htm file location (which is what this entire post is about).
    Where would I put export-csv in this code to update my original csv as the script runs?
    Thanks in advance for any help with this.
    Kind Regards,
    Stephen

    I've modified the script so that it now actually works as I want it to (more-or-less).
    I will look into using Get-Hotfix instead of WMIC to check that I am happy with the returned data.
    Modified CSV (I changed the Patch column to a known value to simplify replace operation, I couldn't figure out how to replace " "):
    ServerName,OS,ServicePack,Patches,,,,,,,
    SERVER1,Server 2003 R2 Enterprise,SP2,None,,,,,,,
    SERVER2,Server 2003 R2 Enterprise X64 Edition,SP2,None,,,,,,,
    Working code.
    $currentPath = "$pwd\"
    $HostFileName = "patchlevels.csv"
    $CSVLoc = @()
    $CSVLoc = $currentPath + $HostFileName
    Import-Csv "$CSVLoc" | ForEach-Object {
    Write-Host "Processing..."
    Write-Host "------------------------------------------------------------" -ForegroundColor Yellow
    $ServerName=$_.ServerName
    $ServerFile = "$ServerName.htm"
    $OS=$_.OS
    $ServicePack=$_.ServicePack
    Write-Host "Server Name: $ServerName"
    Write-Host "Operating System: $OS"
    Write-Host "Service Pack: $ServicePack"
    Write-Host "Processing Patch List"
    wmic /node:$ServerName /output:$ServerFile qfe list
    Write-Host "Patch List generated for $ServerName"
    Write-Host "------------------------------------------------------------" -ForegroundColor Yellow
    Write-Host "END DATA GATHERING"
    Write-Host "Updating CSV File"
    $update = Import-Csv "$CSVLoc"
    $update | ForEach-Object {
    $ServerName=$_.ServerName
    $ServerFile = "$ServerName.htm"
    $_.Patches = $_.Patches.replace("None",$currentpath + $ServerFile)
    $update | Export-Csv $CSVLoc -NoTypeInformation -Force
    Write-Host "OPERATION COMPLETE"
    Thanks,
    Stephen

  • OAM Patch information

    We have a production system, single node. On looking at the patch information through OAM it showed teh APPL_TOP name as that single-node, which is what I'd expect to see.
    I have just gone through the process of adding in 2 extra nodes for external DMZ usage. I did not need to apply any patches to these new, or the old node in order to configure the setup as we were already pretty much up-to-date with ATG, TXK, AD etc.
    Now when I look at the patches information in OAM the APPL_TOP name is that of one of the new DMZ nodes.
    I can't understand where OAM is getting this information from... as I say, no patches have ever been applied to this new node!
    Any thoughts on what OAM may be doing in the bacjground?
    Thanks
    Des

    Des,
    Did you check the creation and update date of these patches?
    I believe this is an expected behavior even though no patches have been applied to this clean/new instance. Oracle Application installation comes with patches/fixes already applied and are stored in the database tables. If you review the creation/update date of these patches (from OAM or ad_bugs table), you will find that the date is old. Since the first release of 11i, Oracle keeps introducing a new release with fewer bugs (i.e. more patches applied). Apart from the new features of the latest 11i release (11.5.10.2), it contains all the fixes/patches which were released for (11.5.1 to 11.5.10.1).

  • Application Server 10g 10.1.2.0.0 Patch Information

    Hey,
    How can i know which patch are required and which are already installed in My Applicaiton Server10g 10.1.2.0.2 .
    I installed before 2 week and i also deply my Applicaiton on it.Now i want to configure patch download and required all other patches.So how can i get the perfect information ?
    Please help me.
    Thanking you
    Brijesh

    Either use the Oracle Universal Installer to find out which patches are installed or use the OPatch utility with the lsinventory option.

  • R12 Application Patch Information

    Hi All,
    Can you please help me with the following.
    What will the worker do while applying R12application patch ?
    What all the information will be present in the tables FND_INSTALLED_PROCESS and AD_DEFFERED_JOBS ?
    Is there any connection between worker and these tables?
    Thanks & Regards,
    Tharun
    Edited by: 983643 on Jan 23, 2013 4:01 AM

    983643 wrote:
    Hi All,
    Can you please help me with the following.
    What will the worker do while applying R12application patch ?Process the patch jobs -- http://www.oracle.com/pls/ebs121/search?word=Workers+AND+Patch
    What all the information will be present in the tables FND_INSTALLED_PROCESS and AD_DEFFERED_JOBS ?Details about the workers jobs -- Query those tables when you apply any patch using adpatch or run adadmin for details.
    Is there any connection between worker and these tables?Yes -- Those table are created with the workers start processing the jobs, and they will be dropped once the workers are done.
    Since those table are temporary (used during adpatch sessions), you will not find much details about them. However, please see these links/docs and you will find many hits.
    http://docs.oracle.com/cd/B25284_01/current/acrobat/11iadutil.pdf -- Page 1-7
    http://bit.ly/UkUZA1
    Thanks,
    Hussein

  • CPU Patches Information

    Hi ,
    I need to know the information all about the CPU Patches.What patches currently database in and all the pending quarterly patches that needs to be applied. Any recommended documents or links ?
    Regards,
    Hussain

    [Critical Patch Update|http://www.oracle.com/technology/deploy/security/alerts.htm]
    HTH
    Anantha

  • Bundle Patch information for Agent

    Installed the Bundle Patch on OMS, but unable to perform this on Agents.
    The document to perform the pre-reqs were not clear, can anyone provide the step by step document for the same.
    Thanks,
    dba

    Hi,
    Please follow the Workbook provided in the below document:
    Enterprise Manager Cloud Control Workbook for Applying Bundle Patch 1 (February 2012) and 12.1.0.2 Plugins (Doc ID 1391993.1)
    The above explains the step by step information how to apply the BP1 patches on Agent.
    In case of manual procedure to apply the BP1 patches on Agent, follow the document provided below:
    EM 12c: Applying the Enterprise Manager Clod Control 12.1.0.1 Agent Bundle Patch BP1 Manually (Doc ID 1434945.1)
    Best Regards,
    Venkat

  • SOA Suite 11.1.1.3.0 (patch)  information required.

    I am trying to setup SOA 11g but still having no luck. this statement is written in every installation guide
    Download SOA Suite 11.1.1.3.0 (patch) from the FMW download page, in the Runtime Software section.
    but i am unable to find any patch of SOA Suite 11.1.1.3.0 infact there is a SOA Suite 11.1.1.3.0 release available.
    Kindly get me out of this confusion is there any patch script or need to install the whole release available there.

    The 11.1.1.2.0 version is a full release.
    The 11.1.1.3.0 version is a patch which can only be installed if the 11.1.1.2.0 version is installed (so it actually is a patch)
    so for your installation you need to download both and install both...thats all

  • Regarding Patch Information

    Hi,
    Patch ID 8527948 for hyperion 9.3.1
    While installing patch, i need to stop all the services or not.
    Thanks,
    PC

    Hi,
    My Issues are
    1. From shared services i can't access Hyperion Planning. Whie am trying that showing "LOADING" for long time.
    2. In workspace, under navigate I can't see the applications.
    For this which are the pattch files to be update to my system.
    Pls let me know the solutions
    PC
    Edited by: dwhpc on Aug 4, 2009 9:41 PM

  • Webcenter Imaging : Patch Information - Latest

    For Imaging 11.1.1.5.0 :
    Patch 16326606 - CUMULATIVE IPM/AXF PATCH 11.1.1.5.0 NUMBER 16
    For Imaging 11.1.1.6.0 :
    Patch 17436422 - CUMULATIVE IPM/AXF PATCH 11.1.1.6.0 NUMBER 20
    For Imaging 11.1.1.7.0 :
    Patch 17458031 - CUMULATIVE IPM/AXF PATCH 11.1.1.7.0 NUMBER 4

    For IPM 10g :
    Patch 17546185: THE MIGRATION TOOL SHOULD NOT REQUIRE A POWER USER TO LOGIN TO IBPM  
    This is the latest version of the IPM 10g to WebCenter Content: Imaging Migration Tool.  After applying this patch, please remove the Imaging Power User right for the user group running the Migration tool.  This can be done within the IPM Security Tool on the Policies tab.  This patch supersedes all previous versions of the Migration Tool.
    For IPM 11g :
    First Patch for Imaging 11.1.1.8.0:
    Patch 17479026 - CUMULATIVE IPM/AXF PATCH 11.1.1.8.0 NUMBER 1

  • Patch information

    Dear Experts,
    I have one confusion over PSU patches i.e.
    1. We installed 10.2.0.1 (Base version), then I applied 10.2.0.5(Patch Set 4) patch. Is it called PSU patch ?
    2. We apply 10.2.0.5.6 PSU on 10.2.0.5.0, is this also PSU patch ?
    My question is that when there is version change e.g. in both cases discussed above, it is called PSU.
    In case when 4th digit change i.e 10.2.0.N, we also need to upgrade database, while in case of 5th digit we don`t i.e. 10.2.0.5.N Why ?Regards
    Sunil Kumar

    user13151642 wrote:
    Dear Experts,
    I have one confusion over PSU patches i.e.
    1. We installed 10.2.0.1 (Base version), then I applied 10.2.0.5(Patch Set 4) patch. Is it called PSU patch ?
    No it ain't. This is patch set only
    2. We apply 10.2.0.5.6 PSU on 10.2.0.5.0, is this also PSU patch ?
    Yes it is PSU only
    My question is that when there is version change e.g. in both cases discussed above, it is called PSU.
    In case when 4th digit change i.e 10.2.0.N, we also need to upgrade database, while in case of 5th digit we don`t i.e. 10.2.0.5.N Why ?
    When we need to change the 4th digit we install the patchset binaries and run ./runInstaller, once this finish we start the database in upgrade mode(to upgrade the binaries and dictionary to later release)
    When changing the 5th digit, we are applying patches only to binaries not to dictionary of database that why we dont upgrade the database. This is when couple or more patches are installed on binaries with opatch apply command,
    Regards
    Sunil Kumar

Maybe you are looking for

  • Problems setting up MPLS

    A Chairde, Am having problems setting up MPLS between a AS5350 and 7609 , I have used commands stated in this link, enable MPLS incrementally on a network. http://www.cisco.com/univercd/cc/td/doc/product/software/ios121/121cgcr/switch_c/xcprt4/xcdtag

  • Deploy a ear file from workshop-enabled weblogic on windows to solaris?

    Hi, I built a java ear application on my workshop-enabled weblogic in windows OS. I need to deploy it over into a solaris weblogic system. Does anyone have any idea if this is feasibe (as i was under the impression that the solaris version of weblogi

  • Weird error message I got after changing my Access Log Settings

    "Try to refresh the view (localhost/Web). Report the problem to the administrator if it persists. (NILRESPONSEERR (* -[NSCFArray objectAtIndex:]: index (0) beyond bounds (0)))" I can't seem to get into server admin to change back what I did. I copied

  • Print PDF Pages quality not high enough

    I'm pretty happy with using Aperture to design relatively simple photo books. Its great to stay in one tool. But I'm not happy with how it exports JPGs from the book I designed. Don't think its a problem with my automator workflow file either.  I'm u

  • Barcode scaning data in sap

    hai all,          could any body help me how to store scaned  barcode data from a reader in sap? IS their anypredefined scope/transaction for scanned data  to store in application directly from reader/any device.