Patchset 3 application for portal upgrades

i was just wondering ... has anybody applied the patchset 3 for portal upgrades - for 3.0.9 to 9.0.4 portals? .... while my experience on these forums is quite frustrating as no body replies usually ... yet if anyone has done it then i would like to know about this patchset results.
- did it go smoothly? specially the second part
- did you restore the files and folders manually after applying the repository update? the list of files ... that are given for manual restoration. is it essential to restore them for complete application of this patchset? the long long documentation is ambiguous about it.
- how did you restart the portal.

thank you for the message.
i asked for the experience because the long documentation in this patchset 3 tells us neither to try to access the portal application, nor to retry the patch set, if it fails in the second part of it. there is also no way to uninstall patchset 3 or any of its parts. in that scenario, they only recommend contacting the Oracle support.
the documentation seemed a little unclear at best because it did not hint or mention about restoring files and folders after the application of the patchset in the part of documentation before application steps. it asks you to do this only after these steps that restore files and folders - some automatically and some need to be done manually. it recommends the backup at many different stages for all the system. so i did not restore those files manually because i did not have a complete back up and missed a few files. so my mistake!!
it did not fix the error wwc-41417. i restarted all services and components but on trying to login to the portal i got it again. but it is hard to conclude if it only happened because the files were not restored.
that is why i asked about other people's experience if they have applied it.
how did you apply it?

Similar Messages

  • Restricting the drop down menu contents in CRM BSP application for portal

    Dear All,
    I have a problem with CRM BP where I am accessing a BSP application for ACTIVITIES - SEARCH "CRMD_BUS2000126_F4" as an iview. This iview has been assigned to a user who is an external employee of the organization. This contains a drop-down menu to search for ACTIVITIES based on user's choice(ME, MY DEPT, MY GROUP..etc). My problem is to restrict the choices in the DROP-DOWN menu to only ME and remove all others.
    How do i do that???
    rgds
    Chan

    Hi Chan,
    u r on right track.
    Save the changes that you make to the field group (entering a default value and tick 'read-only')
    I hope you are changing the field-group in CRMC_BLUEPRINT_C.
    after u have saved the canges to the fieldgroup, you need to re-gerenate the layout.
    Layout of User Interface (People-Centric UI) -> Application Element -> Field Group -> Layout Generation.
    Enter the name of the fieldgroup that u just changed.
    First run it as it is (with the "Only Check Field-Groups" ) to see if it is running into any errors.
    If there are no errors, Make sure that you remove the "Only Check Field-Groups" option and then execute.
    The layout will b generated and you should see the desired changed now.
    Hope this helps. / reward points if helpful..
    Regards,
    Raviraj

  • Trying to do the simple HelloWorld java application for portal

    Hi:
    i've been trying to do the simple java application HelloWorld so that i can get a view of how will it be to integrate a pure java application that we have in a later step. The fact is that i've been following "how to build a java portlet" and "packaging and deploying your provider" documents.
    i've taken the code from that document:
    public class HelloWorldApp {
    public static void main (string[] args){
    //Display "Hello World!"
    System.out.println("Hello World!");
    That's my java code. (in fact i want to do this as a trial, 'cause later i will
    do the same with a java application of our own).
    So i compiled it, taken the .class, jar it and packaged it as told in the
    second document.
    I've deployed it in OC4J_portal and when i try to access the URL i get an
    error:
    500 Internal Server Error
    java.lang.NoSuchMethodException
         at java.lang.Class.getMethod0(Native Method)
         at java.lang.Class.getMethod(Class.java:888)
         at oracle.portal.provider.v2.render.http.JavaRenderer.postInitialize(Unknown Source)
         at oracle.portal.utils.xml.v2.DefaultNodeHandler.invokePostInitialize(Unknown Source)
         at oracle.portal.utils.xml.v2.DefaultNodeHandler.processNode(Unknown Source)
         at oracle.portal.utils.xml.v2.DefaultNodeHandler.processNode(Unknown Source)
         at oracle.portal.utils.xml.v2.DefaultNodeHandler.processNode(Unknown Source)
         at oracle.portal.provider.v2.http.DefaultProviderLoader.getProviderDefinition(Unknown Source)
         at oracle.portal.provider.v2.http.DefaultProviderLoader.init(Unknown Source)
         at oracle.webdb.provider.v2.adapter.soapV1.ProviderAdapter.init(Unknown Source)
         at oracle.webdb.provider.v2.utils.soap.SOAPProcessor.locateService(Unknown Source)
         at oracle.webdb.provider.v2.adapter.SOAPServlet.doHTTPCall(Unknown Source)
         at oracle.webdb.provider.v2.adapter.SOAPServlet.service(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:336)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:59)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:283)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:523)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:269)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:735)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.AJPRequestHandler.run(AJPRequestHandler.java:151)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].util.ThreadPoolThread.run(ThreadPoolThread.java:64)
    does anybody know how to solve this problem?
    Thx.
    Regards. Urko.

    Hi Urko,
    Such an application as you have quoted will not have much luck as a Portlet - the code you supplied simply writes "Hello World" to standard out!
    Think of a portlet more like a servlet - you have an output stream to write to which, under the covers, is wired back up to the Portal Server which assembles the content into the page seen in the browser.
    Take a look at the extensive range of sample Java Portlets available with the PDK download.
    Anyway, from the stack trace it looks like you're using JavaRenderer. JavaRenderer invokes an arbitrarily named method on an arbitrary class **provided** that method takes a single argument of type PortletRenderRequest. So you would need something like:-
    public class MyApp
    // A bunch of app-specific code.
    public void renderPortlet(PortletRenderRequest pr)
    PrintWriter out = pr.getWriter();
    out.println("<b>Hello World</b>");
    Then, the relevant provider.xml section would look something like this....
    <showPage class="oracle.portal.provider.v2.render.http.JavaRenderer>
    <className>MyApp</className>
    <renderMethod>renderPortlet</renderMethod>
    </showPage>
    Hope this helps.....
    Regards,
    Gareth
    PDK-Java Development Team

  • Application for portal

    I'm trying to figure out if OracleAS is what I want to build my application. I need to build an application that gives the user access to creating tables and definine queries. I'd like to be able to integrate tools like Oracle's console manager to create/manager tables, have access to table attribute information so I can translate column names to my applications properties names and vice versa, and I also need to be able to provide a tool to allow users to configure complex sql that contain run time substitution variables for query parameters.
    Am I looking at the right oracle product to do this?

    Damien,
    According to the plans PDK-September will contain a PL/SQL discussion forum portlet. Keep an eye on the PDK tab of Portal Studio (http://portalstudio.oracle.com).
    Regards,
    Peter

  • Problems while migrating PDK applications from Portal 7.1 to Portal 7.3

    Hi All,
    I am facing a problem while migrating a PDK application from Portal 7.1 to Portal 7.3.
    Since Portal 7.3 doesnt support PAR files any more it provided with a tool to convert the PAR to an EAR file and deploy the resultant EAR to the new portal.
    I converted the PAR into EAR and deployed the file but the application is not executing. When I looked into the log files i found the following exception. The application is not able to identify the tag "documentBody". I checked the protalapp.xml and the "SharingReference" is properly maintained in the file but the error message suggests that its not able to fine the reference to the tagLib uri maintained in the portalapp.xml
    Now my question is why is it not able to obtain a reference to the taglib? Did any one face similar problem previously. Can you please provide me with any document for migrating / developing PDK application for Portal 7.3
    Parser [PRT] - JspParseException is thrown while parsing JSP file </SAP/sap/POD/J00/j2ee/cluster/apps/TestOrg.co.uk/TestOrg~cas~ptlsvc/servlet_jsp/CASPortalService/root/WEB-INF/pagelet/CASFramework.jsp> :
    com.sap.engine.services.servlets_jsp.jspparser_api.exception.JspParseException: Cannot parse custom tag with short name [documentBody].
    at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.syntax.JspElement.customTagAction(JspElement.java:969)
    at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.syntax.JspElement.action(JspElement.java:228)
    at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.syntax.ElementCollection.action(ElementCollection.java:59)
    at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.syntax.JspElement.customTagAction(JspElement.java:994)
    at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.syntax.JspElement.action(JspElement.java:228)
    at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.syntax.ElementCollection.action(ElementCollection.java:59)
    at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.syntax.JspElement.customTagAction(JspElement.java:994)
    at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.syntax.JspElement.action(JspElement.java:228)
    at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.syntax.ElementCollection.action(ElementCollection.java:59)
    at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.syntax.ElementCollection.action(ElementCollection.java:69)
    at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.GenerateJavaFile.generateJavaFile(GenerateJavaFile.java:72)
    at com.sap.engine.services.servlets_jsp.server.jsp.JSPProcessor.parse(JSPProcessor.java:272)
    at com.sap.engine.services.servlets_jsp.server.jsp.JSPProcessor.generateJavaFile(JSPProcessor.java:196)
    at com.sap.engine.services.servlets_jsp.server.jsp.JSPProcessor.parse(JSPProcessor.java:128)
    at com.sap.engine.services.servlets_jsp.jspparser_api.JSPChecker.getClassName(JSPChecker.java:377)
    at com.sap.engine.services.servlets_jsp.jspparser_api.JSPChecker.compileAndGetClassName(JSPChecker.java:306)
    at com.sap.engine.services.servlets_jsp.jspparser_api.JSPChecker.getClassNameForProduction(JSPChecker.java:236)
    Thanks in advance
    PK

    Hi Amit,
    Thanks for your reply. I could see some progress after "thoroughly" going through those links. Thanks a lot (gave points too )
    Now I am facing another problem. The application did deploy successfully but with a warning. When i checked the warning it says that the deployment was successful but can not be started.
    The log file has the following error message.
    Global [startApp] operation of application [newsint.co.uk/newsint~cas~ptlsvc] finished with errors for [5] ms on server process [2721950] [
    >>> Errors <<<
    1). com.sap.engine.services.deploy.exceptions.ServerDeploymentException: Application newsint.co.uk/newsint~cas~ptlsvc cannot be started. Reason: it has hard reference to the following resources, which are currently not available on the system: hard to SAPPORTAL/com.sapportals.htmlb (public) (f=true, cl=false); .
    In order to start the application, components that provide the missing resources should be successfully deployed.
    at com.sap.engine.services.deploy.server.ReferenceResolver.isResolved(ReferenceResolver.java:137)
    at com.sap.engine.services.deploy.server.LifecycleController.startReferencedComponents(LifecycleController.java:173)
    at com.sap.engine.services.deploy.server.application.StartTransaction.beginCommon(StartTransaction.java:200)
    at com.sap.engine.services.deploy.server.application.StartTransaction.begin(StartTransaction.java:166)
    at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:421)
    at com.sap.engine.services.deploy.server.application.ParallelAdapter.makeAllPhases(ParallelAdapter.java:465)
    at com.sap.engine.services.deploy.server.application.StartTransaction.makeAllPhases(StartTransaction.java:605)
    at com.sap.engine.services.deploy.server.DeployServiceImpl.makeGlobalTransaction(DeployServiceImpl.java:1828)
    I dont understand why is SAPPORTAL/com.sapportals.htmlb is not available. As per my understanding it is some thing that should be available with the portal server by default.
    Any hints from any one?
    thanks in advance
    PK

  • Portal upgrade path for 10.1.2 to 10.1.4 for OracleAS Standard Edition One?

    Is there a portal upgrade path for 10.1.2 to 10.1.4 for OracleAS Standard Edition One? If so, could someone please point me to the document/download?

    Hope this helps,
    http://www.oracle.com/technology/products/ias/portal/html/upg_1014_1012_intro.html
    :Krishna

  • Portal upgrade 7.3 for XRPM PPM

    Hi Alll,
    Is it possible to Portal upgrade 7.3 for XRPM PPM..
    Please give me some details.
    Regards,
    dhanu

    5.0: New Portal Business Package Released for EP 7.30
    A new version of the portal Business Package for SAP Portfolio and Project Management 5.0 has been released for installation on SAP Enterprise Portal 7.30 (EP 7.30) and also a new versions for the optional component PPM_KM (only needed in case KM documents are used for Portfolio Management). The technical names are
    BP_PROJ_PORT_DESIGNCOLL 5.0 73
    (BP for Projects, Portfolio Management and Design
    Collaboration 5.0 73)
    PPM_KM 503
    (PPM_KM 503)
    SAP Note 1377082 as well as Master Guide and Upgrade Master Guide have been updated accordingly (should soon be visible under http://help.sap.com/ppm). See also SAP Note 1532805 for general information about Add-On compatibility of SAP NetWeaver 7.3
    Please note: All the information above only refers to EP 7.30. Regarding the ABAP stack, SAP PPM 5.0 is not released for NW 7.30 ABAP (and there are no plans to release it).

  • URL for WD Application in portal

    Hello Everyone,
    My requirement is to send a link to a WD ABAP iView by email. Is there anyway we can find out the URL of the WD ABAP Application on portal? Please let me know about this. I would appreciate your help.
    Regards,
    Gopal.

    Found the Short URL for the Application and used it.

  • Blogging application for SAP Portal?

    I would like to ask what kind of Blogging application is the SDN using on it's pages?
    We would like to add a blogging application for the Portal and have read that at the moment, there is no SAP built-in application for blogging.
    What would be the best solution to integrate Enterprise blogging in the SAP Portal?

    Hi,
    Did you get to look at this [thread|https://www.sdn.sap.com/irj/scn/thread?messageID=6415605#6415605]
    Hope this helps!
    Cheers,
    Sandeep Tudumu

  • No Content available for this navigation node message after Portal Upgrade

    Hi,
    After Portal upgrade to 7.01 EHP1 SP7, when we are clicking on any role at the TLN, the Portal Content area is showing the message " No Content available for this navigation node". However before upgrade when we are clicking on any TLN role the content area used to show the first iview in the folder in the detailed navigation.
    Please help as we are in a very critical state.
    Best

    Ameya Pimpalgaonkar wrote:
    Hello Mahesh,
    >
    > Did  you happen to see this thread:
    >
    > Hide "No content available for this navigation node" message
    >
    > Ameya
    Hi Amiya,
    I already gone through this thread but iwe will get an empty page if we will change the value of default content to null in the Content Area iview. My requirement is to expand the folder in the detail navigation area and display the first iview in that folder in the content area whenever we click on any role in the TLN.
    Mahesh

  • No suitable driver for mysql in oracle application  server  portal 10g

    Hi all
    i want to run my portlet with mysql4.1 database from "oracle application server portal 10g".
    i did all configuration in data source and also i kept mysql connector jar file into all oraclehome/jdbc/jlib folder.
    Mysql
    General
    Name :: helloMysql(jndiname)
    Description :: helloMysql
    Data Source Class :: com.mysql.jdbc.jdbc2.optional.MysqlXADataSource
    JDBC URL :: jdbc:mysql://localhost:3306/database?relaxAutoCommit=true
    JDBC Driver :: com.mysql.jdbc.driver
    Datasource Username and Password
    Username------------>(user name)
    password-------------->(password)
    JNDI Locations
    Location== jdbc/helloMysql
    jdbc/blogOracle== jdbc/XA/helloMysql
    EJB Location == jdbc/XA/helloMysql
    Connection Attributes
    Connection Retry Interval (seconds)====1
    Max Connection Attempts===empty
    Cached Connection Inactivity Timeout (seconds)===30
    remaing all are empty
    when i run the portlet, then i am getting "No suitable driver" in my portal page.
    i want check server console or server log for oracle application server portal.
    please help ,where to find server log?
    Any suggestions or help from your side.
    Thanks in advance.
    Raju

    I think you're trying to connect to a database in a diferent host than the Web Server.
    This is possible in applcations, but not in applets, who only can open TCP connections to the same machine who served the page.
    To do that, yo should use a Data Gateway to establish the connections (IDSServer, and so on). I think that installing Oracle's Connection Manager in the same machine than the Web, it would run.
    null

  • HT204266 Please my friend put some of his applications for me but now I want to upgrade it's not asking me for my account but for his.How do I transfer to my own account? Thank you.

    Please my friend put some of his applications for me but now I want to upgrade it's not asking me for my account but for his.How do I transfer to my own account? Thank you.

    You cannot transfer your friend's applications to your account.
    All apps are tied to the Apple ID they are purchased with.
    You can only update using your friend's ID.

  • How to create and deploy portal applications for WebLogic TP10

    Hi Friends:-) Thej here,
    I want to know, how to create weblogic portal applications for tech preview version 10.
    Thanks

    The Tech Preview of 10.0 contains only WebLogic Server. WebLogic Portal 10.0 functionality is not contained in this preview. Therefore, you cannot create portal applications in this Tech Preview.
    Thank you.

  • How to implement SSL for Portal with ADS (for Adobe besed MSS Application)

    Hi Experts,
    What is the Minimum setting is required to implement the SSL for Portal with ADS.
    Http is working fine with Portal with ADS and R/3 for Adobe Based MSS Form.
    Please let me know.
    Regards
    Ali

    Rajat,
    Nice to see your reply...
    Could you please write me the steps how to do that.
    I would like to implement SSL only in portal. So is that mandatory to implement the SSL in ADS and R/3 too.
    Please what are the minimum setting is required.
    Sure points will be rewarded
    Regards
    Ali

  • NEW 9iAS PORTAL UPGRADE SCRIPTS NOW AVAILABLE

    Based on detailed customer and internal feedback, Oracle9iAS Portal Product Development is now making available NEW and significantly IMPROVED versions of the 9iAS Portal Upgrade Scripts as of 4/20/2001.
    [list]
    [*]Oracle9iAS Portal Upgrade Scripts (2.2/3.0.3.3.3 -> 3.0.6) for Windows NT
    [*]Oracle9iAS Portal Upgrade Scripts (2.2/3.0.3.3.3 -> 3.0.6) for Solaris
    [list]
    The upgrade scripts provided here (at the links above) will allow you to upgrade the following environments:
    a) Your existing WebDB 2.2 installations to Oracle9iAS Portal 3.0.6.
    b) Your existing Oracle Portal Early Adopters Release (3.0.3.3.3) to Oracle9iAS Portal 3.0.6.
    For specific upgrade documentation (also updated!), please consult the links below:
    [list]
    [*]Release notes for Oracle9iAS Portal 3.0.6 Upgrade
    [*]Oracle9iAS Portal Upgrade Guide for NT/2000
    [*]Oracle9iAS Portal Upgrade Guide for Solaris
    [list]
    NOTE: For the final step of the upgrade process, you will also need to download additional upgrade scripts to take you from Oracle9iAS Portal 3.0.6 to the current 3.0.8.9.8 Oracle9iAS Portal release.
    NOTE: Scripts and Doc for the 9iAS Portal 3.0.6 to 3.0.8 Upgrade are expected to be made available later this week (April 24-27)
    The following is a list of bugs and issues addressed with the latest 9iAS Portal 3.0.6 upgrade scripts.
    Upgrade Bugs Fixed for the 2.2 -> 3.0.6 upgrade
    1697813 - NT SCRIPT IS ASKING FOR VALUES 3 AND 4
    1697862 - APPIMP.CSH
    1697863 - UNEXPECTED ERROR ENCOUNTERED ERRORS OCCURED IN APPIMP.CSH
    1697828 - SB: MISSING LINKS FOR THE FOR ITEMS
    1697781 - MIGRATION FAILED
    1714261 : APPLICATION IMPORT SCRIPT FAILS
    1716379 : IMPORT SCRIPT TERMINATES ABNORMALLY
    1712877 : EXPORTING A APPLICATION FAILS
    1715551 : NO ACTION LINKS FOR LOVS WHEN IMPORTED FROM WEBDB SCHEMA !!
    1740211 : AFTER UPGRADE EDITING THE SCHEMA GIVING ERROR
    1697795 - MISSING TEMPLATE AFTER UPGRADE (DOC BUG)
    1697839 - 22-306:DOC: NEEDS TO DOCUMENT
    1697835 - 22-306:DOC: NEEDS TO DOCUMENT
    Additional Bug Fixes
    1703032 - IMPROVE PERFORMANCE FOR THE FOLDER IN EDIT-MODE.
    1703040 - EDIT LINKS APPEAR ON FOLDERS EVEN THOUGH USER DOES NOT HAVE PRIVILEGES.
    1703052 - SUBFOLDERS UNDER THE FOLDERS NOT ALIGNED PROPERLY
    1703063 - PERSPECTIVE PAGE RENDERS SLOWLY
    1703070 - NAVBAR LOGON/LOGOFF LINKS IS HARDCODED TO GO THE CONTENT AREA ROOT FOLDER
    1703072 - NAVBAR LOGON/LOGOFF LINKS DOES NOT WORK FOR PERSONAL FOLDERS.
    1689813 - ITEM LINK IN SEARCH RESULTS SHOULD BE DIRECT ACCESS URL
    null

    Richard,
    You'll need to have 1.0.2.2 to be installed on the middle tier before performing the upgrade for your portal 3.0.9 upgrade repository on the database end. So that means, you'll need to wait for the Linux download of iAS 1.0.2.2 to be available before beginning your upgrade of the portal repository, assuming that your middle tier of iAS is also on a Linux box.
    iAS 1.0.2.2 does indeed include Portal 3.0.9, of which Portal 3.0.9 components will be installed during the upgrade process along with the upgrade of the middle tier. During the upgrade process, the installer (from my personal experience on NT), will notify you that it is performing an upgrade installation of your middle tier, provided that you specified the middle tier's ORACLE_HOME when executing the oracle installer.
    Just be sure to read and follow the 9iAS Migration guide before beginning your upgrade of the middle tier to iAS 1.0.2.2. After upgrading the middle tier to 1.0.2.2, the actual upgrade of the portal repository was extremely simple by comparison.
    The upgrade of the portal repository took a few hours (my recommendation is to invoke it off before leaving for the evening), and it will leave a detailed logfile for you to peruse afterwards, if you choose).
    Best Regards,
    Harry

Maybe you are looking for

  • How do I access my iCloud account from my PC?

    How do I access my iCloud account from my PC?

  • Is there a way to find my iPod without iCloud

    Help pleas I lost my iPod at school and I need it by tommorow

  • Doubts in table control.

    Hi All. I need to create ALV report with check box and add push buttons on appilcation toolbar like selectall, deselect. If press selectall all check box need to be checked, if I press deselect all check boxes need to deselected .how to do the logic,

  • How can an approver modify the requested items in a request - OIM 11g R2

    Hi, I want the approver to add/modify/delete the requested items in a request, when the request is pending for approval. For eg. If a user has requested for 2 entitlements, when the request reaches the approver's queue, approver can add/delete the en

  • Very ugly fonts after uppgrade

    Hi , after latest uppgrade all my fonts ,are ugly like hell. Below are some screenshots. http://img242.imageshack.us/my.php?imag - nu2yl2.png http://img242.imageshack.us/my.php?imag - nu3qo3.png As you see ,they arent "sharp" ,and are not even as bla