Error in OAM Identity and Access Servers login pages

Hi All,
I am trying to install OAM I completed all installations . But now am getting error as invalid "*Invalid credential*". IS there any process to know what the userid and password for the both Identity and Access Servers . Please tell me if there is any process. It very helpful to me .
Thank u & Regards
Pokuri

Hi Pokuri,
Could be that the searchbase is wrong, so that OAM is not finding the user whose credentials you are entering. Or, maybe OAM is using a different attribute as the login attribute (for example, you could be entering the cn when OAM is expecting the uid).
Try binding to ldap with another utility (such as ldapbind or ldapsearch) to see if this gives any indications. You may need to reconfigure the Identity Server to verify/correct the searchbase (for this, follow note 730376.1) and to check which attribute has the "Login" semantic type in OAM.
Regards,
Colin

Similar Messages

  • Java Script Errors on Siebel Sales and Call Center Login Pages

    Hello,
    This only happens with some users, but not all of them.
    When we first open the login screen in TRIAL we get several Internet Explorer errors.
    1. Line: 1153
    Char: 16
    Error: Expected ')'
    Code: 0
    URL: http://topaxsear009.iss.bnr.com/callcenter_enu/start.swe?SWECmd=Start&SWEHo=topaxsear009.iss.bnr.com
    2. Line: 59
    Char: 1
    Error: Object expected
    Code: 0
    URL: http://topaxsear009.iss.bnr.com/callcenter_enu/start.swe?SWECmd=Start&SWEHo=topaxsear009.iss.bnr.com
    3. Line: 13
    Char: 1
    Error: Object expected
    Code: 0
    URL: http://topaxsear009.iss.bnr.com/callcenter_enu/start.swe?SWECmd=Start&SWEHo=topaxsear009.iss.bnr.com
    4. Line: 30
    Char: 1
    Error: Object expected
    Code: 0
    URL: http://topaxsear009.iss.bnr.com/callcenter_enu/start.swe?SWECmd=Start&SWEHo=topaxsear009.iss.bnr.com
    Once we enter our login credentials and click the login button or press Enter nothing happens. No Siebel errors are shown and the login page does not react. No additional IE errors are thrown either.
    As mentioned earlier, this does not happen to everyone that tries to log in to Trial. This also does not happen in Dev or Prod. Also, this only occurs in Thin Client. We are able to log into Thick Client which leads me to believe it is a web server issue.
    Has anyone ever seen this behavior beenbefore and what would cause this to occur?
    Thanks,
    Andrea Thomas
    (817) 352-0175
    [email protected]

    There isn't any browser script on the Siebel Sales Enterprise or the Siebel Universal Agent Applications.
    We have the following script in the Application_Start function on the Siebel Sales Enterprise and Siebel Universal Agent Applications:
    function Application_Start (CommandLine)
    var sysDate = new Date();
    //var sDate = Date("2003","10","16","03","00","00");
    //var sDate = ((sysDate.getMonth() + 1) + "/" + sysDate.getDate() + "/" + sysDate.getFullYear());
    var sDate = (sysDate.getMonth() + 1) + "/" + sysDate.getDate() + "/" + sysDate.getFullYear() +" "+sysDate.getHours()+":"+sysDate.getMinutes()+":"+sysDate.getSeconds();
    var sLogin = TheApplication().LoginName();
    var ZepBO = TheApplication().GetBusObject("ZephyrUsage-BNSF");
    var ZepBC = ZepBO.GetBusComp("ZephyrUsage-BNSF");
    var sLastError = "" ;
         try
         ZepBC.SetViewMode(AllView);
         ZepBC.ClearToQuery();
         ZepBC.ActivateField("Login Name");
         ZepBC.ActivateField("Recent Login");
         ZepBC.ActivateField("Previous Login");
         ZepBC.SetSearchSpec("Login Name",TheApplication().LoginName());
         ZepBC.ExecuteQuery(ForwardBackward);
         var sflg = ZepBC.FirstRecord();
              if(sflg == true)
                   ZepBC.SetFieldValue("Previous Login",ZepBC.GetFieldValue("Recent Login"));
                   ZepBC.SetFieldValue("Recent Login",sDate);
                   ZepBC.WriteRecord();
                   ZepBC = null;
                   ZepBO = null;
         catch(e)
              e=null;
         finally
              ZepBC = null;
              ZepBO = null;
    We have the following script in the Application_Close function on the Siebel Sales Enterprise Siebel Universal Agent Applications:
    function Application_Close ()
    var sysDate = new Date();
    var sDate = (sysDate.getMonth() + 1) + "/" + sysDate.getDate() + "/" + sysDate.getFullYear() +" "+sysDate.getHours()+":"+sysDate.getMinutes()+":"+sysDate.getSeconds();
    var sLogin = TheApplication().LoginName();
    var ZepBO = TheApplication().GetBusObject("ZephyrUsage-BNSF");
    var ZepBC = ZepBO.GetBusComp("ZephyrUsage-BNSF");
    var sLastError = "" ;
    //var fp = Clib.fopen('d:\\AppScript.txt', 'wt');
    //Clib.fputs('\n I am UnGracefully Closed', fp);
    //Clib.fclose(fp);
         try
         ZepBC.SetViewMode(AllView);
         ZepBC.ClearToQuery();
         ZepBC.ActivateField("Login Name");
         ZepBC.ActivateField("Last Logout");
         ZepBC.SetSearchSpec("Login Name",TheApplication().LoginName());
         ZepBC.ExecuteQuery(ForwardBackward);
         var sflg = ZepBC.FirstRecord();
              if(sflg == true)
                   ZepBC.SetFieldValue("Last Logout",sDate);
                   ZepBC.WriteRecord();
                   ZepBC = null;
                   ZepBO = null;
         catch(e)
              e=null;
         finally
              ZepBC = null;
              ZepBO = null;
    We have the following script in the general declarations of the Siebel Sales Enterprise Siebel Universal Agent Applications:
    //     8/20/01 Melissa Ahluwalia
    //     Define global variables for the VBC connections
    //     MA 8/1/2 - Add global variable for URL
    var gOLTP;
    var gOLAP;
    var gURL;
    var LOVBC;
    // CS Project: Yash: 09/16/2004
    var gEqUndoRecord;
    //Aditya CS REDESIGN
    var gEnforceSRReqFields;
    var gForceSRInput;
    var gRunSREquipmentAutoTrace;
    TheApplication().SetSharedGlobal("gEqUndoRecord", "N");
    TheApplication().SetSharedGlobal("gEnforceSRReqFields", "Y");
    TheApplication().SetSharedGlobal("gForceSRInput", "N");
    TheApplication().SetSharedGlobal("gRunSREquipmentAutoTrace", "Y");
         LOVBC = TheApplication().GetBusObject("List Of Values").GetBusComp("List Of Values");
                             LOVBC.SetViewMode(AllView);
                             LOVBC.ClearToQuery();
                             LOVBC.ActivateField("Type");
                             LOVBC.ActivateField("Value");
                             LOVBC.ActivateField("Active");
                             LOVBC.SetSearchSpec("Active", "Y");
                             LOVBC.SetSearchSpec("Type", "BNSF_CONNECT_OLTP");
                             LOVBC.ExecuteQuery(ForwardBackward);
                             LOVBC.FirstRecord();
         TheApplication().SetSharedGlobal("gOLTP", LOVBC.GetFieldValue("Value"));
                             LOVBC.SetSearchSpec("Type", "BNSF_CONNECT_OLAP");
                             LOVBC.SetSearchSpec("Active", "Y");
                             LOVBC.ExecuteQuery(ForwardBackward);
                             LOVBC.FirstRecord();
         TheApplication().SetSharedGlobal("gOLAP", LOVBC.GetFieldValue("Value"));
                             LOVBC.SetSearchSpec("Type", "BNSF_CONNECT_URL");
                             LOVBC.SetSearchSpec("Active", "Y");
                             LOVBC.ExecuteQuery(ForwardBackward);
                             LOVBC.FirstRecord();
         TheApplication().SetSharedGlobal("gURL", LOVBC.GetFieldValue("Value"));
    //     LOVBC = '';
    LOVBC = null;
    The following script is in the function EmpAvailability in the general section of the Siebel Universal Agent Application:
    function EmpAvailability(sLogin, sStatus)
         //Availability Setting
         var EmpBO = TheApplication().GetBusObject("Employee")
         var EmpBC = EmpBO.GetBusComp("Employee");
         EmpBC.SetViewMode(AllView);
         EmpBC.ClearToQuery();
         EmpBC.ActivateField("Login Name");
         EmpBC.ActivateField("Availability Status");
         EmpBC.SetSearchSpec("Login Name", sLogin);
         EmpBC.ExecuteQuery(ForwardBackward);
         var bRec = EmpBC.FirstRecord();
         if (bRec == true)
              EmpBC.SetFieldValue("Availability Status", sStatus);
              EmpBC.WriteRecord();
         EmpBC = null;
         EmpBO = null;
    }

  • Oracle Identity and Access Management (11.1.1.3.0)   and IM difference?

    What is difference between Oracle Identity and Access Management (11.1.1.3.0) and Identity Management (11.1.1.3.0) ?
    From
    http://www.oracle.com/technetwork/middleware/downloads/oid-11g-161194.html

    When you run the config, you are asked to add some product. Have checked the "Oracle Access Manager with Database Policy Store" product?
    If not, you can add it by extending the domain. Once done you have to start two WLS servers (AdminServer and oam_server1):
    Start AdminServer with $DOMAIN/bin/startWebLogic.sh
    Start oam_server1 with $DOMAIN/bin/startManagedWebLogic.sh oam_server1
    It might be that oam_server1 asks for username and password. This is fine for the first time. During the first start the necessary directory structure is created. Once it came up and enters RUNNING state, kill it and create a file boot.properties in $DOMAIN/servers/oam_server1/security with the entries username=name and password=pw in two lines and start oam_server1 again.
    Starting oam_server1 is recommend to get proper values in the oamconsole.
    HTH,
    --olaf                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Error in accessing XMII Login Page

    Hi ,
    I am getting a null pointer exception while accessing the login page.When I see the cms.log the details are as follows.
    Starting iDOC listeners...
    2007-06-13 17:46:26,937 [JCO.ServerThread-1] ERROR  SERVER-EXCEPTION - [null,null,null,] com.sap.mw.jco.JCO$Exception: (129) JCO_ERROR_SERVER_STARTUP: Server startup failed at Wed Jun 13 17:46:26 GMT+05:30 2007.
    This is caused by either a) erroneous server settings, b) the backend system has been shutdown, c) network problems. Will try next startup in 1 seconds.
    Missing -a<Program ID>
    Can any one please guide me as to what could be the problem?
    Thanks in advance.
    Regards,
    Sreeram

    Hi Sreeram,
    The error you are seeing in the log files is caused by the unconfigurerd default iDoc listener that is supplied with xMII, so that is not the likely cause of the error you are seeing.  I would recommend you submit your question through the SAP Support Portal as this appears to be a case that could be resolved much more quickly by the Support team.
    Kind Regards,
    Diana Hoppe

  • Oracle Identity and Access Management Suite Plus Integration with Oracle ADF

    Hi All,
    Kindly advice if Oracle Identity and Access Management Suite Plus can be integrated with Oracle ADF based applications to manage the end-to-end lifecycle of user accounts specifically addressing to roles/priviledges and security.
    Request you to share links to documentation where I can study the steps to integrate both the frameworks.
    Looking forward to hear from you soon.
    Best Regards,
    Ankit Gupta 

    Hi Sébastien,
    I came across the below link for the required integrations -
    Oracle&amp;reg; Fusion Middleware Installation Guide for Oracle Identity and Access Management 11g Release 2 (11.1.2) - …
    Oracle&amp;reg; Fusion Middleware Enterprise Deployment Guide for Oracle Identity Management 11g Release 2 (11.1.2) - Co…
    Best Regards,
    Ankit Gupta

  • Discuss Identity and Access Management in the Cloud

    Identity and access management in the cloud refers to the processes, technologies, and policies for managing cloud systems identities and controlling how these identities can be used to access cloud resources. Three separate processes are used in most cloud
    identity and access management solutions:
    Identity provisioning and storage
    Authentication
    Authorization
    Identity management in a cloud system requires a complex collection of technologies to manage authentication, authorization and access control across distributed environments. These environments might include assets both on the internal cloud, which would
    be an on-premises private cloud, and services accessed on the public cloud. These environments can also cross-security domains, as when two enterprise-level organizations collaborate and enable cross-domain access to users from the partner security domain.
    You can learn more about these topics in the article Identity and Access Management in the Cloud.
    Let's talk about that article and the topics of identity and access management in the cloud! Use this thread to get it started.
    Thanks!
    Tom
    Learn more about Private Cloud at the
    Private Cloud Solutions Hub

    Tom,
    I am a novice and attempting to achieve a proof of concept of single sign on.  One example I read stated one should install Identity and Access on VS2012.  I did this on two different machines.   One was in the office domain and it shows the
    item "Identity and Access..." in the context menu of the MVC project I created.  The other machine is my laptop.  I followed the same procedure that worked on the desktop, yet the Identity and Access item in the project context menu does not show.
     One difference is that the laptop is not part of a domain, but I am attempting this proof of concept in Windows Azure with the laptop, since we do not have a test AD in our corporate domain.
    Is this the right forum to inquire about this issue?  Do you have a recommendation about a better forum?
    Stephen Pidgeon

  • Realm of my application for identity and access

    I plan to replace Azure cloud services’ provided subdomain (myapp.cloudapp.net) with our own domain, customDomain.com. I eventually find out that I cannot do that. I have to configure a custom domain name to route traffic to myapp.cloudapp.net. Why does
    not Azure allow me to replace myapp.cloudapp.net with my own custom domain? I end up having two domains for one site. Please look at this site:
    http://azure.microsoft.com/en-us/documentation/articles/cloud-services-custom-domain-name/
    That custom domain name also has an SSL certificate from a CA. In addition to that, I also use single sign on for my application (Identity and Access). In this case, I configure the Identity and Access (realm of my application) with my custom domain name.
    Is this the right way? It does not make sense to configure this with myapp.cloudapp.net. I currently have issues with ADFS but I could not figure out why. 

    Hi,
    Here providing article might helpful for your case.
    Domain mapping, Domain forwarding, SSL certificate for Windows Azure
    http://blogs.msdn.com/b/sriharsha/archive/2012/02/25/domain-mapping-on-windows-azure.aspx
    Hope it helps!
    Thanks.
    Dharmesh Solanki
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Inside Identity and Access Control products

    Hello,
    For the past few months I was working on a blog which can help understanding under the hood of identity and access control products. Please have a look into it and let me know how to improve the contents.
    http://identitycontrol.blogspot.com

    Latest Topics
    1) Video of Federated Access Control
    2) RSA Conference 2007

  • Inside identity and access control products : blog

    Frinends,
    Visit my blog http://identitycontrol.blogspot.com to get inside working of the identity and access control products. My efforts here is to explain insides in a simple language.
    Latest topic i added is "SAML in action"
    Please post your comments also so I can improve the contents.
    Thanks

    Thanks a lot idmguru!!
    your efforts are simply awesome..
    -Yash Bansal

  • Fusion Middleware Control "Identity and Access" menu missing

    Hi.
    I have a problem with one of the fussion middleware control menus which is missing.
    The environment is as follows:
    - One server with OVD + OID
    - One server with Weblogic + ODSM + Fussion Middleware Control
    (All idm fmw 11.1.1.2.0)
    ODSM can connect to OVD / OID on the other server without any problems.
    On Fussion middleware Control I can not see the menu "Identity and Access". In previous installations where all the components where installed together in the same server, that menu appeared without any extra configuration.
    The menu i'm talking about is the one referred here: http://download.oracle.com/docs/cd/E15523_01/oid.1111/e10046/basic_started.htm#CIHHAJJH
    "2.In the left panel topology tree, expand the farm, then Identity and Access. Alternatively, from the farm home page, expand Fusion Middleware, then Identity and Access. Oracle Virtual Directory components are listed in both places"
    Which are the steps to get that menu back? How do i get "linked" fusion middleware control with ovd/oid from the other server?
    Any extra configuration, any steps during installation...
    There's something probably very simple i'm missing but i haven't found any reference about creating/configuring that menu...
    Thanks in advance.

    Hi. i tried what i posted on my last message but i can't pass next step of the installation.
    If i try to install oid+ovd in <host 2> i can select "extend existing domain" and it connects correctly to the weblogic domain (IDMDomain creating during installation of odsm & em fmw control) that is up un running on <host 1>.
    But on the next step it asks for the "Weblogic Server Directory"... If i enter the path where weblogic resides on <host 1> it fails because it looks for it in the host i'm installing oid+ovd <host 2>.
    - First of all, is it really possible to have oid+ovd on one host and weblogic+odsm+enterprise manager fmw control in a different host in a way that makes possible to manage oid+ovd with enterprise manager fmw control?
    - Is it possible to tell the installer that the path for the weblogic server is in a different host? something like host:path?
    - If it's not possible, is it documented anywhere? i haven't found anything regarding that possible limitation.
    Please, any help would be appreciated as this is becoming critical for us.

  • Identity and Access Management Training in Bangalore

    Hi,
    I need information if there are any institutes who provide training on Identity and Access Management in Bangalore or Pune? Whats is the basic requirement for starting IAM. I have SQL knowledge.
    Thank you
    [email protected]

    You can check out this link for Oracle University in India:
    http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=3
    -Kevin

  • Domain and realm of my application for identity and access

    I plan to replace Azure cloud services’ provided subdomain (myapp.cloudapp.net) with our own domain, customDomain.com. I eventually find out that I cannot do that. I have to configure a custom domain name to route traffic to myapp.cloudapp.net. Why does
    not Azure allow me to replace myapp.cloudapp.net with my own custom domain? I end up having two domains for one site. Please look at this site:
    http://azure.microsoft.com/en-us/documentation/articles/cloud-services-custom-domain-name/
    That custom domain name also has an SSL certificate from a CA. In addition to that, I also use single sign on for my application (Identity and Access). In this case, I configure the Identity and Access (realm of my application) with my custom domain name.
    Is this the right way? It does not make sense to configure this with myapp.cloudapp.net. 

    Hi,
    If you want to configure SSL for azure cloud service, I think this article will help you:
    http://azure.microsoft.com/en-gb/documentation/articles/cloud-services-configure-ssl-certificate/, if you want to ask some issues related to Identity and Access, I would suggest you move to azure Active Directory forum:
    https://social.msdn.microsoft.com/Forums/en-US/home?forum=WindowsAzureAD
    Best Regards,
    Jambor
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to change header and footer in login page in oracle apps r12

    Hi all,
    how to change header and footer in login page in oracle apps r12 and login button background color, please help me
    thanks
    saran

    how to change header and footer in login page in oracle apps r12 and login button background color, please help meTips For Personalizing The E-Business Suite R12 Login Page (MainLoginPG) [ID 741459.1]
    How to Personalize Login page in R12? [ID 579917.1]
    R12 Login Page: How to Personalize the Logo ? [ID 849752.1]
    Thanks,
    Hussein

  • Windows 7-8.1 Can not change the MAC Address on wifi and cannot load login page in public HotSpot.

    Windows 7-8.1 Can not change the MAC Address on wifi and cannot load login page in public HotSpot.
    Adapter: Ralink RT3070 Chipset wifi adapter
    Tested: os Windows 8.1 Professional
    Hot Spot: 802.11b
    The first problem windows 7-8.1 got IP adress and connect he public HotSpot  but  cannot load login page or any other page. It does not work with it.
    The second problem Wifi canrd/configure/Advandes (No network adress change function).Tested with the default windows driver and the ralink rt 3070 driver the same problem.On windows XP the same function the same driver works perfectly.
    multiple users to have expressed interest in the problem But Microsoft not corrected the problem window7-8.1 10?
    lizardsystems.com/wiki/change_mac_address/faq/change_mac_address_in_windows_7
    blog.technitium.com/2011/05/tmac-issue-with-wireless-network.html
    superuser.com/questions/519189/how-to-change-the-mac-address-in-win-8-to-spoof-a-roku-player-through-a-wifi-spl
    social.technet.microsoft.com/Forums/windows/en-US/59e07df3-471c-499e-ad5f-e7cb507595df/cannot-change-mac-address-in-windows-7-driver-has-option-doesnt-work-neither-does-regedit-ms?forum=w7itpronetworking
    networksteve.com/windows/topic.php/CANNOT_CHANGE_WIRELESS_%28SPOOF%29_MAC_ADDRESS_ON_WINDOWS_7/?TopicId=16810&Posts=1
    On windows XP or linux have a MAC adress Change function  allow 00 mac adress and another normal mac adress range.On windows 8.1 all Mac changer program dont work.This 2,6,A,E on second adress are not vaild Mac adress. You simply can not use normal MAC
    addresses on windows 8.1.When i connect the usb the Pc windows 8.1 recognizes the adapter but the default  driver and the downloaded ralink driver the same problem.On windows xp the current driver works perfectly have (Local Mac Network Adress) funktion
    and works with the 802.11b hot spot.I got the internet my PC and laptop too public HotSpots and another wifi HotSpots if wont work correctly i can not use neither the windows 7,8,8.1 or 10. Many users have expressed interest in the problem more forums.
    The 3. problem im tested in virtualbox the windows 7 and 8.1 on 8.1 (on the blue wifi platform) not show correctly the signal strengh. On windows 7 show this correctly.The windows 7-8.1 Configure/advanced the advanced options on Ralink 3070 the default (windows
    driver) somehow downgraded function is less than for Xp. Configure/advanced the advanced options (needs to be upgraded in the future) because it does not advance but rather regressed.
    Today it is very common these wi-fi technology increasingly used (hotels,Public Hots Spots,Internet coffe,) growing free bublic wifi projects. The wifi funktions on windows  need debugging and modernize.The quality of Wi-Fi is now the operating system
    is now a thing order which is not good then the operating system is unusable.

    Hi,
    For changing the MAC address for Windows 7 is designed with some limitation, we cannot get over it. Thanks for your understanding.
    Under Windows 7, the possible range of spoofed addresses for wireless adapters that can be set is limited.  To be used by Windows 7, a spoofed MAC address should have 0 as a least significant bit (unicast) and 1 as a second least significant
    bit (locally administered) in the second nibble.  Thus possible values for the second nibble are limited to 2, 6, A and E.
    In other words 
    MAC address:  “XY-XX-XX-XX-XX-XX” “X” can be anything hexadecimal.  The hexadecimal “Y”, written in binary format, is  Y:  “kmnp”,  where “p” is the least significant bit; 
    p=0 --> unicast;
    p=1 --> multicast;
    n=0 --> globally assigned MAC;
    n=1 --> locally administered;
    So, actually MAC can be changed  to any combination in which p=0 and n=1;
    “Y” can be 2, 6, A or E.
    So the possible MAC addresses in Windows 7 for wireless adapters:
    X2-XX-XX-XX-XX-XX
    X6-XX-XX-XX-XX-XX
    XA-XX-XX-XX-XX-XX
    XE-XX-XX-XX-XX-XX
    For the wifi hotspot issue, please check this blog to see if it can be helpful.
    Windows 7 Connectivity Problems in Public Hotspots
    http://blogs.technet.com/b/patrickr/archive/2010/07/28/windows-7-connectivity-problems-in-public-hotspots.aspx
    Kate Li
    TechNet Community Support

  • FDM crashed after trying to open locations and mappings. Login page error

    Whilst trying to open mappings for a given location, FDM has crashed. We have restarted the FDM service, however despite the service running cannot log into FDM any more. Internet Explorer now displays the following error:
    Internet Explorer:
    "Application Error
    Description: An exception occurred during the execution of the current web request. Please contact the administrator to review the stack trace in the event log for more information about the error.
    Source:
    http://ibm-pr-mihdca-01.yodel.net/HyperionFDM/AuthorizedPages/LogonPage.aspx?ReturnUrl=/HyperionFDM/default.aspx"
    Event Viewer Application Logs:
    Exception Details:
    Retrieving the COM class factory for component with CLSID {00000535-0000-0010-8000-00AA006D2EA4} failed due to the following error: 800703fa.
    Stack Trace:
    at Hyperion.FDM.Classes.LanguageTranslator.LookupPreferredLanguageId(ArrayList listLanguages)
    at Hyperion.FDM.Pages.BasePage.OnInit(EventArgs e)
    at System.Web.UI.Control.InitRecursive(Control namingContainer)
    at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    at Hyperion.FDM.Classes.LanguageTranslator.LookupPreferredLanguageId(ArrayList listLanguages)
    at Hyperion.FDM.Pages.BasePage.OnInit(EventArgs e)
    at System.Web.UI.Control.InitRecursive(Control namingContainer)
    at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    I have seen potential solutions at the following links, suggesting potential invalid reserved characters (such as &) in the mappings previous uploaded. We will look at trying to remove these rows via a SQL script, however we do not have any visibility at this stage and will require assistance from the DBA's.
    Error @ Deleting the existing FDM Account mappings.
    FDQM Mapping error
    Can anyone please suggest which tables we need to be looking at/guiding the DBA's too? Or even better, can anyone please provide a script? Or could this be a red herring, since the FDM login page is not even loading?

    Thanks for your response. Yes the exact same solution has worked for us too. FDM crashed last night, which was apparently caused by the flash recovery drive becoming full. This caused the Oracle RDBMS to freeze. After this was re-sized, we then had to restart the Hyperion services this morning. Everything then appeared to be fine, until the above errors occurred. A full reboot has since resolved the FDM issue, but we suspect an IIS restart might have been the answer.
    If the same issue occurs again I will update this thread with more info!

Maybe you are looking for