Not able to work with customized Java roles which were edited in ABAP stack

Hello All,
I am trying to copy standard roles into customized roles (i.e. Z roles) using PFCG in XI system. All ABAP based roles are working fine, but all JAVA based roles are not working. I generated profiles as well. And I check all the authorization objects in both standard and customized roles. Everything look same but customized roles are not working.
And when I check the logs on JAVA stack I found the error which says " User XXXXXXXXXX IP address HTTP request processing failed. HTTP error [403] will be returned. The error is [You are not authorized to view the requested resource.No details available]."
I thought there might be any Jco RFC connections missing between the stacks and I tried to check in Visual Admin, but I was not able to find much info regarding these roles.
Am I missing anything or is there any other way for these roles to make customized roles.
And can any one tell me how to run a trace for JAVA stack activitites as we do in ABAP using ST01. Any help will be rewarded. Thanks in advance.
Regards,
Farooq.

Java roles work with influence of permissions in Application Server which we call actions in UME. As you are aware in PI user master record will be in ABAP stack. So the roles in ABAP stack will be having only RFC connections to JAVA stack for the specific JAVA based role. So you need to edit the permission on Java App Server. For that you need to log on to server through visual admin and then go to services and you will find the standard groups assigned to actions. But I don’t remember that under which service you will find them
Under that service you will find some 200 actions. And you have to add the name of the custom created JAVA roles on ABAP to all those actions where you find the standard roles. And its a very very lengthy procedure. So SAP advice to go for customized ABAP roles and Standard JAVA roles.
Hope this answer clears your query.
Farooq.

Similar Messages

  • Not able to work with multiple Databases using  oracle.jdbc.driver.OracleDr

    Hi all,
    I am using the following Oracle Driver in Weblogic 6.1 sp 4
    oracle.jdbc.driver.OracleDriver / jdbc:oracle:thin:
    Driver. I am not able to select rows from two different table, which resides in two different Databases.
    The Exception is :
    SQL Exception Connection has already been created in this tx context for pool named CDPool. Illegal attempt to create connection
    nother pool: MultiTransactionTest
    Start server side stack trace:
    java.sql.SQLException: Connection has already been created in this tx context for pool named CDPool. Illegal attempt to create c
    on from another pool: MultiTransactionTest
    at weblogic.jdbc.jts.Driver.getExistingConnection(Driver.java:288)
    at weblogic.jdbc.jts.Driver.connect(Driver.java:123)
    at weblogic.jdbc.common.internal.RmiDataSource.getConnection(RmiDataSource.java:214)
    at weblogic.jdbc.common.internal.RmiDataSource_WLSkel.invoke(Unknown Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:305)
    at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:93)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:274)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:22)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    End server side stack trace
    Can any one help me to fix this issue?
    -Thanks & Regards,
    Shamil.S

    Shamil S wrote:
    Hi all,
    I am using the following Oracle Driver in Weblogic 6.1 sp 4
    oracle.jdbc.driver.OracleDriver / jdbc:oracle:thin:
    Driver. I am not able to select rows from two different table, which resides in two different Databases.
    The Exception is :
    SQL Exception Connection has already been created in this tx context for pool named CDPool. Illegal attempt to create connection
    nother pool: MultiTransactionTestHi. You can't domultiple DBMSes in one transaction unless you use an XA driver and
    an XA transaction. Your workarounds are:
    1 - Use an XA driver, datasource, and tx
    2 - If you're just reading, you can use non-transactional datasources. Do make sure you
    always close your connections...
    Joe
    >
    Start server side stack trace:
    java.sql.SQLException: Connection has already been created in this tx context for pool named CDPool. Illegal attempt to create c
    on from another pool: MultiTransactionTest
    at weblogic.jdbc.jts.Driver.getExistingConnection(Driver.java:288)
    at weblogic.jdbc.jts.Driver.connect(Driver.java:123)
    at weblogic.jdbc.common.internal.RmiDataSource.getConnection(RmiDataSource.java:214)
    at weblogic.jdbc.common.internal.RmiDataSource_WLSkel.invoke(Unknown Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:305)
    at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:93)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:274)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:22)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    End server side stack trace
    Can any one help me to fix this issue?
    -Thanks & Regards,
    Shamil.S

  • Not able to work with Class.forName

    I am trying to use Class.forName() from a string which is passed to me as argument.
    Class batchClass = Class.forName(args[1]);
    A jar file contains the class file for the string received above and I have this jar file in the manifest of my executable jar.
    I get a class not found exception when I run my executable jar
    Can some body give pointers..what could possibly be the issue.
    The jar file is in my classpath
    Message was edited by:
    chabhi

    run script
    #!/bin/csh
    java -jar -DDBPROVIDER=NO -DDBUS_ROOT=$DBUS_ROOT -DVTNAME=$VTNAME ./jar/IntraDayDepotPositionBatch.jar MagellanStart IntraDayDepotPositionBatch INPUTFILE LOGFILE
    Exception
    Magellan program starting - program class IntraDayDepotPositionBatch
    Cannot find program class - IntraDayDepotPositionBatch
    IntraDayDepotPositionBatch
    java.lang.ClassNotFoundException: IntraDayDepotPositionBatch
    at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:164)
    at com.db.mmrepo.app.IntraDayDepotPositionBatch.MagellanStart.main(Unknown Source)
    THanks for your time on this issue,,,,

  • Discoverer Viewer/Plus does not work with Custom EUL owned by APPS user

    I am facing a unique issue with one of my customers. They have a custom EUL named XX_EUL_US and this does not allow connecting through discoverer viewer or discoverer plus.
    I have worked with custom EULS before at other customers and this was never the case. I am being told that this issue is happening as the EUL owner is APPS instead of some other user. Is this the case? Can discoverer viewer not be used with EULs owned by apps user?
    Please not that the Default EUL in ICX profiles is set to this EUL and no other EUL profiles are set.
    Appreciate any thoughts on this.

    Hi,
    I am not sure what you mean when you say you have a "custom EUL named XX_EUL_US". The EUL table should be created in a schema named XX_EUL_US. This will then be the EUL owner. You will then need to connect to Discoverer Administrator as the EUL owner and grant privileges to Apps users and/or responsibilities.
    The user should then be able to connect to Discoverer Plus/View using their apps username, responsibility and password.
    To be able to connect directly from an apps menu you need to have the ICX parameters set correctly. The ICX: Discoverer Default End User Layer Schema Prefix should be set to XX_EUL (without the _US). The ICX: Discoverer End User Layer Language Override should be set to US or not set at all.
    Rod West

  • On my Iphone, i'm not able to purchase with itunes from the game clash of clans! I did it the first time, it worked, but now it wont work and says : contact support.

    i'm not able to purchase with itunes from the game clash of clans! I did it the first time, it worked, but now it wont work and says : contact support.

    What they mean is iTunes Customer Service Contact - http://www.apple.com/support/itunes/contact.html

  • I double-click on event  to see all the photos in that event displayed, but all I get is 1 large photo on the edit page.  To see the photos in that event, I have to scroll.  Need to be able to work with all the photos in that event, not one at a time.

    I double-click on event  to see all the photos in that event displayed, but all I get is 1 large photo on the edit page.  To see the photos in that event, I have to scroll.  Need to be able to work with all the photos in that event, not one at a time.

    Maybe you need to adjust the zoom slider in the lower left corner of the window?
    Regards
    Léonie

  • Struts- not able to work on

    Dear sir,
    Sub: not able to work on "select option"
    This is Naveen.s working on struts ( new to struts )where i have to sumbit to my university .
    I have done a project where i have to maintain the list projects , programers, urgency of project etc., where i can edit and delete ( up to this i completed ) .
    Now , the query is i have to place the "select options" for the fields. and in the same page the list of data should be present so that i can select any one of the options fields and i should view the selected data only.
    I did not created any DynaAction Forms for this project with out using them can i do it
    I did using" TaskForms, TaskActions,Task .jsp".
    I am attaching my code .
    Please reply after receiving
    Advance Thanks for the cooperation and my carrier in IT field
    xml:-------------
    <form-beans>
    <form-bean name="loginForm"
    type="com.Iris.LoginForm" />
    <form-bean name="taskForm"
    type="com.Iris.TaskForm" />
    </form-beans>
    <global-forwards>
    <forward name="login" path="/login.jsp"/>
    </global-forwards>
    <action-mappings>
    <action path="/Login"
    type="com.Iris.LoginAction"
    validate="true"
    input="/login.jsp"
    name="loginForm"
    scope="request" >
    <forward name="success" path="/TaskList.do"/>
    </action>
    <action path="/TaskList"
    type="com.Iris.TaskListAction"
    scope="request" >
    <set-property property="loginRequired" value="true"/>
    <forward name="success" path="/tasklist.jsp"/>
    </action>
    listAction.java:--------------------------
    import javax.sql.DataSource;
    import java.sql.Connection;
    import java.sql.Statement;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.util.HashMap;
    import java.util.ArrayList;
    import java.util.*;
    import java.lang.*;
    public class TaskListAction extends Action {
    protected ArrayList getProj_tasks() {
    Task task = null;
         Task task1 = null;
    ArrayList proj_tasks = new ArrayList();
    Connection conn = null;
    Statement stmt = null;
    ResultSet rs = null;
         ResultSet rs1 = null;
    java.util.Hashtable grouphash=new java.util.Hashtable();
    java.util.Hashtable statushash=new java.util.Hashtable();
    java.util.Hashtable taskhash=new java.util.Hashtable();
    java.util.Hashtable priorityhash=new java.util.Hashtable();
    java.util.Hashtable assignhash=new java.util.Hashtable();
    ServletContext context = servlet.getServletContext();
    DataSource dataSource = (DataSource)
    context.getAttribute(Action.DATA_SOURCE_KEY);
    try {
    conn = dataSource.getConnection();
    stmt = conn.createStatement();
         rs1 = stmt.executeQuery("select group_id,groupname from group_level order by groupname");
         while(rs1.next()){ 
              int i =rs1.getInt(1);Integer i1 = new Integer(i);
              String names =rs1.getString(2);
              System.out.print(i1);
              System.out.println(names);
              grouphash.put(i1,rs1.getString(2)); }
              System.out.println("This is from hashtable.."+grouphash);
                   task1= new Task();
                   task1.setGrouphash(grouphash);
                   proj_tasks.add(task1);
         rs1 = stmt.executeQuery("select status_id,statusname from Status_level order by statusname");
         while(rs1.next()){  statushash.put("statushashkey",rs1.getString(2)); }
         rs1 = stmt.executeQuery("select task_id,taskname from type_task order by taskname");
         while(rs1.next()){  taskhash.put("taskhashkey",rs1.getString(2)); }
         rs1 = stmt.executeQuery("select priority_id,priorityname from task_priorities order by priorityname");
         while(rs1.next()){  priorityhash.put("priorityhashkey",rs1.getString(2)); }
         rs1 = stmt.executeQuery("select assign_id,assignee from task_assigned order by assignee");
         while(rs1.next()){  assignhash.put("assignhashkey",rs1.getString(2)); }
    rs =
    stmt.executeQuery("select * from proj_tasks,group_level,Status_level,type_task,task_priorities,percentage,task_assigned where proj_tasks.group_id=group_level.group_id and proj_tasks.status_id=Status_level.status_id and proj_tasks.task_id=type_task.task_id and proj_tasks.priority_id=task_priorities.priority_id and proj_tasks.percen_id=percentage.percen_id and proj_tasks.assign_id=task_assigned.assign_id");
    while ( rs.next() ) {
    task= new Task();
              //task.setGrouphash(grouphash);
              //task.setNames(names);
    task.setSeq_id(new Integer(rs.getString("seq_id")));
    task.setPrjname(rs.getString("prjname"));
    task.setGroupname(rs.getString("groupname"));
    task.setGroup_id(new Integer(rs.getString("group_id")));
    task.setStatusname(rs.getString("statusname"));          
              task.setStatus_id(new Integer(rs.getString("status_id")));
    task.setTaskname(rs.getString("taskname"));          
              task.setTask_id(new Integer(rs.getString("task_id")));
    task.setPriorityname(rs.getString("priorityname"));          
              task.setPriority_id(new Integer(rs.getString("priority_id")));
    task.setEstimated_amount(new Integer(rs.getString("estimated_amount")));
    task.setPercentage_support(rs.getString("percentage_support"));          
              task.setPercen_id(new Integer(rs.getString("percen_id")));
              task.setDue_date(rs.getString("due_date"));
    task.setAssignee(rs.getString("assignee"));          
         task.setAssign_id(new Integer(rs.getString("assign_id")));
    proj_tasks.add(task);
    System.err.println("prjname : " + task.getPrjname()
    + " taskname : " + rs.getString("taskname")); } }
    catch (SQLException e) {      System.err.println(e.getMessage());    }
    finally {      if (rs != null) {        try {          rs.close();        }
    catch (SQLException sqle) {          System.err.println(sqle.getMessage());       }
    rs = null; } if (stmt != null) {        try {          stmt.close();        }
    catch (SQLException sqle) {     System.err.println(sqle.getMessage());        }
    stmt = null; } if (conn != null) {        try {          conn.close();        }
    catch (SQLException sqle) {    System.err.println(sqle.getMessage());        }
    conn = null; } }
    return proj_tasks; }
         public ActionForward perform(ActionMapping mapping,
              ActionForm form,
              HttpServletRequest request,
              HttpServletResponse response)
              throws IOException, ServletException {
              // Default target to success
    String target = new String("success");
    TaskActionMapping taskMapping =
    (TaskActionMapping)mapping;
    // Does this action require the user to login
    if (taskMapping.isLoginRequired() ) {
    HttpSession session = request.getSession();
    if ( session.getAttribute("USER") == null ) {
    // The user is not logged in
    target = new String("login");
    ActionErrors errors = new ActionErrors();
    errors.add(ActionErrors.GLOBAL_ERROR,
    new ActionError("errors.login.required"));
    // Report any errors we have discovered back to
    // the original form
    if (!errors.empty()) {          saveErrors(request, errors);        } } }
    ArrayList proj_tasks = null;
    proj_tasks = getProj_tasks();
    // Set the target to failure
    if ( proj_tasks == null ) {      target = new String("login");    }
    else {      request.setAttribute("proj_tasks", proj_tasks);    }
         // Forward to the appropriate View
         return (mapping.findForward(target));     }}
    .jsp:-------------------------------------------
    <table width="100%">
    <tr> <td width="15%"class="titreSection"><B>Incomplete Tasks�</B></td>
    <td width="85%" align="right">
    <font size="-1" face="arial"> Add New Task
    </font> </td> </tr>
    <tr> <td colspan="15"><hr></td> </tr> </table>
    <table> <tr> <td align="right" width="5%"></td>
    <td align="right" width="20%">i have to get hear-----------     </td>
    <td align="left" width="10%"> ---i have to get hear------------- </td>
    <td align="left" width="10%">---i have to get hear------------- </td>
    <td align="center" width="10%">---i have to get hear----------- </td>
    <td align="right" width="15%">�---i have to get hear------------- </td>
    <td align="right" width="20%">� ---i have to get hear------------- </td>
    <td width="10%">� <input type="submit" value="Filter"> </td>
    </tr> </table>
    <table width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr align="left">
    <th><bean:message key="app.seq_id" /></th>
    <th><bean:message key="app.prjname" /></th>
              <th><bean:message key="app.groupname" /></th>
    <th><bean:message key="app.statusname" /></th>
    <th><bean:message key="app.taskname" /></th>
    <th><bean:message key="app.priorityname" /></th>
    <th><bean:message key="app.estimated_amount" /></th>
    <th><bean:message key="app.percentage_support" /></th>
    <th><bean:message key="app.due_date" /></th>
    <th><bean:message key="app.assignee" /></th>
    </tr> <!-- iterate over the results of the query -->
    <logic:iterate id="task" name="proj_tasks">
    <tr align="left">
    <td> <bean:write name="task" property="seq_id" />     </td>
    <td> <bean:write name="task" property="prjname" /> </td>
    <td> <bean:write name="task" property="groupname" /> </td>
    <td> <bean:write name="task" property="statusname" />     </td>
    <td> <bean:write name="task" property="taskname" />     </td>
    <td> <bean:write name="task" property="priorityname" />     </td>
    <td> <bean:write name="task" property="estimated_amount" /> </td>
    <td> <bean:write name="task" property="percentage_support" />     </td>
    <td> <bean:write name="task" property="due_date" />     </td>
    <td> <bean:write name="task" property="assignee" />     </td>
    <td> ">Edit</a>
    <a href="Delete.do?prjname=<bean:write name="task"property="prjname" />">Delete</a>
    </td></tr> </logic:iterate>
    <tr> <td colspan="14">     <hr>     </td> </tr> </table>
    </body></html>
    and java bean for above tags

    upload your fla onto some server and post a link.  maybe someone else can open it and resave it for you.

  • GP Tutorials don't work with 2004s Java Trial Version

    Hi,
    I know that the SAP Composite Application Framework - CAF Tutorial Center [original link is broken] [original link is broken]  require the Callable Object types "Content Package" and "Interactive Form" which at least in my installation are not visible.
    Is my installation corrupt? Or are the tutorial descriptions incorrect?
    Thanks.
    Dick

    Hi,
    The problem was a role problem.  Solution is noted in my GP Tutorials don't work with 2004s Java Trial Version
    Thanks.
    Dick

  • "This accessory is not made to work with iPhone"

    I have a first generation iphone. It recently started showing a message that reads:
    This accessory is not made to work with iPhone
    Would you like to turn on Airplane Mode to reduce audio interference?
    You will not be able to make call during this mode
    YES NO
    There is no accessory in the phone. Any thoughts on how to stop this behavior?
    I tried reloading the OS and it didn't help.

    I was having the same problem and it was draining my battery! After reading a couple of threads I was resigned to take my 1st gen iphone to the genius bar to see if they could do something. Before going to the bar I took off my pics, videos, movies, podcasts, and some applications in preparation for my visit. That night the problem stopped. This had been happening for about 3-4 weeks so I could replicate at will. After removing things from the phone when I tried to replicate the problem it would not happen. So I then started to re-sync things one at a time. After re-syncing everything but the applications I still could not replicate the problem. My feeling is that one of the applications, or combinations of, was causing the issue. I have not re-synced all the applications at this time because I am happy to have my phone back. Hope this helps.

  • Datareader is not able to connect with database-Urgent

    Hi All,
    All of a sudden the Datareader component in my ML experiment is not able to connect with database with the following error:
    [ModuleOutput] DllModuleHost Error: 1 : Program::Main encountered fatal exception: Microsoft.Analytics.Exceptions.ErrorMapping+ModuleException: Error 0000: Internal error ---> System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.ArgumentException: The value's length for key 'password' exceeds it's limit of '128'.
    Module finished after a runtime of 00:00:00.2031339 with exit code -2
    Module failed due to negative exit code of -2
    It complains about the password being long-but the same credentials I have been using for the last 2 months and still able to use it to run sql queries on that same database using the management portal.
    It appears that Azure encrypts the password and that encrypted password is too long...just my guess after looking that the output.Inside Ml it just says as internal error
    Would appreciate if someone can point to the issue at the earliest...(There is a demo early next week)
    Subscription:Enterprise,
    LOCATION: East Asia
    Regards,
    Biswajit

    Hi,
    Please check this url:
    https://studio.azureml.net/Home/ViewWorkspace/bc85d4f81d2246c4b1430eb395229a3a?&hashSeg=#Workspaces/Experiments/Experiment/bc85d4f81d2246c4b1430eb395229a3a.f-id.11776ae4400f4c1aa9f58308c30810fa/ViewExperiment
    which is an experiment which I created doing save as of the experiment in which the data reader works.
    I stripped everything except the data reader and setup the rest of the components...I finally have to write the results back ,so also pulled a Writer component.
    Now,the data reader works fine..but the Writer fails:
    Error 0071: Incorrect username "acnadmin" or password is passed
    Strangely,its the same credentials set in the DataReader.
    Looks like all the DataInput/Output components created recently only have the problem.
    Once again,while the datareader in this case passes the password in plain text,the writer encrypts,hence fails.

  • Not able to connect with Sql Server Database

    Hi,
    I'm not able to connect with Sql Server database.during making connection I'm getting the following error:
    "Status : Failure -I/O Error: SSO Failed: Native SSPI library not loaded. Check the java.library.path system property."
    Please help
    Regards,
    Neeraj Goel

    Hi,
    I'm using Sql Server 2000.
    I downloaded the driver from the given site and still having the same problem. Do I need to copy the driver file in some specific folder.
    Regards,
    Neeraj Goel

  • I am not able to communicate with my instruments

    Hello,
    I am a graduate student in India. I
    am using NI PCI-GPIB card, which we bought nearly one year back. I am using
    LabVIEW 6i. For last two days I am not able to communicate with my
    instruments (Keithley DMM 196, Keithley current source 220, Lakshore
    temperature controller 93C).
    1. I started NI488.2 troubleshooting wizard. It says NI488.2 software
    presence verified, GPIB hardware presence verified,GPIB interfaces
    sequentially varified. This means Card is alright?
    2. I started MAX measurement and automation explorer. It lists GPIB0
    (PCI-GPIB) under 'devices and interfaces' folder. After selecting this, If
    I click at 'scan for instruments', 'Instruments not found' message
    appears.
    3. You may say that instru
    ments had problem. But the same instruments are
    working fine with another system with other card.
    4. I agin reinstalled PCI GPIB 488.2 driver from the CD. Now It is listing
    three instuments out of four. But the GPIB address for these instruments
    are
    not same as actual address. It also says instrument didn't reply for *IDN?
    query.
    5. Everything was working alright, this problem arose few days back
    suddenly.
    please help me

    Dear sir,
    Really something surprising. My instument is 'LakeShore DRC-93C'
    temperature controller. Probably bought around 7-8 years back.
    Here is the actual GPIB add & address read by MAX and correponding
    three NI-SPY log.
    actual GPIB add*****address read by MAX*****Max Capture(attached files)
    25***** 9*****capture_1
    21***** 5*****no file attached
    20***** 4*****capture_2
    17***** 1*****no file attached
    10***** instrument not found****capture_3
    7*****instrument not found*****no file attached
    for first four cases MAX showed 'instrument did not reply to *IDN? query?
    Same thing happened when I connected an Keithely Current Source.
    (only one instrument is connected,)
    actual GPIB add*****address read by MAX
    8*****instrument not found
    17***** 1
    25***** 9
    This means MAX is reading GPIB number 16 less than actual Number? Then I tried
    to write command at both GPIB address(actual and read by MAX) but both didn't work?
    What should I do next?
    with best regards
    Ram Shanker
    Attachments:
    Capture_1.spy ‏23 KB
    Capture_2.spy ‏23 KB
    Capture_3.spy ‏13 KB

  • Not able to start the Sun Java System Access Manager 7 Console

    Hi All,
    I have successfully installed the Sun Java System Portal Server 7 on RHEL 4.0.The problem I am facing is not able to start the Sun Java System Access Manager 7 Console while accessing the URL: http://fqdn:8080/amconsole
    As soon as I try to access this URL it gives me following Excepiton:::::::
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    com.iplanet.jato.NavigationException: Exception encountered during forward
    Root cause = [java.lang.NullPointerException]
         com.iplanet.jato.view.ViewBeanBase.forward(ViewBeanBase.java:386)
         com.iplanet.jato.view.ViewBeanBase.forwardTo(ViewBeanBase.java:267)
         com.iplanet.am.console.base.ConsoleServletBase.onUncaughtException(ConsoleServletBase.java:338)
         com.iplanet.jato.ApplicationServletBase.fireUncaughtException(ApplicationServletBase.java:1023)
         com.iplanet.jato.ApplicationServletBase.processRequest(ApplicationServletBase.java:469)
         com.iplanet.jato.ApplicationServletBase.doPost(ApplicationServletBase.java:324)
         com.iplanet.jato.ApplicationServletBase.doGet(ApplicationServletBase.java:294)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:747)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:860)
         sun.reflect.GeneratedMethodAccessor106.invoke(Unknown Source)
         sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         java.lang.reflect.Method.invoke(Method.java:585)
         org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:249)
         java.security.AccessController.doPrivileged(Native Method)
         javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:282)
         org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:165)
    If anyone have any idea about the cause of this error,please let me know.All suggestions are welcome .
    Thanx and Regards,
    Chirag.

    Hi All,
    I am having exactly the same problem with the same stack trace. Has anybody have an idea how to fix this?
    I have downloaded the Java Identity Management Suite.(java_es-5-identsuite-ga-windows-x86.zip) The first time installation was fine and I was able to bring the Access Manager console. I was able to create users groups etc.
    However, when I uninstalled and installed it again, I got exactly the same error described in the thread. Running "amserver start" and "amserver restart" did not help. I did the installation one more time
    but again I got the same error.
    Thanks for the help.
    celikkan

  • Can Actions Menu of Interactive Reports work with Custom Authentication?

    My testing is leading my to believe that Actions Menu do not work with Custom Authentication (but only work with APEX Authentication) in APEX 3.1.2? If that's true then is there a work around to this?
    Just to clarify, I've posted/asked this question twice before:
    1) Re: Actions Menu in Interactive Reports does not sort, filter, select cols etc
    2) Interactive Report actions don't work for users (i.e. for non-developers)
    But I've come to believe this is the main problem. I just don't know how to resolve/work around this?
    Thanks for any help.

    I haven't setup a sample because my custom authentication is using LDAP authentication. I'm not sure how I can replicate that on the samples server?
    I'm using LDAP authentication with a Page Sentry function. My further testing reveals that the Page Sentry function is setting the APEX variable user to NULL (ie blank) whenever there's any code in the Page Sentry function box. PL/SQL code as simple as
    BEGIN return TRUE; END;
    in the Page Sentry function box sets the "user" is set to <null>. When the Page sentry function box is left empty (no code specified) it sets the "user" properly after authentication against the specified LDAP directory.
    What all this has to do with Interactive Reports...
    It seems like when the user is NULL it messes-up Interactive Reports that are stored in the flows database. Although it shows the default report properly, but no runtime interactive actions (filtering, sorting, column break, etc.) work.
    Can someone please correct or confirm this?
    Thanks.

  • Not able to Enable the Custom Ribbon button On Pages in Sharepoint 2013

    Hi Team,
    Not able to Enable the Custom Ribbon button On Pages in SharePoint 2013. we have used the button edit properties section of the Pages.
    Same is working for Lists but not for Pages.
    Thanks,
    Shrikant

    Thanks for your reply.
    Right now my server is not working to get the code. will share you in some time.
    I am just thinking if page get checked out and my control is also present in the Edit properties section then do I need to specify something explicitly to enable the button. The same is working for Lists.

Maybe you are looking for

  • Error message when trying to use image processor in CS2

    Hi I am trying to use image processor to condense 500 proofs for my website - however although I have done many times before with no problem, now when I hit the Image processor button before I even get to key in details it is bringing up the sorry so

  • Copy/Paste functionlity is not working in oracle forms 11g

    Hi All, We are using custom built big application (oracle 11g/forms 11g). 1. And few user are not able to copy/paste from oracle forms 11g to winword.And its random sometime they can ,sometime they can't . 2. If they have problem means they have copy

  • Cannot TYPE in Windows 2008 remotre server.

    I cannot TYPE in Windows 2008 remotre server. I can open, close, save and ctrl+alt+delete to open the task manager, but that's it because I cannot type. When I close the remote connection everything else works just fine.

  • BCS Breakdown Check - how to adjust individual records?

    Hi all, I just arrived at a new client and have found several thousand inconsitent records. Breakdown check shows us how many there are and also allows entry of a vlue for missing subassignments. However, there is no option to adjust individual lines

  • Illustrator is Shrinking JPG when Imported from Photoshop

    I just recently started working on a MAC (have been a PC user for years) and I have never had this problem with the DPI/PPI.  Not sure if it may be a Mac issue, a CC issue or user error on my part. I create an image in photoshop ie 1900x600 300PPI, n