LCM import of Planning Application Hangs with "In Progress Status"

Hi,
LCM import of Planning Application Hangs with "In Progress Status" . its already couple of hours. Earlier it was always within 10 mins.
Any advise is appreciated.
Regards,
Vineet

It is probably worth trying again, may be useful to first bounce the services.
If it happens again after bouncing the services then investigate at what staging it is getting stuck at.
Cheers
John
http://john-goodwin.blogspot.com/

Similar Messages

  • JavaMail application hanged with no error throwed at Transport.send

    JavaMail application hanged with no error throwed at Transport.send,even though I set the timeout property
    import java.util.Date;
    import java.util.Properties;
    import javax.mail.Authenticator;
    import javax.mail.Message;
    import javax.mail.PasswordAuthentication;
    import javax.mail.Session;
    import javax.mail.Transport;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeBodyPart;
    import javax.mail.internet.MimeMessage;
    import javax.mail.internet.MimeMultipart;
    import javax.mail.internet.MimeUtility;
    public class tt {
         static Properties props=null;
         static boolean needAuth=true;
         static MailAuthenticator authenticator = null;
         static String host="host";
         static String account="account";
         static String password="pwd";
         static String sender="sender";
          * @param args
          * @throws Exception
         public static void main(String[] args) throws Exception{
               if (props == null) {
                     props = new Properties();
                     props.put("mail.smtp.host", host);
                     props.put("mail.smtp.timeout      ", "1000");
                     props.put("mail.smtp.connectiontimeout      ", "1000");
    //                 props.put("mail.debug", "true");
                     props.put("mail.smtp.auth", String.valueOf(needAuth));
                     authenticator = new MailAuthenticator(account, password);
                 MailData mailData = new MailData();
                 mailData.setSubject("altireport mail configuration");
                 mailData.setContent("mail server has been configured successfully.");
                 mailData.setRecipients(new String[]{"[email protected]"});
                 final Session session = Session.getInstance(props, authenticator);
                 final MimeMessage msg = new MimeMessage(session);
                 InternetAddress from = new InternetAddress(sender);
                 msg.setFrom(from);
                 //        msg.setSender(from);
                final InternetAddress[] addressTo = new InternetAddress[mailData.getRecipients().length];
                 for (int i = 0; i < mailData.getRecipients().length; i++) {
                     addressTo[i] = new InternetAddress(mailData.getRecipients());
         msg.addRecipients(Message.RecipientType.TO, addressTo);
         //msg.setSubject(mailData.getSubject());
         msg.setSubject(MimeUtility.encodeText(mailData.getSubject(), "UTF-8", "B"));
         MimeBodyPart bodyPart1 = new MimeBodyPart();
         bodyPart1.setContent(mailData.getContent(), "text/plain; charset=UTF-8");
         MimeMultipart multipart = new MimeMultipart();
         multipart.addBodyPart(bodyPart1);
         msg.setContent(multipart);
         msg.setSentDate(new Date());
    //     msg.saveChanges();
         for(int i=0;i<10;i++){
              new Thread(new Runnable(){
                             public void run() {
                             try {
                                  System.out.println("send...");                                   
                                  Transport.send(msg);
                                  } catch (Exception e) {
                                       e.printStackTrace(System.out);
                        System.out.println("end!");
              }).start();
    class MailData {
    private String[] recipients = null;
    private String subject = null;
    private String content = null;
    private String attachment = null;
    private String attachmentName = null;
    * @return the attachment
    public String getAttachment() {
    return attachment;
    * @param attachment the attachment to set
    public void setAttachment(String attachment) {
    this.attachment = attachment;
    * @return the content
    public String getContent() {
    return content;
    * @param content the content to set
    public void setContent(String content) {
    this.content = content;
    * @return the recipients
    public String[] getRecipients() {
    return recipients;
    * @param recipients the recipients to set
    public void setRecipients(String[] recipients) {
    this.recipients = recipients;
    * @return the subject
    public String getSubject() {
    return subject;
    * @param subject the subject to set
    public void setSubject(String subject) {
    this.subject = subject;
    * @return the attachmentName
    public String getAttachmentName()
    return attachmentName;
    * @param attachmentName the attachmentName to set
    public void setAttachmentName(String attachmentName)
    this.attachmentName = attachmentName;
    class MailAuthenticator extends Authenticator {
    private PasswordAuthentication authentication;
    public MailAuthenticator(String account, String password) {
    authentication = new PasswordAuthentication(account, password);
    protected PasswordAuthentication getPasswordAuthentication() {
    return authentication;
    I have tried use session to get a SMTPTransport instance to use sendMessage ,but still have the same problem.No exception ,No error.
    This problem doesn't appear always. It appears sometimes.
    I hope get help for someone who has the solution for this problem.
    Thanks in advanced.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Ok, I think I see the problem:
         props.put("mail.smtp.timeout      ", "1000");
         props.put("mail.smtp.connectiontimeout      ", "1000");
    Why do you have spaces at the end of the property names?
    Those spaces are not being ignored, which means you've
    set the wrong properties.

  • Issue with LCM while migrating planning application in the cluster Env.

    Hi,
    Having issues with LCM while migrating the planning application in the cluster Env. In LCM we get below error and the application is up and running. Please let me know if anyone else has faced the same issue before in cluster environment. We have done migration using LCM on the single server and it works fine. It just that the cluster environment is an issue.
    Error on Shared Service screen:
    Post execution failed for - WebPlugin.importArtifacts.doImport. Unable to connect to "ApplicationName", ensure that the application is up and running.
    Error on network:
    “java.net.SocketTimeoutException: Read timed out”
    ERROR - Zip error. The exception is -
    java.net.SocketException: Connection reset by peer: socket write error
    at java.net.SocketOutputStream.socketWrite0(Native Method)
    at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92)
    at java.net.SocketOutputStream.write(SocketOutputStream.java:136)
    at java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:65)

    Hi,
    First of all, if your environment for source and target are same then you will have all the users and groups in shared services, in that case you just have to provision the users for this new application so that your security will get migrated when you migrate the from the source application. If the environs are different, then you have to migrate the users and groups first and provision them before importing the security using LCM.
    Coming back to the process of importing the artifacts in the target application using LCM, you have to place the migrated file in the @admin native directory in Oracle/Middleware/epmsystem1.
    Open shared services console->File system and you will see the your file name under that.
    Select the file and you will see all your exported artifacts. Select all if you want to do complete migration to target.
    Follow the steps, select the target application to which you want to migrate and execute migration.
    Open the application and you will see all your artifacts migrated to the target.
    If you face any error during migration it will be seen in the migration report..
    Thanks,
    Sourabh

  • LCM Migration of planning application

    Hi All
    I am trying to migrate Hyperion Planning Application from one environment to another. The name of the application in both the environment is different i.e. X & Y.
    I took an LCM export of application X into the file system and copied the directory generated into the system where application Y resides.
    Now I am planning to import this export into application Y.
    Do i need to perform some changes as the server IPs are different & name of the applications are also different
    Hyperion Planning Version 11.1.1.3
    Regards

    Do i need to perform some changes as the server IPs are different & name of the applications are also differentNo. You just need to login to Shared Services (Y), select the artifacts you exported from X and execute the migration. I've always thought Ranzal had a perfect blog post on LCM. No, I don't work for them :)
    You might find it useful:
    http://ranzal.wordpress.com/2010/03/24/using-oracles-hyperion%C2%AE-life-cycle-management/
    Cheers,
    Mehmet

  • Tecra M5: Applications hang with 50 percentage CPU usage

    I have recently received a Tecra M5 which is great except now and again processes hang consuming 50 percentage cpu.
    I have installed the update to the fingerprint reader and am starting to suspect it is an issue with the NVIDIA graphics driver.
    When the process hangs, if I look at the process using process explorer (sysinternals) I see a low memory event being logged. The laptop has 2Gb of memory and only ~1Gb is being used.
    What can be done to find out what is causing this hang?

    i know many would be shocked to hear what i'm about to say: "most virus checkers r more trouble than they r worth". Not only do they slow down ur system, u can never "catch up" without the constant update (not to mention u have to trust them as well). all the computers i have re-built i just install a good FIREWALL without any virus checkers: turn off any unnecessary services; allow only wanted applications blocking everything else; n advise users not to click on anything they r not expecting. So far i have not heard any of theirs get infected.
    Good Firewalls r rarely free nowadays however (i hear that Zonealarms is good enough). u can download an old Sygate version 5.5.2577 at http://www.oldversion.com/program.php?n=sygate (some users have problems with version 5.6). For non techies, it might b worth paying for a good FIREWALL that includes customer support service.
    Lisa
    Pls let us know if ur change solves ur problem.

  • 2nd Gen Touch Hangs with Apple Logo & Status Indicator During Restore

    Something is wrong with my ipod. It will not work at all or even boot up. I can get it to quit displaying the apple logo by following instructions to do a restore. In iTunes, i get a message saying it detected my ipod in restore mode and to click to begin. After I click, it runs thru some unpacking of software, and preparing my ipod. At this time, my ipod disappears from the left column in iTunes, the screen on my ipod turns white, then i get the apple logo, then an apple logo with a circular "working" indicator, then the apple logo with a blank progress bar. iTunes says its waiting for ipod. The status indicator on the ipod never moves even after hours of waiting. It hangs up in the same place in the process every time... about a dozen times.
    What is wrong?

    I've been griping... but i kind of have a reason to gripe. What I have also been doing is providing additional information about my quest for getting this thing working: the things i've tried, the stages i've gotten past, and where it still hangs up. I was hoping that by providing some additional information, it might actually ring a bell with one of you Apple pros, because I'm sure you've heard it all, and seen it all. If the thing is broken, just tell me. That's all I want to know at this point. But since I get slightly different results depending on what i do, and what firmware version I use, I figured it must be fixable, and that someone knows how to do it... even if that advice is to take it in somewhere... or if I can mail it in.
    So I get it. You gota pay for someone from actual Apple. And no one is gona tell me its broken on this forum cuz its bad for Apple business, and you guys will lose brownie points or something.
    RIP OFF. This was my first ever Apple purchase... and it is my last, unless someone wants to go out on a limb and tell me what's up with this thing. I have a CD player from 1989 that cost half as much, was under water twice, and still works, and actually sounds better. It's not so easy to mow the yard while listening to it, but thats about it.

  • CR2008 SP2 install appears to hang with no progress bar

    I have CR2008 SP2 installed.  Come to find out I didn't have .NET support installed originally so I re-ran the installation to make a modification to the installation.  Unfortunately the installation process appeared to hang on the "Thank you for choosing Crystal Reports 2008", not activity bar, but the msiexec process was still running, so I killed it.  I decided to uninstall the whole program.  Reinstalled CR2008 SP1, no problem.  Then it then downloaded SP2 and and ran the update and it was hung on the same screen for about 15 minutes before it actually finished.  There seems to be an issue where the progress bar is grayed out.  I am running Win7 64Bit.  The install eventually completed successfully.

    Hi Seth,
    This is normal for Windows 7. Lots of registering and low end stuff happening that can't access the progress bar while it's being done.
    I'll suggest we add a "Please be Patient" to the install screen.
    Thanks again
    Don

  • How to terminate guest vm with in progress status in oem 11g

    in grid control 11g -->virtual central show:
    name type status
    ovm_build1     Guest VM     Editing
    guest :gvm11 status is alway "Editing".
    but in fact gvm22 status is Runing.
    virsh # list
    Id Name State
    0 Domain-0 running
    3 52_OVM_BUILD1 blocked
    because it is in progress in grid control 11g,we can't do anything, pls help me to correct or terminate.
    for exaple :stop guest vm ,it report the following:

    In OVM Manager there is a "reset" action that the new status is read from the OVS server.
    I don't know how this looks like in EM Manager, but there should be a similar action.
    Sebastian

  • Failed to migrate EPMA planning application using LCM

    Hi all,
    I'm working on exalytics migration for planning application(Windows->Linux,EPM 11.1.2.2).
    I have successfully completed classic application migration. But for the EPMA planning application, when importing metadata,it failed with the following message:
    Error in migrating artifact, "/Application Metadata/Planning Applications/pln1/Local Dimensions/Account".
    Couldn't determine the column delimiter for the ads file being imported. When import EPMA planning application using LCM, it failed with: Couldn't determine the column delimiter for the ads file being imported
    ===========================================================================
    Reproduced Step:
    @ From the source environment, creat EPMA planning application ,and login to
    Shared Services console
    1- Export the Application Metadata to the file system - AppMetadata (EPM
    Architect -> Application Metadata -> Planning Applications)
    2- Shared Services -> Native Directory -> Assigned roles -> Application
    3- Application Groups -> Application Name
    From the Destination Environment
    4- Setup a datasource ready for the new application.
    5- Copy the filesystem file to the following folder in destination
    environment Hyperion\Common\import_export
    @ 6- Login to Hyperion Shared Services and import the filesystem AppMetadata
    created earlier, it failed with error:
    Error in migrating artifact, "/Application Metadata/Planning
    Applications/pln1/Local Dimensions/Account".
    Couldn't determine the column delimiter for the ads file being imported
    Could you please help to take a look, and tell me if I missed any step or there is any known issue for this kind of migration?
    Thanks,
    Xinying

    Thankd for your response.
    About the ads file, from log, it should be under /home/oracle/Oracle/Middleware/user_projects/epmsystem1/tmp/xxx/completexx.ads, but seems it was deleted, I can't find it.
    I checked file "/home/oracle/Oracle/Middleware/user_projects/epmsystem1/import_export/admin0/EPMA-EPM Architect/resource/Application Metadata/Planning Applications/pln1/Local Dimensions/Account", delimiter is "|".

  • APEX application problem with Apple's Safari browser

    Hello Everyone,
    I'm working on Apple Safari (version 4.0.5) with Oracle APEX 4.0, the APEX development environment is working fine, but when we try to run our application, after login, while switching tabs, our application hangs with the following URI in the browser
    xxx.xxx.x.xxx/apex/wwv_flow.accept
    and page is rendered blank, even the page source view is blank.
    Our page also carry some JQuery related code functionality, along with regular HTML and Stylesheet.
    No idea what is causing this behavior?
    Our application is running smooth with browsers like IE, FF, Opera.
    Sample applications provided in-bundled with APEX 4.0, are running good on Safari as well.
    So kindly suggest, what could be the possible reason behind this?
    Regards,
    Krishna

    Hi Patrick,
    Yes, I'm using my own custom made theme also involved JQuery javascripts & functionality on apex pages.
    I'm using Safari 4.0.5, didnt checked with the latest version yet.
    Yes I've tried it on Google Chrome, its working fine, except with the already know issue, that on each page's post-back, chrome prompts for the XDB Username and Password, which is also a very major issue with my application.
    I've gone through various threads from OTN to look out for the possible fix to this issue, but not helpful so far. Have tried few alternatives suggested on OTN, after which landed up in more complex issues causing my application to prompt XDB credentials on all the browsers. Now some how have brought the application back to the previous state, with the help of OTN indeed. Presently my application execute fine with IE, FF & Opera, except Safari & Chrome (XDB credentials prompt).
    It would be really not an easy task for me to replicate the same scenario on apex.oracle.com, because it involves various database tables too.
    I'm wondering, you asked me the 'theme' subject for the issue, kindly would you please educate me more, how themes can cause an improper functionality on Safari and not in rest of the browsers?
    Thank you so much Patrick, I'm partially relieved knowing that you responded me. Great pleasure learning from you.
    Regards,
    Krishna

  • Classic planning application properties

    Hello,
    How to view created classic planning application properties as what options had selected when creating application from Classic Application Wizard, Select, Calendar, Currencies, Plan Types, etc.
    Regards.

    One of the ways:
    Take a LCM export of planning application and have a look at ApplicationDefinition.xpad file.
    Once backup is done, you can find it at: in 11.1.2.1:
    Oracle\Middleware\user_projects\epmsystem1\import_export\<user>\<Dir>\resource\Configuration\Properties
    Cheers...
    Rahul S.

  • Migrating EPMA Planning application: Failed to sync with user provisioning

    Hi All,
    We are migrating applications from Production to Dev. We have one EPMA Planning and one Essbase application in both environments.
    We have migrated artifacts into File system in PROD(Shared services, EPMA, Planning, Essbase and Reporting). We have copied and pasted in import_export folder in DEV.
    Then we are trying to migrate artifacts into applications from File system in DEV. First we did EPMA artifacts successfully in migration status report then we have deployed application into planning without any errors.(msg showing as in sync deployment). After that we did shared services, it is failed
    migration status report error msg:
    +28:6571:Application <xxxxx> does not exist in target. 28:6571:Application <xxxx> does not exist in target. 28:6571:Application <xxxx> does not exist in target. 28:6571:Application <xxxxx> does not exist in target. 28:6571:Application <xxxx> does not exist in target. ...+
    When i am trying to open the planning application, i am getting error: Failed to sync with user provisioning, check planning log for details
    HyS9planningsyserr.log details:
    [INFO] RegistryLogger - REGISTRY LOG INITIALIZED
    [INFO] RegistryLogger - REGISTRY LOG INITIALIZED
    Creating rebind thread to RMI
    com.hyperion.planning.DuplicateUserException: Another user with the name hypadmin already exists.
    com.hyperion.planning.DuplicateUserException: Another user with the name hypadmin already exists.
    com.hyperion.planning.HspRuntimeException: Failed to sync with user provisioning. Check Planning log for details
         at com.hyperion.planning.HspJSImpl.synchronizeUserWithProvisioning(Unknown Source)
         at com.hyperion.planning.HspJSImpl.login(Unknown Source)
         at com.hyperion.planning.HspJSImpl.login(Unknown Source)
         at com.hyperion.planning.HyperionPlanningBean.Login(Unknown Source)
         at HspLogOn.Handle(Unknown Source)
         at HspLogOn.doGet(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3241)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2010)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1916)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1366)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    java.lang.RuntimeException: Errors occured during syncrhonization: [com.hyperion.planning.DuplicateUserException: Another user with the name hypadmin already exists.]
         at com.hyperion.planning.HspJSImpl.synchronizeUserWithProvisioning(Unknown Source)
         at com.hyperion.planning.HspJSImpl.login(Unknown Source)
         at com.hyperion.planning.HspJSImpl.login(Unknown Source)
         at com.hyperion.planning.HyperionPlanningBean.Login(Unknown Source)
         at HspLogOn.Handle(Unknown Source)
         at HspLogOn.doGet(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3241)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2010)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1916)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1366)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    java.lang.RuntimeException: Errors occured during syncrhonization: [com.hyperion.planning.DuplicateUserException: Another user with the name hypadmin already exists.]
         at com.hyperion.planning.HspJSImpl.synchronizeUserWithProvisioning(Unknown Source)
         at com.hyperion.planning.HspJSImpl.login(Unknown Source)
         at com.hyperion.planning.HspJSImpl.login(Unknown Source)
         at com.hyperion.planning.HyperionPlanningBean.Login(Unknown Source)
         at HspLogOn.Handle(Unknown Source)
         at HspLogOn.doGet(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3241)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2010)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1916)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1366)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    com.hyperion.planning.DuplicateUserException: Another user with the name hypadmin already exists.
    com.hyperion.planning.HspRuntimeException: Failed to sync with user provisioning. Check Planning log for details
         at com.hyperion.planning.HspJSImpl.synchronizeUserWithProvisioning(Unknown Source)
         at com.hyperion.planning.HspJSImpl.login(Unknown Source)
         at com.hyperion.planning.HspJSImpl.login(Unknown Source)
         at com.hyperion.planning.HyperionPlanningBean.Login(Unknown Source)
         at HspLogOn.Handle(Unknown Source)
         at HspLogOn.doGet(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3241)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2010)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1916)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1366)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    java.lang.RuntimeException: Errors occured during syncrhonization: [com.hyperion.planning.DuplicateUserException: Another user with the name hypadmin already exists.]
    Thanks,
    mady

    Hi,
    I got solution for this issue through Oracle Support.
    I have restored database and migrated artifacts using LCM. any one method is enough to do Planning application migration (from Oracle Support)
    Thanks,
    mady

  • Problem with Hierarchies in BPS- Web-Based Planning Applications

    Im trying to use a Web-Based Planning Application in BPS. The Datacolumns consist of a charecterisitc with a hierarchy. this hierarchy is time dependend. The timeframe is set correctly but i still receive an the following error message in my web browser:
    "Hierarchy 'Hierarchy_name' is not valid for date 26.06.2004"
    Does this error message look familiar to anybody? In the moment I have no clue what went wrong

    Hello Tobias,
    I assume you are talking about error message UPC 413 (it always helps to mention the message class and number). Please check table RSHIEDIR. The hierarchy you are using is not valid for the key date you specified (RSHIEDIR-DATEFROM > KEYDATE or RSHIEDIR-DATETO < KEYDATE). If you do not enter a key date in the planning area, the system will always use the system date. So either use a different hierarchy or maintain it differently to be valid on keydate (26.6.2004).
    Regards,
    Marc
    SAP NetWeaver RIG, US BI

  • How does the Passbook application work? How am I able to import my plane ticket, concert ticket etc into Passbook?

    How does the Passbook application work? How am I able to import my plane ticket, concert ticket etc into Passbook?

    Try the following to fix the iTunes Can't Connect issue that you are having:
    Open Settings.
    Open General.
    Open Date & Time.
    Switch the Set Automatically setting to Off.
    Open Set Date & Time.
    Set the date to a year ahead.
    Go back to the Home screen and open Passbook.
    Tap the App Store button. The App Store should load.
    Go back to Date & Time and turn on Set Automatically.
    Thanks to: https://discussions.apple.com/message/19622208#19622208

  • Action aborted with error 500.when trying to deploy a Planning application

    I am trying to deploy the SampAp sample application that comes with the Planning 9.3.1 installation. I have installed and configured everything successfully and have created, deployed, and uploaded the HFM sample applications just fine, but I am having trouble when trying to deploy the Planning application with the following detail.
    Detail : Initiating Product Action...
    Inspecting Deployment History...
    Generating Headers and Callback Information...
    Generating Application Data...
    Preparing Product Request...
    Posting Product Request...
    Product Response:500...
    Action aborted.

    Falls into the issue desribed in http://support.microsoft.com/kb/918040
    Try mitigatign using the workaround section
    Arthur My Blog

Maybe you are looking for

  • Event Invite - Select email address to send from

    OK...this is close to my issue, but not the solution I'm looking for: discussions.apple.com/message/7009550#7009550 Not to mention it's three years old....we should've progressed by now. So, here's my issue.  Basically I use iCal and Mail for both bu

  • F.27 and FBL5N

    Hi All Our cusotmer runs their credit agents statement for every month for their travel Bookings for outstanding dues and overdue, recently ABTA was assigned to Head Office, so the system is able to capture only those transactions which took place af

  • Is registration required for the touch apps?

    hey i have a quick question. how do you resgister any of the adobe touch apps? like proto, ideas, photo shop touch revel, readert. like how and wheres the searial number or is there none? i am guessing the ipad apps are differnt form the desktop apps

  • Hardware sizing for XI

    Hi frnds Plz tell me what is server sizing information for XI development, QA and prod environments. What is the minimum and recommended configuration in each scenario and what configuration variants are most widely used. Thnx in advance Adhir

  • Ring text to Sql Query

    hi need help. i have problem to call the values of the ring  to call to sql query. Example the ring values : A22222, W23333,..... the query i used is Select StationNum,StationName,Temp from StationLog where StationNumber="ring values( A22222, W23333,