Orphaned Users in Planning

We are currently having an issue with adding users into Planning for System 11.1.1.1. We are running with OpenLDAP Object UID connected to a domain for our user lists. It appears that we have an Orphaned Object UID and I would like to know if anyone knows of a way or has a tool to help clear this up?
Thanks in advance

Hi,
Are you just using native shared services security ? or are you meaning you are using MSAD and have an issue.
What is the error message you are getting and where are you getting this issue.
Cheers
John
http://john-goodwin.blogspot.com/

Similar Messages

  • How to resolve a windows authenticated orphaned user in Sql Server 2008 R2?

    Hi,
     We have some orphaned windows authenticated  users(domain) in the database while it had been
    migrated from Sql Server 2005 to Sql Server 2008 R2, because there are no corresponding
    logins for the users. Will just adding the logins would be sufficient or after adding the
    logins should we also run sp_change_users_login @Action='update_one' to resolve any sid
    conflict. Thanking you in advance,
    With regards
    Binny Mathew

    Binny
    You have issue with orphaned users if you use Mixed Authentication.  If you use Windows and move the db to the new server the Windows Login should be exist on the new server already.
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • Unable to create a User in Planning (Very Urgent)

    Hi All,
    I am Using Planning 4.0 version. When I am trying to create a user from Planning Web it is throwing me the below Error:
    User Name is Invalid: test
    I tried giving different usernames but no luck.
    Is this a bug??? Are there any log files which I can look at for more information.
    Please let me know your valuable inputs.
    Thanks in Advance

    Hi,
    But I have this user access couple of weeks back. I do not know where to check for the log files.
    This user is available in Active directory and can access production database. But I am unable to create the same user in developement environment. Even I tried to create couple of users who are in the Actice directory. I am unable to create any users.
    Where should I check to get more information in order to resolve this issue.
    Please let me know your inputs

  • Powershell Script to find out Orphan Users ( Who are no longer available in AD but SharePoint) in SharePoint 2013

    Hi,
    Can you please on the above issue? I have one script which works fine for sp2010 but not sp2013 below,
    Script
    function Check_User_In_ActiveDirectory([string]$LoginName, [string]$domaincnx)
    $returnValue = $false
    #Filter on User which exists and activated
    #$strFilter = "(&(objectCategory=user)(objectClass=user)(!userAccountControl:1.2.840.113556.1.4.803:=2)(samAccountName=$LoginName))"
    #Filter on User which only exists
    #$strFilter = "(&(objectCategory=user)(objectClass=user)(samAccountName=$LoginName))"
    #Filter on User and NTgroups which only exists
    $strFilter = "(&(|(objectCategory=user)(objectCategory=group))(samAccountName=$LoginName))"
    $objDomain = New-Object System.DirectoryServices.DirectoryEntry($domaincnx)
    $objSearcher = New-Object System.DirectoryServices.DirectorySearcher
    $objSearcher.SearchRoot = $objDomain
    $objSearcher.PageSize = 1000
    $objSearcher.Filter = $strFilter
    $objSearcher.SearchScope = "Subtree"
    #$objSearcher.PropertiesToLoad.Add("name")
    $colResults = $objSearcher.FindAll()
    if($colResults.Count -gt 0)
    #Write-Host "Account exists and Active: ", $LoginName
    $returnValue = $true
    return $returnValue
    function ListOrphanedUsers([string]$SiteCollectionURL, [string]$mydomaincnx)
    [System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint") > $null
    $site = new-object Microsoft.SharePoint.SPSite($SiteCollectionURL)
    $web = $site.openweb()
    #Debugging - show SiteCollectionURL
    write-host "SiteCollectionURL: ", $SiteCollectionURL
    Write-Output "SiteCollectionURL - $SiteCollectionURL"
    $siteCollUsers = $web.SiteUsers
    write-host "Users Items: ", $siteCollUsers.Count
    foreach($MyUser in $siteCollUsers)
    if(($MyUser.LoginName.ToLower() -ne "sharepoint\system") -and ($MyUser.LoginName.ToLower() -ne "nt authority\authenticated users") -and ($MyUser.LoginName.ToLower() -ne "nt authority\local service"))
    #Write-Host "  USER: ", $MyUser.LoginName
    $UserName = $MyUser.LoginName.ToLower()
    $Tablename = $UserName.split("\")
    Write-Host "User Login: ", $MyUser.LoginName
    $returncheck = Check_User_In_ActiveDirectory $Tablename[1] $mydomaincnx 
    if($returncheck -eq $False)
    #Write-Host "User not exist: ",  $MyUser.LoginName, "on domain", $mydomaincnx 
    Write-Output $MyUser.LoginName 
    $web.Dispose()
    $site.Dispose()
    function ListOrphanedUsersForAllColl([string]$WebAppURL, [string]$DomainCNX)
    [System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint") > $null
    $Thesite = new-object Microsoft.SharePoint.SPSite($WebAppURL)
    $oApp = $Thesite.WebApplication
    write-host "Total of Site Collections: ", $oApp.Sites.Count
    $i = 0
    foreach ($Sites in $oApp.Sites)
    $i = $i + 1
    write-host "Collection N° ", $i, "on ", $oApp.Sites.Count
    if($i -gt 0)
    $mySubweb = $Sites.RootWeb
    $TempRelativeURL = $mySubweb.Url
    ListOrphanedUsers $TempRelativeURL $DomainCNX
    function StartProcess()
    # Create the stopwatch
    [System.Diagnostics.Stopwatch] $sw;
    $sw = New-Object System.Diagnostics.StopWatch
    $sw.Start()
    #cls
    ListOrphanedUsersForAllColl "http://portal" "LDAP://DC=Srabon,DC=com" 
    ListOrphanedUsersForAllColl "http://portal/sites/Test" "LDAP://DC=Srabon,DC=com"  
    $sw.Stop()
    # Write the compact output to the screen
    write-host "Time: ", $sw.Elapsed.ToString()
    StartProcess
    # Can be executed with that command : "Check-SharePoint-Orphaned-Users.ps1 > orphaned_users.txt"
    srabon

    Hi Srabon,
    Try this it works in SP2007, SP2010, and SP2013.
    Mod line 70: $WebAppURL="http://intranet.contoso.com" to your "http://WebApp"
    [System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint")
    #Functions to Imitate SharePoint 2007, 2010, 2013
    function global:Get-SPWebApplication($WebAppURL)
    return [Microsoft.SharePoint.Administration.SPWebApplication]::Lookup($WebAppURL)
    function global:Get-SPSite($url)
    return new-Object Microsoft.SharePoint.SPSite($url)
    function global:Get-SPWeb($url)
    $site= New-Object Microsoft.SharePoint.SPSite($url)
    if ($site -ne $null)
    $web=$site.OpenWeb();
    return $web
    #Check if User exists in ActiveDirectory
    function CheckUserExistsInAD()
    Param( [Parameter(Mandatory=$true)] [string]$UserLoginID )
    #Search the User in ActiveDirectory
    $forest = [System.DirectoryServices.ActiveDirectory.Forest]::GetCurrentForest()
    foreach ($Domain in $forest.Domains)
    $context = new-object System.DirectoryServices.ActiveDirectory.DirectoryContext("Domain", $Domain.Name)
    $domain = [System.DirectoryServices.ActiveDirectory.Domain]::GetDomain($context)
    $root = $domain.GetDirectoryEntry()
    $search = [System.DirectoryServices.DirectorySearcher]$root
    $search.Filter = "(&(objectCategory=User)(samAccountName=$UserLoginID))"
    $result = $search.FindOne()
    if ($result -ne $null)
    return $true
    return $false
    $WebAppURL="http://intranet.contoso.com"
    #Get all Site Collections of the web application
    $WebApp = Get-SPWebApplication $WebAppURL
    #Iterate through all Site Collections
    foreach($site in $WebApp.Sites)
    #Get all Webs with Unique Permissions - Which includes Root Webs
    $WebsColl = $site.AllWebs | Where {$_.HasUniqueRoleAssignments -eq $True} | ForEach-Object {
    $OrphanedUsers = @()
    #Iterate through the users collection
    foreach($User in $_.SiteUsers)
    #Exclude Built-in User Accounts , Security Groups & an external domain "corporate"
    if (($User.LoginName.ToLower() -ne "nt authority\authenticated users") -and
    ($User.LoginName.ToLower() -ne "sharepoint\system") -and
    ($User.LoginName.ToLower() -ne "nt authority\local service") -and
    ($user.IsDomainGroup -eq $false ) -and
    ($User.LoginName.ToLower().StartsWith("corporate") -ne $true) )
    $UserName = $User.LoginName.split("\") #Domain\UserName
    $AccountName = $UserName[1] #UserName
    if ( ( CheckUserExistsInAD $AccountName) -eq $false )
    Write-Host "$($User.Name)($($User.LoginName)) from $($_.URL) doesn't Exists in AD!"
    #Display Orphaned users
    $OrphanedUsers+=$User.LoginName
    # <<<UNCOMMENT to Remove Users#
    # Remove the Orphaned Users from the site
    # foreach($OrpUser in $OrphanedUsers)
    # $_.SiteUsers.Remove($OrpUser)
    # Write-host "Removed the Orphaned user $($OrpUser) from $($_.URL) "
    $web.Dispose()
    $site.Dispose()
    -Ivan

  • User-Defined Planning Layouts  - Translations

    Hi Experts,
    Custom Planning layouts have been created.
    I need to translate the form from English to Danish.
    This has to be done in the Development system then moved to Quality and Production.
    This is how I proceeded with the task:
    IMG Path: Project System  Costs  Planned Costs  Manual Cost Planning in WBS  Detailed Planning  Create User-Defined Planning Layouts for Detailed Planning.
    Select Change PS Planning Cost Element/Activity Input Layouts.
    Select Layout ZMY_LAYOUT  Planning Layout  Translate Form.
    Specify Source Lanaguage : EN, Target Language: DA --> Clcik on Translate Button.
    There is a prompt for including the request in a Transport Request. If clicked yes it asks for a workbench Request.
    I specified the workbench request number.
    Select Form --> Object List
    Select the line with form name, Source Text --> Click on Translate.
    Enter the translation -> Save and exit
    However, when I check my request in SE10, it has no objects???
    If I repeat the process, and select Transport form, it asks me for a customizing Request.
    How can I move  my transations from D to Q.
    Regards,
    Reema Shahbazkar.

    Hi,
    No it is NOT a unicode system.
    Regards,
    Reema

  • What is user defined planning dimension?

    What is user defined planning dimension?
    6. What is user-defined custom planning dimension?

    Hi,
    If Your company needs further level of plan details than is provided,yOu can create user defined dimensions like Customer,Product...ETc.

  • Cause of Orphaned Users in Sharepoint

    This isn't really a problem. More of a question for best practices.
    We have a number of Orphaned users in our SharePoint environment. We have a way to remove orphaned users already. However, we want to prevent so many orphaned users from occurring again.
    I know accounts become orphaned when the user has been disabled or removed from Active Directory. Will we always have orphaned accounts or is there a best practice to prevent this.
    I ask because we inherited a bad security practice. Many users were given access to sites directly or they were added to multiple SharePoint groups. We are changing this to have Active Directory security groups inside of SharePoint groups. We set all permissions via
    Active Directory groups. When a user is disabled or deleted, their user account is removed from the AD group, thus updating the SharePoint permissions. Will this prevent the orphaned account problems.
    I think it would but then I wonder about sites or items created by the deleted user. Will this cause the orphaned account in SharePoint. I hope I am making sense. ultimately, i would like to know what exactly causes an account to become orphaned and how
    to best prevent it.
    thanks for any input.
    LSTalbot

    Item in sharepoint would not get effected when you remove the users
    However make sure that orphan users are normally older then 30 days old as per your AD policy before removing him. because after removing orphan from site incase if you require them in future, it is not possible to add him back with exact same permission.

  • HowTo: Business User defining Planning Functions?

    Hi all,
    does anybody have experience with allowing Business users Defining Planning Functions (e.g. account A = account B - account C) and could share a rough concept? I basically think about Fox-Formulas, but this includes issues with authorization in productive system.
    Are there any solutions with translating free-text-Formulas (e.g. defined in an Attribut or flatfile, see scenario below) into ABAP or FOX Code?
    Thanks for sharing your ideas and experiences,
    Best regards,
    Michael
    Our scenario:
    - Business users are responsible (and authorized) for specific local Companies.
    - Values of the Chart of accounts are typed in into a input-ready query.
    - for Dummy accounts (e.g. Z01) of the local companies no planning is allowed in the plan version, but business users should be allowed to define a specific formula, such as:
    =  + *
    - these functions run at the end of the planning process in a separate planning version for translating local data into global accounts
    - At best these functions should be maintained as an attribut of the dummy accounts or as free text in a text field next to the account in the plan query, but how to translate the formula into a Fox or ABAP formula without great effort?
    - When using FOX, the issue is, that it is a different GUI and there would have to be a function for each company (there will come new companies) and so on....

    Hi Matthias,
    thanks for the post. The problem isnt of keying in the formula isn't that big, this can for example be done in an attribute Char 60 with Flatfile upload for each planning process.
    My problem is more
    a) if I use FOX Formulas - the usage of fox formulas in productive system for Business User
    I still think that using FOX formulas is the easiest thing to implement, but probably the hardest to run and maintain life. Are there any best practises / how tos about authorization and IP architecture for that?
    b) if I use formulas as Text - the formula parsing itself and the communication with the planning function
    Here you gave me the hint of using customer defined planning functions. That's probably the best thing. I first thought about about a formula parser that is called by fox. Still, parsing free text into structured formulas isn't easy, is it? Are there any how-tows?
    best regards,
    Michael

  • 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

  • AA unable to transfer to Lync 2013, but only on User dial plans

    The current environment has two Lync 2013 standard edition servers.  Lync 2010 is still in existence, and both pools are connected to an Exchange 2010 SP2 UM server.
    UserA is part of the default Global dial plan in Lync and part of a UM dial plan named Global.  UserA has been moved to Lync 2013 pool.
    UserB is part of a user dial plan in Lync named UserDialPlan and a UM dial plan named UserDialPlan.  UserB has been moved to Lync 2013 pool.
    Both dial plans have their own route/pstn usage tied to their own sip trunk from Intelepeer.  Both UM dial plans have an AA identically configured with key mapping #1 tied to dial the 11 digit phone number of the user.  Both users can successfully
    be dialed directly via PSTN.
    If I call Global’s AA and press 1, the call is successfully connected and rings through to UserA.
    If I call UserDialPlan’s AA and press 1, I get “Sorry I couldn’t transfer you to the extension” and the UM server logs shows errors 1079 and 1136:
    1079 The VoIP platform encountered an exception Microsoft.Rtc.Signaling.OperationFailureException: Failed to transfer, successful refer notification not received
    1136 An error occurred while transferring a call to "15552735555". Additional information: The call transfer type is "Blind.", the transfer target is "phone number", and the caller
    ID is: "0ed8114d-a068-41be-9790-9342d0a02d7b".
    If I switch the ip address of our sip trunk back to the Lync 2010 mediation server and alter the Lync topology to connect that trunk back to the 2010 server, then these transfers start working again.  This goes for other
    user dial plans as well.  What I don’t understand is why the Global dial plan would work on 2013 and the user dial plans will not.  Refer is disabled on the trunk config (has been for
    over 2 years).  I assume if it was a general setting like that, the Global plan wouldn’t work either, but what is it that’s special about the Global plan vs. user plans?
    Any thoughts would be great, thanks!

    I have the same issue. I can actually transfer to extensions when it is speech enabled and I say the person's name. However if I try a key mapping to transfer to the same user using the Extention I get the same "Sorry I couldn't transfer you to the extension"
    An error occurred while transferring a call to "151". Additional information: The call transfer type is "Blind.", the transfer target is "phone number", and the caller ID is: "4813feae-2a10-4d33-9612-ee4bccf7c0f9". 
    The VoIP platform encountered an exception Microsoft.Rtc.Signaling.OperationFailureException: Failed to transfer, successful refer notification not received
       at Microsoft.Rtc.Signaling.SipAsyncResult`1.ThrowIfFailed()
       at Microsoft.Rtc.Signaling.Helper.EndAsyncOperation[T](Object owner, IAsyncResult result)
       at Microsoft.Rtc.Signaling.Helper.EndAsyncOperation[T](Object owner, IAsyncResult result, String operationId)
       at Microsoft.Rtc.Collaboration.Call.EndTransferCore(IAsyncResult result)
       at Microsoft.Rtc.Collaboration.AudioVideo.AudioVideoCall.EndTransfer(IAsyncResult result)
       at Microsoft.Exchange.UM.UcmaPlatform.UcmaCallSession.BlindTransferSessionState.Call_TransferCompleted(IAsyncResult r)
       at Microsoft.Exchange.UM.UcmaPlatform.UcmaCallSession.SubscriptionHelper.<>c__DisplayClass5f`1.<>c__DisplayClass62.<WrapCallback>b__5e()
       at Microsoft.Exchange.UM.UcmaPlatform.UcmaCallSession.<>c__DisplayClassd.<CatchAndFireOnError>b__9()
       Detected at System.Environment.get_StackTrace()
       at Microsoft.Rtc.Signaling.OperationFailureException..ctor(String message)
       at Microsoft.Rtc.Collaboration.Call.CallTransferAsyncResult.Refer_StateChanged(Object sender, ReferStateChangedEventArgs e)
       at Microsoft.Rtc.Signaling.ReferStateChangedEventArgs.Microsoft.Rtc.Signaling.IWorkitem.Process()
       at Microsoft.Rtc.Signaling.WorkitemQueue.ProcessItems()
       at Microsoft.Rtc.Signaling.SerializationQueue`1.ResumeProcessing()
       at Microsoft.Rtc.Signaling.SerializationQueue`1.ResumeProcessingCallback(Object state)
       at Microsoft.Rtc.Signaling.QueueWorkItemState.ExecuteWrappedMethod(WaitCallback method, Object state)
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
       at System.Threading._ThreadPoolWaitCallback.PerformWaitCallbackInternal(_ThreadPoolWaitCallback tpWaitCallBack)
       at System.Threading._ThreadPoolWaitCallback.PerformWaitCallback(Object state)
    FailureReason = 0 during the call with ID "4813feae-2a10-4d33-9612-ee4bccf7c0f9". This exception occurred at the Microsoft Exchange Speech Engine VoIP platform during an event-based asynchronous operation submitted by the Unified Messaging server. The Unified
    Messaging server will attempt to recover from this exception. If this warning occurs frequently, contact Microsoft Product Support.

  • Orphan users and deleting logins but not users

    Hello there,
    First off I'm sorry if this was already posted. I've researched for the last two hours and can't seem to find the answer I'm looking for.
    So its to my understanding then when you delete a Server Login, if you have a user that uses that Login and THAT LOGIN only, once you delete the login the user is now an orphan user.
    I've been running the orphan user sp (
    USE <database_name>;
    GO;
    sp_change_users_login @Action='Report';
    GO;
    but recently I've deleted a login, the user still exists on the database, but it should now be an orphan user right? I know for a fact this user is not in any other group, and it should be an orphan user. So why isn't it? :(

    Hi Krystina,
    Your question may be that sp_change_users_login didn't detect an orphan user scenario? If so, I would recommend checking sys.server_principals and sys.database_principals to verify for certain (and if you have a reproduction of the exact issue, please post
    here).
    Here is a demo that walks through the by-design behavior (dropping login will not equate to dropping a user, and that user will be an orphaned user).  
    USE [master]
    GO
    -- Create the login
    CREATE LOGIN [TestUser] WITH PASSWORD=N'Test!!1234',
    DEFAULT_DATABASE=[master], CHECK_EXPIRATION=OFF, CHECK_POLICY=OFF;
    GO
    -- Create a database
    CREATE DATABASE [Test];
    GO
    -- Create the user in that database
    USE [Test]
    GO
    CREATE USER [TestUser] FOR LOGIN [TestUser] WITH DEFAULT_SCHEMA=[dbo];
    GO
    -- Drop the * login * (not user)
    DROP LOGIN [TestUser];
    -- You should no longer see this long at the SQL Server instance (server) scope
    SELECT [SP].[name], [SP].[principal_id], [SP].[sid], [SP].[type],
           [SP].[type_desc], [SP].[is_disabled], [SP].[create_date],
           [SP].[modify_date], [SP].[default_database_name],
           [SP].[default_language_name], [SP].[credential_id]
    FROM sys.[server_principals] AS [SP]
    WHERE name = 'TestUser';
    -- But we didn't drop the user, so you * should * still see it within the database (by-design)
    USE [Test];
    GO
    SELECT [DP].[name], [DP].[principal_id], [DP].[type], [DP].[type_desc],
           [DP].[default_schema_name], [DP].[create_date], [DP].[modify_date],
           [DP].[owning_principal_id], [DP].[sid], [DP].[is_fixed_role]
    FROM sys.[database_principals] AS [DP]
    WHERE name = 'TestUser';
    -- And your orphan proc call will report it as well
    EXEC sp_change_users_login @Action='Report';
    Best Regards, Joe Sack, MVP, SQL MCM | SackHQ.com

  • User In Planning unit Hierarchy unable to see data form in editable mode

    hi all,
    we are facing a problem in planning unit hierarchy in Hyperion planning, where we have 4 users, Hierarchy is define as
    hierarchy: budget approved
    version: approved
    Entity: Finance
    Senario:Budget
    haroon asghar ( owner)
    adeel javid (Reviewer)
    Naeem asghar (Reviewer)
    Imtiaz (Reviewer)
    Issue is that,after start the budget activity (promotional path) by Admin, the data form editable to Owner haroon asghar
    but after completing his work by haroon,when he promote the planning unit ,the next user in Hierarchy "Adeel javid" unable to see data form in respective planning unit in uneditable data form not only for this user but all rest of the users as well,while i think data form should only uneditable(grayed) for user Haroon Asghar who promote the planning unit.
    we have checked all security rights to the users those are "Write access" but still Adeel javid is unable to enter data,so the budget activity is stop due to this problem.
    when i remove the planning unit then i log in with all user one by one and see all data form required version,scenario and entity were editable to all users mention above
    we want to run budget activity with the above planning unit hierarchy.
    plz any one provide the proposed solution of the said issue
    we are using Product Version     11.1.2.0.00
    Regards
    Anwar

    Reviewers will not be able to write data to the intersection. Reviewers can only review the data and follow-up with a Reject, Promote, Sign off, Delegate, Originate or Freeze.
    Please refer Article ID 1226783.1 in MOS.
    HTH-
    Jasmine.

  • Orphaned user in SQL server

    In our environment there are many SQL servers and many AD ids are there as SQL logins.
    If an id deleted from AD then it stays in SQL server as a orphaned login.
    I need to cleanup those ids from SQL servers. Now I need a
    query to validate the user exist in AD or not.
    Or Please share if any other way to do it.
    Thanks in advance!!

    Hello,
    You can use sp_validatelogins (Transact-SQL) to validate your Windows Logins.
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Shared Services: adding users to Planning

    Hi,
    I'm having a problem creating users to and provisioning them to Planning. I'm not getting any error in the web interface but the users are not being added to the relational Planning database (HSP_USERS), however groups are. When I can also add the created users to a group but they are failing in the Planning logs with reference constraints, because the user is not present on the users table.
    Does shared services have a log to check if I'm having any error while creating the users?
    Thank you

    Hi,
    I dug into the logs and found the following:
    EPMCSS-00001: Failed to initialize EPM Shared Services security instance. Component SYSTEM9/FOUNDATION_SERVICES_PRODUCT/SHARED_SERVICES_PRODUCT is null in EPM System Registry. Verify EPM System Registry configuration.
    at com.hyperion.css.registry.RegistryManager.initRegistry(RegistryManager.java:109)
    at com.hyperion.css.registry.RegistryManager.<init>(RegistryManager.java:94)
    at com.hyperion.css.registry.RegistryManager.getInstance(RegistryManager.java:131)
    at com.hyperion.css.CSSSystemFactory.getCSSMode(CSSSystemFactory.java:102)
    at com.hyperion.css.CSSSystemFactory.getCSSSystem(CSSSystemFactory.java:71)
    at com.hyperion.css.CSSSystem.initCSSSystem(CSSSystem.java:319)
    at com.hyperion.css.CSSSystem.getInstance(CSSSystem.java:273)
    [Thu Apr 26 12:51:14 2012]Local/ESSBASE0///1876/Info(1051283)
    Retrieving License Information Please Wait...
    [Thu Apr 26 12:51:14 2012]Local/ESSBASE0///1876/Info(1051286)
    License information retrieved.
    [Thu Apr 26 12:52:01 2012]Local/ESSBASE0///1876/Error(1051223)
    Single Sign On function call [css_init] failed with error [CSS Error: CSS method invocation error: getInstance: Failed to get CSSSystem instance, please check SharedServices_Security_Client.log for more information]
    [Thu Apr 26 12:52:01 2012]Local/ESSBASE0///1876/Info(1051198)
    Single Sign-On Initialization Failed !
    So it seems it's a problems in the EPM System Registry. Can you advise me please? How can I clean the EPM System Registry of problems? I think this might have happened when I changed the database servers, but I configured the registry again and I thought it was healthy again since I only had problems some days ago when I tried to add new users.
    Thank you

  • User Provisioning - Planning to essbase

    Hello,
    I have done user-provisioning in shared services for Planning and it gives them access to their respective costcenters in planning. However when I am connecting to smartview for adhoc analysis with essbase connection, it has no security.
    Any quick fixes or suggestion to pass on the security to essbase?
    Thanks,
    XXX

    Hello Rinku,
    I provisioned this User as a planner to use planning application with restricted access. The next step was to refresh the essbase filters through planning 'Manage Database' option with security filters & shared members selected.
    I refreshes successfully.
    How and where do I check in essbase as to if these users are created and provisioned accordingly.
    Thanks,
    XXX

Maybe you are looking for