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')

Similar Messages

  • 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/

  • 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/

  • Integrate active directory with Planning/ Essbase shared services security

    Hi All,
    we try to set up MSAD integration for Planning and Essbase 9.3.1.
    Everyting works fine but the accounts that pop up are first and last name in the user field instead of the userid used in windows to login. so in windows i login with mroest but now in Hyperion i have to use Marc Roest.
    DC=NL, DC=xxxx, DC=Corp
    ID Attribute = ObjectGUID
    User DN: CN=Adm Hyperion, OU=xxxx, OU=Utr
    Can anyone please help how to use the samID as defined in MSAD instead of the full name as is now?
    Thanks very much in advance,
    Marc

    Hi John.
    Do you know why OpenLDAP database would not migrate to the unique identity attribute say if I use sAMAccountName for the ID Attribute field on the MSAD User Configuration screen in Shared Service? It will not update the identity in OpenLDAP when I browse it, even after all the services have been restarted, including OpenLDAP and Shared Services...
    Any help would be appreciated.
    Thanks
    .-a furstrated programmer...

  • Password reset problems in planning and shared services

    We had all our repository passwords expire today(by some default).We had to reset them(and set them to not expire!).
    According to the epm 11 admin guide, we have to reconfigure database for all applications using the config tool-which we did.
    Now in the config tool, we find that none of the apps are configured(except for the database part) or deployed.When we try to reconfigure/redeploy, it errors out.
    Found this in the eas-sysout.log:(our weblogic password hasnt changed):
    +_<Jun 15, 2011 1:53:21 PM EDT> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with BEA JRockit(R) Version R27.6.5-32_o-121899-1.6.0_14-20091001-2107-windows-ia32 from BEA Systems, Inc.>_+
    _<Jun 15, 2011 1:53:25 PM EDT> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3.2.0  Tue Oct 20 12:16:15 PDT 2009 1267925_
    WebLogic Server 10.3  Tue Oct 20 12:16:15 PDT 2009 1267925+
    WebLogic Server 10.3  Tue Oct 20 12:16:15 PDT 2009 1267925 >+
    +_<Jun 15, 2011 1:53:28 PM EDT> <Emergency> <Management> <BEA-141151> <The admin server could not be reached at http://localhost:7001.>_+
    +_<Jun 15, 2011 1:53:28 PM EDT> <Info> <Configuration Management> <BEA-150018> <This server is being started in managed server independence mode in the absence of the admin server.>_+
    +_<Jun 15, 2011 1:53:28 PM EDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>_+
    +_<Jun 15, 2011 1:53:28 PM EDT> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>_+
    +_<Jun 15, 2011 1:53:29 PM EDT> <Notice> <LoggingService> <BEA-320400> <The log file D:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\EssbaseAdminServices0\logs\EssbaseAdminServices0.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>_+
    +_<Jun 15, 2011 1:53:29 PM EDT> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to D:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\EssbaseAdminServices0\logs\EssbaseAdminServices0.log00133. Log messages will continue to be logged in D:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\EssbaseAdminServices0\logs\EssbaseAdminServices0.log.>_+
    +_<Jun 15, 2011 1:53:29 PM EDT> <Notice> <Log Management> <BEA-170019> <The server log file D:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\EssbaseAdminServices0\logs\EssbaseAdminServices0.log is opened. All server side log events will be written to this file.>_+
    +_<Jun 15, 2011 1:53:38 PM EDT> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>_+
    +_<Jun 15, 2011 1:53:42 PM EDT> <Warning> <JTA> <BEA-110503> <The migrator(the AdminServer for manual JTA migration policy, or the Singleton Master for automatic JTA migration policy) is not available. Will skip JTA TRS failback because isStrictOwnershipCheck is [false]. This may lead to potencial TLOG corruption if TRS of EssbaseAdminServices0 has been migrated to backup server and the backup server is accessing the TLOG of EssbaseAdminServices0. More safety can be achieved by setting isStrictOwnershipCheck to [true].>_+
    +_<Jun 15, 2011 1:53:56 PM EDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STANDBY>_+
    +_<Jun 15, 2011 1:53:56 PM EDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>_+
    _<Jun 15, 2011 1:54:02 PM EDT> <Error> <Deployer> <BEA-149205> <Failed to initialize the application 'EPMSystemRegistry' due to error weblogic.application.ModuleException: ._
    weblogic.application.ModuleException:+
    _     at weblogic.jdbc.module.JDBCModule.prepare(JDBCModule.java:290)_
    _     at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:199)_
    _     at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:391)_
    _     at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:83)_
    _     at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:59)_
    _     Truncated. see log file for complete stacktrace_
    Caused By: weblogic.common.resourcepool.ResourceSystemException:+
    Could not connect to 'oracle.jdbc.OracleDriver'.+
    The returned message is: ORA-01017: invalid username/password; logon denied+
    It is likely that the login or password is not valid.+
    It is also possible that something else is invalid in+
    the configuration or that the database is not available.+
    _     at weblogic.jdbc.common.internal.JDBCUtil.parseException(JDBCUtil.java:300)_
    _     at weblogic.jdbc.common.internal.ConnectionEnvFactory.makeConnection(ConnectionEnvFactory.java:344)_
    _     at weblogic.jdbc.common.internal.ConnectionEnvFactory.createResource(ConnectionEnvFactory.java:220)_
    _     at weblogic.common.resourcepool.ResourcePoolImpl.makeResources(ResourcePoolImpl.java:1180)_
    _     at weblogic.common.resourcepool.ResourcePoolImpl.makeResources(ResourcePoolImpl.java:1104)_
    _     Truncated. see log file for complete stacktrace_
    +_>_+
    _<Jun 15, 2011 1:54:03 PM EDT> <Error> <Deployer> <BEA-149205> <Failed to initialize the application 'eas_datasource' due to error weblogic.application.ModuleException: ._
    weblogic.application.ModuleException:+
    _     at weblogic.jdbc.module.JDBCModule.prepare(JDBCModule.java:290)_
    _     at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:199)_
    _     at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:391)_
    _     at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:83)_
    _     at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:59)_
    _     Truncated. see log file for complete stacktrace_
    Caused By: weblogic.common.resourcepool.ResourceSystemException:+
    Could not connect to 'oracle.jdbc.OracleDriver'.+
    The returned message is: ORA-01017: invalid username/password; logon denied+
    It is likely that the login or password is not valid.+
    It is also possible that something else is invalid in+
    the configuration or that the database is not available.+
    _     at weblogic.jdbc.common.internal.JDBCUtil.parseException(JDBCUtil.java:300)_
    _     at weblogic.jdbc.common.internal.ConnectionEnvFactory.makeConnection(ConnectionEnvFactory.java:344)_
    _     at weblogic.jdbc.common.internal.ConnectionEnvFactory.createResource(ConnectionEnvFactory.java:220)_
    _     at weblogic.common.resourcepool.ResourcePoolImpl.makeResources(ResourcePoolImpl.java:1180)_
    _     at weblogic.common.resourcepool.ResourcePoolImpl.makeResources(ResourcePoolImpl.java:1104)_
    _     Truncated. see log file for complete stacktrace_
    +_>_+
    +_<Jun 15, 2011 1:54:13 PM EDT> <Emergency> <Deployer> <BEA-149259> <Server 'EssbaseAdminServices0' in cluster 'EssbaseAdminServices' is being brought up in administration state due to failed deployments.>_+
    EPMORACLE_INSTANCE (D:\Oracle\Middleware\user_projects\epmsystem1) is set from JVM property[EPM_ORACLE_INSTANCE]._+
    In lookupBRLWA()+
    Found HBR product = ESSBASEPRODUCT_+
    List of Web Applications for ADMINSERVICES_WEB_APP =_+
    com.hyperion.hit.registry.LogicalWebAppComponentImpl@7b56e59d+
    Using Web Application: Default+
    Found HBR product = ESSBASEPRODUCT_+
    HBR LWA Component = Default+
    Default HBR = http://movmkn.na.bayer.cnb:10080/eas+
    In getDBDetails()+
    Found HBR product = ESSBASEPRODUCT_+
    In lookupBRLWA()+
    Found HBR product = ESSBASEPRODUCT_+
    List of Web Applications for ADMINSERVICES_WEB_APP =_+
    com.hyperion.hit.registry.LogicalWebAppComponentImpl@7b56e59d+
    Using Web Application: Default+
    HBR Configuration Initialized successfully.+
    Setting HBR Mode to: 0+
    +_=2011-06-15 13:54:34,538 WARN [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' com.hyperion.hbr.core.AccessControlManagerServer - HBR repository is not configured. HBR will not be available._+
    Essbase® Administration Services - Version  11.1.2.0.00.462+
    Copyright © 1991, 2010 Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. No portion hereof may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopying, recording, or information storage and retrieval systems, for any purpose other than the recipient's personal use, without the express written permission of Oracle.+
    US Patent Number 5,359,724+
    US Patent Number 6,317,750+
    Current time stamp: Wed Jun 15 13:54:35 EDT 2011+
    Server started successfully+
    Waiting for client requests+
    +_<Jun 15, 2011 1:54:40 PM EDT> <Notice> <Cluster> <BEA-000197> <Listening for announcements from cluster using unicast cluster messaging>_+
    +_<Jun 15, 2011 1:54:40 PM EDT> <Notice> <Cluster> <BEA-000133> <Waiting to synchronize with other running members of EssbaseAdminServices.>_+
    +_<Jun 15, 2011 1:54:45 PM EDT> <Warning> <Log Management> <BEA-170011> <The LogBroadcaster on this server failed to broadcast log messages to the admin server. The Admin server may not be running. Message broadcasts to the admin server will be disabled.>_+
    +_<Jun 15, 2011 1:55:10 PM EDT> <Notice> <Security> <BEA-090171> <Loading the identity certificate and private key stored under the alias DemoIdentity from the jks keystore file D:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\DemoIdentity.jks.>_+
    +_<Jun 15, 2011 1:55:11 PM EDT> <Notice> <Security> <BEA-090169> <Loading trusted certificates from the jks keystore file D:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\DemoTrust.jks.>_+
    +_<Jun 15, 2011 1:55:11 PM EDT> <Notice> <Security> <BEA-090169> <Loading trusted certificates from the jks keystore file D:\Oracle\Middleware\jrockit_160_14_R27.6.5-32\jre\lib\security\cacerts.>_+
    +_<Jun 15, 2011 1:55:11 PM EDT> <Alert> <Security> <BEA-090152> <Demo trusted CA certificate is being used in production mode: [_+
    +_[_+
    Version: V3+
    Subject: CN=CACERT, OU=FOR TESTING ONLY, O=MyOrganization, L=MyTown, ST=MyState, C=US+
    Signature Algorithm: MD5withRSA, OID = 1.2.840.113549.1.1.4+
    Key:  Sun RSA public key, 512 bits+
    modulus: 9550192877869244258838480703390456015046425375252278279190673063544122510925482179963329236052146047356415957587628011282484772458983977898996276815440753+
    public exponent: 65537+
    _Validity: [From: Thu Mar 21 15:12:27 EST 2002,_+
                   +_To: Tue Mar 22 16:12:27 EDT 2022]_+
    Issuer: CN=CACERT, OU=FOR TESTING ONLY, O=MyOrganization, L=MyTown, ST=MyState, C=US+
    _SerialNumber: [    33f10648 fcde0deb 4199921f d64537f4]_+
    Certificate Extensions: 1+
    _[1]: ObjectId: 2.5.29.15 Criticality=true_
    _KeyUsage [_+
    KeyCertSign_+
    _Algorithm: [MD5withRSA]_+
    Signature:+
    _0000: 9D 26 4C 29 C8 91 C3 A7   06 C3 24 6F AE B4 F8 82  .&L)......$o...._
    _0010: 80 4D AA CB 7C 79 46 84   81 C4 66 95 F4 1E D8 C4  .M...yF...f....._
    _0020: E9 B7 D9 7C E2 23 33 A4   B7 21 E0 AA 54 2B 4A FF  .....#3..!..TJ._+
    _0030: CB 21 20 88 81 21 DB AC   90 54 D8 7D 79 63 23 3C  .! ..!...T..yc#<_
    +_] The system is vulnerable to security attacks, since it trusts certificates signed by the demo trusted CA.>_+
    +_<Jun 15, 2011 1:55:11 PM EDT> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=KEYNECTIS ROOT CA,OU=ROOT,O=KEYNECTIS,C=FR". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>_+
    +_<Jun 15, 2011 1:55:11 PM EDT> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=T-TeleSec GlobalRoot Class 3,OU=T-Systems Trust Center,O=T-Systems Enterprise Services GmbH,C=DE". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>_+
    +_<Jun 15, 2011 1:55:11 PM EDT> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=T-TeleSec GlobalRoot Class 2,OU=T-Systems Trust Center,O=T-Systems Enterprise Services GmbH,C=DE". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>_+
    +_<Jun 15, 2011 1:55:11 PM EDT> <Notice> <Server> <BEA-002613> <Channel "Default[1]" is now listening on 127.0.0.1:10080 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>_+
    +_<Jun 15, 2011 1:55:11 PM EDT> <Notice> <Server> <BEA-002613> <Channel "Default" is now listening on 10.84.80.147:10080 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>_+
    +_<Jun 15, 2011 1:55:11 PM EDT> <Notice> <Server> <BEA-002613> <Channel "DefaultSecure[1]" is now listening on 127.0.0.1:10083 for protocols iiops, t3s, CLUSTER-BROADCAST-SECURE, ldaps, https.>_+
    +_<Jun 15, 2011 1:55:11 PM EDT> <Notice> <Server> <BEA-002613> <Channel "DefaultSecure" is now listening on 10.84.80.147:10083 for protocols iiops, t3s, CLUSTER-BROADCAST-SECURE, ldaps, https.>_+
    +_<Jun 15, 2011 1:55:11 PM EDT> <Notice> <WebLogicServer> <BEA-000358> <Started WebLogic Independent Managed Server "EssbaseAdminServices0" for domain "EPMSystem" running in Production Mode>_+
    +_<Jun 15, 2011 1:55:11 PM EDT> <Warning> <JMX> <BEA-149510> <Unable to establish JMX Connectivity with the Adminstration Server AdminServer at <JMXServiceURL:null>.>_+
    +_<Jun 15, 2011 1:55:11 PM EDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN>_+
    +_<Jun 15, 2011 1:55:11 PM EDT> <Notice> <WebLogicServer> <BEA-000360> <Server started in ADMIN mode>_+
    +_<Jun 15, 2011 2:24:04 PM EDT> <Notice> <Log Management> <BEA-170027> <The Server has established connection with the Domain level Diagnostic Service successfully.>_+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            

    What I am saying is when you start up the configurator it checks the information in reg.properties so the configurator can connect to the shared services registry and retrieve information, if the password changed and you started up the configurator I would assume that it could not connect to the registry.
    Anyway seeing as you are this far along have you tried updating the password for foundation database in the configurator and then redeploying the web application, does foundation start up?
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Shared Services Security during LCM migration in 11.1.2.1

    I am migrating a Planning app from 1 environment to another.
    I vaguely remember ( from some presentation) that once I export Shared service security I need to modify the file to reflect the correct Essbase server name and than import the Shared service security file.
    Is this a mandatory step ? If yes which file should I modify ? Is it just listing.xml or any other file as well ?

    If you run an export of provisioning then for essbase you should by default see something like "EssbaseCluster-1", if your target environment is configured in the same way it should also be "EssbaseCluster-1" and you will not need to edit any files.
    If you don't start marking your posts I am not going to reply to any of your questions in future, hopefully everybody else will take that stance seeing as you have so many unresolved questions.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • How can Manage Permissions for DB in Shared Services Security Mode

    In shared services security mode, after provisioning users for Essbase applications, only can assign database calculation and filter access. How can I grant permissions "Access Databases" like in native mode?

    Essbase will be default be in shared services security mode in 11.1.2, the wizard will not migrate security when in this mode.
    It is possible to revert it back but if you don't know the process then it is worth looking at alternatives first.
    You could use LCM to export the provisioning and then import into your target environment.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Auto Logoff while in Shared Services Security Mode

    Pretty simple question but I still haven't found the answer.
    My client's essbase server is set up in Shared Services Security Mode, so now the auto logoff options for the server don't apply. Is there a way to set this via shared services? Or is there some other means perhaps?
    Thanks for your time.

    Essbase will be default be in shared services security mode in 11.1.2, the wizard will not migrate security when in this mode.
    It is possible to revert it back but if you don't know the process then it is worth looking at alternatives first.
    You could use LCM to export the provisioning and then import into your target environment.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Shared Services got disconnected from FDM

    Hi All,
    How and Why Shared Services got disconnected from FDM?
    What is the reason for this,please provide the root cause of this.
    Anyone help me regarding this issue,
    Thanks in advance,

    Hello Venu,
    Unfortunately without more information and the background to your belief/statement an answer can not be provided. Maybe if you would provide more information we can assist.
    Alternatively for this style of question/comment the forums might not be able to help. For 100% valid answers to such things, you should contact support. While the people that answer/post in the forums maybe helpful ... we are not the developers/support engineers responsible for such answers.
    Thank you,

  • Unable to connect to Planning nor shared services

    Hi,
    Something weird happened:
    Users were using Planning webforms in the office (http://server.com:8300/HyperionPlanning/LogOn.jsp) for about 2 hours and suddenly no one could log in.
    When users entered userid/password on the planning application, the form was stuck in state saying “Authenticating User”.
    The strange thing is that I am able to log into Planning (from my home PC, VPN into corporate network)
    However, from all rooms in the building, no one was able to log into Planning nor Shared Services. Everyone could access the Internet and Intranet thought.
    Any idea why? Restarting Planning and HSS services did not solve the problem. We even tried to use IP address in http://server.com:8300/HyperionPlanning/LogOn.jsp
    Edited by: Essbase Fan on Feb 2, 2010 12:55 PM

    Hi John,
    If you are in Europe, this must be late at night for you <smile>
    I logged in as one of the users from my PC from my home via vpn - no problem.
    Oh, they are getting a blank screen - they are not able to access Planning login screen.
    Same userID can't get Planning login screen from corporate office. Planning admins can't login as well.
    Just found out that all users can now log in.
    Isn't that weird ?
    I was wrong , the Windows administrator did NOT attempt to log into Planning using Remote Desktop directly to Planning server. It probably would have worked.
    Edited by: Essbase Fan on Feb 2, 2010 12:56 PM

  • Shared services security- Is this even possible?

    I want to know if the following is possible using shared services security:
    I want to set up an MSAD group that will have say 50 sub groups.
    I will define this super group as an external directory in SS.
    I will then assign security (both roles and filters) to each of the 50 sub groups.
    There will be no groups or users in the native directory.
    Based on user needs, the MSAD team will move users from one subgroup to another without logging into Shared Services.
    My expectation is when they move the users from one subgroup to another, the user will have the security of the group they were moved to.
    Is it possible to set up security this way in shared services? I have been experimenting and having a miserable time getting it to work. So just wanted to know if I am doing something wrong or just wasting my time.

    I think this will work, but note that you are not really using SS inherited security.
    What you might do is something like this:
    MasterGroup <--Assign provisioning here
    |_Subgroup1 <--Assign filter
    |_Subgroup2 <--Assign yet another filter
    |_Etc.
    With the above layout you define provisioning roles once at the topmost group (MasterGroup) and then assign unique security at the subgroups.  The users are in the subgroups and their usernames will go to their ids (which will have no provisioning), then their immediate group (ditto), and then the parent group (which will). 
    What you have defined for security (as opposed to provisioning) sounds good to me although I have never tried to do this with MSAD groups.  I don't see a reason for it not to work.
    Regards,
    Cameron Lackpour

  • Shared Services Security Migration

    Hi All,
    I need to migrate Shared Services Security from one server to another server(applications already migrated).
    Can you please let me know if we copy essbase.sec file will it work, or any other process we need to follow.
    Thanks,
    Pinky

    Dear Pinky,
    As John just mentioned - it depends a bit on the version that you use as well (11.1.2 is different from 11.1.1.3.x is different from 9.x)
    but you may find useful information in these guides:
    http://download.oracle.com/docs/cd/E12825_01/epm.111/epm_security.pdf
    http://download.oracle.com/docs/cd/E12825_01/epm.111/epm_backup_recovery.pdf
    The CSSImportExport utiity is documented within its own zip folder on your installation of HSS (if you are using version 11.1.1.x)
    Basically you can think of the process as a backup and restore on a different machine.
    The complete list of steps is way too detailed and complex and touches too many sensitive areas to handle it in a thread here.
    (especially as I do not know the versions of HSS/Essbase, the OS or the scope of this migration)
    best regards
    Torben

  • How to sync user for planning from Shared Services

    Hi ..
    Can anybody please let me know how to sync users for planning from shared services.
    Thank you.

    You need to expand on your question.
    But the basic concept is you create or connect (for LDAP) users in Shared Services. You also create groups as required for these users. Then in shared services you provision those user to Planning applications (directly or indirectly through groups)
    Then in Planning you will see users or groups. And in planning you connect them to either members in dimensions or to objects like Forms, Task lists, Business Rules.
    There is therefore no such thing as synching Shared Services with Planning.
    Note: the 2 steps mentioned above can be done in batch through load utilities.
    Please expand you question if necessary

  • 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

  • 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/

Maybe you are looking for

  • Credit Memo Request and Credit Management

    Hi, can anyone advise the following? I noticed that sales values of the credit memo request is updated to the open delivery instead of open order in the credit master.  Why is this so?  Also, when i select a order order reason configured with fixed v

  • Acrobat reader printing at runtime

    Hi All, How to call acrobat reader at printing runtime for printing .pdf file? Thanks, Message was edited by: p.v.k.k

  • Email receiving problems

    Hi, I am having Emails receving problems with my BB 8320 Curve. Somehow I can not receving no emails from no emails accounts, but I can send them with out problem. As I noticed I get on my oldest BB device a email notification after I registered on B

  • SCA/SDA file

    Hi, I do not have the authorization to SDM and so i am not able to deploy a DC. How can i get the deployable archive of the project SCA/ SDA ? If i want to transport it to the runtime system, do i need a SCA file or an SDA file ? Is it created when i

  • WRT600N (Firmware Version: 1.01.36 build 3) internet stops after few days

    I had the WRT600N for months, it worked great, then it started dropping internet.  you could still ping out but no WWW, if you reboot or ipconfig/renew you cant get a DHCP IP address.    I updated the firmware to the latest version and I still get th