Does Peopletools patches need to be applied to PS_CFG_HOME?

Hello,
I am using Peopletools 8.52 version.
Need help to find out whether Peopletools patches need to be applied on PS_CFG_HOME also along with PS_HOME?
Thanks

The *cfg are not touched by the patches, so PS_CFG_HOME is not directly touched until you reconfigure the domain.
On the other hands, the patch may or may not modify the cfx/ubx (in PS_HOME)... which are used to create/reconfigure the domain configuration files (in your PS_CFG_HOME), in that case only you'll have to reconfigure your domain.
I do not see any reason to apply patch in PS_CFG_HOME, and if it happened, then except it is dirty, it will probably do not harm if and only if you continue to use PS_HOME to run psadmin.
Nicolas.

Similar Messages

  • After db upgrade, any patches need to be applied on Application 11i

    Hi
    After db upgrade from 10.2.0.4 to 10.2.0.5 in RAC are there any patches which needs to be applied on
    the application tier(11i)? Can anyone confirm on this?
    Thanks

    Hello Machindra,
    I think it will not be possible for anybody to provide you any such list because there are huge corrections delivered for XI since 2008 till now. Even if you manage to sort out such list it will be a cumbersome job to apply large number of notes in your system.THese notes will also have support package level dependencies and somehow you'll have to bring the SP level of your system to the latest level. 
    I'll fall back on what Amber advised to apply the latest SPs available. you can check the aftereffects on a sandbox system and later you can apply it to the other systems. And as you already know support packages are just a collection of the notes/corrections. SO definately this is best way to go.
    Rest its your call.
    Best Regards
    Niraj

  • OUI-10091:There are no patches that need to be applied from the patchset

    Hi All,
    when i try to apply 10.2.0.3 patch on 10.2.0.1 in linux x86 I am getting into this error.
    OUI-10091:There are no patches that need to be applied from the patchset Oracle Db 10g R2 Patchset 10.2.0.3.0
    The original ora inventory is lost and cannot be recovered.
    So is there any way I can upgrade the database software.
    Please advise.
    thanks in Advance
    -PK

    You should first try to troubleshoot the missing inventory issue. Check this metalink document:
    OUI-67105 Due To Missing Or Corrupted Central Inventory In 10g
         Doc ID:      Note:417236.1
    ~ Madrid

  • Need Assistant to Apply Patch 6194129

    Hi DBA's,
    I am in the process of upgrading patchset level from 16 to 19.
    we are following Document - 125767.1
    Application - 11.5.10.2
    OS - Windows Server.
    I am facing difficulties to apply this patch, Please help to apply this Patch.
    Thanks.

    what is the problem you are facing in the patch.
    have you followed the read me of the patch its a step by step note. could you please chack it and let us konw what you are facing.
    from the patch readme"
    Installation Instructions
    Set your ORACLE_HOME.
    If you are going to apply this patch on top of an iAS install:
    Set ORACLE_HOME to <iAS_HOME>/6iserver
    Prepend <iAS_HOME>/6iserver/bin to the *beginning* of PATH
    Prepend <iAS_HOME>/6iserver/lib to the *beginning* of LD_LIBRARY_PATH
    Copy the files in this patch to your $ORACLE_HOME.
    Unzip the patch using either WinZip on NT or unzip on Unix.
    Run the install script contained in the patch:
    cd $ORACLE_HOME/developer6i_patch19
    ./patch_install.sh 2>&1 | tee patch_install_p19.log (ksh)
    ./patch_install.sh |& tee patch_install_p19.log (csh)
    Check patch_install_p19.log for errors.
    Relink Procedure Builder, Forms, Graphics and Reports:
    cd $ORACLE_HOME/procbuilder60/lib; make -f ins_procbuilder.mk install
    cd $ORACLE_HOME/forms60/lib; make -f ins_forms60w.mk install
    cd $ORACLE_HOME/graphics60/lib; make -f ins_graphics60w.mk install
    Reports has both link-time and run-time dependency with libjava.so so you need to append $ORACLE_HOME/network/jre11/lib/linux/native_threads in $LD_LIBRARY_PATH before linking Reports. The same $LD_LIBRARY_PATH should be used at run-time.
    cd $ORACLE_HOME/reports60/lib; make -f ins_reports60w.mk install"
    fadi

  • Do all updates need to be applied in order?

    Or does the last update contain everything in the earlier patches?
    I just recently installed ID CS4, and haven't had much chance to work with it. However, I think I only applied two of the six or so updates available for it, including the last one. I'm guessing I can't go back and add, say, the 6_0_3 patch after having already applied the 6_0_6 patch.
    Assuming I need to apply them all in order, do I have to deauthorize, uninstall, reinstall and then apply the patches in order?

    Updates are cumulative.
    Bob

  • Any patch need for OEM10.2.0.5 and R12.1.1 (X86_64)

    we plan to install OEM 10.2.0.5 on X86_64 server and work with R12.1.1 EBS.
    does anyone know any patch need apply for both?
    Thanks.

    Hi,
    Please see these docs/links.
    Note: 812315.1 - Oracle Application Management Pack for Oracle E-Business Suite, Release 3.0
    Applications Management and Change Management Packs Certified with Enterprise Manager Grid Control Release 5
    http://blogs.oracle.com/stevenChan/2009/06/amp_acmp_certified_with_emgcr5.html
    Regards,
    Hussein

  • [Flex 4.5.1] How does Button's fontSize property gets applied to labelDisplay?

    How does Button's fontSize property gets applied to labelDisplay when lableDisplay's fontSize is not explicitly set. I just tested it it works but I don't know how. I looked through the ButtonBase class but I don't see any code applying the fontSize to the labelDisplay nor I see code in the Label to get parent's fontSize property if not set. Could someone explain to me how this works? I would be very grateful! Thanks !

    Ok I found it, thanks for the heads up. I pretty much get the idea of how things work now
    Could you please take a look at one more probably very simple to you question. I had to customize a button to be able to have 2 lables in it with different fontSize and topPadding in this case. I kinda copied some of the code from ButtonBase + added the styles and some code I needed to make it work.
    Here it is:
    package
        import flash.events.Event;
        import spark.components.Button;
        import spark.components.Label;
        [Style(name="numberFontSize", type="Number", format="Length", inherit="yes", minValue="1.0", maxValue="720.0")]
        [Style(name="numberPaddingTop", type="Number", format="Length", inherit="no", minValue="0.0", maxValue="1000.0")]
        public class DialPadButton extends Button
            public function DialPadButton()
                super();
            private var _numberContent:*;
            [SkinPart(required="false")]
            public var numberLabelDisplay:Label;
            [Bindable("numberContentChange")]
            public function get numberContent():Object
                return _numberContent;
            public function set numberContent(value:Object):void
                _numberContent = value;
                if (numberLabelDisplay)
                    numberLabelDisplay.text = label;
                dispatchEvent(new Event("numberContentChange"));
            public function set numberLabel(value:String):void
                numberContent = value;
            public function get numberLabel():String         
                return (numberContent != null) ? numberContent.toString() : "";
            override protected function partAdded(partName:String, instance:Object):void
                super.partAdded(partName, instance);
                if (instance == numberLabelDisplay)
                    if (_numberContent !== undefined)
                        numberLabelDisplay.text = numberLabel;
                    if(getStyle("numberFontSize"))
                        numberLabelDisplay.setStyle("fontSize", getStyle("numberFontSize"));
                    if(getStyle("numberPaddingTop") || getStyle("numberPaddingTop") == 0)
                        numberLabelDisplay.setStyle("paddingTop", getStyle("numberPaddingTop"));
            override public function styleChanged(styleProp:String):void
                if (!styleProp ||
                    styleProp == "styleName" ||
                    styleProp == "numberFontSize" ||
                    styleProp == "numberPaddingTop")
                    if (numberLabelDisplay){
                        if(getStyle("numberFontSize"))
                            numberLabelDisplay.setStyle("fontSize", getStyle("numberFontSize"));
                        if(getStyle("numberPaddingTop"))
                            numberLabelDisplay.setStyle("paddingTop", getStyle("numberPaddingTop"));
                super.styleChanged(styleProp);
    So here are the questions:
    1) If I am not going to use the styles in css then maybe I should better declare them as variables ?
    2) I don't really understand how does the button gets updated and redrawn when I set Styles or properties like that cause there is nowhere a call to invalidate the display list (at least I couldn't find in the Button and ButtonBase classes) as I read in the Flex docs: Overriding the styleChanged() method
    UPDATE: I forgot that setStyle calls invalidateDisplayList... and I just figured out that when the lable sets the text on the TextBase it calls the invalidates. I answered this one myself
    3) I don't understand why do I have this code (copied from the buttonBase):
    if (!styleProp ||
        styleProp == "styleName" ||
        styleProp == "numberFontSize" ||
        styleProp == "numberPaddingTop")
    instead of just the code below:
    if (styleProp == "numberFontSize" ||
       styleProp == "numberPaddingTop")
    5) I am also not sure why I had to use content and label (again copied from the ButtonBase) when they are basicly the same thing
    Currently with this Custom Component I've made, I am able to put 2 lables in the skin. One is the default. And the other one takes the default values I put on the label itself + uses the two styles numberFontSize and numberTopPadding to change that default values in case they need to be altered.
    Although this works, I am not sure if I did it the best way or why does it work as you can say from my 5 questions
    I hope you or someone who understands this have the time to answer them for me and anyone who reads this Thanks
    Message was edited by: FM_Flame

  • How to check whethere apps patch need downtime or not?

    hi,
    i am going to apply in Oracle 11i.how to that patch need down time or not?
    Plz help
    Thanks in advance

    Hi,
    Check the patch README file and it should tell you. For the application patches, you need to enable maintenance mode in general before applying any patch. You may use "options=hotpatch" to apply the patch online without enabling maintenance mode but it depends on what patch you are applying, the size of the patch, and modules it is affecting. For patchsets, family packs, minipacks, and AD/FND patches, it is better you enable maintenance mode before applying the patch. For small patches which only need to replace a package with a new one you can apply the patch online.
    The best practice is to try your patching on a TEST instance first and see how it works. Please remember you would need to shutdown the application services on Windows if relinking executable files is required, otherwise the patch will fail and you will have to run it again after stopping the services.
    Maintenance Mode
    http://forums.oracle.com/forums/search.jspa?threadID=&q=%22Maintenance+Mode%22&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    hotpatch
    http://forums.oracle.com/forums/search.jspa?threadID=&q=hotpatch&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Does Crypto call admission control only apply to dynamic SAs?

    Hi,
    In my DMVPN phase 2 implementation, I have implemented crypto call admission control for IKE SAs on my spokes. This limit is set to 20 which is enough for my network.
    I have three hubs per region and site-to-site connectivity is only enabled on one of these routers.(hub 3). hub 1 & 2 only provide connectivity to other resources outside the DMVPN.
    If the IKE SA limit is reached on a spoke and there are other IKE requests which are being rejected - and let's say my hub1 goes down or the spoke just loses the tunnel.
    Before the tunnels to the hub1 is recovered, the spoke accepts the IKE requests which it was previously rejecting and again the IKE SA limit is reached. Now the hub1 are back on line – it will not be able to establish a tunnel ,right?
    If over a period of time the same thing happens with my hub2 then my spoke gets a bit isolated, right?
    The hubs have static IKE policy (unique PSKs) while the site-to-site tunnels are dynamic.
    In other words, does the crypto call admission limit apply only to dynamic crypto sessions or to all crypto sessions?
    I think the former. In that case, can a priority be configured for the static IKE SAs over the dynamic ones?
    Kind regards
    Nasir

    Nasir,
    There should not be a differentiator for CAC between static and dynamic. It counts overall IKE and IKE in-negotiations SAs. IKE doesn't necessarily need to know whether session is static or dynamic...
    http://www.cisco.com/en/US/docs/ios-xml/ios/security/a1/sec-cr-c3.html#GUID-84CA3908-A3C5-43E5-B8B5-0DED44EAEEC4
    You're right this is midleading, I'm going to get in touch with documentation team to make this a bit more explicit.
    M.

  • Does anybody know a way to apply a prefix to lines of text (such as e-mail:, contact:, fax:)?

    Does anybody know a way to apply a prefix to lines of text (such as e-mail:, contact:, fax:) without manually entering the prefix a million times or copying and pasting for each instance? Is there any way to automate this utilizing style sheets or something? It is for a directory with tons of entries. Any advice would be appreciated. Thanks.

    st
    mikey_design wrote:
    Does anybody know a way to apply a prefix to lines of text (such as e-mail:, contact:, fax:) without manually entering the prefix a million times or copying and pasting for each instance? Is there any way to automate this utilizing style sheets or something? It is for a directory with tons of entries. Any advice would be appreciated. Thanks.
    If each of the special prefixes corresponds to an identifiable field in the source text, such as a database file or spreadsheet, the text prefix can be added by programming the database, or creating a calculated column in the spreadsheet. To format the prefixes separately from the text that follows, use a nested character style, or a GREP style within the paragraph style; both a nested style and aGREP style need some kind of identifiable pattern to detect where to begin and end the prefix style.
    Search Google for terms like "InDesign data merge," "InDesignGREP paragraph style," "InDesign nested paragraph style," and similar terms for more information on these topics.
    InDesign's Data Merge has some ability to close up the blank lines when a data field is missing, depending on the layout. One example is when some addresses require two lines, but others require only one line.
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices

  • Which patches need to be installed

    I recently install 8.1.7.0.0 database sever.
    When I search for patches on Oracle Web, there are patches for 8.1.7.0, 8.1.7.1, 8.1.7.2, 8.1.7.3. Under each release, there are 4-5 patches. Should I install all the patches one by one or should I only install the patches with 8.1.7.3?
    Is there any official information for my questions?
    Thanks,
    Haiming Hou

    You only need to install the 8.1.7.3 patch. Every patch I've ever seen from Oracle has been cumulative but the
    patchset readme should always contain this information.
    From the 8.1.7.3 readme:
    There are no patches that need to be applied from the patch set Oracle8i Patchset 8.1.7.2.0.
    Also, if you look further down in the 8.1.7.3 readme it lists all of the bug fixes included in the patchset and what
    version the bug was fixed in 8.1.7.1, 8.1.7.2 or 8.1.7.3.

  • How can I check the patch I have been apply?

    Dear all:
    How can I check the patch I have been apply in the Financial Management?Does it have the record in the server? or has the SQL to query?
    Regards
    Terry

    Hi Terry;
    In addition to Hussein Sawwan great post, please also check those notes-recomendation on
    how to check MINIPACK 11I.AD.I.5 ?
    Regard
    Helios

  • Any patch need for Grid control 10.2.0.5 to install Application management

    We already have ORACLE Grid Control 10.2.0.5 (X86 version) on Linux server. Due to we have EBS, We plan to install ORACLE Application Management Pack 3.0 into Grid Control 10.2.0.5.
    I heard there have patch need apply to Grid Control 10.20.05 before install Application management pack into it. Anyone know which patch?
    Thanks.

    when you click on the tab "Application Servers" on the far upper left site of the GridControl (right next to Hosts, Databases, ...) then
    you will see of which components the Oracle Application server exists (HTTP-server, OC4J, WebCache, ...). Therefore the HTTP-server is just
    part of the application server - and if the application server gets shut down it's meant that all components wil get shut down...
    HTH

  • How could I know whether Microsoft patch need reboot or not ?

    We use win2003R2 and win2008R2 and so on in the domain environment.
    When we apply the Microsoft-provided patch, is there any way to know it need OS reboot in advance ? 

    Thank you.
    It is not about specific patch.
    I would like to know how to identify the microsoft-patches need OS reboot or not , perhaps from information from Microsoft web site.

  • Peopletools patch

    Our environment is PeopleTools 8.52.01. The are some bugs and we want to update it to 8.52.11. However, I found that PeopleTools patches were cumulative.   I can’t install it directly in my opinion and I can’t find the delta one. Is there any way?
    Thanks!

    Please read more info in the note below, and also read carefully the notes coming within the zip file of the patch itself.
    E-UPD Applying a Minor Tools Patch ----   things you should know (Doc ID 664589.1)
    Nicolas.

Maybe you are looking for