Portal internal information storage

Hi,
Please let me know where does all the internal information (such as iviews,roles,pages, user management information like all user names and passwords) in portal gets stored.
Regards,
Girish

Hi,
1. Are you looking to access the portal database (Schemas) using JSP.
You can do it in normal way. Before that you have to create your own schema.
Dont mess with Portal schema.
2. After building the jsp page you have to deploy that into the oc4j_portal component
then add your jsp into your portal page.
Regarding the DB connections you have to access as you access a normal database.
Regards,
Vijay.B

Similar Messages

  • What is statement has been closed, no further internal information availabl

    some times my search function get the following error, but ususally reflash the page, and the function work again )
    Apr 6, 2009 4:10:05 PM Deferment.showResult doPost
    SEVERE: null
    java.lang.NullPointerException
    at Deferment.showResult.doPost(showResult.java:92)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:710)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    at org.apache.catalina.servlets.InvokerServlet.serveRequest(InvokerServlet.java:402)
    JDBC error:org.apache.tomcat.dbcp.dbcp.DelegatingCallableStatement with address: "com.mysql.jdbc.JDBC4CallableStatement@6e10d8: statement has been closed, no further internal information available" is closed.
    java.sql.SQLException: org.apache.tomcat.dbcp.dbcp.DelegatingCallableStatement with address: "com.mysql.jdbc.JDBC4CallableStatement@6e10d8: statement has been closed, no further internal information available" is closed.
    at org.apache.tomcat.dbcp.dbcp.DelegatingStatement.checkOpen(DelegatingStatement.java:137)
    at org.apache.tomcat.dbcp.dbcp.DelegatingPreparedStatement.executeQuery(DelegatingPreparedStatement.java:91)
    at Deferment.showResult.getUnderResult(showResult.java:346)
    at Deferment.showResult.doPost(showResult.java:91)
    at org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProtocol.java:565)
    at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1509)
    at java.lang.Thread.run(Thread.java:619)

    Are you still storing Connection objects in fields? Quit doing that. Servlets are automatically multithreaded, and one call will overwrite another call's variables while the first call is still trying to use them. Servlets should rarely have any kinds of fields (except maybe static final constants.)
    The getConnection() method in reply 5 is still weird. A return statement inside finally is not a good thing to do; it behaves uncleanly when an exception occurs. And DeleteStudent() in reply 7 keeps getting new connections from the pool without returning them.
    Here is some boilerplate code (does not necessarily compile):
    class YourMeatAndPotatoesClass
        void whatever()
            Connection connection = null;
            PreparedStatement stmt = null;
            ResultSet res = null;
            try {
                String sql = "select ...";
                connection = SqlUtil.getConnection();
                stmt = connection.prepareStatement(sql);
                res = stmt.executeQuery();
                while (res.next()) {
            } finally {
                SqlUtil.close(connection, stmt, res);
    public class SqlUtil
        public Connection getConnection()
            throws SQLException
            return pool.getConnection();
        public static void close(Connection c, Statement stmt, ResultSet res)
            throws SQLException
            try {
                if (res != null)
                    res.close();
            } catch (SQLException e) {
                log.error(e, "error closing database result set");
                throw e;
            } finally {
                try {
                    if (stmt != null)
                        stmt.close();
                } catch (SQLException e) {
                    log.error(e, "error closing database statement");
                    throw e;
                } finally {
                    try {
                        if (c != null)
                            c.close(); // Maybe replace with "return to pool" call depending on your pool implementation
                    } catch (SQLException e) {
                        log.error(e, "error closing database connection");
                        throw e;
    }

  • Get enterprise portal user informations

    Hi all,
    is there a way to get some portal user informations during runtime in a visual composer application?
    For example: I want to display the user id in a form automatically.
    Thank you for your help!
    Kind regards, Patrick.

    Hai ,
    u have to get that abap side not from Vc side i think soo
    Regards ,
    venkat p

  • Information Storage PROBLEM with RAC

    I´m triing to install OCS information storage in RAC.
    I have 2 servers already configured to install RAC(if i start the installer of a 9i 9.2.0.1.0 it recognizes the nodes). I already instaled the cluster manager and it is running. But the ocs information storage installer does'nt recognize it.
    Could someone HELP me it is getting critical.
    Thanks
    Francisco

    What else do you need? The error message seems to be quite clear.
    Check the space left on the devices and possibly add more.
    Maybe, the increase of SGA before lead to the try of swapping - which failed due to no space left.

  • Hi , is it possible to upgrade the internal flash storage capacity of mac book air ?

    hi , is it possible to upgrade the internal flash storage capacity of mac book air ?

    Yes, it is , however its very costly, and you should consider storing static media files on an external HD.
    OWC sells SSD upgrades for your Air.

  • Samsung Continuum SCH-I400 No Internal Phone Storage

    I cannot download any apps and I have 0.00B availavle space under internal phone storage.  I did a factory reset with no help.  Any ideas?  Thanks

        Hi Bourgeois,
    A factory reset should erase everything allowing room for apps to be presented. Please verify the steps on http://bit.ly/xa6Y5v were completed.
    Thank you,
    MariaC_VZW
    Please follow us on Twitter @VZWSupport

  • Portal component information reporting incorrect version

    Dear all,
    Has anyone experienced that the portal content information (http://hostname:port/monitoring/ComponentInfo)is reporting incorrect information? We have installed XSS 603 components and the summary part does not reflect that , but the details does.
    Its also not reporting SAPPCUI_GP in the software component part. Has anyone seen this and whats the fix?
    Thanks!
    Neeta

    HI Shanti,
    I followed the intructions in note # 910073 and all worked fine. However, the version information is still not reported correctly. component information is reporting ESS600 and we have ESS603 installed & no PCUI component is reported but the details show that its deployed.?
    Does the portal need to be restarted after the change in note 910073?
    Regards, Neeta

  • Portal internal workflow - don't have Workflow Settings menu item

    Hi All,
    I am a new to webcenter portal and got a problem when trying to configure internal workflow.
    According to the oracle document, "http://docs.oracle.com/cd/E29542_01/doc.1111/e27603/cont_workflow.htm#WCPAA11225"
    it should have an "Workflow Settings" menu item in the folder details page.
    But my webcenter portal don't have it.
    attached is my screenshot.
    Any comments, suggestion or information are welcome.
    thanks
    Bright

    I've got an exception from UCM log. but I can't reproduce it anymore
    <Jan 8, 2015 3:29:07 PM GMT-08:00> <Error> <oracle.ucm.idccs> <UCM-CS-060003> <Event generated by user 'weblogic' at host 'CIS'.>
    <Jan 8, 2015 3:29:07 PM GMT-08:00> <Error> <oracle.ucm.idccs> <UCM-CS-000001> <general exception
    intradoc.common.ServiceException: !csWfRetrieveInfoError,app1WCSingleApprover!csWfDoesntExist,app1WCSingleApprover
            at intradoc.server.ServiceRequestImplementor.buildServiceException(ServiceRequestImplementor.java:2173)
            at intradoc.server.Service.buildServiceException(Service.java:2402)
            at intradoc.server.Service.createServiceExceptionEx(Service.java:2396)
            at intradoc.server.ServiceRequestImplementor.testAndCreateServiceException(ServiceRequestImplementor.java:2068)
            at intradoc.server.Service.testAndCreateServiceException(Service.java:2361)
            at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1728)
            at intradoc.server.Service.doAction(Service.java:564)
            at intradoc.server.ServiceRequestImplementor.doActions(ServiceRequestImplementor.java:1483)
            at intradoc.server.Service.doActions(Service.java:559)
            at intradoc.server.ServiceRequestImplementor.executeActions(ServiceRequestImplementor.java:1415)
            at intradoc.server.Service.executeActions(Service.java:545)
            at intradoc.server.ServiceRequestImplementor.doRequest(ServiceRequestImplementor.java:751)
            at intradoc.server.Service.doRequest(Service.java:1974)
            at intradoc.server.ServiceManager.processCommand(ServiceManager.java:486)
            at intradoc.server.IdcServerThread.processRequest(IdcServerThread.java:265)
            at intradoc.server.IdcServerThread.run(IdcServerThread.java:160)
            at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
            at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
            at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

  • BEx Query output in Enterprise Portal using "Information Broadcasting"

    Dear Experts,
    I am having BEx Query output in Enterprise Portal
    EP 6.0 and BW 3.5 version
    I am trying to send email attachments from
    Portal Query directly
    using "Information Broadcasting"  tab button
    ==================================
    Email gets triggered Okay,
    but Portal URL link is not showing correctly
    Here is an Online Link to the BI Document: http://mtv01spbw01.businesssap.com:8100/sap/bw/BEx?CMD=LDOC&INFOCUBE=0CRM_OPPH&QUERY=0CRM_C04_TESTQ001
    <b>The URL above is coming wrongly,
    I want it to point to
    http://mtv01spbw01.businesstree.com:8000/sap/bw/BEx?CMD=LDOC&INFOCUBE=0CRM_OPPH&QUERY=0CRM_C04_TESTQ001</b>
    Please help me to correct this error / wrong configuration
    any help links would also be appreciated
    Thanks,
    Aby Jacob

    Hi Jacob,
    Here, p/s refer to this links.
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/ca6de811-0c01-0010-43b2-c64584eef943">https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/ca6de811-0c01-0010-43b2-c64584eef943</a>
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/84/30984076b84063e10000000a1550b0/frameset.htm">http://help.sap.com/saphelp_nw04/helpdata/en/84/30984076b84063e10000000a1550b0/frameset.htm</a>
    <a href="http://help.sap.com/saphelp_nw04s/helpdata/en/84/30984076b84063e10000000a1550b0/frameset.htm">http://help.sap.com/saphelp_nw04s/helpdata/en/84/30984076b84063e10000000a1550b0/frameset.htm</a>
    OSS Notes : 760775
    Hopefully it can helps you a lot.
    Many thanks.
    Regards,
    Niel.
    (Many thanks for any points you choose to assign).

  • How to publish the BI content in portal using Information Boardcasting ?

    Hi Gurus,
    I know we can broadcost the BW information using (System admin->System Config->KM Config->Content Management-->Repository Manager)
    BI document repsitory
    BI Meta data repository
    why we need two (Document and Meta data repostory) what is the use of it?
    Now my question can someone please tell me the steps to achieve this?and also tell me about the advantage and dis-advantage of doing this?
    Thanks in Advance,
    Dharani

    Hi Dharani,
    see following links for more information
    [https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b0a5216a-349c-2a10-9baf-9d4797349f6a]
    [http://help.sap.com/saphelp_nw04s/helpdata/en/38/3f59403db70272e10000000a155106/frameset.htm]
    [http://help.sap.com/saphelp_nw04s/helpdata/en/85/905640a2f78437e10000000a155106/frameset.htm]
    Best regards,
    Denis

  • Get current logged portal  user information

    Hi,
    I need to get information about current user logged to the portal from a J2EE application. I developed an Enterprise application project with a java servlet and I integrated it into the portal as an URL iView.
    This in the code of servlet:
    import com.sap.security.api.*;
    IUserFactory userFactory= UMFactory.getUserFactory();
         IUser user= UMFactory.getAuthenticator().getLoggedInUser();
         out.println(user.getUniqueID().toString());
         out.println(user.getDisplayName().toString());
         out.println(user.getName().toString());
         out.println(user.getUniqueName().toString());
    When I run my application I have this output:
    USER.PRIVATE_DATASOURCE.un:Guest Guest, Guest Guest
    But I access with another user, it's not Guest.
    How can I solve this problem???THANKS

    Hi,
    Please try checking with following code
    ISearchResult rst = UMFactory.getUserFactory().getUniqueIDs();
                      IUserFactory usf = UMFactory.getUserFactory();
                      IUser iuser = null;
                      IUserListElement userElement = null;
                      int i = 0;
                      while (rst.hasNext()) {
                      iuser =  UMFactory.getUserFactory().getUser(rst.next().toString());
                      String email = iuser.getEmail();
                       String fname = iuser.getFirstName();
                        String lname = iuser.getLastName();
    let me know if there are any issues.
    regards
    Anil

  • Portal Internal Error for Talent Development Application

    Dear Friends,
    We have the following setup:
    Talent Development Specialist(TDS) Application on EP 7.0.
    When we click on any BSP iView associated with TDS, we receive a pop up containing internal error. the properties of the pop up is as follows:
    http://phlnyt13.gb.dpost.com:8060/sap(bD1lbiZjPTI5OSZkPW1pbiZwPTMwMTU3JnY9NyUyZTAwJmk9MSZzPVNJRCUzYUFOT04lM2FnYmFoZXYxM19TSDFfNjAlM2FrUG5ya1JtZ2phOTJsQ01ndWI3WUZEc3BYM1BRWlppaFktbXh0VUtwLUFUVA==)/bc/bsp/sap/hrrcf_start_int/application.do?sap-tray-type=PLAIN&sap-tray-padding=X&sap_ep_version=7%2e00%2e200711172137&sap_ep_baseurl=http%3a%2f%2fphlnyt13%2egb%2edpost%2ecom%3a56000%2firj%2fportal&rcfLogAppl=APPROVALS_SUCC_PLNG
    QUERY:
    1) How do we check if the BSP application is working in it's native state. i.e, in backend?.
    we have activated the all services under the /bc/bsp/sap
    2) We have checked the Application Table T77RCF_LOG_APPL having an entry for APPROVALS_SUCC_PLNG.
    Thanks in Advance, Suresh

    Hi Suresh!
    As promised here are my thoughts:
    ad 1: This is a very good idea in order to locate the the cause of the problem: Portal or BSP.
    You can test the BSP application in the backend using 2 methods:
    In SICF right-click on Service and choos test service.
    If this should not work ...
    - go to transaction SE80,
    - select BSP application hrrcf_start_int in namespace SAP
    - navigate to controller application.do
    - right-click on controller
    - choose "test"
    If this works (after entering your backend credentials) then create a BSP iView in the portal starting one of the SAP test BSPs (e.g. IT00) and tell us the results ...
    ad 2: Did you find any entries in the application log or was it empty?
    Could you please tell us the detailed content of the error popup? Is there a short dump in the SAP backend (transaction ST22) or an entry in the system log (transaction SM21) or an entry in the ICM trace (transaction SMICM -> GoTo -> Trace File -> Display).
    Regards,
    Volker

  • How to access internal photo storage of iPad using Mac

    Hi,
    Usually I will import photos including RAW and jpeg from my camera to iPad, and import photos from iPad to PC later. After finishing importing photos from iPad to PC, I will delete all RAW files from iPAD.
    It is OK when I connect my iPAD to a Windows based PC, I can find out my iPAD in 'My Computer' and access the internal storage.
    But I cannot find out a way to the same on my MacBook Pro.
    Can anybody give me a hint how to delete RAW files in iPAD? Thanks.

    Phone Disk (free until 1 December http://www.macroplant.com/phonedisk/ ) does what you want; so does PhoneView (http://ecamm.com/mac/phoneview/ )

  • Query related Internal buffer storage in PXi 7965R DMA FIFO ?

    Hello,
    I am establishing a communcation from HOST to FPGA by using DMA-FIFO. Maximum size for this FIFO is 1024. Now from the host side, I am writing a data of 1-D array (Unsinged 64bit integer) into the fifo, and from FPGA side, this data is being read from the fifo. Now as i  start the simluation, the default value of "Empty elements remaining" shows "10,000". further as the elements inside the fifo starts getting to read (at FPGA side), the "Number of elements to read" increases and when it reaches the value of 1024, then the "empty elements remaining" starts decreasing. The behaviour is described in the image (atteached).
    while observing this behaviour of the FIFO, i discovered that this DMA FIFO, (having max. storage elements of 1024) also has an (additional) internal storage space of 10,000 elements. I might call it as internal buffer of this FIFO. now my question here is that, where are these (10,000 elements) values stored ?. as it is from HOST side, so is it the CPU storage ? or what ?
    Thanks
    Anum Sheraz

    ok so I got my answer, its actually the default depth of the DMA FIFO. 
    Maximum size of this FIFO is set to be 1023, which is coerced to a value of 1029. I did a mistake in the picture (posted in last msg), Here is the correct one; 
    I've corrected the some of the figures. by noticing its behaviour, when the number of elements to read reaches 1027, then the remaining elementes starts decreasing from value of 10,000. and it reaches to max value of 11027 when remaining elements=0. I am confused with this figure "1027" !!! . why is this 1027 ? 
    as I have assigned maximum size of this FIFO to be 1023, which is coerced to a value of 1029, so Shouldn't it be 1029 ?.  

  • While trying to create a Quest.template in eRec portal"Internal error occur

    I was trying to create a questionnaire and define scales for an application wizard in eRec portal, while trying to do I am getting "An internal error occured.Please try again.
    Regards,
    Selva

    HI,
    Sorted the issue.The questionnaire and scales were defined and then should have followed the steps:
    Set up Categories
    Update Categories &
    Transport categories.
    The above 3 should have been followed to other system in which the TR has been made.Even though when you execute TR categories you will not get the request to save but follow the steps. If these steps are followed the error will not occur.
    While transporting any configuration  changes wrt eRec.plz.check the above is followed and captured in the  TR.
    Regards,
    Selva

Maybe you are looking for