Oracle portal page error.

Hi!
When I click on a tab in Oracle Portal page i got the following error:
- ORA-01403: no data found ORA-20101: ORA-06512: at "DEV_PORTAL.WWPOB_API_PAGE", line 5247 ORA-01403: no data found ORA-01403: no data found.
In WLS_PORTAL.log fileL do not appear any error message but in the WLS_PORTAL.out i get:
- ERROR: Repository Gateway error: Database Error: ORA=20001 ORA-20001: Unable to obtain session information from the cookie.
ORA-06512: at "DEV_PORTAL.WPG_SESSION", line 174
ORA-06512: at line 32
I Have installed the 11g version in a Windows Server 2008.
Anybody knows how can i solve it?
Regards.

Dennis
A general shared_pool_size Q&A is part of the Troubleshooting Guide on OTN: http://technet.oracle.com/products/iportal/htdocs/portal_troubleshooting.htm
The Configuration Assistant determines the shared pool size from the view v$parameter,
which lists information about the initialization parameters (populated from init.ora file). If the shared_pool_size value is more than 15728640 (for a default installation), you pass the minimal requirements set by the Portal Installer. Make sure you actually write out all the digits (i.e. 1000000000) and don't use abbreviations (1000M). Currently, the Configuration Assistant does a numeric check against the values that are set and cannot resolve the abbreviate syntax.
Also try running the sql [select value from v$parameter where name like 'shared_pool_size';] to check if the changes you are making in the init.ora is really getting populated in the v$parameter view. As long as you restart the database once you make the change in init.ora, it should take effect.
null

Similar Messages

  • Downloading Oracle Portal Pages

    Hi,
    I have made a demo site using Oracle Portal on my Computer.
    I need to give this site to someone who does not have Oracle Portal on his computer.
    Is there anyway I can download the Oracle Portal pages to normal HTML pages and view the files on the local machine for offline browsing.
    Please let me know if there is a tool which can do the above.
    Please reply urgently
    Thanks
    Kamlesh C. Ramchandani

    You're in the wrong forum. Try the WebCenter forum:
    WebCenter Portal
    And I'd suggest narrowing the scope of your question. A fully-fledged portal that... does what? (Again, don't answer here :) )

  • Problem in oracle portal Pages:

    Hi All,
    Problem in oracle portal Pages:
    one page containing four tabs
    one of the tab contain parameter form when i submit it ,i get required result
    but the focus go to other tab.
    i check it all possible options but this doesn't resolve.
    Regards

    You're in the wrong forum. Try the WebCenter forum:
    WebCenter Portal
    And I'd suggest narrowing the scope of your question. A fully-fledged portal that... does what? (Again, don't answer here :) )

  • Oracle portal uninstall error

    hi,
    we are trying to uninstall all the portal30 and portal30_sso schemas from oracle portal. we have dropped each of these schemas individually excepting the portal30.
    the portal30 schema will not drop the dbms_lob package. it gives us the following error:
    ORA-00600: internal error code, arguments: [16201], [], [], [], [], [], [], []
    has anyone had such a problem?- is there a way to drop the package without having to reinstall the database?
    thanks.
    sharadha

    The same error manifiest, when the user creates a new page and add an item, the firts time al changes are saved, but when the user like to change information or update this over same item, the changes are not saved. The user has to delete the item an create a new to reflect their changes in the same page, if user move the page to new group the effect is the same.

  • Oracle Portal page load performance

    We have implemented Oracle Portal - Our HOme Page takes a long time to load. Can anyone suggest ways to improve the page load performance for portal

    - please look at the application log and apache logs. do you see any indicators there? are you getting any errors too (timeout errors, etc) along with slow speed?
    - performance depends upon a variety of factors. please tell us about your system, version, number of servers and the number of users and size of db.
    - please be a little more descriptive in your questions to get a reasonable answer. that's usually a sign of an Administrator who should be dealing these issues, instead of an amateur developer for whom it shouldnt be a concern.
    regards,
    AMN

  • IAS 1.0.2.1 - 1.0.2.2 Upgrade causing Portal Page errors

    We had Portal working, and have just upgraded iAS from 1.0.2.1 to 1.0.2.2. After the upgrade we commented out the duplicates in jserv.properties and zone.properties.
    We followed the instructions to check that Portal still works before we upgrade 308-309 but the portal30.home page gives a file not found error. In jserv.log there is a ClassNotFoundException for ParallelServlet, but wwpage.jar is in the wrapper.classpath in jserv.properties.
    The jserv and servlet demos work fine, we can even login and see the gateway config screen (we have a custom login page), but as soon as we go to any portal page we get the error.
    Can anyone help? We are working on Solaris.
    Thanks
    Jenny

    I have the wwpage.jar referenced in zone.properties and no mention in jserv.properties, and it works fine. I think this is the way things are on a default 1.0.2.2 Solaris installation (I'm pretty sure I haven't changed the defaults).
    e.g.) in zone.properties
    repositories=/u09/app/oracle/product/ias1.0.2.2/Apache/Jserv/servlets/wwpage.jar
    Hope that helps,
    Mark
    null

  • Urgent : file upload / download functionality in oracle portal page

    Hi friends
    I am new to portal development and am working on oracle portal 9i rel2 . I need to know how to put the file upload and download functionality in any page. the functionality given in oracle portal user guide is not user friendly (i.e in the content area add item of type file" ) .... i need to now is their any way to achieve the simple , one button click upload download functionality ..like we do in yahoo mails etc.
    any help will be highly appreciated.
    regards
    Dheeraj

    Well, I do not know the exact location of the document, however you can find the document to do this in modplsql User Guide ..(File Upload/Download).
    I am pasting some hint:
    e.g.
    Create an html form..code something like this:
    <html>
    <head>
    <title>test upload</title>
    </head>
    <body>
    <FORM      enctype="multipart/form-data"
    action="pls/mydad/write_info"
    method="POST">
    <p>Author's Name:<INPUT type="text" name="who">
    <p>Description:<INPUT type="text" name="description"><br>
    <p>File to upload:<INPUT type="file" name="file"><br>
    <p><INPUT type="submit">
    </FORM>
    </body>
    </html>
    Create a table
    (who varchar2(..).
    description varchar2(..),
    file varchar2(..));
    Your procedure something like this:
    procedure write_info (
    who in varchar2,
    description in varchar2,
    file in varchar2) as
    begin
    insert into myTable values (who, description, file);
    htp.htmlopen;
    htp.headopen;
    htp.title('File Uploaded');
    htp.headclose;
    htp.bodyopen;
    htp.header(1, 'Upload Status');
    htp.print('Uploaded ' || file || ' successfully');
    htp.bodyclose;
    htp.htmlclose;
    end;
    You should be able to download/access the file using the following URL format:
    http://<host>:<port>/pls/<dad>/docs/<file_name>
    Where file name is = Look for the value in the "myTable" > file.
    Do tell how you get on this.
    Thanx,
    Chetan.

  • ALUI portal page Error coming up

    hi,
    I have installed webcenter interaction 10g successfully over weblogic 10 g server.
    It was opening successfully for a last week.But unfortunately the weblogic server got stopped due to some reason.
    Now after restarting the weblogic server ,I ran the diagonistic check and all the 15 steps are succesful.But on hitting
    http://ip:7001/portal/server.pt ,I am not able to see the portal page again.
    I get the error Error - Internal server error contact portal administrator.
    I redployed the portal.ear , restarted the weblogic server ,restarted all the ALI services from windows services.msc but getting the same error..
    Any suggestion/help will be be very helpful.
    Regards
    Ashif
    Edited by: user9504066 on Feb 25, 2009 1:12 AM

    Hi,
    did you install it on window or unix environment?
    do you have the install/config document that you use and if so can you share it please ...my email is: [email protected]
    thanks in advance

  • EP Portal "Page Error" when saving address under empployee services

    Hello All,
    We do have enterprise portal for different countries with different role for each country.
    under "Employeeservices ap" role we have different countries like aus , malaysia etc
    when australian employee want to update his address under "Employeeservices ap" role "page error" coming when clicked on save button.
    under the same role , same tab we have diff iviews , but the pagerror coming only when updating address iview.
    under the same role malaysia employee could update the address in the same iview.
    Dont know why it is happening with only one i view and with only one country.
    Please share your ideas.
    Thanks in advance

    iam HR functional consultant , dont much about EP technical side.
    Ah, sorry, couldn't know that
    I'll explain more detailed:
    1. Checking the several Netweaver JAVA Stacks of your components in portal should be the first step. You can do this by going to "http://<host>:<port>/sap/monitoring/ComponentInfo" on your Portal Server and taking a look at the Netweaver Stacks, they will usuall Start with "7.XX' SP XX". The components should all have the same stacklevel excluding Business Packages, XSS Java Components and Connectors. If you are unsure what do to, you should ask your portal guys to update the stacks.
    2. Check whether Business Packages Match with the XSS Java Components and whether the XSS Java Components match with the corresponding Stacks in Your Backend. You can do this using the maintenance optimizer and/or using this wiki which gives a nice overview explanation: https://wiki.sdn.sap.com/wiki/display/ERPHCM/HOWTOGETRIDOFSPSTACKMISMATCHISSUES
    3. Check whether there are any Browser Compatibility Issues (very unlikely..) at https://websmp204.sap-ag.de/pam.
    4. Post the entire log for the error you get. Do this by reproducing the error, then go to "http://<host>:<port>/nwa". From there navigate to "Monitoring", "Protocols and Traces". Select "Default Trace", search for your error, go into detailed View and copy the entire LOG to post it here.
    I hope this is helpful for you now , if you have questions regarding any of that, don't hesitate asking (but please be specific).
    regards, Lukas

  • How to call Java Applet on a Oracle Portal page

    I have completed the below steps to add an Java Applet class file to the Oracle Portal.
    1. On the Portal Builder page, click the Navigator link.
    2. Click the Database Objects tab.
    3. In the Name column, scroll down to the schema in which you want to build the 4. object.
    5. Click the schema's name.
    6. Click Create New...Java Object.
    7. Click Java Class.
    8. Complete each wizard page until you reach this page.
    9. Granted PUBLIC access.
    I have created an html portlet on page an added:
    <applet class ="XXCPORT.MyJavaApplet">
    </applet>
    However, it does find the applet when I view the page. Is there some additional path or parameters I need to add?

    If you are asking if you can execute an external process (application/applet) from another application/applet - the answer is yes and no.
    Yes. If you have the security settings/policy to do so.
    No. This may require a security policy to be allowed - as an applet.

  • Session Time out for oracle portal pages in Oracle 10g.

    Hi,
    We have a portal application deployed on Oracle application server. We need to apply a security control - which prompts the usr to log in after 15 minutes of inactivity.
    I have tried types of tricks but it doesn't work. The thinsgs I have tired are listed below.
    Am I still missing anything?
    Setup Session Timeout
    Change the session-timeout value in web.xml file.
    session-config>
    session-timeout>15 session-timeout>
    session-config>
    OID
    Set LDAP Connection Timeout to 15
    SSO
    a) Navigate to http://:port/pls/orasso
    b) Login with an administration account
    c) Press 'SSO Server Administration'
    d) Press 'Edit SSO Server Configuration'
    e) In the section 'Single Sign-On Session Policy', changed the Single Sign-on Session Duration
    ORASSO
    Set Global Inactivity Timeout –
    Login as ORASSO and run $ORACLE_HOME/sso/admin/plsql/sso/ssogito.sq
    set the “inactivity_period”
    After all these settings also after 15 minutes of inactivity If I click on any tab portal displays the pages.
    Please let me know if I need to make any other changes.
    Thanks
    Satya

    Solution can be found at http://technology.amis.nl/blog/13768/increase-the-timeout-of-oracle-bpm-worklist-app

  • How can I display the last items of a region from other Oracle Portal page?

    I want to display de last five items (f.e.) included in a region (with attributes created) from other page. I've tried using custom search, but it also shows the attribute names, and I want show the attribute values (I don´t know how can I format these attributes).
    Thanks a lot.

    create a stored procedure (f.e. in schema myschema create a stored proc named renderAsHTML)
    code for the procedure :
    PROCEDURE renderAsHTML(p_itemId varchar2,p_pageId varchar2,p_siteId varchar2) IS
        l_displayName  portal.wwsbr_all_items.display_name%type;
        l_name         portal.wwsbr_all_items.name%type;
        l_publishDate  varchar2(10);
        l_url varchar2(250);
    BEGIN
         -- Looking for item datas
         select display_name, name,   to_char(publish_date,'dd/mm/yyyy')
         into l_displayName,l_name, l_publishDate
         from portal.wwsbr_all_items
         where id =p_itemId and language=portal.wwctx_api.get_nls_language;
         -- getting the URL og the item
         l_url := portal.wwpob_page_util.get_page_url(p_pageId, p_siteId);
         -- HTML rendering
    htp.p('<.a href="'||l_url ||'/'|| l_name ||'">' ||  l_displayName ||'</.a><.br/>');
    htp.p('Published on ' || l_publishDate ');
    EXCEPTION
        WHEN others THEN
               htp.p('<.div>Somme error occured , code is ' || SQLCODE || '.</.div>');
    END renderAsHTML;
    please notice that I've added a dot in HTML tags to avoid this forum to interpret them
    note : make sure that you granted "execute" for the public user on teh procedure you've just created.
    go to item properties (navigator>shared objects>item types>modify the one you want
    go to tab3 (procedures)
    set the following options :
    type : PL/SQL
    call proc : myschema.renderAsHTML
    link text : render as HTML
    icon : keep blank
    select the "display proc results with the item" option
    pass the following parameters :
    attribute1 : item ID as p_itemId
    attribute1 : page ID as p_pageId
    attribute1 : pagegroup as p_siteId
    Now, in your custom search portlet, go to results rendering, remove all attributes and add the "associated function" attribute.
    Now, all the HTML generated by the stored proc will be rendered instead of the item.

  • Oracle Certification Page Error - Page Not Found (404)

    Hello,
    I'm experiencing the following problem: can not access the certification section on oracle site:http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=39
    I receive the following error:
    Page Not Found (404)
    We're sorry! The page you are looking for has been moved or no longer exists.
    Please check the current status page first before logging an SR to AITSYS WEB SERVICES group
    or Calling the HelpDesk and provide the following information along with steps to reproduce the issue:
    Page Not Found Error 404 on Thursday, 23-Oct-2008 01:54:56 PDT amts498.oracle.com (141.146.13.151)
    Does anyone have the same problem?

    I am sorry, but I am not able to replicate your issue. The page is working fine for me. Perhaps you could contact OU technical support. Are you also having trouble getting to page tihs page http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=3?
    You can find OU technical support numbers on this page http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=123. There are also certification email addresses, but they will not be able to assist with technical problems with the website. The Oracle Certification Program Website is a part of the Oracle University website, so this is probably a bigger problem that you are having with the OU site.
    Regards,
    Brandye Barrington
    Certification Forum Moderator
    Certification Program Manager

  • Replacing default Oracle Portal HTML pages

    How do I modify/replace the default Oracle Portal pages, such as the home page for non-logged-in users, the login page, the customize page, etc.? I'd like the fact that we're using Oracle Portal to be transparent to the users.
    This is probably covered someplace in these forums or the product documentation but I have yet to find it.

    Benjamin,
    Home Page = home page for the PUBLIC user. You can also set the home page for the AUTHENTICATED_USERS group for logged in users.
    Login Page = If you're using 3.0.7, search for "Login" in the online help. Select the topic "Customizing the Single Sign-On (Login) and Change Password pages". You can also use the Login Portlet on any Portal Page.
    Customize Page = Cannot be customized. In 3.0.7, we've removed the Oracle branding from the Wizard-type pages.
    Most of these tips are contained in the Portal FAQ.
    Regards,
    Jerry

  • Page error when saving address in enterprise portal under employee service

    Hello All,
    When saving changes to address in EP portal ,page error showing at the bottom of the screen on browser details tab.
    it shows object expected at line 781
    no error when we saved for  india employe, actually we have different roles in portal
    emp service - ap,(apac region) emp service india etc
    so for emp service india role no error , when i opened emp service - ap we have diff I views under personal info iview we have address
    so please let me know how to rectify it

    iam HR functional consultant , dont much about EP technical side.
    Ah, sorry, couldn't know that
    I'll explain more detailed:
    1. Checking the several Netweaver JAVA Stacks of your components in portal should be the first step. You can do this by going to "http://<host>:<port>/sap/monitoring/ComponentInfo" on your Portal Server and taking a look at the Netweaver Stacks, they will usuall Start with "7.XX' SP XX". The components should all have the same stacklevel excluding Business Packages, XSS Java Components and Connectors. If you are unsure what do to, you should ask your portal guys to update the stacks.
    2. Check whether Business Packages Match with the XSS Java Components and whether the XSS Java Components match with the corresponding Stacks in Your Backend. You can do this using the maintenance optimizer and/or using this wiki which gives a nice overview explanation: https://wiki.sdn.sap.com/wiki/display/ERPHCM/HOWTOGETRIDOFSPSTACKMISMATCHISSUES
    3. Check whether there are any Browser Compatibility Issues (very unlikely..) at https://websmp204.sap-ag.de/pam.
    4. Post the entire log for the error you get. Do this by reproducing the error, then go to "http://<host>:<port>/nwa". From there navigate to "Monitoring", "Protocols and Traces". Select "Default Trace", search for your error, go into detailed View and copy the entire LOG to post it here.
    I hope this is helpful for you now , if you have questions regarding any of that, don't hesitate asking (but please be specific).
    regards, Lukas

Maybe you are looking for

  • Can't transfer contacts from ipod touch to ipad mini!!

    Hi My son has several contacts on his ipod touch (5th gen). I simply want to move these to the new ipod mini we've just bought him. I've followed all the articles on the Apple support pages but can't figure out how to do this. Synced old ipod via itu

  • 8.1 Pro Apps not working

    we have just bought two new dell xps 11 laptops with 8.1 Pro on them. when I am logged in using my Microsoft account all of the apps work but when I am logged onto the work domain all of the metro apps do not work and have a black cross on them and w

  • My Experiences re: Migrating SQL Server Database to Oracle

    I am using SQL Developer EA4 for thsi conversion, best attempt yet. I had numerous problems with this conversion. 1. The wizard asked me to specify the new Oracle database; instead it just ignored this information and created an Oracle database simil

  • _ymouse help

    I have created a simple website in flash and I have given it a Macosx dock style navigation bar at the bottom of the screen. The problem I am having is that I want the dock to stop working when the mouse is over the page itself (any where below y=600

  • Unix script output sql result to terminal

    Hi, I run the script below within a unix script. the query runs but only outputs the first line. I need the whole results output to the terminal.. please let me know if I am doing something wrong. thanks ORACLE_SID=orcl export ORACLE_SID SHELL=/bin/s