Checkout view in a rule

Hi
In addition to my [previous post|http://forums.sun.com/thread.jspa?threadID=5336770&messageID=10453744#10453744], I have the following need:
In a rule how can we use something like a "checkout view" ? I would like to have something like what is discussed in [http://forums.sun.com/thread.jspa?forumID=764&threadID=5316145|http://forums.sun.com/thread.jspa?forumID=764&threadID=5316145] ie just having to give the accountId and the name of the resources and letting IDM querying using the good adapter and returning the data.
Has anyone ever done this ?
Would it be easier to use a workflow than a rule ?
Thanks,
Ben

It's probably running anonymously. That was my issue I think. The break points don't work on anonymous execution. At least not for me. Now, you can specify to use anonymous break points.. But then it breaks at EVERY anonymous break point. I had a hard time stepping through them all to get to what I needed to see execute, before it would time out... good Luck...

Similar Messages

  • Checkout view  method- access denied error

    It works fine, When tried to get the user view and can print the values. When tried to checkout view it throws error
    com.waveset.util.WSAuthorizationException: View access denied to Subject unit1manager1 on User: unit1user1.
    com.waveset.util.WSAuthorizationException: Modify access denied to Subject unit1manager1 on User: unit1user1.
    <Action id='1' name='checkoutView' application='com.waveset.session.WorkflowServices'>
      <Argument name='op' value='checkoutView'/>
      <Argument name='type' value='User'/>
      <Argument name='id'>
        <ref>selectedCCEmp</ref>
      </Argument>
      <Argument name='authorized' value='true'/>
      <Return from='view' to='employee'/>
    </Action>
    Also tried with and with "authorized" argument
    I tried giving all the capabilities to the manager via admin role still same error. All the users are in the top level of the firm. The controlled organization rule (edit org) and user member rules (edit admin role) dictates the organization structure and members with then the org.
    Thanks in advance
    Sasanka

    I think you want to add the subject argument. Example set subject to Configurator and it should work.

  • Using Sql views in Load rules

    <p>I am trying to create a load rule from a SQL view. When I openthe Sql in the Rules file, the headers show up, but there is nodata.</p><p>Is there something else I need to do? (I did not create the SQLviews myself)</p><p>I am quite capable of loading data/dimensions from a SQL queryor table, but this table needed to be combined with another so myMIS supprt created a view for me to use to load from.</p><p> </p><p>Any help would be greatly appreciated!</p><p> </p><p> </p>

    I had probems with certain column types in the past. Had to convert them to strings. It's been a while so I dont remember what type. The best way to find something like this is to modify your sql to return one column, try it and see it it works, if it does, then add a the second column, etc. It can be tedious if you have a lot of columns but beats sitting there scratching your head.

  • Discrepancy between browser & design view; Hor. Rule Question

    These are actually two issues, but I'm using one page as an example.  I'm encountering this throughout other pages on the site.
    Design view is absolutely killing me.  I get the layout correct, but in brower view (this is both FF and IE) the margin space is not consistent at top and bottom and throws the design out of whack.  Additionally, I love the look of horizontal rules, but there's a LOT of margin space around it.  I'd like to reduce it.  When I look in the code, I'm not seeing any errant p tags or  line breaks.
    Be advised the page I'm sending you is a child page from a template.  I've set up one editable region.  I've edited the padding / margin for the editable div on the template, which works well site-wide.  There's also a little bit of padding in the CSS "body_text" that controls the formatting.  It's cool site-wide as well.
    I don't have this page linked yet, so it's not published.  However, I've attached PDFs of the browser and design views, as well as the code as a word doc.  The actual editable text region has been shaded gray so you don't have to wade through the template stuff.
    Thanks.
    W!

    Often when you fix one code validation error, it takes care of several others.
    Line 153 and 156  - take out the background="filename.html" attribute in your <td> tags
    <td background="anniversaries.html"
    <td background="firstfedonthemove.html"
    Line 179 -  change this
    ... Masters of Education Degree in Instructional Technology.</div>
    to this
    ... Masters of Education Degree in Instructional Technology.</p> </div>
    Republish the page and see if that helps.
    Gotta run now.  Maybe Murray can pick up from here.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics |
    Print | Media Specialists
    www.alt-web.com/
    www.twitter.com/altweb

  • View Categories in RULE MODELEER

    hi,
    CRM gurus,
    how can i create automatic email escalation for (IC webclient) complaints through Rule modeler...?
    can categories of category Modeler be viewed in RULE modeler...?
    -Nirav

    aproundtree wrote:
    Has a fix in version 6.2 been created for this issue yet?  Or is Palm currently working on one?
    Palm doesn't own the software - it was purchased by Access quite some time ago.
    I would not expect any future fixes for any PalmOS devices, nor the software associated with it.  Palm is moving on to webOS devices, and away from legacy PalmOS ones. 
    WyreNut
    I am a Volunteer here, not employed by HP.
    You too can become an HP Expert! Details HERE!
    If my post has helped you, click the Kudos Thumbs up!
    If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

  • Where can I view all Business rules that are currently running

    Hi,
    I was told that this is available in our Planning v11 but can't find it.
    where can I view all processes (such as Business rules) that users are currently running ?
    thanks.

    Hi,
    They are probably meaning the job console > Tools > Job console.
    More information > http://download.oracle.com/docs/cd/E12825_01/epm.111/hp_user/job_stat.html
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Checkin and checkout view with java

    I went through the waveset API and I am trying to checkin and check out view/object.....I found a method which does it but im not sure what would the String id would be in the following method.
    checkoutView(ViewMaster vm, java.lang.String id, java.util.Map options)
    Here is what I have so far
    Session ses = SessionFactory.getConfiguratorSession("http://127.0.0.1:8080/FIM/servlet/rpcrouter2",username,pass,false);
    LighthouseContext lh = ses;
    AbstractViewHandler avh = null;
    ViewMaster vm = new ViewMaster(lh);
    HashMap m = new HashMap();
    GenericObject go = null;
    go = avh.checkoutView(vm,String id, m);another way of checking out the object is throught LighthouseContext
    but even there it requires a String id
    I tried doing:
    Session ses = SessionFactory.getConfiguratorSession("http://127.0.0.1:8080/FIM/servlet/rpcrouter2",username,pass,false);
    LighthouseContext lh = ses;
    HashMap m = new HashMap();
    lh.getView("configurator", m);i got a following error:
    com.waveset.util.WavesetException: Server exception: com.waveset.util.InternalError: Unable to locate view handler for 'configurator'
         at com.waveset.session.RemoteSession.getResultObject(RemoteSession.java:1076)
         at com.waveset.session.RemoteSession.rpc(RemoteSession.java:1027)
         at com.waveset.session.RemoteSession.callx(RemoteSession.java:955)
         at com.waveset.session.RemoteSession.call(RemoteSession.java:939)
         at com.waveset.session.RemoteSession.call(RemoteSession.java:925)
         at com.waveset.session.RemoteSession.call(RemoteSession.java:912)
         at com.waveset.session.RemoteSession.call(RemoteSession.java:901)
         at com.waveset.session.RemoteSession.getView(RemoteSession.java:799)
         at Test.main(Test.java:29)
    thx
    Edited by: djavia on Nov 6, 2007 6:51 AM

    The format for the id parameter is <ViewName>:<ObjectName>.
    eg, 'User:configurator'.
    Michael.

  • Unable t view the rules in EAS

    Hi
    I couldn't able to view the business rules in EAS.I can view them in planning and execute them from planning.
    What might be the problem?

    I think you should try to use the ID you used to create the BRs.
    Also, make sure you are connected to the right administration server. I hope you are aware that there are administration server and essbase servers in EAS console. BR sit on Administration server. it should show connected against the administration server. Even though administration server shows on your list, it doesnt mean that you are connected to it.

  • List Tile View not working with include rule on iOS?

    hi Expert,
    I used the List Tile View with include rule in Agentry 6.0 on WinCE before to generate "selected" object list upon different conditions, e.g., assigning tasks based on scenarios.
    Currently, I am experimenting the same function on iOS tablet.
    On the start screen which is a detailed screen for main object, there is a List Tile View and an include rule. However, the objects in the tile list are not updated correctly when the output of the rule changes. Note that the same include rule works perfectly with a List View for the same collection.
    To my observation, the problem seems to associated with "update" of the tiles when result of include rule changes. For example, in scenario 1, there are 5 objects in the list; switching to scenario 2, there are 10 objects. From the No.6 to No.10, the objects are correct. The No.1 to No.5 are still the original 5 objects for scenario 1.
    When the user clicks on tiles, it makes the situation worse. Normally, a single object's tile will always be shown in the selected tile regardless which tile is selected from the list.
    My development environment is 6.0.40 and the client is 6.0.40 on iPad (iOS 7.1). I would like to know whether this is a known issue before I provide more details.
    Thanks.
    -Yang

    hi experts,
    When I asked the question on this list tile view refreshing issue, my dev environment is Agentry 6.0.38.
    In Agentry 6.0.40.1's release note, there is a fixed
    AG-25821  iOS 7 refresh issue with iPad tile list
    However, I currently have Agentry 6.0.42.1 on iPad (iOS 7.1.2). And my editor/server is 6.0.42.0. I still have the list tile view refreshing issue. The same rule can be used on list without any problem. But the list tile still has trouble on display the right set of objects.
    My question is is that fix related to the problem I saw?
    Thx.
    -Yang

  • How to view or Edit Business Rules in SOA Composer

    HI,
    We have a requirement to use Business Rules with OSB. We have OSB 11.1.1.5 installed in Clustered environment. Installed SOA composer patch on top of OSB 11.1.1.5. I have createed and deployed the sample Business Rules WAR/SAR targeted it to Admin Server. I could able to open Business Composer URL. Though unable to see any Rules. Nothing is available in Composer. I have privilege as "Admin".
    In Server --> Deployments --> Composer war is active.
    What else I need to check to view the Business Rules in Composer! Please let me know quick remedy to overcome!
    Edited by: 945206 on Jul 10, 2012 2:51 AM

    Don't know much about SOA Composer (sorry - you've hit the BPM forum), but you should be able to see the business rules from the Oracle BPM Composer. If you've installed BPM, go to http://xx:####/bpm/composer and you'll see business rules after poking around a little. Let me know if you need more help finding them.
    Dan

  • How to tune data loading time in BSO using 14 rules files ?

    Hello there,
    I'm using Hyperion-Essbase-Admin-Services v11.1.1.2 and the BSO Option.
    In a nightly process using MAXL i load new data into one Essbase-cube.
    In this nightly update process 14 account-members are updated by running 14 rules files one after another.
    These rules files connect 14 times by sql-connection to the same oracle database and the same table.
    I use this procedure because i cannot load 2 or more data fields using one rules file.
    It takes a long time to load up 14 accounts one after other.
    Now my Question: How can I minimise this data loading time ?
    This is what I found on Oracle Homepage:
    What's New
    Oracle Essbase V.11.1.1 Release Highlights
    Parallel SQL Data Loads- Supports up to 8 rules files via temporary load buffers.
    In an Older Thread John said:
    As it is version 11 why not use parallel sql loading, you can specify up to 8 load rules to load data in parallel.
    Example:
    import database AsoSamp.Sample data
    connect as TBC identified by 'password'
    using multiple rules_file 'rule1','rule2'
    to load_buffer_block starting with buffer_id 100
    on error write to "error.txt";
    But this is for ASO Option only.
    Can I use it in my MAXL also for BSO ?? Is there a sample ?
    What else is possible to tune up nightly update time ??
    Thanks in advance for every tip,
    Zeljko

    Thanks a lot for your support. I’m just a little confused.
    I will use an example to illustrate my problem a bit more clearly.
    This is the basic table, in my case a view, which is queried by all 14 rules files:
    column1 --- column2 --- column3 --- column4 --- ... ---column n
    dim 1 --- dim 2 --- dim 3 --- data1 --- data2 --- data3 --- ... --- data 14
    Region -- ID --- Product --- sales --- cogs ---- discounts --- ... --- amount
    West --- D1 --- Coffee --- 11001 --- 1,322 --- 10789 --- ... --- 548
    West --- D2 --- Tea10 --- 12011 --- 1,325 --- 10548 --- ... --- 589
    West --- S1 --- Tea10 --- 14115 --- 1,699 --- 10145 --- ... --- 852
    West --- C3 --- Tea10 --- 21053 --- 1,588 --- 10998 --- ... --- 981
    East ---- S2 --- Coffee --- 15563 --- 1,458 --- 10991 --- ... --- 876
    East ---- D1 --- Tea10 --- 15894 --- 1,664 --- 11615 --- ... --- 156
    East ---- D3 --- Coffee --- 19689 --- 1,989 --- 15615 --- ... --- 986
    East ---- C1 --- Coffee --- 18897 --- 1,988 --- 11898 --- ... --- 256
    East ---- C3 --- Tea10 --- 11699 --- 1,328 --- 12156 --- ... --- 9896
    Following 3 out of 14 (load-) rules files to load the data columns into the cube:
    Rules File1:
    dim 1 --- dim 2 --- dim 3 --- sales --- ignore --- ignore --- ... --- ignore
    Rules File2:
    dim 1 --- dim 2 --- dim 3 --- ignore --- cogs --- ignore --- ... --- ignore
    Rules File14:
    dim 1 --- dim 2 --- dim 3 --- ignore --- ignore --- ignore --- ... --- amount
    Is the upper table design what GlennS mentioned as a "Data" column concept which only allows a single numeric data value ?
    In this case I cant tag two or more columns as “Data fields”. I just can tag one column as “Data field”. Other data fields I have to tag as “ignore fields during data load”. Otherwise, when I validate the rules file, an Error occurs “only one field can contain the Data Field attribute”.
    Or may I skip this error massage and just try to tag all 14 fields as “Data fields” and “load data” ?
    Please advise.
    Am I right that the other way is to reconstruct the table/view (and the rules files) like follows to load all of the data in one pass:
    dim 0 --- dim 1 --- dim 2 --- dim 3 --- data
    Account --- Region -- ID --- Product --- data
    sales --- West --- D1 --- Coffee --- 11001
    sales --- West --- D2 --- Tea10 --- 12011
    sales --- West --- S1 --- Tea10 --- 14115
    sales --- West --- C3 --- Tea10 --- 21053
    sales --- East ---- S2 --- Coffee --- 15563
    sales --- East ---- D1 --- Tea10 --- 15894
    sales --- East ---- D3 --- Coffee --- 19689
    sales --- East ---- C1 --- Coffee --- 18897
    sales --- East ---- C3 --- Tea10 --- 11699
    cogs --- West --- D1 --- Coffee --- 1,322
    cogs --- West --- D2 --- Tea10 --- 1,325
    cogs --- West --- S1 --- Tea10 --- 1,699
    cogs --- West --- C3 --- Tea10 --- 1,588
    cogs --- East ---- S2 --- Coffee --- 1,458
    cogs --- East ---- D1 --- Tea10 --- 1,664
    cogs --- East ---- D3 --- Coffee --- 1,989
    cogs --- East ---- C1 --- Coffee --- 1,988
    cogs --- East ---- C3 --- Tea10 --- 1,328
    discounts --- West --- D1 --- Coffee --- 10789
    discounts --- West --- D2 --- Tea10 --- 10548
    discounts --- West --- S1 --- Tea10 --- 10145
    discounts --- West --- C3 --- Tea10 --- 10998
    discounts --- East ---- S2 --- Coffee --- 10991
    discounts --- East ---- D1 --- Tea10 --- 11615
    discounts --- East ---- D3 --- Coffee --- 15615
    discounts --- East ---- C1 --- Coffee --- 11898
    discounts --- East ---- C3 --- Tea10 --- 12156
    amount --- West --- D1 --- Coffee --- 548
    amount --- West --- D2 --- Tea10 --- 589
    amount --- West --- S1 --- Tea10 --- 852
    amount --- West --- C3 --- Tea10 --- 981
    amount --- East ---- S2 --- Coffee --- 876
    amount --- East ---- D1 --- Tea10 --- 156
    amount --- East ---- D3 --- Coffee --- 986
    amount --- East ---- C1 --- Coffee --- 256
    amount --- East ---- C3 --- Tea10 --- 9896
    And the third way is to adjust the essbase.cfg parameters DLTHREADSPREPARE and DLTHREADSWRITE (and DLSINGLETHREADPERSTAGE)
    I just want to be sure that I understand your suggestions.
    Many thanks for awesome help,
    Zeljko

  • 4.1 SP1 Issue with adding a View to a Task

    After creating a new View and Rule, I bind the Rule to the View.  If I attempt to add the View to an existing Task, I get a message stating that the View has no Rule bindings.  The error doesn't occur if I bind the View to the Rule, but binding View to Rule is more cumbersome.  Do you know what might be happening in the background to cause this problem, and how it can be corrected? 

    Trish Pedersen,
    Can you see the usage of this view and ensure that it has one or more rule associated.
    Regards

  • Business Rules will not launch or open in EAS or Planning

    The Business Rules will not open or launch in EAS.  Additionally, they do not show up in Planning at all.  The error received is "Exception occurred. Please check your log file for details."  As of Friday, everything was working fine. On Monday morning the issue started.  The only thing that occurred over the weekend was the weekly stop & start of all services.
    Addiitonal Info:
    Version 9.3.1
    Can create new rules, but after saved, cannot launch or re-open
    Can view the business rules in EAS, cannot open, launch, or validate
    Cannot view any business rules in Planning
    Have already tried stopping and starting all services
    Have already tried different ids.
    When reviewing the error log I could find it says the following:
    AJPRequestHandler-HTTPThreadGroup-6 com.hyperion.hbr.security.HbrSecurityAPI -
    Error Code: -1
    com.hyperion.css.CSSCommunicationException: Unable to communicate with the server. Error Code: 3
    NestedException:
    com.hyperion.css.CSSCommunicationException: Failed to connect to the directory server. Error Code: 3
    NestedException:
    javax.naming.CommunicationException: USRTPD201P:389 [Root exception is java.net.ConnectException: Connection refused: connect]
    at com.hyperion.css.spi.impl.msad.JNDIHelper.getURLContext(Unknown Source)
    at com.hyperion.css.spi.impl.msad.JNDIHelper.getURLContext(Unknown Source)
    at com.hyperion.css.spi.impl.msad.MSADProvider.getUserByIdentity(Unknown Source)
    at com.hyperion.css.CSSAPIImpl.getUserByIdentity(Unknown Source)
    at com.hyperion.css.spi.impl.nv.NativeProvider.getUserById(Unknown Source)
    at com.hyperion.css.spi.impl.nv.NativeProvider.getUserByIdentity(Unknown Source)
    at com.hyperion.css.spi.impl.nv.NativeProvider.getIndirectRolesListForEntries(Unknown Source)
    at com.hyperion.css.spi.impl.nv.NativeProvider.getRolesListForEntries(Unknown Source)
    at com.hyperion.css.spi.impl.nv.NativeProvider.getRolesListForEntry(Unknown Source)
    at com.hyperion.hbr.security.HbrSecurityAPIHelper.getMergedCSSentriesArray(Unknown Source)
    at com.hyperion.hbr.security.HbrSecurityAPIHelper.updateAllHashes(Unknown Source)
    at com.hyperion.hbr.security.HbrSecurityAPI.getGroupsHash(Unknown Source)
    at com.hyperion.hbr.db.DBGroups.getGroupsForGroup(Unknown Source)
    at com.hyperion.hbr.core.GroupManagerServer.getGroupsForGroup(Unknown Source)
    at com.hyperion.hbr.core.AccessControlManagerServer.getInheritedObjects(Unknown Source)
    at com.hyperion.hbr.core.AccessControlManagerServer.getUserAccessibleObjects(Unknown Source)
    at com.hyperion.hbr.core.AccessHash.getCurrentAccess(Unknown Source)
    at com.hyperion.hbr.core.AccessHash.canLaunch(Unknown Source)
    at com.hyperion.hbr.core.AccessControlManagerServer.canLaunch(Unknown Source)
    at com.hyperion.hbr.core.AccessControlManagerServer.validateLaunchLocations(Unknown Source)
    at com.hyperion.hbr.core.AccessControlCmdListener.validateLaunchLocations(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.essbase.eas.framework.server.application.AbstractCommandListener.handleEvent(Unknown Source)
    at com.essbase.eas.framework.server.application.DefaultCommandDispatcher.dispatchEvent(Unknown Source)
    at com.essbase.eas.framework.server.application.DefaultEventController.handleEvent(Unknown Source)
    at com.essbase.eas.framework.server.application.EventDispatcherWorkListener.handleEvent(Unknown Source)
    at com.essbase.eas.framework.server.application.DefaultWorkDispatcher.dispatchEvent(Unknown Source)
    at com.essbase.eas.framework.server.application.DefaultEventController.handleEvent(Unknown Source)
    at com.essbase.eas.framework.server.application.DefaultApplication.generateWorkEvent(Unknown Source)
    at com.essbase.eas.framework.server.application.DefaultServlet.handleRequest(Unknown Source)
    at com.essbase.eas.server.AppManServlet.doPost(Unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:711)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:302)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:190)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)
    Nested Exception:
    Error Code: -1
    com.hyperion.css.CSSCommunicationException: Failed to connect to the directory server. Error Code: 3
    NestedException:
    javax.naming.CommunicationException: USRTPD201P:389 [Root exception is java.net.ConnectException: Connection refused: connect]
    at com.hyperion.css.spi.util.jndi.pool.JNDIConnectionPool.getBorrowObject(Unknown Source)
    at com.hyperion.css.spi.util.jndi.pool.JNDIConnectionPool.borrowValidatedConnection(Unknown Source)
    at com.hyperion.css.spi.impl.msad.JNDIHelper.getURLContext(Unknown Source)
    at com.hyperion.css.spi.impl.msad.JNDIHelper.getURLContext(Unknown Source)
    at com.hyperion.css.spi.impl.msad.MSADProvider.getUserByIdentity(Unknown Source)
    at com.hyperion.css.CSSAPIImpl.getUserByIdentity(Unknown Source)
    at com.hyperion.css.spi.impl.nv.NativeProvider.getUserById(Unknown Source)
    at com.hyperion.css.spi.impl.nv.NativeProvider.getUserByIdentity(Unknown Source)
    at com.hyperion.css.spi.impl.nv.NativeProvider.getIndirectRolesListForEntries(Unknown Source)
    at com.hyperion.css.spi.impl.nv.NativeProvider.getRolesListForEntries(Unknown Source)
    at com.hyperion.css.spi.impl.nv.NativeProvider.getRolesListForEntry(Unknown Source)
    at com.hyperion.hbr.security.HbrSecurityAPIHelper.getMergedCSSentriesArray(Unknown Source)
    at com.hyperion.hbr.security.HbrSecurityAPIHelper.updateAllHashes(Unknown Source)
    at com.hyperion.hbr.security.HbrSecurityAPI.getGroupsHash(Unknown Source)
    at com.hyperion.hbr.db.DBGroups.getGroupsForGroup(Unknown Source)
    at com.hyperion.hbr.core.GroupManagerServer.getGroupsForGroup(Unknown Source)
    at com.hyperion.hbr.core.AccessControlManagerServer.getInheritedObjects(Unknown Source)
    at com.hyperion.hbr.core.AccessControlManagerServer.getUserAccessibleObjects(Unknown Source)
    at com.hyperion.hbr.core.AccessHash.getCurrentAccess(Unknown Source)
    at com.hyperion.hbr.core.AccessHash.canLaunch(Unknown Source)
    at com.hyperion.hbr.core.AccessControlManagerServer.canLaunch(Unknown Source)
    at com.hyperion.hbr.core.AccessControlManagerServer.validateLaunchLocations(Unknown Source)
    at com.hyperion.hbr.core.AccessControlCmdListener.validateLaunchLocations(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.essbase.eas.framework.server.application.AbstractCommandListener.handleEvent(Unknown Source)
    at com.essbase.eas.framework.server.application.DefaultCommandDispatcher.dispatchEvent(Unknown Source)
    at com.essbase.eas.framework.server.application.DefaultEventController.handleEvent(Unknown Source)
    at com.essbase.eas.framework.server.application.EventDispatcherWorkListener.handleEvent(Unknown Source)
    at com.essbase.eas.framework.server.application.DefaultWorkDispatcher.dispatchEvent(Unknown Source)
    at com.essbase.eas.framework.server.application.DefaultEventController.handleEvent(Unknown Source)
    at com.essbase.eas.framework.server.application.DefaultApplication.generateWorkEvent(Unknown Source)
    at com.essbase.eas.framework.server.application.DefaultServlet.handleRequest(Unknown Source)
    at com.essbase.eas.server.AppManServlet.doPost(Unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:711)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:302)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:190)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)
    Nested Exception:
    javax.naming.CommunicationException: USRTPD201P:389 [Root exception is java.net.ConnectException: Connection refused: connect]
    at com.sun.jndi.ldap.Connection.<init>(Connection.java:204)
    at com.sun.jndi.ldap.LdapClient.<init>(LdapClient.java:118)
    at com.sun.jndi.ldap.LdapClient.getInstance(LdapClient.java:1578)
    at com.sun.jndi.ldap.LdapCtx.connect(LdapCtx.java:2596)
    at com.sun.jndi.ldap.LdapCtx.<init>(LdapCtx.java:283)
    at com.sun.jndi.ldap.LdapCtxFactory.getUsingURL(LdapCtxFactory.java:175)
    at com.sun.jndi.ldap.LdapCtxFactory.getUsingURLs(LdapCtxFactory.java:193)
    at com.sun.jndi.ldap.LdapCtxFactory.getLdapCtxInstance(LdapCtxFactory.java:136)
    at com.sun.jndi.ldap.LdapCtxFactory.getInitialContext(LdapCtxFactory.java:66)
    at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:667)
    at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:247)
    at javax.naming.InitialContext.init(InitialContext.java:223)
    at javax.naming.ldap.InitialLdapContext.<init>(InitialLdapContext.java:134)
    at com.hyperion.css.spi.util.jndi.pool.CSSJNDIKeyedObjectFactory.init(Unknown Source)
    at com.hyperion.css.spi.util.jndi.pool.CSSJNDIKeyedObjectFactory.makeObject(Unknown Source)
    at org.apache.commons.pool.impl.GenericKeyedObjectPool.borrowObject(GenericKeyedObjectPool.java:792)
    at com.hyperion.css.spi.util.jndi.pool.JNDIConnectionPool.getBorrowObject(Unknown Source)
    at com.hyperion.css.spi.util.jndi.pool.JNDIConnectionPool.borrowValidatedConnection(Unknown Source)
    at com.hyperion.css.spi.impl.msad.JNDIHelper.getURLContext(Unknown Source)
    at com.hyperion.css.spi.impl.msad.JNDIHelper.getURLContext(Unknown Source)
    at com.hyperion.css.spi.impl.msad.MSADProvider.getUserByIdentity(Unknown Source)
    at com.hyperion.css.CSSAPIImpl.getUserByIdentity(Unknown Source)
    at com.hyperion.css.spi.impl.nv.NativeProvider.getUserById(Unknown Source)
    at com.hyperion.css.spi.impl.nv.NativeProvider.getUserByIdentity(Unknown Source)
    at com.hyperion.css.spi.impl.nv.NativeProvider.getIndirectRolesListForEntries(Unknown Source)
    at com.hyperion.css.spi.impl.nv.NativeProvider.getRolesListForEntries(Unknown Source)
    at com.hyperion.css.spi.impl.nv.NativeProvider.getRolesListForEntry(Unknown Source)
    at com.hyperion.hbr.security.HbrSecurityAPIHelper.getMergedCSSentriesArray(Unknown Source)
    at com.hyperion.hbr.security.HbrSecurityAPIHelper.updateAllHashes(Unknown Source)
    at com.hyperion.hbr.security.HbrSecurityAPI.getGroupsHash(Unknown Source)
    at com.hyperion.hbr.db.DBGroups.getGroupsForGroup(Unknown Source)
    at com.hyperion.hbr.core.GroupManagerServer.getGroupsForGroup(Unknown Source)
    at com.hyperion.hbr.core.AccessControlManagerServer.getInheritedObjects(Unknown Source)
    at com.hyperion.hbr.core.AccessControlManagerServer.getUserAccessibleObjects(Unknown Source)
    at com.hyperion.hbr.core.AccessHash.getCurrentAccess(Unknown Source)
    at com.hyperion.hbr.core.AccessHash.canLaunch(Unknown Source)
    at com.hyperion.hbr.core.AccessControlManagerServer.canLaunch(Unknown Source)
    at com.hyperion.hbr.core.AccessControlManagerServer.validateLaunchLocations(Unknown Source)
    at com.hyperion.hbr.core.AccessControlCmdListener.validateLaunchLocations(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.essbase.eas.framework.server.application.AbstractCommandListener.handleEvent(Unknown Source)
    at com.essbase.eas.framework.server.application.DefaultCommandDispatcher.dispatchEvent(Unknown Source)
    at com.essbase.eas.framework.server.application.DefaultEventController.handleEvent(Unknown Source)
    at com.essbase.eas.framework.server.application.EventDispatcherWorkListener.handleEvent(Unknown Source)
    at com.essbase.eas.framework.server.application.DefaultWorkDispatcher.dispatchEvent(Unknown Source)
    at com.essbase.eas.framework.server.application.DefaultEventController.handleEvent(Unknown Source)
    at com.essbase.eas.framework.server.application.DefaultApplication.generateWorkEvent(Unknown Source)
    at com.essbase.eas.framework.server.application.DefaultServlet.handleRequest(Unknown Source)
    at com.essbase.eas.server.AppManServlet.doPost(Unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:711)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:302)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:190)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)
    Caused by: java.net.ConnectException: Connection refused: connect
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
    at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
    at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
    at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)
    at java.net.Socket.connect(Socket.java:507)
    at java.net.Socket.connect(Socket.java:457)
    at java.net.Socket.<init>(Socket.java:365)
    at java.net.Socket.<init>(Socket.java:178)
    at com.sun.jndi.ldap.Connection.createSocket(Connection.java:346)
    at com.sun.jndi.ldap.Connection.<init>(Connection.java:181)
    ... 62 more

    I can view the rules in EAS, just cannot open or launch.  I am thinking it still has to do with the active directory that they changed, but need more time to research.  Here is the specific error now:
    2013-08-07 10:09:32,057 INFO AJPRequestHandler-HTTPThreadGroup-6 com.hyperion.hbr.security.HbrSecurityAPI - LDAP porvider could not be contacted.
    Error Code: -1
    com.hyperion.css.CSSCommunicationException: LDAP porvider could not be contacted. Error Code: 3
    NestedException:
    java.net.ConnectException: Connection refused: connect
    at com.hyperion.css.spi.util.jndi.pool.JNDIConnectionPool.validateSocketConnection(Unknown Source)
    at com.hyperion.css.spi.util.jndi.pool.JNDIConnectionPool.init(Unknown Source)
    at com.hyperion.css.spi.util.jndi.pool.JNDIConnectionPool.<init>(Unknown Source)
    at com.hyperion.css.spi.impl.msad.JNDIHelper.getURLContext(Unknown Source)
    at com.hyperion.css.spi.impl.msad.JNDIHelper.getURLContext(Unknown Source)
    at com.hyperion.css.spi.impl.msad.MSADProvider.getUserByIdentity(Unknown Source)
    at com.hyperion.css.CSSAPIImpl.getUserByIdentity(Unknown Source)
    at com.hyperion.css.spi.impl.nv.NativeProvider.getUserById(Unknown Source)
    at com.hyperion.css.spi.impl.nv.NativeProvider.getUserByIdentity(Unknown Source)
    at com.hyperion.css.spi.impl.nv.NativeProvider.getIndirectRolesListForEntries(Unknown Source)
    at com.hyperion.css.spi.impl.nv.NativeProvider.getRolesListForEntries(Unknown Source)
    at com.hyperion.css.spi.impl.nv.NativeProvider.getRolesListForEntry(Unknown Source)
    at com.hyperion.hbr.security.HbrSecurityAPIHelper.getMergedCSSentriesArray(Unknown Source)
    at com.hyperion.hbr.security.HbrSecurityAPIHelper.updateAllHashes(Unknown Source)
    at com.hyperion.hbr.security.HbrSecurityAPI.getGroupsHash(Unknown Source)
    at com.hyperion.hbr.db.DBGroups.getGroupsForGroup(Unknown Source)
    at com.hyperion.hbr.core.GroupManagerServer.getGroupsForGroup(Unknown Source)
    at com.hyperion.hbr.core.AccessControlManagerServer.getInheritedObjects(Unknown Source)
    at com.hyperion.hbr.core.AccessControlManagerServer.getUserAccessibleObjects(Unknown Source)
    at com.hyperion.hbr.core.AccessHash.getCurrentAccess(Unknown Source)
    at com.hyperion.hbr.core.AccessHash.canLaunch(Unknown Source)
    at com.hyperion.hbr.core.AccessControlManagerServer.canLaunch(Unknown Source)
    at com.hyperion.hbr.core.AccessControlManagerServer.validateLaunchLocations(Unknown Source)
    at com.hyperion.hbr.core.AccessControlCmdListener.validateLaunchLocations(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.essbase.eas.framework.server.application.AbstractCommandListener.handleEvent(Unknown Source)
    at com.essbase.eas.framework.server.application.DefaultCommandDispatcher.dispatchEvent(Unknown Source)
    at com.essbase.eas.framework.server.application.DefaultEventController.handleEvent(Unknown Source)
    at com.essbase.eas.framework.server.application.EventDispatcherWorkListener.handleEvent(Unknown Source)
    at com.essbase.eas.framework.server.application.DefaultWorkDispatcher.dispatchEvent(Unknown Source)
    at com.essbase.eas.framework.server.application.DefaultEventController.handleEvent(Unknown Source)
    at com.essbase.eas.framework.server.application.DefaultApplication.generateWorkEvent(Unknown Source)
    at com.essbase.eas.framework.server.application.DefaultServlet.handleRequest(Unknown Source)
    at com.essbase.eas.server.AppManServlet.doPost(Unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:711)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:302)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:190)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)
    Nested Exception:
    java.net.ConnectException: Connection refused: connect
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
    at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
    at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
    at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)
    at java.net.Socket.connect(Socket.java:507)
    at com.hyperion.css.spi.util.jndi.pool.JNDIConnectionPool.validateSocketConnection(Unknown Source)
    at com.hyperion.css.spi.util.jndi.pool.JNDIConnectionPool.init(Unknown Source)
    at com.hyperion.css.spi.util.jndi.pool.JNDIConnectionPool.<init>(Unknown Source)
    at com.hyperion.css.spi.impl.msad.JNDIHelper.getURLContext(Unknown Source)
    at com.hyperion.css.spi.impl.msad.JNDIHelper.getURLContext(Unknown Source)
    at com.hyperion.css.spi.impl.msad.MSADProvider.getUserByIdentity(Unknown Source)
    at com.hyperion.css.CSSAPIImpl.getUserByIdentity(Unknown Source)
    at com.hyperion.css.spi.impl.nv.NativeProvider.getUserById(Unknown Source)
    at com.hyperion.css.spi.impl.nv.NativeProvider.getUserByIdentity(Unknown Source)
    at com.hyperion.css.spi.impl.nv.NativeProvider.getIndirectRolesListForEntries(Unknown Source)
    at com.hyperion.css.spi.impl.nv.NativeProvider.getRolesListForEntries(Unknown Source)
    at com.hyperion.css.spi.impl.nv.NativeProvider.getRolesListForEntry(Unknown Source)
    at com.hyperion.hbr.security.HbrSecurityAPIHelper.getMergedCSSentriesArray(Unknown Source)
    at com.hyperion.hbr.security.HbrSecurityAPIHelper.updateAllHashes(Unknown Source)
    at com.hyperion.hbr.security.HbrSecurityAPI.getGroupsHash(Unknown Source)
    at com.hyperion.hbr.db.DBGroups.getGroupsForGroup(Unknown Source)
    at com.hyperion.hbr.core.GroupManagerServer.getGroupsForGroup(Unknown Source)
    at com.hyperion.hbr.core.AccessControlManagerServer.getInheritedObjects(Unknown Source)
    at com.hyperion.hbr.core.AccessControlManagerServer.getUserAccessibleObjects(Unknown Source)
    at com.hyperion.hbr.core.AccessHash.getCurrentAccess(Unknown Source)
    at com.hyperion.hbr.core.AccessHash.canLaunch(Unknown Source)
    at com.hyperion.hbr.core.AccessControlManagerServer.canLaunch(Unknown Source)
    at com.hyperion.hbr.core.AccessControlManagerServer.validateLaunchLocations(Unknown Source)
    at com.hyperion.hbr.core.AccessControlCmdListener.validateLaunchLocations(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.essbase.eas.framework.server.application.AbstractCommandListener.handleEvent(Unknown Source)
    at com.essbase.eas.framework.server.application.DefaultCommandDispatcher.dispatchEvent(Unknown Source)
    at com.essbase.eas.framework.server.application.DefaultEventController.handleEvent(Unknown Source)
    at com.essbase.eas.framework.server.application.EventDispatcherWorkListener.handleEvent(Unknown Source)
    at com.essbase.eas.framework.server.application.DefaultWorkDispatcher.dispatchEvent(Unknown Source)
    at com.essbase.eas.framework.server.application.DefaultEventController.handleEvent(Unknown Source)
    at com.essbase.eas.framework.server.application.DefaultApplication.generateWorkEvent(Unknown Source)
    at com.essbase.eas.framework.server.application.DefaultServlet.handleRequest(Unknown Source)
    at com.essbase.eas.server.AppManServlet.doPost(Unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:711)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:302)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:190)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)

  • Access to Business Rules in AAS

    We have System 9.2.0.1 and when my user logs into AAS, they cannot view the Business Rules section. what is the proper access to grant in Shared Services for them to see the Business Rules?
    Thanks

    Ok I did not realize that there is an extra step to allow the user to see the Business rules once you provision them. I needed to log into AAS as an Admin, go to Business Rules Section, go to Administration Folder and right click and pick Refresh Users List. This apparently refreshes the list of users able to access Business Rules in AAS after they have been provisioned. Another solution is of course to stop and start the AAS service which is not practical to do during a workday.

  • Business rules in calculation manager

    Hi experts,
    I'm currently working with Hyperion Fusion Edition 11.1.1.2.
    In calculationmanager I created 10 business rules for an application.
    I then deleted all of them in one step (marked all then right click "delete").
    The intenet explorer browser freezed showing "DELETE".
    I then closed the browser and logged back in, imported the new 10 business rules to the application and deployed them.
    It is very wierd that I still have the old 10 business rules which I deleted plus the 10 new business rules.
    The old business rules are not to be found either in system-,deployment-, or list-view.
    Is there workaround to delete the 10 old business rules which I cannot see in calculation manager and still exist in planning?
    Many thanks
    Ed

    There are 2 ways to deploy rules to planning from calc manager.
    Option 1. When you select a bunch of rules and deploy, the old ones are not deleted from planning.
    Option 2. Go to the deployment view, select the rules you want to deploy. Go back to the system view and do a deploy at the application node.
    When you deploy at the application level, planning will erase all the existing ones and replaces it with the new ones.
    -SM

Maybe you are looking for

  • Multiple PO's for a single PR reg

    Hi, The system incorrectly allows multiple PO's for a single PR.Then,I configured message no 00 06 076 & 400 as a error message and system is not allowing mutiple PO's for single PR and if PO Qty is greater than PR it's not allowing and it's ok. Now

  • How do I remove an unnecessary kernel extension?

    I ran an Etre Check this morning and found I have a kernel extension that I do not need. It has likely been on my computer since I bought it new and had my old Windows files migrated to my iMac by the Apple Store. I do not now, nor have I ever had, a

  • The user account in which the Oracle VSS Writer Service is running does not have the DBA privileges to log in to the Oracle instance.

    VSS-00011: Connection to database instance <instance_name> failed.   Cause : The user account in which the Oracle VSS Writer Service is running  does not have the DBA privileges to log in to the Oracle instance.   Action : Run the Oracle VSS Writer S

  • NOKIA LUMIA 1GB RAM

    Hi, I recently bought Nokia lumia 520 with the ram of 914mb so i cant play games like fifa 15(my bst) how can I have the ram of gb help me plzz...

  • CC problem in RWB Component monitoring

    Hi people i am getting this error  in RWB component monitoring 1 communication channels have an error status0 communication channels inactive0 communication channels not providing any status information0 adapters logging communication-channel-indepen