Essbase and Shared Services

Hi everyone,
I have installed the complete EPM suite on a single machine. All the products work fine and everyting is configured correctly (according to the CONFIGURATOR) but I can't see Essbase in Shared Services?
When I expand the Application Groups I see everything but Essbase.
Can anyone tell me how to register Essbase with SS?
Thanks in advance
G

Hi,
Is it showing as "Analytic Servers; Servername"?
Else, you will have to use Hyperion Configuration utility to register Essbase server with shared services.
Let me know if it helps.
Cheers
RS

Similar Messages

  • Essbase and Shared Services - Whether 1 box installtion is good or 2 box in

    Hi,
    I need to upgrade/migrate 50+ cubes from Essbase 7.1 to Essbase 11.1.2.1.
    Whis options mentioned below is better:
    1. Install Essbase and Shared Services in one box/machine
    2. Install Essbase in one box/machine and shared service in another box/machine.
    What will be the best architecture for this?

    Personally I would suggest keeping essbase separate especially with the number of applications, though it is probably best discussing your options and infrastructure with a good consultant as these decisions cannot really be made on a forum.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • How is communication between essbase and shared services done?

    how is communication between essbase and shared services done?

    I am not sure exactly what you need to know and it depends on the version
    Prior to 11.1.2 it communicates using LDAP to port 28089, HTTP to 28080, JDBC to the hss relational database
    11.1.2 - JDBC to the HSS relational database
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Planning and Shared Services security disconnect.

    Hi,
    We have an intermittent problem. We are running 9.3.1 of Planning, Essbase, and Shared Services, etc. We have 6 planning applications on the same server. We use oracle as the database. The problem is at some point in time Planning stops getting updates made in Shared Services. When it happens you can go into the planning application, view the security on any object, and click "Add Access". The "Users and Groups" select box get's populated with "<None Available>". If you bounce the planning service and come back in the "Users and Groups" is populated as expected. It also dosen't affect all of the application or the same applications.
    We have an admin group that makes security updates. Mainly just adding users to native groups. When things are working the changes/additions flow through to the planning tables. (HSP_USERSINGROUP,HSP_OBJECT). We gave this group a query to run that shows the access a specific user has in planning. If a user is added to a group in SS they then run the query to make sure the access is granted in planning. When the query doesn't bring back the information they think should be there we know we have the issue and start scheduling an outage to bounce planning.
    Anyone else seen this behavior and is there another way to fix this besides bouncing planning?
    Thanks for any responses.
    Keith

    This show multiple apps but you could knock it down.
    select
    user_name,
    group_name,
    mart,
    object_name,
    object_type,
    access_mode,
    flag
    from (
    select
    U.Object_Name as User_Name,
    G.Object_Name as Group_Name,
    'PLAN_APP1' as mart,
    O.Object_Name as Object_Name,
    OT.Type_Name as Object_Type,
    Case AC.Access_Mode
    when 3 then 'ReadWrite'
    when 2 then 'Write'
    when 1 then 'Read'
    when -1 then 'None'
    else 'Unknown'
    end as access_mode,
    Case AC.Flags
    when 0 then 'Member'
    when 5 then 'Children'
    when 6 then 'IChildren'
    when 8 then 'Descendants'
    when 9 then 'IDescendants'
    else 'Unknown'
    end as flag
    from
    HYP_PLAN_APP1.HSP_ACCESS_CONTROL AC,
    HYP_PLAN_APP1.HSP_OBJECT U,
    HYP_PLAN_APP1.HSP_OBJECT O,
    HYP_PLAN_APP1.HSP_OBJECT_TYPE OT,
    HYP_PLAN_APP1.HSP_OBJECT G,
    HYP_PLAN_APP1.HSP_USERSINGROUP UG
    where
    AC.user_id = UG.group_id
    and UG.USER_ID = U.object_id
    and AC.object_id = O.object_id
    and UG.group_id = G.object_id
    and O.object_type = OT.object_type
    and O.object_type <> 7
    union
    select
    U.Object_Name as User_Name,
    '' as Group_Name,
    'PLAN_APP1' as mart,
    O.Object_Name as Object_Name,
    OT.Type_Name as Object_Type,
    Case AC.Access_Mode
    when 3 then 'ReadWrite'
    when 2 then 'Write'
    when 1 then 'Read'
    when -1 then 'None'
    else 'Unknown'
    end as access_mode,
    Case AC.Flags
    when 0 then 'Member'
    when 5 then 'Children'
    when 6 then 'IChildren'
    when 8 then 'Descendants'
    when 9 then 'IDescendants'
    else 'Unknown'
    end as flag
    from
    HYP_PLAN_APP1.HSP_ACCESS_CONTROL AC,
    HYP_PLAN_APP1.HSP_OBJECT U,
    HYP_PLAN_APP1.HSP_OBJECT O,
    HYP_PLAN_APP1.HSP_OBJECT_TYPE OT,
    HYP_PLAN_APP1.HSP_USERS UG
    where
    AC.user_id = UG.user_id
    and UG.USER_ID = U.object_id
    and AC.object_id = O.object_id
    and O.object_type = OT.object_type
    and O.object_type <> 7
    Union
    select
    U.Object_Name as User_Name,
    G.Object_Name as Group_Name,
    'PLAN_APP2' as mart,
    O.Object_Name as Object_Name,
    OT.Type_Name as Object_Type,
    Case AC.Access_Mode
    when 3 then 'ReadWrite'
    when 2 then 'Write'
    when 1 then 'Read'
    when -1 then 'None'
    else 'Unknown'
    end as access_mode,
    Case AC.Flags
    when 0 then 'Member'
    when 5 then 'Children'
    when 6 then 'IChildren'
    when 8 then 'Descendants'
    when 9 then 'IDescendants'
    else 'Unknown'
    end as flag
    from
    HYP_PLAN_APP2.HSP_ACCESS_CONTROL AC,
    HYP_PLAN_APP2.HSP_OBJECT U,
    HYP_PLAN_APP2.HSP_OBJECT O,
    HYP_PLAN_APP2.HSP_OBJECT_TYPE OT,
    HYP_PLAN_APP2.HSP_OBJECT G,
    HYP_PLAN_APP2.HSP_USERSINGROUP UG
    where
    AC.user_id = UG.group_id
    and UG.USER_ID = U.object_id
    and AC.object_id = O.object_id
    and UG.group_id = G.object_id
    and O.object_type = OT.object_type
    and O.object_type <> 7
    union
    select
    U.Object_Name as User_Name,
    '' as Group_Name,
    'PLAN_APP2' as mart,
    O.Object_Name as Object_Name,
    OT.Type_Name as Object_Type,
    Case AC.Access_Mode
    when 3 then 'ReadWrite'
    when 2 then 'Write'
    when 1 then 'Read'
    when -1 then 'None'
    else 'Unknown'
    end as access_mode,
    Case AC.Flags
    when 0 then 'Member'
    when 5 then 'Children'
    when 6 then 'IChildren'
    when 8 then 'Descendants'
    when 9 then 'IDescendants'
    else 'Unknown'
    end as flag
    from
    HYP_PLAN_APP2.HSP_ACCESS_CONTROL AC,
    HYP_PLAN_APP2.HSP_OBJECT U,
    HYP_PLAN_APP2.HSP_OBJECT O,
    HYP_PLAN_APP2.HSP_OBJECT_TYPE OT,
    HYP_PLAN_APP2.HSP_USERS UG
    where
    AC.user_id = UG.user_id
    and UG.USER_ID = U.object_id
    and AC.object_id = O.object_id
    and O.object_type = OT.object_type
    and O.object_type <> 7
    Union
    select
    U.Object_Name as User_Name,
    G.Object_Name as Group_Name,
    'PLAN_APP3' as mart,
    O.Object_Name as Object_Name,
    OT.Type_Name as Object_Type,
    Case AC.Access_Mode
    when 3 then 'ReadWrite'
    when 2 then 'Write'
    when 1 then 'Read'
    when -1 then 'None'
    else 'Unknown'
    end as access_mode,
    Case AC.Flags
    when 0 then 'Member'
    when 5 then 'Children'
    when 6 then 'IChildren'
    when 8 then 'Descendants'
    when 9 then 'IDescendants'
    else 'Unknown'
    end as flag
    from
    HYP_PLAN_APP3.HSP_ACCESS_CONTROL AC,
    HYP_PLAN_APP3.HSP_OBJECT U,
    HYP_PLAN_APP3.HSP_OBJECT O,
    HYP_PLAN_APP3.HSP_OBJECT_TYPE OT,
    HYP_PLAN_APP3.HSP_OBJECT G,
    HYP_PLAN_APP3.HSP_USERSINGROUP UG
    where
    AC.user_id = UG.group_id
    and UG.USER_ID = U.object_id
    and AC.object_id = O.object_id
    and UG.group_id = G.object_id
    and O.object_type = OT.object_type
    and O.object_type <> 7
    union
    select
    U.Object_Name as User_Name,
    '' as Group_Name,
    'PLAN_APP3' as mart,
    O.Object_Name as Object_Name,
    OT.Type_Name as Object_Type,
    Case AC.Access_Mode
    when 3 then 'ReadWrite'
    when 2 then 'Write'
    when 1 then 'Read'
    when -1 then 'None'
    else 'Unknown'
    end as access_mode,
    Case AC.Flags
    when 0 then 'Member'
    when 5 then 'Children'
    when 6 then 'IChildren'
    when 8 then 'Descendants'
    when 9 then 'IDescendants'
    else 'Unknown'
    end as flag
    from
    HYP_PLAN_APP3.HSP_ACCESS_CONTROL AC,
    HYP_PLAN_APP3.HSP_OBJECT U,
    HYP_PLAN_APP3.HSP_OBJECT O,
    HYP_PLAN_APP3.HSP_OBJECT_TYPE OT,
    HYP_PLAN_APP3.HSP_USERS UG
    where
    AC.user_id = UG.user_id
    and UG.USER_ID = U.object_id
    and AC.object_id = O.object_id
    and O.object_type = OT.object_type
    and O.object_type <> 7
    union
    select
    U.Object_Name as User_Name,
    G.Object_Name as Group_Name,
    'PLAN_APP4' as mart,
    O.Object_Name as Object_Name,
    OT.Type_Name as Object_Type,
    Case AC.Access_Mode
    when 3 then 'ReadWrite'
    when 2 then 'Write'
    when 1 then 'Read'
    when -1 then 'None'
    else 'Unknown'
    end as access_mode,
    Case AC.Flags
    when 0 then 'Member'
    when 5 then 'Children'
    when 6 then 'IChildren'
    when 8 then 'Descendants'
    when 9 then 'IDescendants'
    else 'Unknown'
    end as flag
    from
    HYP_PLAN_APP4.HSP_ACCESS_CONTROL AC,
    HYP_PLAN_APP4.HSP_OBJECT U,
    HYP_PLAN_APP4.HSP_OBJECT O,
    HYP_PLAN_APP4.HSP_OBJECT_TYPE OT,
    HYP_PLAN_APP4.HSP_OBJECT G,
    HYP_PLAN_APP4.HSP_USERSINGROUP UG
    where
    AC.user_id = UG.group_id
    and UG.USER_ID = U.object_id
    and AC.object_id = O.object_id
    and UG.group_id = G.object_id
    and O.object_type = OT.object_type
    and O.object_type <> 7
    union
    select
    U.Object_Name as User_Name,
    '' as Group_Name,
    'PLAN_APP4' as mart,
    O.Object_Name as Object_Name,
    OT.Type_Name as Object_Type,
    Case AC.Access_Mode
    when 3 then 'ReadWrite'
    when 2 then 'Write'
    when 1 then 'Read'
    when -1 then 'None'
    else 'Unknown'
    end as access_mode,
    Case AC.Flags
    when 0 then 'Member'
    when 5 then 'Children'
    when 6 then 'IChildren'
    when 8 then 'Descendants'
    when 9 then 'IDescendants'
    else 'Unknown'
    end as flag
    from
    HYP_PLAN_APP4.HSP_ACCESS_CONTROL AC,
    HYP_PLAN_APP4.HSP_OBJECT U,
    HYP_PLAN_APP4.HSP_OBJECT O,
    HYP_PLAN_APP4.HSP_OBJECT_TYPE OT,
    HYP_PLAN_APP4.HSP_USERS UG
    where
    AC.user_id = UG.user_id
    and UG.USER_ID = U.object_id
    and AC.object_id = O.object_id
    and O.object_type = OT.object_type
    and O.object_type <> 7
    Union
    select
    U.Object_Name as User_Name,
    G.Object_Name as Group_Name,
    'PLAN_APP5' as mart,
    O.Object_Name as Object_Name,
    OT.Type_Name as Object_Type,
    Case AC.Access_Mode
    when 3 then 'ReadWrite'
    when 2 then 'Write'
    when 1 then 'Read'
    when -1 then 'None'
    else 'Unknown'
    end as access_mode,
    Case AC.Flags
    when 0 then 'Member'
    when 5 then 'Children'
    when 6 then 'IChildren'
    when 8 then 'Descendants'
    when 9 then 'IDescendants'
    else 'Unknown'
    end as flag
    from
    HYP_PLAN_APP5.HSP_ACCESS_CONTROL AC,
    HYP_PLAN_APP5.HSP_OBJECT U,
    HYP_PLAN_APP5.HSP_OBJECT O,
    HYP_PLAN_APP5.HSP_OBJECT_TYPE OT,
    HYP_PLAN_APP5.HSP_OBJECT G,
    HYP_PLAN_APP5.HSP_USERSINGROUP UG
    where
    AC.user_id = UG.group_id
    and UG.USER_ID = U.object_id
    and AC.object_id = O.object_id
    and UG.group_id = G.object_id
    and O.object_type = OT.object_type
    and O.object_type <> 7
    union
    select
    U.Object_Name as User_Name,
    '' as Group_Name,
    'PLAN_APP5' as mart,
    O.Object_Name as Object_Name,
    OT.Type_Name as Object_Type,
    Case AC.Access_Mode
    when 3 then 'ReadWrite'
    when 2 then 'Write'
    when 1 then 'Read'
    when -1 then 'None'
    else 'Unknown'
    end as access_mode,
    Case AC.Flags
    when 0 then 'Member'
    when 5 then 'Children'
    when 6 then 'IChildren'
    when 8 then 'Descendants'
    when 9 then 'IDescendants'
    else 'Unknown'
    end as flag
    from
    HYP_PLAN_APP5.HSP_ACCESS_CONTROL AC,
    HYP_PLAN_APP5.HSP_OBJECT U,
    HYP_PLAN_APP5.HSP_OBJECT O,
    HYP_PLAN_APP5.HSP_OBJECT_TYPE OT,
    HYP_PLAN_APP5.HSP_USERS UG
    where
    AC.user_id = UG.user_id
    and UG.USER_ID = U.object_id
    and AC.object_id = O.object_id
    and O.object_type = OT.object_type
    and O.object_type <> 7
    Union
    select
    U.Object_Name as User_Name,
    G.Object_Name as Group_Name,
    'PLAN_APP6' as mart,
    O.Object_Name as Object_Name,
    OT.Type_Name as Object_Type,
    Case AC.Access_Mode
    when 3 then 'ReadWrite'
    when 2 then 'Write'
    when 1 then 'Read'
    when -1 then 'None'
    else 'Unknown'
    end as access_mode,
    Case AC.Flags
    when 0 then 'Member'
    when 5 then 'Children'
    when 6 then 'IChildren'
    when 8 then 'Descendants'
    when 9 then 'IDescendants'
    else 'Unknown'
    end as flag
    from
    HYP_PLAN_APP6.HSP_ACCESS_CONTROL AC,
    HYP_PLAN_APP6.HSP_OBJECT U,
    HYP_PLAN_APP6.HSP_OBJECT O,
    HYP_PLAN_APP6.HSP_OBJECT_TYPE OT,
    HYP_PLAN_APP6.HSP_OBJECT G,
    HYP_PLAN_APP6.HSP_USERSINGROUP UG
    where
    AC.user_id = UG.group_id
    and UG.USER_ID = U.object_id
    and AC.object_id = O.object_id
    and UG.group_id = G.object_id
    and O.object_type = OT.object_type
    and O.object_type <> 7
    union
    select
    U.Object_Name as User_Name,
    '' as Group_Name,
    'PLAN_APP6' as mart,
    O.Object_Name as Object_Name,
    OT.Type_Name as Object_Type,
    Case AC.Access_Mode
    when 3 then 'ReadWrite'
    when 2 then 'Write'
    when 1 then 'Read'
    when -1 then 'None'
    else 'Unknown'
    end as access_mode,
    Case AC.Flags
    when 0 then 'Member'
    when 5 then 'Children'
    when 6 then 'IChildren'
    when 8 then 'Descendants'
    when 9 then 'IDescendants'
    else 'Unknown'
    end as flag
    from
    HYP_PLAN_APP6.HSP_ACCESS_CONTROL AC,
    HYP_PLAN_APP6.HSP_OBJECT U,
    HYP_PLAN_APP6.HSP_OBJECT O,
    HYP_PLAN_APP6.HSP_OBJECT_TYPE OT,
    HYP_PLAN_APP6.HSP_USERS UG
    where
    AC.user_id = UG.user_id
    and UG.USER_ID = U.object_id
    and AC.object_id = O.object_id
    and O.object_type = OT.object_type
    and O.object_type <> 7
    Where user_name in ('Obama','McCain')

  • Cannot register Essbase on Shared Services 9.3.1

    Hi,
    I'm trying to register Essbase on Shared Services but I get an error message on the log "
    Failed to authenticate user = admin". Essbase and Shared Services are on different boxes. I have installed Planning and Shared Services on the same box, and I'm able to register the Planning with SS. I have checked that I can see the Shared Services Server on Essbase server and I have checked that I'm using the correct host server name for Shared Services when I try to register Essbase, but it doesn't work. Also I have tried to create a new user on SS and provision with admin rules, but it didn't work neither. Any ideas?
    The environment is Windows 2003/Tomcat/SQL Server 2005.
    Thank you,
    Glaucia

    Re: Unable to Externalize users to Shared Services

  • Not able to access the links to Essbase Console, Planning and Shared Servic

    Hi,
    I am trying to access the links to Essbase Console, Planning and Shared Services but I get the following error message.
    Error 404--Not Found
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.5 404 Not Found
    The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.
    If the server does not wish to make this information available to the client, the status code 403 (Forbidden) can be used instead. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address.
    I tried to restart all the services on all the servers and also restarted the servers but it didn't work.
    I found some more errors in the starter file on the Linux box.
    {\rtf1\ansi\ansicpg1252\deff0\deflang1033{\fonttbl{\f0\fswiss\fcharset0 Arial;}}
    {\*\generator Msftedit 5.41.15.1515;}\viewkind4\uc1\pard\f0\fs20 Detected Java version: 1.6 in: /srv/Oracle/Middleware/jdk160_21/jre\par
    Detected OS: Linux\par
    parsing buildfile /srv/Oracle/Middleware/EPMSystem11R1/common/config/11.1.2.0/resources/instance/start.xml with URI = file:/s\par
    rv/Oracle/Middleware/EPMSystem11R1/common/config/11.1.2.0/resources/instance/start.xml\par
    Project base dir set to: /srv/Oracle/Middleware/EPMSystem11R1/common/config/11.1.2.0/resources/instance\par
    [antlib:org.apache.tools.ant] Could not load definitions from resource org/apache/tools/ant/antlib.xml. It could not be found\par
    .\par
    [property] Loading Environment env.\par
    Build sequence for target(s) `start' is [start]\par
    Complete build sequence is [start, stop, ]\par
    \par
    start:\par
    [starter] oracle.as.management.opmn.optic.OpticException: Error in starting opmn server\par
    [starter] Operation aborted because of a system call failure or internal error\par
    [starter] at oracle.as.management.opmn.optic.OpmnAdmin.executeCommand(OpmnAdmin.java:310)\par
    [starter] at oracle.as.management.opmn.optic.OpmnAdmin.startOpmnServer(OpmnAdmin.java:87)\par
    [starter] at com.hyperion.cis.ant.starter.OPMNStarter.startAndReloadOpmnCtl(OPMNStarter.java:177)\par
    [starter] at com.hyperion.cis.ant.starter.OPMNStarter.init(OPMNStarter.java:47)\par
    [starter] at com.hyperion.cis.ant.starter.StarterEngine.load(StarterEngine.java:133)\par
    [starter] at com.hyperion.cis.ant.starter.StarterEngine.execute(StarterEngine.java:105)\par
    [starter] at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)\par
    [starter] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\par
    [starter] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)\par
    [starter] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)\par
    [starter] at java.lang.reflect.Method.invoke(Method.java:597)\par
    [starter] at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)\par
    [starter] at org.apache.tools.ant.Task.perform(Task.java:348)\par
    [starter] at org.apache.tools.ant.Target.execute(Target.java:357)\par
    [starter] at org.apache.tools.ant.Target.performTasks(Target.java:385)\par
    [starter] at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1337)\par
    [starter] at org.apache.tools.ant.Project.executeTarget(Project.java:1306)\par
    [starter] at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)\par
    [starter] at org.apache.tools.ant.Project.executeTargets(Project.java:1189)\par
    [starter] at org.apache.tools.ant.Main.runBuild(Main.java:758)\par
    [starter] at org.apache.tools.ant.Main.startAnt(Main.java:217)\par
    [starter] at org.apache.tools.ant.launch.Launcher.run(Launcher.java:257)\par
    [starter] at org.apache.tools.ant.launch.Launcher.main(Launcher.java:104)\par
    [starter] oracle.as.management.opmn.optic.OpticBadXMLConfigException: Error reading formFactorFile: /srv/Oracle/Middleware/\par
    user_projects/epmsystem6/config/OPMN/opmn/.formfactor (/srv/Oracle/Middleware/user_projects/epmsystem6/config/OPMN/opmn/.form\par
    factor (No such file or directory))\par
    [starter] at oracle.as.management.opmn.optic.OpmnPhone.refreshFormFactor(OpmnPhone.java:628)\par
    [starter] at oracle.as.management.opmn.optic.OpmnPhone.getLocalOpmnPhone(OpmnPhone.java:99)\par
    [starter] at oracle.as.management.opmn.optic.OpmnQuery.getLocalOpmnQuery(OpmnQuery.java:77)\par
    [starter] at com.hyperion.cis.ant.starter.OPMNStarter.init(OPMNStarter.java:48)\par
    [starter] at com.hyperion.cis.ant.starter.StarterEngine.load(StarterEngine.java:133)\par
    [starter] at com.hyperion.cis.ant.starter.StarterEngine.execute(StarterEngine.java:105)\par
    [starter] at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)\par
    [starter] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\par
    [starter] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)\par
    [starter] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)\par
    [starter] at java.lang.reflect.Method.invoke(Method.java:597)\par
    [starter] at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)\par
    [starter] at org.apache.tools.ant.Task.perform(Task.java:348)\par
    [starter] at org.apache.tools.ant.Target.execute(Target.java:357)\par
    [starter] at org.apache.tools.ant.Target.performTasks(Target.java:385)\par
    [starter] at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1337)\par
    [starter] at org.apache.tools.ant.Project.executeTarget(Project.java:1306)\par
    [starter] at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)\par
    [starter] at org.apache.tools.ant.Project.executeTargets(Project.java:1189)\par
    [starter] at org.apache.tools.ant.Main.runBuild(Main.java:758)\par
    [starter] at org.apache.tools.ant.Main.startAnt(Main.java:217)\par
    [starter] at org.apache.tools.ant.launch.Launcher.run(Launcher.java:257)\par
    [starter] at org.apache.tools.ant.launch.Launcher.main(Launcher.java:104)\par
    [starter] Caused by: java.io.FileNotFoundException: /srv/Oracle/Middleware/user_projects/epmsystem6/config/OPMN/opmn/.formf\par
    actor (No such file or directory)\par
    [starter] at java.io.FileInputStream.open(Native Method)\par
    [starter] at java.io.FileInputStream.<init>(FileInputStream.java:106)\par
    [starter] at java.io.FileReader.<init>(FileReader.java:55)\par
    [starter] at oracle.as.management.opmn.optic.OpmnPhone.refreshFormFactor(OpmnPhone.java:623)\par
    [starter] ... 22 more\par
    ( Feb 06, 2012 04.33.13 PM ) Pass [00 min 05 sec] Starting BPMS_bpms1_Server\par
    [starter] oracle.as.management.opmn.optic.OpticException: Error in starting opmn server\par
    [starter] Operation aborted because of a system call failure or internal error\par
    [starter] at oracle.as.management.opmn.optic.OpmnAdmin.executeCommand(OpmnAdmin.java:310)\par
    [starter] at oracle.as.management.opmn.optic.OpmnAdmin.startOpmnServer(OpmnAdmin.java:87)\par
    [starter] at com.hyperion.cis.ant.starter.OPMNStarter.startAndReloadOpmnCtl(OPMNStarter.java:177)\par
    [starter] at com.hyperion.cis.ant.starter.OPMNStarter.start(OPMNStarter.java:115)\par
    [starter] at com.hyperion.cis.ant.starter.StarterEngine.start(StarterEngine.java:190)\par
    [starter] at com.hyperion.cis.ant.starter.StarterEngine.execute(StarterEngine.java:112)\par
    [starter] at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)\par
    [starter] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\par
    [starter] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)\par
    [starter] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)\par
    [starter] at java.lang.reflect.Method.invoke(Method.java:597)\par
    [starter] at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)\par
    [starter] at org.apache.tools.ant.Task.perform(Task.java:348)\par
    [starter] at org.apache.tools.ant.Target.execute(Target.java:357)\par
    [starter] at org.apache.tools.ant.Target.performTasks(Target.java:385)\par
    [starter] at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1337)\par
    [starter] at org.apache.tools.ant.Project.executeTarget(Project.java:1306)\par
    [starter] at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)\par
    [starter] at org.apache.tools.ant.Project.executeTargets(Project.java:1189)\par
    [starter] at org.apache.tools.ant.Main.runBuild(Main.java:758)\par
    [starter] at org.apache.tools.ant.Main.startAnt(Main.java:217)\par
    [starter] at org.apache.tools.ant.launch.Launcher.run(Launcher.java:257)\par
    [starter] at org.apache.tools.ant.launch.Launcher.main(Launcher.java:104)\par
    ( Feb 06, 2012 04.33.31 PM ) Pass [00 min 05 sec] Starting OHS\par
    ( Feb 06, 2012 04.41.51 PM ) Fail [08 min 20 sec] Starting FoundationServices\par
    \par
    BUILD SUCCESSFUL\par
    Total time: 8 minutes 55 seconds\par
    Please let me know how to fix this issue. Also please let me know where else can I find the logs to the errors.
    Thanks.

    The logs would be a good place to start, if you are not sure where to look post your OS and planning version.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Error when opening workspace, web analysis and shared services

    Hi All,
    We installed hyperion 11.1.2, Essbase on a AIX server, with reports etc on a windows 2008 server. when logging onto workspace, web analysis and shared services i get the following error message:
    Error 404--Not Found
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.5 404 Not Found
    The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.
    If the server does not wish to make this information available to the client, the status code 403 (Forbidden) can be used instead. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address.
    If we re-start the server it sometimes work, but in the morining we have the same issue, can anyone help.
    Thanks
    Dylan

    Hi,
    Restart the services. Issue with Oracle Http server. If you restart foundation and other services I can bring workspace up.
    Thanks
    Radhika

  • "Assign access control" not appearing under Essbase in shared services

    Hi Everyone,
    Can anyone point out the reason behind this? This is leading to all sorts of problems. Configuration is as follows:
    App Server: Foundation, EAS, Planning, Reporting, Web Analysis, Workspace on Tomcat
    DB Server: Essbase and SQL Server
    Essbase is on Shared Services mode.
    This is actually very urgent. Would be grateful for any help.
    Thanks,
    Sayantan

    This has been posted in the essbase forum > "Assign access control" not appearing under Essbase in shared services
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Externalise Users from Essbase to Shared Services

    Hi All,
    We have a issue with externalising users to shared services
    We have shared services on sun os 5.10 which is in a ssl (secure sockets layer) mode and Essbase installed on windows server 2003 sp1 which is in a non ssl mode and when we are trying to externalise users from essbase to shared services we are ending up with fallowing error
    Shared services_security_client_log
    *2009-09-14 14:54:47,957 ERROR [Thread-74] 30:1101:JNDI error.[Root Cause: [LDAP: error code 17 - cssProvisionedIdentity: attribute type undefined] ] com.hyperion.css.spi.impl.nv.AddLDAPEntity.add(Unknown Source)*
    *2009-09-14 14:54:47,957 ERROR [Thread-75] 26:1002:Invalid value for identity. Enter a valid value. com.hyperion.css.common.CSSUtils.checkValidArgument(Unknown Source)*
    *2009-09-14 14:54:47,957 ERROR [Thread-75] 31:1098:Invalid user identity format.[Root Cause: 26:1002:Invalid value for identity. Enter a valid value. ] com.hyperion.css.spi.impl.nv.NativeProviderDirMgmt.deleteNativeUsers(Unknown Source)*
    Thanks in advance,
    Ram

    After you copy the SQL Repository across to the new environment and log in with the owner account, you will be required to register the application with Shared Services. After registering with SS it should prompt you to "Migrate Users and Groups" which will do the migration for you.

  • Externalizing Users from Essbase to Shared Services in OEPM 11.1.1.2

    Hi All,
    I have a strange problem like when we installed and configured EAS, Essbase with Shared Services these products are moved to the control
    of shared Services. I know that in EAS after configuration the control moves to HSS, but Essbase control also moved to HSS
    Is it possible for Essbase without using Externalize option to have control from Shared Services
    I didn't use the Externalize feature from Essbase to move the user information to Shared Services
    I need to migrate the users on 7x server to 11x server..Is it possible from 7x as it is not registered with Shared Services
    If not do i have any alternative to get the user/group info from 7x to 11x server.(These are on two different servers)
    Please clarify and let me know if i need to produce more information
    Thanks,

    After you copy the SQL Repository across to the new environment and log in with the owner account, you will be required to register the application with Shared Services. After registering with SS it should prompt you to "Migrate Users and Groups" which will do the migration for you.

  • Not able to access the links to Planning and Shared Services

    Hi,
    I am trying to access the links to Planning and Shared Services but I get the following error message.
    Error 404--Not Found
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.5 404 Not Found
    The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.
    If the server does not wish to make this information available to the client, the status code 403 (Forbidden) can be used instead. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address.
    I tried to restart all the services on all the servers and also restarted the servers but it didn't work.
    Please let me know how to fix this issue. Also please let me know where else can I find the logs to the errors.
    Thanks.

    The logs would be a good place to start, if you are not sure where to look post your OS and planning version.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Intergration OBIEE with Hyperion WORKSPACE and Shared Services

    Hi experts,
    When I try integrate BI Punisher to Hyperion workspace and Shared Services, But When i come to Admin-> BI Punisher -> Integration. I don't see Hyperion Workspace and Shared Services. How can i do?
    Please help me.
    Thanks

    do you have some old external authorization entries in your css.xml? (they occuur if you delete external user directopries from the sort order (see documentation of HSS). In our case we had arudimantary entry there. We deleted it (via HSS UI) en till now its running fine. The error did not occur after the change. (you have to re start HSS service after the change)
    http://[hss server]:58080/interop/framework/getCSSConfigFile (or different if you changed from defaults)
    Also: you mention 100 users? But how many groups are you imortinh/caching?
    Edited by: Detlev on Apr 6, 2009 3:35 PM

  • Pls Suggest server names for Reporting Server and Shared Services

    Hi,
    Can any one Pls Suggest server names for Reporting Server and Shared Services
    Thanks in advance.

    Report server name: OrclRpt
    Shared Services: OrclSS

  • Publishing iweb in file storage and sharing service?

    I am not very versed in creating webpages. I need to upload the iweb website that I made to my school's "file storage and sharing service" otherwise known as CITES Netfiles. I know that somehow I upload my iweb html files SOMEWHERE on this thing and it will show up as my website but i cant seem to figure it out and the the "help" on the phone cant seem to waste their time trying to help me understand. if anybody has any experience with this i would appreciate your help! thanks!

    Welcome to the Forum!
    Only the people who setup the Netfiles system will know exactly where you are supposed to upload your files, and also, what your URL is.
    I found this support page for the University of Illinois system. You may be using it since you are from Ill. or maybe the page will help you understand the information your tech support people are telling you:
    http://www.cites.illinois.edu/netfiles/web-publish.html
    I checked the linked page about how to upload files to the system, and it's a little out of the ordinary. Netfiles appears to use a browser based "Upload Manager" as it's "Front End". http://www.cites.illinois.edu/netfiles/manage.html#upload
    Netfiles does appear to support WebDAV (but not FTP)
    http://www.cites.illinois.edu/netfiles/desktop.html
    So you would have to tell iWeb to publish your site to a local folder, then use a program like "CyberDuck", "Transmit" or a program named "Goliath" to upload the site folder that's inside the folder that iWeb created. Special features like blogs and RSS feeds will probably not work with a server like this, although there are ways to link other blog services to your site.
    Programs like Dreamweaver support uploading directly to a WebDAV server, but iWeb does not make those settings available, yet.

  • EIS/AIS [Essbase Integration Service] and SHARED SERVICES

    I got the following error message when trying to get Shared Services Connection with integarion server:
    Error -1: Contact your AIS administrator because the Java runtime
    environment may not be set appropriately on the server machine…
    Exception in thread "main" java.lang.NoSuchMethodError:
    com.hyperion.interop.lib.Repository.createProject
    (Ljava/lang/String;Ljava/lang/String;)Lcom/hyperio n/interop/lib/ProjectResource; at eieapi.eieapis.createProject(eieapis.java:150)
    can you help me how to reslove this issue...

    "Lcom/hyperio n/interop/lib/ProjectResource;"
    ^-- did you create a variable that contains a blank space? --> "hyperio n"

Maybe you are looking for

  • How to call Jasper Reports from a Servlet?

    hi! i am a newbie in Jasper Reports. Can somebody tell me how i am supposed to let my jasper-created report appear in my web app? i am using JSP/Servlet framework, and basically what i need my app to happen is when i click on my View summary page but

  • IPhone will not charge, or connect to iTunes

    ive tried many chargers, & many different sorces (computer, dock, car charger, wall charger) nothing works. there is no possible way for me to charge my phone. even when i try to restore it , thats not possible because my phone wont show up. itunes i

  • Message Scheduled But is not delivered

    HI I have one large message which is broken in to smaller packets and in r3 and sent to the XI system via abap proxy . My scanario uses a BPM where i have a loop which has a correlation . I collect one message send it and then again the loop collects

  • Computer didn't wake up

    Hello. I had an issue this morning with my Mac. It was in sleep mode. I touched a key to wake it up and nothing happened. After several attempts and also trying to press the start button, I finally held in the start button (which I hope was alright t

  • Need useful documentation for upgrade of SAP 4.7C  to ECC 5.O

    Hi,      As my company is going for the upgrade to ECC 5.0, can you guys help me out by sending some useful documentation regarding the upgradation, as i never worked on upgradation project before. Points will be rewarded for usefeul information. Ple