JSP is not getting displayed in add portlet repositery

Hi,
I have registered two servlet in provider.xml and I was able to
view that servlet as a portlet in add portlet repositery.
After that I wanted to add one more JSP as portlet under same
provider. So I have kept JSP in same directory where servlet is
kept. I have added JSP as portlet in Provider(i.e. provider.xml)
and given appPath and appRoot for that JSP. Whenever I am trying
to view my provider by giving following URL
http://servername/servlet/myprovider
I am getting message -
Congratulations! You have successfully reached your Provider's
Test Page.
in same page I am able to view my all portlets. in that list I
am able to view my JSP as a portlet.
Now I want to add JSP portlet in my page at that time that JSP
portlet is not getting displayed in add portlet repositery.
Can anybody tell why JSP is not getting displayed in portlet
repositery ? What should I do to get it displayed in portlet
repositery ?
Thanks in advance.
Biren

You have to refresh the Provider. They are a couple of ways to
do it.
1. Take a look at the release notes for PDK-Java.
http://portalstudio.oracle.com/servlet/page?_pageid=468&_dad=ops&
_schema=OPSTUDIO
It mentions and auto reload feature that will refresh the
provider on the PDK-Java side when you make changes to the
provider.xml. When you add portlet, you simply refresh the
repository in portal and add the new portlet to a page.
2. If you do not have the auto_reload parameter, you simply need
to refresh manually.
a. After updating the provider.xml, restart the HttpServer where
your PDK-Java Provider is located.
b. Refresh the Portlet Repository
Both these do the same thing, and should solve your problem
Sue

Similar Messages

  • JSP is not getting displayed.

    Hi experts,
    I am developing and application , in which the user select a entry from select box and clicks on the button. This should open the 2nd JSP but surprisingly it is not doing that. It just the let 1st JSP on and blinks.
    The switching between JSPs is done using a state variable, whose value changes in the method used for OnClick of button.
    Can you please tell me why 2nd JSP is not getting called? I am very new to Portal development.
    Regards,

    Hi,
    Did u write a method for onClick event in component(java file).if u write it in java file & set "state=1" so when u click a button it will call seconn jap file...
    Regards,
    Senthil K.

  • Portal Forms are not getting displayed in the new oracle environment.

    Hi All,
    The Forms in our Portal applications are not getting displayed after we have done the upgradation of Database in Unix from 8i to 9i. The reports are working fine.The forms that were added as portlets are not getting displayed and other forms that are called thorough links returns error when it is run. The Newly created forms are also not running but returns error. The Portal Version is 3.0.9.8.3. Pls help.
    Regards,
    Tom

    Hi ,
    Based on the requirement , check whether the customer contact has been done carried out for the invoice  , then possibility it must have gone out of the worklist , chekc whether the Invoice posted in the AR has been transferred to FSCM collection .

  • A keyfigure is not getting displayed in the DSO and query

    hi friends,
    i have newly developed a DSO with 11 keyfigures and with some 10 characteristics. i created DTP , transformations etc., and i loaded data into it and activated it succesfully.
    now when i select  display data of this DSO one of my keygure is not getting displayed.
    even tht same keyfigure is not appearing in the query  too.
    but when  i check the active table of this dso in SE11 , tht keyfigure is displayed with values.
    could anyone help through this issue.

    Hi
    Even I faced such an issue earlier. I could resolve it simply by readjusting the DSO i.e. to delete the keyfigure and add it in the structure once again, before this you have to delete the data in the DSO. Also, if you have a multiprovider on the DSO make sure that the keyfigure concerned is identified.
    Let us know if this works for you. Thanks.

  • Object form is not getting displayed for few users

    Guys
    I have successfully implemented approval and provisining flows for a new resource in OIM 9.1.X. This resource has an object and a process form.
    It is working fine in production for few users. But for few users, the object form is not getting displayed to give the input while requesting this resource.
    Please let me know what might be the issue.

    Hi,
    Could you please check whether you have added ALL_USERS group as a resource administrator group in resource object definition?
    Add AL_USERS group as a resource administrators with the read access.
    We had similar issue and managed to resolved.
    Thanks,
    Pallavi Chaudhari

  • WRITE STATEMENT IS GETTING EXECUTED BUT NOT GETTING DISPLAYED

    HII All,
    i hv created a selection screen with push button. Now when i m clicking that pushbutton, output is not getting displayed..when i debug program ,control enters in switch case and also executes write statement but write statement is not getting displayed.. below is the code ..
    SELECTION-SCREEN BEGIN OF BLOCK INPUT WITH FRAME TITLE TEXT-001.
      SELECTION-SCREEN PUSHBUTTON 10(20) TEXT-002  USER-COMMAND FIR.
      SELECTION-SCREEN PUSHBUTTON 35(20) TEXT-003  USER-COMMAND SECOND.
    SELECTION-SCREEN END OF BLOCK INPUT.
           WA-EMP_NO = 123.      
            WA-EMP_CO = 'A'.
            WA-EMP_N = 'APOORV'.
            APPEND WA TO IT_TAB.
    AT SELECTION-SCREEN.
    CASE SY-UCOMM.
    WHEN 'FIR'.
    PERFORM SUB1.
    WHEN 'SECOND'.
            APPEND LINES OF IT_TAB FROM 2 TO 3 TO IT_TAB1.
            WRITE:/ 'SECOND INTERNAL TABLE CONTENTS'.
            LOOP AT IT_TAB1 INTO WA1.
            WRITE:/15 SY-TABIX, WA1-EMP_NO NO-ZERO, WA1-EMP_CO, WA1-EMP_N.
            ENDLOOP.
    ENDCASE.
    FORM SUB1.
    LOOP AT IT_TAB INTO WA.
              WRITE:/ SY-TABIX, WA-EMP_NO NO-ZERO, WA-EMP_CO, WA-EMP_N.
    ENDLOOP.
    ENDFORM.
    Plz help me..
    Edited by: Julius Bussche on Jan 29, 2009 1:40 PM
    Code tags added and please dont use Caps-Lock.

    HI,
    SELECTION-SCREEN BEGIN OF BLOCK INPUT WITH FRAME TITLE TEXT-001.
    SELECTION-SCREEN PUSHBUTTON 10(20) TEXT-002 USER-COMMAND FIR.
    SELECTION-SCREEN PUSHBUTTON 35(20) TEXT-003 USER-COMMAND SECOND.
    SELECTION-SCREEN END OF BLOCK INPUT.
    WA-EMP_NO = 123.
    WA-EMP_CO = 'A'.
    WA-EMP_N = 'APOORV'.
    APPEND WA TO IT_TAB.
    * AT SELECTION-SCREEN.                 "Comment this
    START-OF_SELECTION.                     " Add this
    CASE SY-UCOMM.
    WHEN 'FIR'.
    PERFORM SUB1.
    WHEN 'SECOND'.
    APPEND LINES OF IT_TAB FROM 2 TO 3 TO IT_TAB1.
    WRITE:/ 'SECOND INTERNAL TABLE CONTENTS'.
    LOOP AT IT_TAB1 INTO WA1.
    WRITE:/15 SY-TABIX, WA1-EMP_NO NO-ZERO, WA1-EMP_CO, WA1-EMP_N.
    ENDLOOP.
    ENDCASE.
    FORM SUB1.
    LOOP AT IT_TAB INTO WA.
    WRITE:/ SY-TABIX, WA-EMP_NO NO-ZERO, WA-EMP_CO, WA-EMP_N.
    ENDLOOP.
    ENDFORM.

  • SAP Fields not getting displayed on the BDT screen

    Hello Gurus,
    I am trying to add 2 custom fields on to the claims management screen. The following steps were followed to add 2 fields on to the claims Management subclaim screen.
    1. Create a field group Zxxxxx1 with the two fields attached to it as input enabled.
    2. Create a View Zxxxxx2 attach the created field group Zxxxxx1, then create a subscreen screen add two fields to the screen and make them as input enabled. Then attached the subscreen to the View.
    3. Create a PBO and PAI function modules for the screen and attach it to the View Zxxxxx2.
    4. Create a section Zxxxxx3 and attach the view Zxxxxx2 to the section.
    5. Attach the section to the Subclaim Overview Screen.
    6. Inspite of doing all the above steps the screen is not getting displayed or the Function module PAI / PBO / FMOD is not being called.
    Since I am attaching the section to a standard screen sequence I am not doing any modification to the screen sequence and screen sequence catagory.
    Kindly let me know the steps I am missing in the configration of 2 new fields via BDT.
    Reagrds,
    Shiva

    Hi Shiva,
    did you create your own Z BDT application? Is it set to be active?
    I have no access to any claims management system: Does the claim object support divisibility? If so, have you assigned the correct data set in your view?
    Also, if you have your own Z BDT application and the claim object does support divisibility, did you assign the Z application to the divisibility view?
    Regards,
    Frank
    Message was edited by: Frank Vieregge

  • Entitlements not getting displayed in Entitlements Tab - OIM11gR2

    Hi Experts,
    I am trying to provision entitlements to users by requesting entitlements. When i successfully provision entitlements, the entitlement is getting displayed in accounts tab, child form. But the same is not getting displayed in entitlements tab of the user.
    Please kindly guide me
    regards

    Verify below steps:
    1. Marking Entitlement Attributes on Child Process Forms
    http://docs.oracle.com/cd/E27559_01/admin.1112/e27149/appinstance.htm#CHDFFEEE
    If you have already marked it then fine. else create new version of form and add property Entitlement=true. activate this . make sure the parent form having the latest child form. goto parentform->child tab and verify the child form version.if not create new version for the parent form and activate this version.Automatically it will pick the latest child form
    2. Run Below scheduled task
    a. Entitlement List scheduled task.
    b. Entitlement Assignments scheduled task

  • Purchase order no not getting displayed in FBL3N for doucment type RE

    Dear all,
    We have done a settings in FBL3N t.code. We have added BSEG-EBELN in the special fields and saved the layout. The purpose is to make the purchase order number to display when we are executing line item display for GR/IR clearing and Cenvat clearing gl account. Purchase order number is correctly getting displayed in Gr/ir clearing account. But in cenvat clearing gl account the transactions that are related to doucment type SA(that is J1IEX transaction), the purchase order number is getting displayed, but in the transactions that are related to document type RE(MIRO transactions), the purcahse order number is not getting displayed.
    We have checked the BSEG table for the gl account. The purchase order number is not getting updated for the MIRO transactions in the cenvat clearing gl account.
    Please suggest us so that the above issue can be solved.
    Thanks & Regards,
    Anand

    Hi,
    Could you please add field BSEG-EBELN as a special field in FBL3N (from menu path Settings -> Special fields). Then, select the Purchase order field again from "Change Layout" (Ctrl+F8). Now this field is available for display variants, it has the technical name 1-U_EBELN and the description 'Purchase Document'. The other field has the same description but as technical name
    '1-EBELN'. When you create a display variant be aware that you select 1-U_EBELN and not 1-EBELN.
    Please also refer to note 215798.
    Regards
    Ravinagh Boni

  • Screen fields not getting displayed after Line 16

    Hi All,
    There is a screen exit created in IW51, now the new requirment is to add 3 more fields.  I added the fields below the exiting fields, in line number 15 , 16 &17. After executing the Tcode I could find that the field created in line 17 is not getting displayed in runtime. I have increased the screen length. The fields if moved to line numbers below 16 then they are getting displayed. Can anyone help me to find why it is not getting displayed after line 16.

    Hi,
    Can you give me the Enhancement name?
    I searched for the exits using package , but i did not find any screen exists for that IW51 Tcode?

  • Google Charts are not getting displayed in Firefox ver 4.0.1

    Google Visualisation charts are not getting displayed in Fire Fox latest version. Please have a look at the below url.

    Thanks for the link. That one doesn't use the Flash player, so the problem must be somewhere else.
    If you use NoScript or other security add-ons, make sure google.com or code.google.com is allowed to run scripts.
    Could you try disabling graphics acceleration and see whether that makes any difference?
    orange Firefox button ''or'' Tools menu > Options > Advanced
    On the General mini-tab, uncheck the box for "Use hardware acceleration when available"
    This will take effect after you restart Firefox.

  • EP Login Page is not getting displayed

    HI
    I modified the
    ume.login.guest_user.uniqueids  to add some of the annonymous users to the portal using  Direct edit of the UM configuration.
    I have also changed the index.html file to redirect the anonymopus logon page by changeing the
    <drive>:\usr\sap\<SID>\<instance_number>\j2ee\cluster\serverX\apps\sap.com\irj\servlet_jsp\irj\root\index.html
    <body onload="location.replace('portal' + document.location.search)"></body>
    Change this line to the following:
    <body onload="location.replace('servlet/prt/portal/prtroot/com.sap.portal.navigation.portallauncher.anonymous' +  cument.location.search)"></body>
    Then I started J2ee server.
    Since then My logon page is not getting displayed.
    In the server console I am getting this error list
    Element 671469607 joined.    Wed Nov 16 17:23:25 IST 2005
    Nov 16, 2005 5:31:21 PM # Client_Thread_3      Fatal           Cannot find user
    when uniqueID is null!
    com.sap.security.api.UMRuntimeException: Cannot find user when uniqueID is null!
            at com.sap.security.core.imp.AbstractPrincipalSet.isUserMember(AbstractP
    rincipalSet.java:388)
            at com.sap.security.core.imp.RoleWrapper.isUserMember(RoleWrapper.java:5
    2)
            at com.sap.security.core.acl.imp.wcm.jdbc.JDBCAcl.containsPrincipal(JDBC
    Acl.java:769)
            at com.sap.security.core.acl.imp.wcm.jdbc.JDBCAcl.basicCheckPermission(J
    DBCAcl.java:704)
            at com.sap.security.core.acl.imp.wcm.jdbc.JDBCAcl.checkPermission(JDBCAc
    l.java:510)
            at com.sap.security.core.acl.imp.Acl.isAllowed(Acl.java:294)
            at com.sapportals.portal.acl.Acl.isAllowed(Acl.java:343)
            at com.sapportals.portal.pcd.gl.Acl.isAllowed(Acl.java:278)
            at com.sapportals.portal.pcd.gl.AclHandle.isAllowedInt(AclHandle.java:42
    3)
            at com.sapportals.portal.pcd.gl.AclHandle.isAllowed(AclHandle.java:407)
            at com.sapportals.portal.pcd.gl.PcdPersObject.checkPermission(PcdPersObj
    ect.java:785)
            at com.sapportals.portal.pcd.gl.PcdPersObject.hasPermission(PcdPersObjec
    t.java:765)
            at com.sapportals.portal.pcd.gl.PcdFilterContext.filterLookup(PcdFilterC
    ontext.java:400)
            at com.sapportals.portal.pcd.gl.PcdProxyContext.basicContextLookup(PcdPr
    oxyContext.java:1083)
            at com.sapportals.portal.pcd.gl.PcdProxyContext.proxyLookupLink(PcdProxy
    Context.java:1170)
            at com.sapportals.portal.pcd.gl.PcdProxyContext.proxyLookup(PcdProxyCont
    ext.java:1132)
            at com.sapportals.portal.pcd.gl.PcdProxyContext.lookup(PcdProxyContext.j
    ava:926)
            at com.sapportals.portal.pcd.gl.PcdGlContext.lookup(PcdGlContext.java:79
            at com.sapportals.portal.pcd.gl.PcdProxyContext.lookup(PcdProxyContext.j
    ava:919)
            at com.sapportals.portal.application.applicationrepository.ParContextFac
    tory.getInitialContext(ParContextFactory.java:18)
            at com.sapportals.portal.prt.jndisupport.NamingManager.getInitialContext
    (NamingManager.java:52)
            at com.sapportals.portal.prt.jndisupport.InitialContext.getDefaultInitCt
    x(InitialContext.java:39)
            at javax.naming.InitialContext.init(InitialContext.java:217)
            at javax.naming.InitialContext.<init>(InitialContext.java:193)
            at com.sapportals.portal.prt.jndisupport.InitialContext.<init>(InitialCo
    ntext.java:24)
            at com.sapportals.portal.prt.deployment.DeploymentManager.getEndUserInit
    ialContext(DeploymentManager.java:1745)
            at com.sapportals.portal.prt.deployment.DeploymentManager.getPropertyCon
    tentProvider(DeploymentManager.java:1670)
            at com.sapportals.portal.prt.core.broker.PortalComponentContextItem.refr
    esh(PortalComponentContextItem.java:193)
            at com.sapportals.portal.prt.core.broker.PortalComponentContextItem.getC
    ontext(PortalComponentContextItem.java:287)
            at com.sapportals.portal.prt.component.PortalComponentRequest.getCompone
    ntContext(PortalComponentRequest.java:389)
            at com.sapportals.portal.prt.connection.PortalRequest.getRootContext(Por
    talRequest.java:423)
            at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(P
    ortalRequestManager.java:535)
            at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(
    ServletConnection.java:208)
            at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatc
    her.java:532)
            at java.security.AccessController.doPrivileged(Native Method)
            at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.ja
    va:415)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at com.inqmy.services.servlets_jsp.server.InvokerServlet.service(Invoker
    Servlet.java:126)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at com.inqmy.services.servlets_jsp.server.RunServlet.runSerlvet(RunServl
    et.java:149)
            at com.inqmy.services.servlets_jsp.server.ServletsAndJspImpl.startServle
    t(ServletsAndJspImpl.java:833)
            at com.inqmy.services.httpserver.server.RequestAnalizer.checkFilename(Re
    questAnalizer.java:665)
            at com.inqmy.services.httpserver.server.RequestAnalizer.handle(RequestAn
    alizer.java:312)
            at com.inqmy.services.httpserver.server.Response.handle(Response.java:17
    3)
            at com.inqmy.services.httpserver.server.HttpServerFrame.request(HttpServ
    erFrame.java:1229)
            at com.inqmy.core.service.context.container.session.ApplicationSessionMe
    ssageListener.process(ApplicationSessionMessageListener.java:36)
            at com.inqmy.core.cluster.impl5.ParserRunner.run(ParserRunner.java:55)
            at com.inqmy.core.thread.impl0.ActionObject.run(ActionObject.java:46)
            at java.security.AccessController.doPrivileged(Native Method)
            at com.inqmy.core.thread.impl0.SingleThread.run(SingleThread.java:148)
    Nested Exception:
    com.sap.security.api.NoSuchUserException: Cannot find user when uniqueID is null
            at com.sap.security.core.imp.UserFactory.getUser(UserFactory.java:95)
            at com.sap.security.core.imp.AbstractPrincipalSet.isUserMember(AbstractP
    rincipalSet.java:376)
            at com.sap.security.core.imp.RoleWrapper.isUserMember(RoleWrapper.java:5
    2)
            at com.sap.security.core.acl.imp.wcm.jdbc.JDBCAcl.containsPrincipal(JDBC
    Acl.java:769)
            at com.sap.security.core.acl.imp.wcm.jdbc.JDBCAcl.basicCheckPermission(J
    DBCAcl.java:704)
            at com.sap.security.core.acl.imp.wcm.jdbc.JDBCAcl.checkPermission(JDBCAc
    l.java:510)
            at com.sap.security.core.acl.imp.Acl.isAllowed(Acl.java:294)
            at com.sapportals.portal.acl.Acl.isAllowed(Acl.java:343)
            at com.sapportals.portal.pcd.gl.Acl.isAllowed(Acl.java:278)
            at com.sapportals.portal.pcd.gl.AclHandle.isAllowedInt(AclHandle.java:42
    3)
            at com.sapportals.portal.pcd.gl.AclHandle.isAllowed(AclHandle.java:407)
            at com.sapportals.portal.pcd.gl.PcdPersObject.checkPermission(PcdPersObj
    ect.java:785)
            at com.sapportals.portal.pcd.gl.PcdPersObject.hasPermission(PcdPersObjec
    t.java:765)
            at com.sapportals.portal.pcd.gl.PcdFilterContext.filterLookup(PcdFilterC
    ontext.java:400)
            at com.sapportals.portal.pcd.gl.PcdProxyContext.basicContextLookup(PcdPr
    oxyContext.java:1083)
            at com.sapportals.portal.pcd.gl.PcdProxyContext.proxyLookupLink(PcdProxy
    Context.java:1170)
            at com.sapportals.portal.pcd.gl.PcdProxyContext.proxyLookup(PcdProxyCont
    ext.java:1132)
            at com.sapportals.portal.pcd.gl.PcdProxyContext.lookup(PcdProxyContext.j
    ava:926)
            at com.sapportals.portal.pcd.gl.PcdGlContext.lookup(PcdGlContext.java:79
            at com.sapportals.portal.pcd.gl.PcdProxyContext.lookup(PcdProxyContext.j
    ava:919)
            at com.sapportals.portal.application.applicationrepository.ParContextFac
    tory.getInitialContext(ParContextFactory.java:18)
            at com.sapportals.portal.prt.jndisupport.NamingManager.getInitialContext
    (NamingManager.java:52)
            at com.sapportals.portal.prt.jndisupport.InitialContext.getDefaultInitCt
    x(InitialContext.java:39)
            at javax.naming.InitialContext.init(InitialContext.java:217)
            at javax.naming.InitialContext.<init>(InitialContext.java:193)
            at com.sapportals.portal.prt.jndisupport.InitialContext.<init>(InitialCo
    ntext.java:24)
            at com.sapportals.portal.prt.deployment.DeploymentManager.getEndUserInit
    ialContext(DeploymentManager.java:1745)
            at com.sapportals.portal.prt.deployment.DeploymentManager.getPropertyCon
    tentProvider(DeploymentManager.java:1670)
            at com.sapportals.portal.prt.core.broker.PortalComponentContextItem.refr
    esh(PortalComponentContextItem.java:193)
            at com.sapportals.portal.prt.core.broker.PortalComponentContextItem.getC
    ontext(PortalComponentContextItem.java:287)
            at com.sapportals.portal.prt.component.PortalComponentRequest.getCompone
    ntContext(PortalComponentRequest.java:389)
            at com.sapportals.portal.prt.connection.PortalRequest.getRootContext(Por
    talRequest.java:423)
            at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(P
    ortalRequestManager.java:535)
            at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(
    ServletConnection.java:208)
            at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatc
    her.java:532)
            at java.security.AccessController.doPrivileged(Native Method)
            at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.ja
    va:415)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at com.inqmy.services.servlets_jsp.server.InvokerServlet.service(Invoker
    Servlet.java:126)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at com.inqmy.services.servlets_jsp.server.RunServlet.runSerlvet(RunServl
    et.java:149)
            at com.inqmy.services.servlets_jsp.server.ServletsAndJspImpl.startServle
    t(ServletsAndJspImpl.java:833)
            at com.inqmy.services.httpserver.server.RequestAnalizer.checkFilename(Re
    questAnalizer.java:665)
            at com.inqmy.services.httpserver.server.RequestAnalizer.handle(RequestAn
    alizer.java:312)
            at com.inqmy.services.httpserver.server.Response.handle(Response.java:17
    3)
            at com.inqmy.services.httpserver.server.HttpServerFrame.request(HttpServ
    erFrame.java:1229)
            at com.inqmy.core.service.context.container.session.ApplicationSessionMe
    ssageListener.process(ApplicationSessionMessageListener.java:36)
            at com.inqmy.core.cluster.impl5.ParserRunner.run(ParserRunner.java:55)
            at com.inqmy.core.thread.impl0.ActionObject.run(ActionObject.java:46)
            at java.security.AccessController.doPrivileged(Native Method)
            at com.inqmy.core.thread.impl0.SingleThread.run(SingleThread.java:148)
    Nov 16, 2005 5:31:21 PM # Client_Thread_3      Fatal           Cannot find user
    when uniqueID is null!
    com.sap.security.api.UMRuntimeException: Cannot find user when uniqueID is null!
            at com.sap.security.core.imp.AbstractPrincipalSet.isUserMember(AbstractP
    rincipalSet.java:388)
            at com.sap.security.core.imp.RoleWrapper.isUserMember(RoleWrapper.java:5
    2)
            at com.sap.security.core.acl.imp.wcm.jdbc.JDBCAcl.containsPrincipal(JDBC
    Acl.java:769)
            at com.sap.security.core.acl.imp.wcm.jdbc.JDBCAcl.basicCheckPermission(J
    DBCAcl.java:704)
            at com.sap.security.core.acl.imp.wcm.jdbc.JDBCAcl.checkPermission(JDBCAc
    l.java:510)
            at com.sap.security.core.acl.imp.Acl.isAllowed(Acl.java:294)
            at com.sapportals.portal.acl.Acl.isAllowed(Acl.java:343)
            at com.sapportals.portal.pcd.gl.Acl.isAllowed(Acl.java:278)
            at com.sapportals.portal.pcd.gl.AclHandle.isAllowedInt(AclHandle.java:42
    3)
            at com.sapportals.portal.pcd.gl.AclHandle.isAllowed(AclHandle.java:407)
            at com.sapportals.portal.pcd.gl.PcdPersObject.checkPermission(PcdPersObj
    ect.java:785)
            at com.sapportals.portal.pcd.gl.PcdPersObject.hasPermission(PcdPersObjec
    t.java:765)
            at com.sapportals.portal.pcd.gl.PcdFilterContext.filterLookup(PcdFilterC
    ontext.java:400)
            at com.sapportals.portal.pcd.gl.PcdProxyContext.basicContextLookup(PcdPr
    oxyContext.java:1083)
            at com.sapportals.portal.pcd.gl.PcdProxyContext.proxyLookupLink(PcdProxy
    Context.java:1170)
            at com.sapportals.portal.pcd.gl.PcdProxyContext.proxyLookup(PcdProxyCont
    ext.java:1132)
            at com.sapportals.portal.pcd.gl.PcdProxyContext.lookup(PcdProxyContext.j
    ava:926)
            at com.sapportals.portal.pcd.gl.PcdGlContext.lookup(PcdGlContext.java:79
            at com.sapportals.portal.pcd.gl.PcdProxyContext.lookup(PcdProxyContext.j
    ava:919)
            at com.sapportals.portal.application.applicationrepository.ParContextFac
    tory.getInitialContext(ParContextFactory.java:18)
            at com.sapportals.portal.prt.jndisupport.NamingManager.getInitialContext
    (NamingManager.java:52)
            at com.sapportals.portal.prt.jndisupport.InitialContext.getDefaultInitCt
    x(InitialContext.java:39)
            at javax.naming.InitialContext.init(InitialContext.java:217)
            at javax.naming.InitialContext.<init>(InitialContext.java:193)
            at com.sapportals.portal.prt.jndisupport.InitialContext.<init>(InitialCo
    ntext.java:24)
            at com.sapportals.portal.prt.deployment.DeploymentManager.getEndUserInit
    ialContext(DeploymentManager.java:1745)
            at com.sapportals.portal.prt.deployment.DeploymentManager.getPropertyCon
    tentProvider(DeploymentManager.java:1670)
            at com.sapportals.portal.prt.core.broker.PortalComponentContextItem.refr
    esh(PortalComponentContextItem.java:193)
            at com.sapportals.portal.prt.core.broker.PortalComponentContextItem.getC
    ontext(PortalComponentContextItem.java:287)
            at com.sapportals.portal.prt.component.PortalComponentRequest.getCompone
    ntContext(PortalComponentRequest.java:389)
            at com.sapportals.portal.prt.connection.PortalRequest.getRootContext(Por
    talRequest.java:423)
            at com.sapportals.portal.prt.service.document.DocumentHookServiceNew.doD
    ocumentHook(DocumentHookServiceNew.java:218)
            at com.sapportals.portal.prt.connection.PortalHook.doDocumentHook(Portal
    Hook.java:433)
            at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(P
    ortalRequestManager.java:707)
            at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(
    ServletConnection.java:208)
            at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatc
    her.java:532)
            at java.security.AccessController.doPrivileged(Native Method)
            at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.ja
    va:415)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at com.inqmy.services.servlets_jsp.server.InvokerServlet.service(Invoker
    Servlet.java:126)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at com.inqmy.services.servlets_jsp.server.RunServlet.runSerlvet(RunServl
    et.java:149)
            at com.inqmy.services.servlets_jsp.server.ServletsAndJspImpl.startServle
    t(ServletsAndJspImpl.java:833)
            at com.inqmy.services.httpserver.server.RequestAnalizer.checkFilename(Re
    questAnalizer.java:665)
            at com.inqmy.services.httpserver.server.RequestAnalizer.handle(RequestAn
    alizer.java:312)
            at com.inqmy.services.httpserver.server.Response.handle(Response.java:17
    3)
            at com.inqmy.services.httpserver.server.HttpServerFrame.request(HttpServ
    erFrame.java:1229)
            at com.inqmy.core.service.context.container.session.ApplicationSessionMe
    ssageListener.process(ApplicationSessionMessageListener.java:36)
            at com.inqmy.core.cluster.impl5.ParserRunner.run(ParserRunner.java:55)
            at com.inqmy.core.thread.impl0.ActionObject.run(ActionObject.java:46)
            at java.security.AccessController.doPrivileged(Native Method)
            at com.inqmy.core.thread.impl0.SingleThread.run(SingleThread.java:148)
    Nested Exception:
    com.sap.security.api.NoSuchUserException: Cannot find user when uniqueID is null
            at com.sap.security.core.imp.UserFactory.getUser(UserFactory.java:95)
            at com.sap.security.core.imp.AbstractPrincipalSet.isUserMember(AbstractP
    rincipalSet.java:376)
            at com.sap.security.core.imp.RoleWrapper.isUserMember(RoleWrapper.java:5
    2)
            at com.sap.security.core.acl.imp.wcm.jdbc.JDBCAcl.containsPrincipal(JDBC
    Acl.java:769)
            at com.sap.security.core.acl.imp.wcm.jdbc.JDBCAcl.basicCheckPermission(J
    DBCAcl.java:704)
            at com.sap.security.core.acl.imp.wcm.jdbc.JDBCAcl.checkPermission(JDBCAc
    l.java:510)
            at com.sap.security.core.acl.imp.Acl.isAllowed(Acl.java:294)
            at com.sapportals.portal.acl.Acl.isAllowed(Acl.java:343)
            at com.sapportals.portal.pcd.gl.Acl.isAllowed(Acl.java:278)
            at com.sapportals.portal.pcd.gl.AclHandle.isAllowedInt(AclHandle.java:42
    3)
            at com.sapportals.portal.pcd.gl.AclHandle.isAllowed(AclHandle.java:407)
            at com.sapportals.portal.pcd.gl.PcdPersObject.checkPermission(PcdPersObj
    ect.java:785)
            at com.sapportals.portal.pcd.gl.PcdPersObject.hasPermission(PcdPersObjec
    t.java:765)
            at com.sapportals.portal.pcd.gl.PcdFilterContext.filterLookup(PcdFilterC
    ontext.java:400)
            at com.sapportals.portal.pcd.gl.PcdProxyContext.basicContextLookup(PcdPr
    oxyContext.java:1083)
            at com.sapportals.portal.pcd.gl.PcdProxyContext.proxyLookupLink(PcdProxy
    Context.java:1170)
            at com.sapportals.portal.pcd.gl.PcdProxyContext.proxyLookup(PcdProxyCont
    ext.java:1132)
            at com.sapportals.portal.pcd.gl.PcdProxyContext.lookup(PcdProxyContext.j
    ava:926)
            at com.sapportals.portal.pcd.gl.PcdGlContext.lookup(PcdGlContext.java:79
            at com.sapportals.portal.pcd.gl.PcdProxyContext.lookup(PcdProxyContext.j
    ava:919)
            at com.sapportals.portal.application.applicationrepository.ParContextFac
    tory.getInitialContext(ParContextFactory.java:18)
            at com.sapportals.portal.prt.jndisupport.NamingManager.getInitialContext
    (NamingManager.java:52)
            at com.sapportals.portal.prt.jndisupport.InitialContext.getDefaultInitCt
    x(InitialContext.java:39)
            at javax.naming.InitialContext.init(InitialContext.java:217)
            at javax.naming.InitialContext.<init>(InitialContext.java:193)
            at com.sapportals.portal.prt.jndisupport.InitialContext.<init>(InitialCo
    ntext.java:24)
            at com.sapportals.portal.prt.deployment.DeploymentManager.getEndUserInit
    ialContext(DeploymentManager.java:1745)
            at com.sapportals.portal.prt.deployment.DeploymentManager.getPropertyCon
    tentProvider(DeploymentManager.java:1670)
            at com.sapportals.portal.prt.core.broker.PortalComponentContextItem.refr
    esh(PortalComponentContextItem.java:193)
            at com.sapportals.portal.prt.core.broker.PortalComponentContextItem.getC
    ontext(PortalComponentContextItem.java:287)
            at com.sapportals.portal.prt.component.PortalComponentRequest.getCompone
    ntContext(PortalComponentRequest.java:389)
            at com.sapportals.portal.prt.connection.PortalRequest.getRootContext(Por
    talRequest.java:423)
            at com.sapportals.portal.prt.service.document.DocumentHookServiceNew.doD
    ocumentHook(DocumentHookServiceNew.java:218)
            at com.sapportals.portal.prt.connection.PortalHook.doDocumentHook(Portal
    Hook.java:433)
            at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(P
    ortalRequestManager.java:707)
            at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(
    ServletConnection.java:208)
            at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatc
    her.java:532)
            at java.security.AccessController.doPrivileged(Native Method)
            at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.ja
    va:415)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at com.inqmy.services.servlets_jsp.server.InvokerServlet.service(Invoker
    Servlet.java:126)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at com.inqmy.services.servlets_jsp.server.RunServlet.runSerlvet(RunServl
    et.java:149)
            at com.inqmy.services.servlets_jsp.server.ServletsAndJspImpl.startServle
    t(ServletsAndJspImpl.java:833)
            at com.inqmy.services.httpserver.server.RequestAnalizer.checkFilename(Re
    questAnalizer.java:665)
            at com.inqmy.services.httpserver.server.RequestAnalizer.handle(RequestAn
    alizer.java:312)
            at com.inqmy.services.httpserver.server.Response.handle(Response.java:17
    3)
            at com.inqmy.services.httpserver.server.HttpServerFrame.request(HttpServ
    erFrame.java:1229)
            at com.inqmy.core.service.context.container.session.ApplicationSessionMe
    ssageListener.process(ApplicationSessionMessageListener.java:36)
            at com.inqmy.core.cluster.impl5.ParserRunner.run(ParserRunner.java:55)
            at com.inqmy.core.thread.impl0.ActionObject.run(ActionObject.java:46)
            at java.security.AccessController.doPrivileged(Native Method)
            at com.inqmy.core.thread.impl0.SingleThread.run(SingleThread.java:148)
    Nov 16, 2005 5:31:22 PM # Client_Thread_3      Fatal           Exception ID:05:3
    1_16/11/05_0001
    com.sapportals.portal.prt.runtime.PortalRuntimeException: Unexpected error - ini
    tial context not available: com.sap.portal.navigation.portallauncher.default
            at com.sapportals.portal.prt.deployment.DeploymentManager.getPropertyCon
    tentProvider(DeploymentManager.java:1674)
            at com.sapportals.portal.prt.core.broker.PortalComponentContextItem.refr
    esh(PortalComponentContextItem.java:193)
            at com.sapportals.portal.prt.core.broker.PortalComponentContextItem.getC
    ontext(PortalComponentContextItem.java:287)
            at com.sapportals.portal.prt.component.PortalComponentRequest.getCompone
    ntContext(PortalComponentRequest.java:389)
            at com.sapportals.portal.prt.connection.PortalRequest.getRootContext(Por
    talRequest.java:423)
            at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(P
    ortalRequestManager.java:535)
            at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(
    ServletConnection.java:208)
            at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatc
    her.java:532)
            at java.security.AccessController.doPrivileged(Native Method)
            at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.ja
    va:415)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at com.inqmy.services.servlets_jsp.server.InvokerServlet.service(Invoker
    Servlet.java:126)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at com.inqmy.services.servlets_jsp.server.RunServlet.runSerlvet(RunServl
    et.java:149)
            at com.inqmy.services.servlets_jsp.server.ServletsAndJspImpl.startServle
    t(ServletsAndJspImpl.java:833)
            at com.inqmy.services.httpserver.server.RequestAnalizer.checkFilename(Re
    questAnalizer.java:665)
            at com.inqmy.services.httpserver.server.RequestAnalizer.handle(RequestAn
    alizer.java:312)
            at com.inqmy.services.httpserver.server.Response.handle(Response.java:17
    3)
            at com.inqmy.services.httpserver.server.HttpServerFrame.request(HttpServ
    erFrame.java:1229)
            at com.inqmy.core.service.context.container.session.ApplicationSessionMe
    ssageListener.process(ApplicationSessionMessageListener.java:36)
            at com.inqmy.core.cluster.impl5.ParserRunner.run(ParserRunner.java:55)
            at com.inqmy.core.thread.impl0.ActionObject.run(ActionObject.java:46)
            at java.security.AccessController.doPrivileged(Native Method)
            at com.inqmy.core.thread.impl0.SingleThread.run(SingleThread.java:148)
    Caused by: com.sapportals.portal.prt.runtime.PortalRuntimeException: Unable to g
    et access to the root folder of the application repository
            at com.sapportals.portal.application.applicationrepository.ParContextFac
    tory.getInitialContext(ParContextFactory.java:34)
            at com.sapportals.portal.prt.jndisupport.NamingManager.getInitialContext
    (NamingManager.java:52)
            at com.sapportals.portal.prt.jndisupport.InitialContext.getDefaultInitCt
    x(InitialContext.java:39)
            at javax.naming.InitialContext.init(InitialContext.java:217)
            at javax.naming.InitialContext.<init>(InitialContext.java:193)
            at com.sapportals.portal.prt.jndisupport.InitialContext.<init>(InitialCo
    ntext.java:24)
            at com.sapportals.portal.prt.deployment.DeploymentManager.getEndUserInit
    ialContext(DeploymentManager.java:1745)
            at com.sapportals.portal.prt.deployment.DeploymentManager.getPropertyCon
    tentProvider(DeploymentManager.java:1670)
            at com.sapportals.portal.prt.core.broker.PortalComponentContextItem.refr
    esh(PortalComponentContextItem.java:193)
            at com.sapportals.portal.prt.core.broker.PortalComponentContextItem.getC
    ontext(PortalComponentContextItem.java:287)
            at com.sapportals.portal.prt.component.PortalComponentRequest.getCompone
    ntContext(PortalComponentRequest.java:389)
            at com.sapportals.portal.prt.connection.PortalRequest.getRootContext(Por
    talRequest.java:423)
            at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(P
    ortalRequestManager.java:535)
            at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(
    ServletConnection.java:208)
            at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatc
    her.java:532)
            at java.security.AccessController.doPrivileged(Native Method)
            at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.ja
    va:415)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at com.inqmy.services.servlets_jsp.server.InvokerServlet.service(Invoker
    Servlet.java:126)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at com.inqmy.services.servlets_jsp.server.RunServlet.runSerlvet(RunServl
    et.java:149)
            at com.inqmy.services.servlets_jsp.server.ServletsAndJspImpl.startServle
    t(ServletsAndJspImpl.java:833)
            at com.inqmy.services.httpserver.server.RequestAnalizer.checkFilename(Re
    questAnalizer.java:665)
            at com.inqmy.services.httpserver.server.RequestAnalizer.handle(RequestAn
    alizer.java:312)
            at com.inqmy.services.httpserver.server.Response.handle(Response.java:17
    3)
            at com.inqmy.services.httpserver.server.HttpServerFrame.request(HttpServ
    erFrame.java:1229)
            at com.inqmy.core.service.context.container.session.ApplicationSessionMe
    ssageListener.process(ApplicationSessionMessageListener.java:36)
            at com.inqmy.core.cluster.impl5.ParserRunner.run(ParserRunner.java:55)
            at com.inqmy.core.thread.impl0.ActionObject.run(ActionObject.java:46)
            at java.security.AccessController.doPrivileged(Native Method)
            at com.inqmy.core.thread.impl0.SingleThread.run(SingleThread.java:148)
    Caused by: com.sapportals.portal.pcd.gl.PermissionControlException: Access denie
    d (Object(s): com.sap.portal.system)
            at com.sapportals.portal.pcd.gl.PcdFilterContext.filterLookup(PcdFilterC
    ontext.java:403)
            at com.sapportals.portal.pcd.gl.PcdProxyContext.basicContextLookup(PcdPr
    oxyContext.java:1083)
            at com.sapportals.portal.pcd.gl.PcdProxyContext.proxyLookupLink(PcdProxy
    Context.java:1170)
            at com.sapportals.portal.pcd.gl.PcdProxyContext.proxyLookup(PcdProxyCont
    ext.java:1132)
            at com.sapportals.portal.pcd.gl.PcdProxyContext.lookup(PcdProxyContext.j
    ava:926)
            at com.sapportals.portal.pcd.gl.PcdGlContext.lookup(PcdGlContext.java:79
            at com.sapportals.portal.pcd.gl.PcdProxyContext.lookup(PcdProxyContext.j
    ava:919)
            at com.sapportals.portal.application.applicationrepository.ParContextFac
    tory.getInitialContext(ParContextFactory.java:18)
            at com.sapportals.portal.prt.jndisupport.NamingManager.getInitialContext
    (NamingManager.java:52)
            at com.sapportals.portal.prt.jndisupport.InitialContext.getDefaultInitCt
    x(InitialContext.java:39)
            at javax.naming.InitialContext.init(InitialContext.java:217)
            at javax.naming.InitialContext.<init>(InitialContext.java:193)
            at com.sapportals.portal.prt.jndisupport.InitialContext.<init>(InitialCo
    ntext.java:24)
            at com.sapportals.portal.prt.deployment.DeploymentManager.getEndUserInit
    ialContext(DeploymentManager.java:1745)
            at com.sapportals.portal.prt.deployment.DeploymentManager.getPropertyCon
    tentProvider(DeploymentManager.java:1670)
            at com.sapportals.portal.prt.core.broker.PortalComponentContextItem.refr
    esh(PortalComponentContextItem.java:193)
            at com.sapportals.portal.prt.core.broker.PortalComponentContextItem.getC
    ontext(PortalComponentContextItem.java:287)
            at com.sapportals.portal.prt.component.PortalComponentRequest.getCompone
    ntContext(PortalComponentRequest.java:389)
            at com.sapportals.portal.prt.connection.PortalRequest.getRootContext(Por
    talRequest.java:423)
            at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(P
    ortalRequestManager.java:535)
            at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(
    ServletConnection.java:208)
            at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatc
    her.java:532)
            at java.security.AccessController.doPrivileged(Native Method)
            at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.ja
    va:415)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at com.inqmy.services.servlets_jsp.server.InvokerServlet.service(Invoker
    Servlet.java:126)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at com.inqmy.services.servlets_jsp.server.RunServlet.runSerlvet(RunServl
    et.java:149)
            at com.inqmy.services.servlets_jsp.server.ServletsAndJspImpl.startServle
    t(ServletsAndJspImpl.java:833)
            at com.inqmy.services.httpserver.server.RequestAnalizer.checkFilename(Re
    questAnalizer.java:665)
            at com.inqmy.services.httpserver.server.RequestAnalizer.handle(RequestAn
    alizer.java:312)
            at com.inqmy.services.httpserver.server.Response.handle(Response.java:17
    3)
            at com.inqmy.services.httpserver.server.HttpServerFrame.request(HttpServ
    erFrame.java:1229)
            at com.inqmy.core.service.context.container.session.ApplicationSessionMe
    ssageListener.process(ApplicationSessionMessageListener.java:36)
            at com.inqmy.core.cluster.impl5.ParserRunner.run(ParserRunner.java:55)
            at com.inqmy.core.thread.impl0.ActionObject.run(ActionObject.java:46)
            at java.security.AccessController.doPrivileged(Native Method)
            at com.inqmy.core.thread.impl0.SingleThread.run(SingleThread.java:148)
    [email protected]fd #
    Nov 16, 2005 5:31:22 PM # Client_Thread_3      Fatal           Cannot find user
    when uniqueID is null!
    com.sap.security.api.UMRuntimeException: Cannot find user when uniqueID is null!
            at com.sap.security.core.imp.AbstractPrincipalSet.isUserMember(AbstractP
    rincipalSet.java:388)
            at com.sap.security.core.imp.RoleWrapper.isUserMember(RoleWrapper.java:5
    2)
            at com.sap.security.core.acl.imp.wcm.jdbc.JDBCAcl.containsPrincipal(JDBC
    Acl.java:769)
            at com.sap.security.core.acl.imp.wcm.jdbc.JDBCAcl.basicCheckPermission(J
    DBCAcl.java:704)
            at com.sap.security.core.acl.imp.wcm.jdbc.JDBCAcl.checkPermission(JDBCAc
    l.java:510)
            at com.sap.security.core.acl.imp.Acl.isAllowed(Acl.java:294)
            at com.sapportals.portal.acl.Acl.isAllowed(Acl.java:343)
            at com.sapportals.portal.pcd.gl.Acl.isAllowed(Acl.java:278)
            at com.sapportals.portal.pcd.gl.AclHandle.isAllowedInt(AclHandle.java:42
    3)
            at com.sapportals.portal.pcd.gl.AclHandle.isAllowed(AclHandle.java:407)
            at com.sapportals.portal.pcd.gl.PcdPersObject.checkPermission(PcdPersObj
    ect.java:785)
            at com.sapportals.portal.pcd.gl.PcdPersObject.hasPermission(PcdPersObjec
    t.java:765)
            at com.sapportals.portal.pcd.gl.PcdFilterContext.filterLookup(PcdFilterC
    ontext.java:400)
            at com.sapportals.portal.pcd.gl.PcdProxyContext.basicContextLookup(PcdPr
    oxyContext.java:1083)
            at com.sapportals.portal.pcd.gl.PcdProxyContext.proxyLookupLink(PcdProxy
    Context.java:1170)
            at com.sapportals.portal.pcd.gl.PcdProxyContext.proxyLookup(PcdProxyCont
    ext.java:1132)
            at com.sapportals.portal.pcd.gl.PcdProxyContext.lookup(PcdProxyContext.j
    ava:926)
            at com.sapportals.portal.pcd.gl.PcdGlContext.lookup(PcdGlContext.java:79
            at com.sapportals.portal.pcd.gl.PcdProxyContext.lookup(PcdProxyContext.j
    ava:919)
            at com.sapportals.portal.application.applicationrepository.ParContextFac
    tory.getInitialContext(ParContextFactory.java:18)
            at com.sapportals.portal.prt.jndisupport.NamingManager.getInitialContext
    (NamingManager.java:52)
            at com.sapportals.portal.prt.jndisupport.InitialContext.getDefaultInitCt
    x(InitialContext.java:39)
            at javax.naming.InitialContext.init(InitialContext.java:217)
            at javax.naming.InitialContext.<init>(InitialContext.java:193)
            at com.sapportals.portal.prt.jndisupport.InitialContext.<init>(InitialCo
    ntext.java:24)
            at com.sapportals.portal.prt.deployment.DeploymentManager.getEndUserInit
    ialContext(DeploymentManager.java:1745)
            at com.sapportals.portal.prt.deployment.DeploymentManager.getPropertyCon
    tentProvider(DeploymentManager.java:1670)
            at com.sapportals.portal.prt.core.broker.PortalComponentContextItem.refr
    esh(PortalComponentContextItem.java:193)
            at com.sapportals.portal.prt.core.broker.PortalComponentContextItem.getC
    ontext(PortalComponentContextItem.java:287)
            at com.sapportals.portal.prt.component.PortalComponentRequest.getCompone
    ntContext(PortalComponentRequest.java:389)
            at com.sapportals.portal.prt.connection.ContentExceptionHandler.handleEx
    ception(ContentExceptionHandler.java:64)
            at com.sapportals.portal.prt.connection.ContentExceptionHandler.handlePo
    rtalRuntimeException(ContentExceptionHandler.java:24)
            at com.sapportals.portal.prt.core.PortalRequestManager.handleRequestExce
    ption(PortalRequestManager.java:825)
            at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(P
    ortalRequestManager.java:715)
            at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(
    ServletConnection.java:208)
            at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatc
    her.java:532)
            at java.security.AccessController.doPrivileged(Native Method)
            at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.ja
    va:415)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at com.inqmy.services.servlets_jsp.server.InvokerServlet.service(Invoker
    Servlet.java:126)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at com.inqmy.services.servlets_jsp.server.RunServlet.runSerlvet(RunServl
    et.java:149)
            at com.inqmy.services.servlets_jsp.server.ServletsAndJspImpl.startServle
    t(ServletsAndJspImpl.java:833)
            at com.inqmy.services.httpserver.server.RequestAnalizer.checkFilename(Re
    questAnalizer.java:665)
            at com.inqmy.services.httpserver.server.RequestAnalizer.handle(RequestAn
    alizer.java:312)
            at com.inqmy.services.httpserver.server.Response.handle(Response.java:17
    3)
            at com.inqmy.services.httpserver.server.HttpServerFrame.request(HttpServ
    erFrame.java:1229)
            at com.inqmy.core.service.context.container.session.ApplicationSessionMe
    ssageListener.process(ApplicationSessionMessageListener.java:36)
            at com.inqmy.core.cluster.impl5.ParserRunner.run(ParserRunner.java:55)
            at com.inqmy.core.thread.impl0.ActionObject.run(ActionObject.java:46)
            at java.security.AccessController.doPrivileged(Native Method)
            at com.inqmy.core.thread.impl0.SingleThread.run(SingleThread.java:148)
    Nested Exception:
    com.sap.security.api.NoSuchUserException: Cannot find user when uniqueID is null
            at com.sap.security.core.imp.UserFactory.getUser(UserFactory.java:95)
            at com.sap.security.core.imp.AbstractPrincipalSet.isUserMember(AbstractP
    rincipalSet.java:376)
            at com.sap.security.core.imp.RoleWrapper.isUserMember(RoleWrapper.java:5
    2)
            at com.sap.security.core.acl.imp.wcm.jdbc.JDBCAcl.containsPrincipal(JDBC
    Acl.java:769)
            at com.sap.security.core.acl.imp.wcm.jdbc.JDBCAcl.basicCheckPermission(J
    DBCAcl.java:704)
            at com.sap.security.core.acl.imp.wcm.jdbc.JDBCAcl.checkPermission(JDBCAc
    l.java:510)
            at com.sap.security.core.acl.imp.Acl.isAllowed(Acl.java:294)
            at com.sapportals.portal.acl.Acl.isAllowed(Acl.java:343)
            at com.sapportals.portal.pcd.gl.Acl.isAllowed(Acl.java:278)
            at com.sapportals.portal.pcd.gl.AclHandle.isAllowedInt(AclHandle.java:42
    3)
            at com.sapportals.portal.pcd.gl.AclHandle.isAllowed(AclHandle.java:407)
            at com.sapportals.portal.pcd.gl.PcdPersObject.checkPermission(PcdPersObj
    ect.java:785)
            at com.sapportals.portal.pcd.gl.PcdPersObject.hasPermission(PcdPersObjec
    t.java:765)
            at com.sapportals.portal.pcd.gl.PcdFilterContext.filterLookup(PcdFilterC
    ontext.java:400)
            at com.sapportals.portal.pcd.gl.PcdProxyContext.basicContextLookup(PcdPr
    oxyContext.java:1083)
            at com.sapportals.portal.pcd.gl.PcdProxyContext.proxyLookupLink(PcdProxy
    Context.java:1170)
            at com.sapportals.portal.pcd.gl.PcdProxyContext.proxyLookup(PcdProxyCont
    ext.java:1132)
            at com.sapportals.portal.pcd.gl.PcdProxyContext.lookup(PcdProxyContext.j
    ava:926)
            at com.sapportals.portal.pcd.gl.PcdGlContext.lookup(PcdGlContext.java:79
            at com.sapportals.portal.pcd.gl.PcdProxyContext.lookup(PcdProxyContext.j
    ava:919)
            at com.sapportals.portal.application.applicationrepository.ParContextFac
    tory.getInitialContext(ParContextFactory.java:18)
            at com.sapportals.portal.prt.jndisupport.NamingManager.getInitialContext
    (NamingManager.java:52)
            at com.sapportals.portal.prt.jndisupport.InitialContext.getDefaultInitCt
    x(InitialContext.java:39)
            at javax.naming.InitialContext.init(InitialContext.java:217)
            at javax.naming.InitialContext.<init>(InitialContext.java:193)
            at com.sapportals.portal.prt.jndisupport.InitialContext.<init>(InitialCo
    ntext.java:24)
            at com.sapportals.portal.prt.deployment.DeploymentManager.getEndUserInit
    ialContext(DeploymentManager.java:1745)
            at com.sapportals.portal.prt.deployment.DeploymentManager.getPropertyCon
    tentProvider(DeploymentManager.java:1670)
            at com.sapportals.portal.prt.core.broker.PortalComponentContextItem.refr
    esh(PortalComponentContextItem.java:193)
            at com.sapportals.portal.prt.core.broker.PortalComponentContextItem.getC
    ontext(PortalComponentContextItem.java:287)
            at com.sapportals.portal.prt.component.PortalComponentRequest.getCompone
    ntContext(PortalComponentRequest.java:389)
            at com.sapportals.portal.prt.connection.ContentExceptionHandler.handleEx
    ception(ContentExceptionHandler.java:64)
            at com.sapportals.portal.prt.connection.ContentExceptionHandler.handlePo
    rtalRuntimeException(ContentExceptionHandler.java:24)
            at com.sapportals.portal.prt.core.PortalRequestManager.handleRequestExce
    ption(PortalRequestManager.java:825)
            at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(P
    ortalRequestManager.java:715)
            at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(
    ServletConnection.java:208)
            at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatc
    her.java:532)
            at java.security.AccessController.doPrivileged(Native Method)
            at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.ja
    va:415)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at com.inqmy.services.servlets_jsp.server.InvokerServlet.service(Invoker
    Servlet.java:126)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at com.inqmy.services.servlets_jsp.server.RunServlet.runSerlvet(RunServl
    et.java:149)
            at com.inqmy.services.servlets_jsp.server.ServletsAndJspImpl.startServle
    t(ServletsAndJspImpl.java:833)
            at com.inqmy.services.httpserver.server.RequestAnalizer.checkFilename(Re
    questAnalizer.java:665)
            at com.inqmy.services.httpserver.server.RequestAnalizer.handle(RequestAn
    alizer.java:312)
            at com.inqmy.services.httpserver.server.Response.handle(Response.java:17
    3)
            at com.inqmy.services.httpserver.server.HttpServerFrame.request(HttpServ
    erFrame.java:1229)
            at com.inqmy.core.service.context.container.session.ApplicationSessionMe
    ssageListener.process(ApplicationSessionMessageListener.java:36)
            at com.inqmy.core.cluster.impl5.ParserRunner.run(ParserRunner.java:55)
            at com.inqmy.core.thread.impl0.ActionObject.run(ActionObject.java:46)
            at java.security.AccessController.doPrivileged(Native Method)
            at com.inqmy.core.thread.impl0.SingleThread.run(SingleThread.java:148)
    How roleback this so that I can get the logon page
    thanks
    pk

    Hi
    Thjanks for the reply.
    I have gone thru doc.
    In the doc it says
    Start the Config Tool by executing j2ee
    then
    cluster/server
    cluster/distahcer
    there is no "Global server configuration"   to go to
    what could be the reason ..
    if it is version problem .. Is there any alternative or resinatllation of EP
    thanks
    PK

  • Total is not getting displayed in the ALV output.

    Hi,
    Total is not getting displayed in the ALV output.
    I m using :REUSE_ALV_BLOCK_LIST_APPEND & REUSE_ALV_BLOCK_LIST_DISPLAY
    Are  there any issues with it as the same settings are working fine with REUSE_ALV_LIST_DISPLAY
    source code:
    DATA: layout TYPE slis_layout_alv,
          IT_eventS  TYPE slis_t_event,
          fcat   TYPE slis_t_fieldcat_alv WITH HEADER LINE,
          rec_fcat TYPE slis_t_fieldcat_alv WITH HEADER LINE.
    TYPES: BEGIN OF ty_tab,
          belnr TYPE dberchz-belnr,
          belzart TYPE dberchz-belzart,
          net TYPE dberchz-nettobtr,
          END OF ty_tab.
    DATA: lt_tab TYPE STANDARD TABLE OF ty_tab.
    SELECT belnr belzart nettobtr
      FROM dberchz
      INTO TABLE lt_tab[]
    WHERE belnr eq '000000000001'.
      if sy-subrc ne 0.
      ENDIF.
    *  defining layout
    layout-colwidth_optimize = 'X'.
    layout-def_status = 'X'.
    *defning event
    *event
    *defining field catalog
    fcat-col_pos = 1.
    fcat-fieldname = 'BELNR'.
    fcat-tabname  = 'LT_TAB'.
    APPEND fcat.
    fcat-col_pos = 2.
    fcat-fieldname = 'BELZART'.
    fcat-tabname  = 'LT_TAB'.
    APPEND fcat.
    fcat-col_pos = 3.
    fcat-fieldname = 'NET'.
    fcat-tabname  = 'LT_TAB'.
    fcat-do_sum = 'X'.
    APPEND fcat.
    *calling alv
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_INIT'
      EXPORTING
        i_callback_program             = 'YZ_PLR'
    *   I_CALLBACK_PF_STATUS_SET       = ' '
    *   I_CALLBACK_USER_COMMAND        = ' '
    *   IT_EXCLUDING                   =
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
      EXPORTING
        is_layout                        = layout
        it_fieldcat                      = fcat[]
        i_tabname                        = 'LT_TAB'
        it_events                        = IT_EVENTS[]
    *   IT_SORT                          =
    *   I_TEXT                           = ' '
      tables
        t_outtab                         = lt_tab[]
    * EXCEPTIONS
    *   PROGRAM_ERROR                    = 1
    *   MAXIMUM_OF_APPENDS_REACHED       = 2
    *   OTHERS                           = 3
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_DISPLAY'
    Thanks,
    Gaurav

    Hi
    No I don't think, this is my code (based on your code) and it works fine:
    TYPE-POOLS SLIS.
    DATA: BEGIN OF LT_TAB OCCURS 0,
           BELNR LIKE BSEG-BELNR,
           GJAHR LIKE BSEG-GJAHR,
           WRBTR LIKE BSEG-WRBTR,
           WAERS LIKE BKPF-WAERS,
          END OF LT_TAB.
    DATA: LAYOUT     TYPE SLIS_LAYOUT_ALV,
          IT_EVENTS  TYPE SLIS_T_EVENT,
          FCAT       TYPE SLIS_T_FIELDCAT_ALV WITH HEADER LINE,
          REC_FCAT   TYPE SLIS_T_FIELDCAT_ALV WITH HEADER LINE.
    START-OF-SELECTION.
      FCAT-COL_POS       = 1.
      FCAT-FIELDNAME     = 'BELNR'.
      FCAT-TABNAME       = 'LT_TAB'.
      FCAT-REF_FIELDNAME = 'BELNR'.
      FCAT-REF_TABNAME   = 'BSEG'.
      APPEND FCAT.
      FCAT-COL_POS       = 2.
      FCAT-FIELDNAME     = 'GJAHR'.
      FCAT-TABNAME       = 'LT_TAB'.
      FCAT-REF_FIELDNAME = 'GJAHR'.
      FCAT-REF_TABNAME   = 'BSEG'.
      APPEND FCAT.
      FCAT-COL_POS       = 3.
      FCAT-FIELDNAME     = 'WRBTR'.
      FCAT-TABNAME       = 'LT_TAB'.
      FCAT-CFIELDNAME    = 'WAERS'.
      FCAT-REF_FIELDNAME = 'WRBTR'.
      FCAT-REF_TABNAME   = 'BSEG'.
      FCAT-DO_SUM        = 'X'.
      APPEND FCAT.
      FCAT-COL_POS       = 4.
      FCAT-FIELDNAME     = 'WAERS'.
      FCAT-TABNAME       = 'LT_TAB'.
      FCAT-REF_FIELDNAME = 'WAERS'.
      FCAT-REF_TABNAME   = 'BKPF'.
      FCAT-DO_SUM        = SPACE.
      APPEND FCAT.
      SELECT * FROM BSEG INTO CORRESPONDING FIELDS OF TABLE LT_TAB
        WHERE BUKRS = 'MAAB'
          AND BELNR = '0000000001'.
      LT_TAB-WAERS = 'EUR'.
      MODIFY LT_TAB FROM LT_TAB TRANSPORTING WAERS WHERE WAERS = SPACE.
    *CALLING ALV
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_INIT'
        EXPORTING
          I_CALLBACK_PROGRAM = 'ZPROVAMAX5'.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          IS_LAYOUT   = LAYOUT
          IT_FIELDCAT = FCAT[]
          I_TABNAME   = 'LT_TAB'
          IT_EVENTS   = IT_EVENTS[]
        TABLES
          T_OUTTAB    = LT_TAB[].
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_DISPLAY'.
    I've also inserted a currency field
    Max

  • Data is not getting displayed in the report from an Infoset.

    Hi All,
    I am having a report  based on an infoset. This report is displaying the data in the Dev. envmt. When it is transported to the QA, it is not displaying the data in the BEx as well as RSRT, in the QA envmt. The patch levels of both the Dev. and QA are the same. The Queries are same in the Dev and QA also.
    While trying to display the data from the infoset (rt.click- display data), i am able to view the data, in the QA.
    Could anyone please suggest why the data is not getting displayed in the query designer.
    Thanks & Regards,
    A.V.N.Rao

    Hi Ashish,
    I ran the "ZPS/!ZPS" in RSRT where ZPS is the infoset name. In Dev, it displayed the values. In QA, it displayed the below messages:
    ECharacteristic 0TCAKYFNM does not exist. Check authorizations
    WThere are calculated elements. These results are bracketed [  ]
    and below that, it displayed the values for Number of records. But, it has not displayed the values for the other figures.
    Does this has any impact in QA.
    Thanks & Regards,
    AVN Rao.

  • '@' not getting displayed in the ALV report

    Hello,
    I am facing  a strange issue in the ALV report display. A string starting with '@' is not getting displayed and says "default icon " on the report. and this is varying from system to system for the same user.
    can anyone please help me in resolving the issue.
    Thanks in advance.
    Thanks and Regards,
    Santhosh Guptha N.

    @ is a default value as per ALV internal process. This is used in icons .
    I think this is causing the confusion.
    Check in the fieldcat if there is any adjsutment to be made to handle this.
    Br,
    Vijay

Maybe you are looking for

  • Mac output as input in LE8 ? ("What you hear")

    I'm a new user, upgraded from Garageband 09, but am a previous cakewalk user from my Windows era. Back in windows, on my XFI audio card there was an option to use the actual output of the PC as an input somewhere in one of the audio programs. It was

  • Is there any option in captivate to capture tool tips

    Hello Friends I'm using Captivate 4 .is there any option in captivate4 to record the mouse movement so that i can capture the Tool Tips in the software which i am making the Demo.Hope some one will help me.. Crazdobe

  • List Display After ALV Display.

    Hi, i want to use write statement after display of the GRID ALV report. I User-command is getting dynamically called up when i presses the button. FORM user_command USING p_ucomm     LIKE sy-ucomm                         p_selfield  TYPE slis_selfiel

  • Copy and Paste Slide Hangs Captivate 5 - Solutions?

    I have recently encountered a frequent but intermittent problem with Captivate 5 (perhaps after the last update from Adobe). I open two presentations, choose to copy a slide from one presentation and then paste it to the other. The progress bar shows

  • ITunes adding artist to song title

    Library of about 10,000 songs tagged satisfactorily. For some reason, iTunes likes to add the artist before the song title. For instance in iTunes: B.B. King - The Thrill is Gone | B.B. King | Capitol Gold Blues Legends and when I add library to my i