ESSBASE & PLANNING USER TYPE SETTING

Hi all

We use the ESsbase and planning implementation.

some of our face to users as a matter of 'Not allowed access to Essbase' or 'not allowed access to the planning. When we looked for the reason, we found as the user not having the two 'Essbase & Planning' as access to applications in the EA-> Essbase Server-> Security

So, on this basis, select us the users manually in HSS and select the two 'Essbase & Planning' as the type of user for them.

It is all utilityto perform this task.

First of all, I need to list users who have not 'Essbase & Planning' as user type

Secondly, I would like to change their settings in order to access the applications...

Any help is appreciated!

Thank you!!

Kind regards
Rev

You can use maxl to set the application type
For example

ALTER user user_name add application_access_type Essbase;

or

ALTER user user_name add application_access_type planning;

See you soon

John
http://John-Goodwin.blogspot.com/

Tags: Business Intelligence

Similar Questions

  • Essbase + planning Quick Start and login to the Management Server

    I'm totally new in & Essbase, my only experience in Business Intelligence BusinessObjects Reporting/Administration and OracleBI/Oracle Data Integrator. My company is planning to create a project using Essbase and planning. I create in very little time showing some demo planning capabilities of this platform, then learn more about this technology. I have installation EMP + Essbase, Planning, and then cross EPM System Configurator. Now I need to create the new application, I guess, but I have the problem with the addition of Administration Server. After typing the host and server port response message back running. But I can not authenticate with the credentials of the administrator... I put the username and pass set up in the Essbase Administration Services of EPM System Configurator window, but I get the message:

    "User name or password is not correct, or there is a problem with the administration server"

    How can I solve this?

    Moreover, I will be very happy if someone gives me links to some "Wink" or demos according to the example configuration of EMP Essbase and planning

    Hello

    You can find some tutorials of planning here: http://www.oracle.com/technology/obe/hyp_fp/fp931.htm

    Gee

  • Question on planning user id

    Ask a question about planning user.  We are on 11.1.1.3.  When a user logs in the planning of the use of the data forms, Essbase Sessions shows a session for the user named admin (as opposed to the id of the user).  When the same user uses ad hoc analysis of SmartView, Essbase Sessions presents the session with the user's network connection.  Just curious to know why, when the user is in planning using data forms, Essbase Sessions doesn't show them with their network connection.  THX.

    Planning will connect to Essbase by using the account defined in the planning data source and not with the user who is logged that is why you will see the admin in the sessions.

    See you soon

    John

    http://John-Goodwin.blogspot.com/

  • In text box on form Web PC, get name based on the ID that the user types

    Hello world

    This is urgent. Please help.

    Is it possible that we can implement the following scenario:

    1. as a user types an ID (for example, student card) in a control textbox in a form Web of PCS, the student's name is recovered and populated accordingly?

    Can web service to be invoked as type us something in the text box within the SCP?

    Thank you very much.

    Nathan

    Hello again, Nathan,

    Creates a window should be easy.

    This page contains examples and templates that you can use with web forms:

    http://docs.Oracle.com/CD/E29542_01/user.1111/e15177/app_form_rule_examples.htm#BPMCU528

    Check the last section 'Search Popup'

    Also is there an example that explains how to call a web service from web forms and how to process the response:

    Employee search database using criteria

    If {(Search.clicked)

    eval ('x =' + http.get ("data/myqset/findEmployee? name = {name_s1} & type = {type_s1}

    ((& racfid = {id_s1} & email = {email_s1}'));

    Hope this helps

    See you soon

    José

  • When setting type in photoshop for printing purposes what setting should the type set to crisp or too strong?

    When setting type in photoshop for printing purposes what setting should the type set to crisp or too strong?

    Never, ever, rasterized text for printing purposes.

  • In a text box - Guidance Notes that disappears when the user types on?

    Hello

    I'm looking for a way to add Guidance Notes in a text box - that disappears when the user types on?

    Thank you very much

    GD

    See:

    95078.aspx https://Answers.acrobatusers.com/is-Add-Instructional-Text-Text-Field-disappear-clicked-Q1

  • How to freeze Essbase / Planning application data?

    Hello

    Is it possible to freeze an Essbase / / Planning Application to avoid business rules / / admin entered change data? I need it to be readable, because it is these days but do not want to change the current data in any way.

    Maintenance mode does not work because the Admin can always change data.

    Thank you

    Published by: Icebergue on Feb/11/2013-16:31

    Take a look at Maxl (start archive file) - http://docs.oracle.com/cd/E17236_01/epm.1112/esb_tech_ref/maxl_altdb_misc.html

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • ProcessEntry (...) consistency: unknown user type: java.lang.Object

    Hello!

    I created a new class that extends the VersionedPutAll class. When I replace processEntry (...) method I get an exception:
    Exception in thread "main" (Wrapped: Failed request execution for DistributedCache service on Member(Id=1, Timestamp=2012-08-09 18:02:13.598, Address=192.168.1.1:8088, MachineId=49553, 
    Location=site:,machine:StBook,process:18387, Role=IntellijRtExecutionAppMain) (Wrapped) unknown user type: java.lang.Object) java.io.IOException: unknown user type: java.lang.Object
    The original VersionedPutAll works well. My class without processEntry (...) works well also. But the simple substitution of processEntry (...) as
    protected Object processEntry(InvocableMap.Entry entry, Map mapAll, boolean fInsert, boolean fReturn) {
        return new Object();
    }
    throws an exception.

    Does anyone know what is the problem? Thank you.

    public class ExtVersionedPutAll extends VersionedPutAll {
        private static final Object NO_RESULT = new Object();
    
        public ExtVersionedPutAll() {}
    
        public ExtVersionedPutAll(Map map) {
            super(map);
        }
    
        public ExtVersionedPutAll(Map map, boolean fAllowInsert, boolean fReturn) {
            super(map, fAllowInsert, fReturn);
        }
    
        protected Object processEntry(InvocableMap.Entry entry, Map mapAll, boolean fInsert, boolean fReturn) {
            Object oKey = entry.getKey();
            if(mapAll.containsKey(oKey)) {
                Versionable oValueCur = (Versionable)entry.getValue();
                Versionable oValueNew = (Versionable)mapAll.get(oKey);
                boolean fMatch;
                if(oValueCur == null) {
                    fMatch = fInsert;
                } else {
                    Comparable verCur = oValueCur.getVersionIndicator();
                    Comparable verNew = oValueNew.getVersionIndicator();
                    fMatch = verCur.compareTo(verNew) < 0;
                }
                if(fMatch) {
                    oValueNew.incrementVersion();
                    entry.setValue(oValueNew, false);
                    return NO_RESULT;
                } else {
                    return fReturn ? oValueCur : NO_RESULT;
                }
            } else {
                return NO_RESULT;
            }
        }
    }
    Exception in thread "main" (Wrapped: Failed request execution for DistributedCache service on Member(Id=1, Timestamp=2012-08-09 18:02:13.598, Address=192.168.1.1:8088, MachineId=49553,
     Location=site:,machine:StBook,process:18387, Role=IntellijRtExecutionAppMain) (Wrapped) unknown user type: java.lang.Object) java.io.IOException: unknown user type: java.lang.Object
         at com.tangosol.util.Base.ensureRuntimeException(Base.java:288)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.tagException(Grid.CDB:36)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.partitionedService.PartitionedCache.onInvokeAllRequest(PartitionedCache.CDB:97)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.partitionedService.PartitionedCache$InvokeAllRequest.onReceived(PartitionedCache.CDB:111)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.onMessage(Grid.CDB:34)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Grid.onNotify(Grid.CDB:33)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.PartitionedService.onNotify(PartitionedService.CDB:3)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.partitionedService.PartitionedCache.onNotify(PartitionedCache.CDB:3)
         at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:42)
         at java.lang.Thread.run(Thread.java:662)
    Caused by: java.io.IOException: unknown user type: java.lang.Object
         at com.tangosol.io.pof.ConfigurablePofContext.serialize(ConfigurablePofContext.java:351)
         at com.tangosol.util.ExternalizableHelper.serializeInternal(ExternalizableHelper.java:2597)
         at com.tangosol.util.ExternalizableHelper.toBinary(ExternalizableHelper.java:211)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.partitionedService.PartitionedCache$ConverterValueToBinary.convert(PartitionedCache.CDB:3)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.partitionedService.PartitionedCache$Storage.invokeAll(PartitionedCache.CDB:63)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.partitionedService.PartitionedCache.onInvokeAllRequest(PartitionedCache.CDB:78)
         ... 7 more
    Caused by: java.lang.IllegalArgumentException: unknown user type: java.lang.Object
         at com.tangosol.io.pof.ConfigurablePofContext.getUserTypeIdentifier(ConfigurablePofContext.java:430)
         at com.tangosol.io.pof.ConfigurablePofContext.getUserTypeIdentifier(ConfigurablePofContext.java:419)
         at com.tangosol.io.pof.PofBufferWriter.writeUserType(PofBufferWriter.java:1671)
         at com.tangosol.io.pof.PofBufferWriter.writeObject(PofBufferWriter.java:1623)
         at com.tangosol.io.pof.ConfigurablePofContext.serialize(ConfigurablePofContext.java:345)
         ... 12 more

    The problem is that you try to return an instance of the EntryProcessor NO_RESULT and No_Result is of type Object. Coherence cannot serialize an ordinary object, so you get this error. You need to do something No_RESULT that can be serialized - object to primitive type or a custom class that is serializable POF.

    JK

  • Create a form. And there is plan editor type. Is this useful?

    Create a form. I enter * shape and Description.
    There is plan editor type. This deffrent from version 9.

    I have writer many words it contains. But I can't see any deffrent without it.
    Is this useful? That the of it use for?

    Thanks for your help.

    Don't know what version you are (we are on the v11), but in Smart View, you bring up the form instructions in the Planning tab: more / Instructions

    Or alternatively in the browser web there should be a menu option to see the instructions for the form (the icon is a piece of paper with a circle containing blue one 'I')...

    JB

  • Need Hyperion essbase, planning of the installation for 11.1.2 files

    Hi friends,

    Edelivery.oracle.com, what are the files must be downloaded to install Hyperion essbase, planning, hfm (11.1.2 v) whose analysis web, shared services, ir, fr.

    tomact and oracle 10g already downloaded.

    Open the below link and please tell me what are the files must be downloaded:

    https://eDelivery.Oracle.com/EPD/download/get_form?egroup_aru_number=12473887

    Thank you and best regards,
    .......

    Hello

    Please go through the link, below, it will give you an idea who complete. Need files zip to download according to your requirement.

    [https://edelivery.oracle.com/EPD/Download/process_download/B61658-01.htm?file_id=35884129&aru=13259495&userid=2799492&egroup_aru_number=12473887&email=nagarjunareddyc@hexaware.com&country_id=356&download_from=local&patch_file=B61658-01.htm#_Hyperion_Financial_Reporting_2]

    for this you need to connect to the electronic transmission system, after loggin in the download page, at the top you have read to touch me, you will find the necessary info.

    Published by: 834506 on March 21, 2011 06:53

  • Write the VBA code or cmd to refresh essbase planning app db

    Hi all

    Someone trying to write VBA code or cmd to refresh essbase planning app db?

    OS: Windows 2003
    Planning version: 921
    Essbase EAS:921

    All auto refresh essbase db planning app ideas?

    THX

    Hello

    There is a CubeRefresh.cmd utility which refreshes planning to Essbase. You can find it in planning > Bin directory (whose location varies depending on which version you use). Take a look at the doc to help below:

    [http://download.oracle.com/docs/cd/E10530_01/doc/epm.931/html_hp_admin/frameset.htm?ch11s06s01.html]

    Hope this helps
    Stuart

  • How to load text to member values in essbase/planning? (datatype = text)

    Hi all

    Has anyone faced the problem of trying to load data to the members defined as a text data type? You have done this thru smartview, or did you use something more complex, like SUN using planning adapter?

    The user has the possibility to enter data for this member planning Web form and get it back, but we were unable to load data from a file.

    We first tried to use excel add, until we discovered that essbase stores not really text for the Member, but instead, it stores a reference to a relational table planning, where the text is actually stored. Thus, we try to use smartview to connect to the planning application and load the values for this member, but we have been unable to do.

    Due to operational requirements, we are unable to use the planning cell text feature. We actually

    So, shed light on how to solve this problem? have you used a DIM as ODI ETL tool to load in the planning? Use a Api?

    Any input will be greatly appreciated.

    I forgot to mention that we use planning 11.1.1.3 and EPMA.

    Published by: user8722412 on November 4, 2010 18:33

    ODI can certainly do it, but as you use EPMA, it should be a no usual route.
    You might also have a look at the utility of charger of contour that can load data from text, not sure on how it validates if it is an application of epma but always worth a try, have a read of:-http://download.oracle.com/docs/cd/E12825_01/epm.111/hp_admin/ch05s02s01.html

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • Provision of different levels of admin access plan the types of planning

    How can I set up by types of plan admin access levels? For example, I would like to grant full admin access to a plan type, but to limit their access to another type of plan in the same application? The type of plan, I want to limit them is essentially a type of labour I won't allow them to have access to admin. Someone knows how to do this?

    Hello

    Unfortunately, you will not be able to configure a user to manage the metadata for a number of types of plan in classical planning.

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • A user can set up any provider of electronic mail, be it Google, Yahoo, Hotmail or Microsoft Exchange during a call or make a call out?

    Hi all!

    I am a tech support agent and is currently working for the it Department. Our users are able to e-mail installation on iOS devices company.

    My question is if you move through someone with e-mail configuration can they do this while making a call? I wasn't able to find anything about it in the forums, but want to know if the configuration of email is better with WiFi, or be completely off a call? Please indicate on what are the factors or variables to consider when troubleshooting or setting up email and what is the ideal conditions.

    In short, all this depends on the type of cellular data network.

    GSM networks allow simultaneous voice and data.  CDMA networks are not.

    Here's more information:

    On cellular data networks - Apple Support

  • Hunt group type Set up with outdoor extension numbers IE cell phones

    With the help of CUCM 9.1

    Is there a quick and easy way to create a type of fighter group set up to help on the outside (cell phone numbers)?

    The scenario will be a (person who will be on call) using an internal DID to be forwarded to a cell phone of the person oncall this particular week.  If no response she pass 4 members to the next line and also try their cell phone.  After that it would just repeat the whole process.  So far, it looks like a solution is possible with the single line scope perhaps?

    Any ideas would be grealy appreciated.

    Dave

    Hello

    I put something like this on CUCM 8.0 a couple of years.

    I used the Mobile connection feature as you suggested and it worked ok after some playing with timers.

    The main problem was that it was impossible for remote users to disconnect to the hunt group. They could disable Mobile Connect using the IVR, but calls would still ring on their deskphones - if you log on phones (i.e. Extension mobility) before leaving the office this problem should appear.

    The other question was how long calls to connect especially if a couple of people in the Group has not responded. In fact, we recorded a message asking callers to be patient, which was played when the call was received first (we were using UCCX to IVR and call transfer).

    I hope this is of use.

Maybe you are looking for