CQ5.6 core bundles not activated

I am getting this:
25.06.2014 09:06:29.891 *ERROR* [FelixStartLevel] ERROR: Error starting jcrinstall:/apps/geometrixx-commons/install/cq-geometrixx-commons-core-1.0.10.jar (org.osgi.framework.BundleException: Unresolved constraint in bundle com.adobe.cq.wcm.cq-geometrixx-commons-core [150]: Unable to resolve 150.0: missing requirement [150.0] osgi.wiring.package; (osgi.wiring.package=com.day.cq.wcm.foundation)) org.osgi.framework.BundleException: Unresolved constraint in bundle com.adobe.cq.wcm.cq-geometrixx-commons-core [150]: Unable to resolve 150.0: missing requirement [150.0] osgi.wiring.package; (osgi.wiring.package=com.day.cq.wcm.foundation) at org.apache.felix.framework.Felix.resolveBundleRevision(Felix.java:3896) at org.apache.felix.framework.Felix.startBundle(Felix.java:1938) at org.apache.felix.framework.Felix.setActiveStartLevel(Felix.java:1261) at org.apache.felix.framework.FrameworkStartLevelImpl.run(FrameworkStartLevelImpl.java:298) at java.lang.Thread.run(Thread.java:745)
This appears in the bundles console for the bundles installed but not activated: com.day.cq.wcm.foundation -- Cannot be resolved And this when trying to access content: Not Found Cannot serve request to /projects.html in org.apache.sling.servlets.get.DefaultGetServlet CRXDE Lite and the bundles console works though. But I have no clue why this happens just after content import. Thanks.

Hi,
     Try this to persist div ids in rich text editor in cq5.6
     Create a folder structure similar to "/libs/cq/ui/rte/core/HtmlSerializer.js"  in apps as "/apps/cq/ui/rte/core/HtmlSerializer.js". Make sure that the folder structure and node types are as same as in libs. Then set "idAttribMode" to "keep" in "_init" function of HtmlSerializer.js. It will work
Thanks,
Arya.

Similar Messages

  • Osgi workflowprocess gives classnotfound exception when osgi bundle is activated

    I did create an osgi service that extends workflowprocess interrface using eclipse. I install the bundle that contains this service and then deploy and activate the bundle in day cq. However, on activation I receive an error stating that my class is not found. Please note that both this service and the referenced service(twitterservice that I created) gets registered and the bundle is activated, however, its unable to find the class SendMessageProcessAction on the activation of the bundle. Hope someone could assist.
    POST /system/console/bundles/246 HTTP/1.1] com.day.twitter.workflow [com.day.twitter.service.impl.SendMessageProcessAction] Error during instantiation of the implementation object (java.lang.ClassNotFoundException: com.day.twitter.service.impl.SendMessageProcessAction not found by com.day.twitter.workflow [246]) java.lang.ClassNotFoundException: com.day.twitter.service.impl.SendMessageProcessAction not found by com.day.twitter.workflow [246]
        at org.apache.felix.framework.ModuleImpl.findClassOrResourceByDelegation(ModuleImpl.java:787 )
        at org.apache.felix.framework.ModuleImpl.access$400(ModuleImpl.java:71)
    package com.day.twitter.service.impl;
    import javax.jcr.RepositoryException;
    import javax.jcr.Session;
    import org.apache.felix.scr.annotations.Component;
    import org.apache.felix.scr.annotations.Properties;
    import org.apache.felix.scr.annotations.Property;
    import org.apache.felix.scr.annotations.Reference;
    import org.apache.felix.scr.annotations.Service;
    import org.osgi.framework.Constants;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    import com.day.cq.workflow.WorkflowException;
    import com.day.cq.workflow.WorkflowSession;
    import com.day.cq.workflow.exec.WorkItem;
    import com.day.cq.workflow.exec.WorkflowData;
    import com.day.cq.workflow.exec.WorkflowProcess;
    import com.day.cq.workflow.metadata.MetaDataMap;
    import com.day.twitter.service.SendMessageProcess;
    import com.day.twitter.service.TwitterService;
    @Component
    @Service
    @Properties({
        @Property(name = Constants.SERVICE_DESCRIPTION, value = " An example of Social Publish Implementation"),
        @Property(name = Constants.SERVICE_VENDOR, value = "RIM POC"),
        @Property(name = "process.label", value = "RIM POC Social Publish")
    public class SendMessageProcessAction implements WorkflowProcess{
        @Reference
        private TwitterService twitterService; 
        public TwitterService getTwitterService() {
            return twitterService;
        public void setTwitterService(TwitterService twitterService) {
            this.twitterService = twitterService;
         * @scr.reference
        private static final String TYPE_JCR_PATH = "JCR_PATH";
        private final Logger logger = LoggerFactory.getLogger(this.getClass()
                .getName());
        private final Logger logger1 = LoggerFactory.getLogger(SendMessageProcessAction.class);
        public void execute(WorkItem workItem, WorkflowSession workflowSession,MetaDataMap args)
        throws WorkflowException {
            final Session session = workflowSession.getSession();
            final WorkflowData data = workItem.getWorkflowData();
            logger.info("TEST VIBHOR!!");
            logger1.info("TEST VIBHOR BHATIA!!");
            String path = null;
            String type = data.getPayloadType();
            if (type.equals(TYPE_JCR_PATH) && data.getPayload() != null) {
                String payloadData = (String) data.getPayload();
                try {
                    if (session.itemExists(payloadData)) {
                        path = payloadData;
                } catch (RepositoryException e) {
                    // TODO Auto-generated catch block
                    logger.error("Exception - Check repository for Payload data path");
                    e.printStackTrace();
            logger.info("arguments");
            String msg = "CQ5 workflow event";
                // is there a message?
            String argument = args.get("PROCESS_ARGS", "default value");
            boolean equal = argument.equals("argument1");
            if(equal){
                String recipient = argument.toString();
                 sendDirectMessageOnTwitter(recipient, msg, path);
            } else {
                logger
                        .error("for sending a DM on Twitter (make sure Twitter allows you to DM that account): dm,(recipient id)");   
               //  return "Check config - error";
        private void sendDirectMessageOnTwitter(String recipient, String msg, String path) {
            getTwitterService().sendDirectMessage(recipient, msg + ", path: " + path);

    <plugin>
            <groupId>org.apache.felix</groupId>
            <artifactId>maven-bundle-plugin</artifactId>
            <version>2.0.1</version>
            <extensions>true</extensions>
            <configuration>
              <instructions>
                <Bundle-Name>cq-core bundle</Bundle-Name>
                <Export-Package>twitter4j.*</Export-Package>
                <Import-Package>
                      !twitter4j.internal.http.alternative,
                      !org.slf4j.impl,com.day.*,*
                 </Import-Package>
                 <Private-Package>com.day.twitter</Private-Package>  
              </instructions>
            </configuration>
    </plugin>
    Bnd-LastModified: 1334862237167
    Build-Jdk: 1.6.0_21
    Built-By: bvibor
    Bundle-ManifestVersion: 2
    Bundle-Name: cq-core bundle
    Bundle-SymbolicName: com.day.twitter.workflow
    Bundle-Version: 1.0.0
    Created-By: Apache Maven Bundle Plugin
    Export-Package: twitter4j.internal.util, twitter4j.internal.http; uses:="twitter4j, twitter4j.internal.logging, twitter4j.internal.util, twitter4j.http, twitter4j.conf, javax.xml.parsers, twitter4j.internal.org.json, org.w3c.dom, org.xml.sax", twitter4j; uses:="twitter4j.internal.org.json, twitter4j.internal.http, twitter4j.api, twitter4j.http, twitter4j.internal.async, twitter4j.conf, twitter4j.internal.logging", twitter4j.internal.org.json, twitter4j.api; uses:=twitter4j, twitter4j.http; uses:="twitter4j.internal.http, twitter4j, twitter4j.conf, javax.crypto.spec, javax.crypto, twitter4j.internal.logging", twitter4j.internal.async, twitter4j.conf; uses:="twitter4j.internal.http, twitter4j.http, twitter4j.internal.async, twitter4j", twitter4j.internal.logging; uses:="org.apache.commons.logging, org.apache.log4j, org.slf4j, twitter4j.conf", twitter4j.util; uses:="twitter4j.internal.http, twitter4j, twitter4j.internal.org.json, twitter4j.http"
    Ignore-Package: org.slf4j.impl, twitter4j.internal.http.alternative
    Import-Package: javax.crypto, javax.crypto.spec, javax.xml.parsers, org.apache.commons.logging, org.apache.log4j, org.osgi.framework; version="1.4", org.slf4j; version="1.5", org.w3c.dom, org.xml.sax, twitter4j, twitter4j.api, twitter4j.conf, twitter4j.http, twitter4j.internal.async, twitter4j.internal.http, twitter4j.internal.logging, twitter4j.internal.org.json, twitter4j.internal.util, twitter4j.util
    Manifest-Version: 1.0
    Service-Component: OSGI-INF/components.xml
    Tool: Bnd-0.0.357

  • Keyboard & trackpad not active when booted!

    Got a white 2.0GHz Intel Core2Duo 13" with 1GB RAM and OS 10.5.8.
    The keyboard and trackpad are suddenly locked when the the machine is booted. The cursor is in the same place after restart - not movable - but not frozen either. Because when I insert a CD or DVD it autostart the respective item, and the cursor becomes the spinning beach ball for some seconds....iow. NOT frozen. None of the keyboard buttons will work except the on/off button. So I thought for a minute that the keyboard was physically shortcutted. But upon restart, I was able to run a PRAM reset (Alt-Cmd-R-P) - also ejecting a DVD, that would NOT eject when fully booted....
    So it must be a software related problem. Or is it a "panel lock" or "key lock" function that I've activated accidentally???
    Thanks for any input on this. I will in the meantime try to restart from the OS DVD.

    Some additional info:
    System profile tells me it's a MacBook 1,1 with a Intel Core Duo (not a Core2) - if it makes any difference.
    Well, I booted up from a Leopard install DVD, and everything related to keyboard and trackpad works. Run Repair Disk Permissions, and Verify Disk - just when I'm at it!
    Restart from internal disk again....Nope. No keyboard or mouse action....
    Time the reinstall the complete OS perhaps.

  • Managed Standby Recovery not active

    Dear All,
    My database version is:
    SQL> select banner from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
    PL/SQL Release 10.2.0.1.0 - Production
    CORE 10.2.0.1.0 Production
    TNS for Linux: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    OS:RedHat 5.5
    My current configuration is:
    We have two node RAC primary database and a local standby database.
    And TWO NODE RAC DR (REMOTE)STANDBY DATABASE
    while checking (REMOTE WHICH IS TWO NODE RAC)dr synchronization we found archive since yesterday has not been applied.
    But local dr is fully sinc with the primary database.
    When i have executed 'ALTER DATABASE RECOVER MANAGED STANDBY DATABASE CANCEL' it says
    SQL> alter database recover managed standby database cancel;
    alter database recover managed standby database cancel
    ERROR at line 1:
    ORA-16136: Managed Standby Recovery not active
    I manually copied the archive log which where missing in the remote standby database and then register those archive log.
    after that when i manually tried to recover the standby database it has given me following error.
    sql>recover automatic standby database;
    ORA-00283: recovery session canceled due to errors
    ORA-01124: cannot recover data file 1 - file is in use or recovery
    ORA-01110:data file 1: '/database/ctmis/system01.dbf'
    please please help me to resolve the issue.
    Thanks and Regards
    Monoj Das

    according to my understand
    Node1,Node2 is having node1-standby node2-standby in RAC environment right?
    on which node logs ur trying to apply on which node standby? (node1 ==>node1-standby or node2 ==>node2-standby)
    check it...hope it will work or not sure :)
    standby side...
    rman target /
    RMAN>crosscheck archivelog all
    then try to recover..will see ..
    if not
    check with support.oracle.com through SR.

  • Patch NW04s SPS09 Container Web Dynpro is not active

    Hello SDN,
    I am trying to patch my NW04s SPS08 Portal to SPS09.
    I get the following error message. I am not able to start the web dynpro container.
    Has anyone of you an idea whats going on?
    Thanks.
    Best Regards,
    Olaf Reiss
    Sep 14, 2006 3:39:20 PM  Info: SDA to be deployed: D:\usr\sap\S05\JC51\SDM\root\origin\sap.com\tc\kmc\kmc.people.shared\wd_picker\SAP AG\1\7.0009.20060804134857.0000\sap.comtckmckmc.people.sharedwd_picker.ear
    Sep 14, 2006 3:39:20 PM  Info: Software type of SDA: J2EE
    Sep 14, 2006 3:39:21 PM  Info: ***** Begin of SAP J2EE Engine Deployment (J2EE Application) *****
    Sep 14, 2006 3:39:29 PM  Info: Begin of log messages of the target system:
    06/09/14 15:39:23 -  ***********************************************************
    06/09/14 15:39:26 -  Start updating EAR file...
    06/09/14 15:39:26 -  start-up mode is lazy
    06/09/14 15:39:27 -  EAR file updated successfully for 751ms.
    06/09/14 15:39:27 -  Start updating...
    06/09/14 15:39:28 -  EAR file uploaded to server for 391ms.
    06/09/14 15:39:29 -  ERROR: Not updated. Deploy Service returned ERROR:
                         java.rmi.RemoteException: Cannot deploy application sap.com/tckmckmc.people.shared~wd_picker..
                         Reason: Container webdynpro is not active at the moment and it is not possible to update sap.com/tckmckmc.people.shared~wd_picker.; nested exception is:
                              com.sap.engine.services.deploy.exceptions.ServerDeploymentException: Container webdynpro is not active at the moment and it is not possible to update sap.com/tckmckmc.people.shared~wd_picker.
                              at com.sap.engine.services.deploy.server.DeployServiceImpl.update(DeployServiceImpl.java:682)
                              at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:1278)
                              at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:320)
                              at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:198)
                              at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:129)
                              at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
                              at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
                              at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
                              at java.security.AccessController.doPrivileged(Native Method)
                              at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
                              at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
                         Caused by: com.sap.engine.services.deploy.exceptions.ServerDeploymentException: Container webdynpro is not active at the moment and it is not possible to update sap.com/tckmckmc.people.shared~wd_picker.
                              at com.sap.engine.services.deploy.server.application.UpdateTransaction.getConcernedContainers(UpdateTransaction.java:483)
                              at com.sap.engine.services.deploy.server.application.DeployUtilTransaction.commonBegin(DeployUtilTransaction.java:263)
                              at com.sap.engine.services.deploy.server.application.UpdateTransaction.begin(UpdateTransaction.java:164)
                              at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:292)
                              at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhases(ApplicationTransaction.java:326)
                              at com.sap.engine.services.deploy.server.DeployServiceImpl.makeGlobalTransaction(DeployServiceImpl.java:3184)
                              at com.sap.engine.services.deploy.server.DeployServiceImpl.update(DeployServiceImpl.java:670)
                              ... 10 more
                         For detailed information see the log file of the Deploy Service.
    06/09/14 15:39:29 -  ***********************************************************
    Sep 14, 2006 3:39:29 PM  Info: End of log messages of the target system.
    Sep 14, 2006 3:39:29 PM  Info: ***** End of SAP J2EE Engine Deployment (J2EE Application) *****
    Sep 14, 2006 3:39:29 PM  Error: Aborted: development component 'tc/kmc/kmc.people.shared/wd_picker'/'sap.com'/'SAP AG'/'7.0009.20060804134857.0000'/'1', grouped by :
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Cannot deploy application sap.com/tckmckmc.people.shared~wd_picker..
    Reason: Container webdynpro is not active at the moment and it is not possible to update sap.com/tckmckmc.people.shared~wd_picker.; nested exception is:
         com.sap.engine.services.deploy.exceptions.ServerDeploymentException: Container webdynpro is not active at the moment and it is not possible to update sap.com/tckmckmc.people.shared~wd_picker.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Sep 14, 2006 3:39:29 PM  Info: Starting to save the repository
    Sep 14, 2006 3:39:32 PM  Info: Finished saving the repository
    Sep 14, 2006 3:39:32 PM  Info: Starting: Update: Selected software component 'KMC-CM'/'sap.com'/'SAP AG'/'1000.7.00.9.0.20060806101400''/'1' updates currently deployed software component 'KMC-CM'/'sap.com'/'SAP AG'/'1000.7.00.8.0.20060601154400''/'0'.
    Sep 14, 2006 3:39:32 PM  Error: Aborted: software component 'KMC-CM'/'sap.com'/'SAP AG'/'1000.7.00.9.0.20060806101400''/'1':
    Failed deployment of SDAs:
    development component 'tc/kmc/kmc.people.shared/wd_picker'/'sap.com'/'SAP AG'/'7.0009.20060804134857.0000'/'1' : aborted
    Please, look at error logs above for more information!
    Sep 14, 2006 3:39:32 PM  Info: Starting to save the repository
    Sep 14, 2006 3:39:34 PM  Info: Finished saving the repository
    Sep 14, 2006 3:39:34 PM  Info: J2EE Engine is in same state (online/offline) as it has been before this deployment process.
    Sep 14, 2006 3:39:34 PM  Error: -
    At least one of the Deployments failed -

    Hello Prakash
    I have same problem as above
    I'm patching to SPS10 and problem with "BI-WDALV" occurs.
    Dec 13, 2006 11:23:31... Info: End of log messages of the target system.
    Dec 13, 2006 11:23:31... Info: ***** End of SAP J2EE Engine Deployment (J2EE Application) *****
    Dec 13, 2006 11:23:31... Error: Aborted: development component 'bi/alv/common'/'sap.com'/'MAIN_APL70VAL_C'/'963367'/'0',
    grouped by software component 'BI-WDALV'/'sap.com'/'MAIN_APL70VAL_C'/'1000.7.00.10.0.20061025062313''/'0':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Cannot deploy application sap.com/bialvcommon..
    Reason: Container webdynpro is not active at the moment and it is not possible to update sap.com/bialvcommon.; nested
    exception is:
            com.sap.engine.services.deploy.exceptions.ServerDeploymentException: Container webdynpro is not active at the mo
    ment and it is not possible to update sap.com/bialvcommon.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionT
    ypes).REMEXC)
    Dec 13, 2006 11:23:31... Info: Starting to save the repository
    Dec 13, 2006 11:23:34... Info: Finished saving the repository
    Dec 13, 2006 11:23:34... Info: Starting: Update: Selected software component 'BI-WDALV'/'sap.com'/'MAIN_APL70VAL_C'/'100
    0.7.00.10.0.20061025062313''/'0' updates currently deployed software component 'BI-WDALV'/'sap.com'/'MAIN_APL70VAL_C'/'1
    000.7.00.9.0.20060811133149''/'0'.
    Dec 13, 2006 11:23:34... Error: Aborted: software component 'BI-WDALV'/'sap.com'/'MAIN_APL70VAL_C'/'1000.7.00.10.0.20061
    025062313''/'0':
    Failed deployment of SDAs:
    development component 'bi/alv/common'/'sap.com'/'MAIN_APL70VAL_C'/'963367'/'0' : aborted
    Please, look at error logs above for more information!
    Dec 13, 2006 11:23:34... Info: Starting to save the repository
    Dec 13, 2006 11:23:36... Info: Finished saving the repository
    Dec 13, 2006 11:23:36... Info: J2EE Engine is in same state (online/offline) as it has been before this deployment proce
    ss.
    Dec 13, 2006 11:23:36... Error: -
    At least one of the Deployments failed -
    how can I manually deploy that file?
    thanks alot
    Best regards,
    Olzhas Suleimnoev

  • [svn:fx-trunk] 7830: Update ASDoc on the new backgroundFrameRate property to WindowedApplication , to by default reduce the CPU usage in cases where an app is not 'active'.

    Revision: 7830
    Author:   [email protected]
    Date:     2009-06-14 15:57:29 -0700 (Sun, 14 Jun 2009)
    Log Message:
    Update ASDoc on the new backgroundFrameRate property to WindowedApplication, to by default reduce the CPU usage in cases where an app is not 'active'.
    Bugs: SDK-21135
    Reviewer:
    QE Notes:
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-21135
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/airframework/src/mx/core/WindowedApplication.as
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/components/WindowedApplication. as

    By the way, I agree with sybrand: you need to tune
    your redo log size.
    Regards
    Ignacio
    http://oracledisect.blogspot.com
    Ignacio,
    The excessive waits on log file parallel write and the related client wait of log file sync may be due to insufficient CPU availability, and may not point at an actual redo log size problem or a problem with the disk speed where the redo is written to disk, especially if there are 3 Oracle instances on the server with a single CPU.
    Paraphrased from "Optimizing Oracle Performance":
    The log file sync wait event is one of the first events to show increased latencies due to the time a process spends waiting in a CPU wait queue while processing excessive logical IOs.
    Kevin Closson wrote a couple blog entries that examined the potential problems of insufficient CPU capacity and its effects on log file parallel write when writing to solid state disks, and even when writing redo was explicitly disabled:
    http://kevinclosson.wordpress.com/2007/07/21/manly-men-only-use-solid-state-disk-for-redo-logging-lgwr-io-is-simple-but-not-lgwr-processing/
    "Once LGWR loses his CPU it may be quite some time until he gets it back. For instance, if LGWR is preempted in the middle of trying to perform a redo buffer flush, there may be several time slices of execution for other processes before LGWR gets back on CPU..." Fix the CPU problem, and the other significant waits may decrease.
    JesusLuvR,
    yingkuan's suggestion to look at the SQL statement that performs the 4,365,564 logical IOs, consumes 186.03 CPU seconds, and has an execution time of 225.06 seconds, is likely a very good starting point. You might also want to check the value of the SESSION_CACHED_CURSORS parameter to see if it needs to be adjusted.
    Charles Hooper
    IT Manager/Oracle DBA
    K&M Machine-Fabricating, Inc.

  • [svn:fx-trunk] 7753: Adding backgroundFrameRate property to WindowedApplication, to by default reduce the CPU usage in cases where an app is not 'active'.

    Revision: 7753
    Author:   [email protected]
    Date:     2009-06-11 12:29:44 -0700 (Thu, 11 Jun 2009)
    Log Message:
    Adding backgroundFrameRate property to WindowedApplication, to by default reduce the CPU usage in cases where an app is not 'active'.
    Bugs: SDK-21135
    Reviewer: Ryan, Darrell
    QE Notes: Test needs to be written for this new API. PARB has tentatively approved, will update spec here: http://opensource.adobe.com/wiki/display/flexsdk/Spark+WindowedApplication
    Doc Notes: Needs to be documented and ASDoc scrubbed. 
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-21135
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/airframework/src/mx/core/WindowedApplication.as
        flex/sdk/trunk/frameworks/projects/airframework/src/spark/components/WindowedApplication. as

    Hi,
    when the pageFlow scope map is preserved on task flow exit then this is a bug. Can you file it ?
    Frank

  • Container MigrationContainer is not active at the moment

    Hi All,
    Below mentioned error encountered while deploying SAP-CRMDIC component using the file SAPCRMDIC17_0-10002941.SCA. It ended up in "ERROR" status in JSPM.
    Problem might be due to the "inactive container". Could you please let me know a easiest method to deploy the SAP-CRMDIC component.
    predecessor system -
                         com.sap.engine.services.deploy.exceptions.ServerDeploymentE
    xception: Container MigrationContainer is not active at the moment and it is not
    possible to update sap.com/crmmigrxcm.
                            at com.sap.engine.services.deploy.server.application.Upd
    ateTransaction.getConcernedContainers(UpdateTransaction.java:485)
                            at com.sap.engine.services.deploy.server.application.Dep
    loyUtilTransaction.commonBegin(DeployUtilTransaction.java:265)
                            at com.sap.engine.services.deploy.server.application.Upd
    ateTransaction.begin(UpdateTransaction.java:166)
                            at com.sap.engine.services.deploy.server.application.App
    licationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:292)
                            at com.sap.engine.services.deploy.server.application.App
    licationTransaction.makeAllPhases(ApplicationTransaction.java:326)
                            at com.sap.engine.services.deploy.server.DeployServiceIm
    pl.makeGlobalTransaction(DeployServiceImpl.java:3190)
                            at com.sap.engine.services.deploy.server.DeployServiceIm
    pl.update(DeployServiceImpl.java:671)
                            at com.sap.engine.services.deploy.server.DeployServiceIm
    plp4_Skel.dispatch(DeployServiceImplp4_Skel.java:1278)
                            at com.sap.engine.services.rmi_p4.DispatchImpl._runInter
    nal(DispatchImpl.java:330)
                            at com.sap.engine.services.rmi_p4.DispatchImpl._run(Disp
    atchImpl.java:201)
                            at com.sap.engine.services.rmi_p4.server.P4SessionProces
    sor.request(P4SessionProcessor.java:137)
                            at com.sap.engine.core.service630.context.cluster.sessio
    n.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.ja
    va:33)
                            at com.sap.engine.core.cluster.impl6.session.MessageRunn
    er.run(MessageRunner.java:41)
                            at com.sap.engine.core.thread.impl3.ActionObject.run(Act
    ionObject.java:37)
                            at java.security.AccessController.doPrivileged(AccessCon
    troller.java:207)
                            at com.sap.engine.core.thread.impl3.SingleThread.execute
    (SingleThread.java:104)
                            at com.sap.engine.core.thread.impl3.SingleThread.run(Sin
    gleThread.java:176)
                         For detailed information see the log file of the Deploy Ser
    vice.
    11/02/12 19:54:04 -  ***********************************************************
    Feb 12, 2011 7:54:04 PM  Info: End of log messages of the target system.
    Feb 12, 2011 7:54:04 PM  Info: ***** End of SAP J2EE Engine Deployment (J2EE App
    lication) *****
    Feb 12, 2011 7:54:04 PM  Error: Aborted: development component 'crm/migr/xcm'/'s
    ap.com'/'MAIN_CRM50VAL_C'/'7630861'/'2', grouped by :
    Caught exception during application deployment from SAP J2EE Engine's deploy ser
    vice:
    java.rmi.RemoteException: Cannot deploy application sap.com/crmmigrxcm..
    Reason: Container MigrationContainer is not active at the moment and it is not p
    ossible to update sap.com/crmmigrxcm.; nested exception is:
            com.sap.engine.services.deploy.exceptions.ServerDeploymentException: Con
    tainer MigrationContainer is not active at the moment and it is not possible to
    update sap.com/crmmigrxcm.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDepl
    oyerImpl.performAction(DeploymentActionTypes).REMEXC)
    Feb 12, 2011 7:54:04 PM  Info: Starting to save the repository
    Feb 12, 2011 7:54:05 PM  Info: Finished saving the repository
    Feb 12, 2011 7:54:05 PM  Info: Starting: Update: Selected software component 'SA
    P-CRMDIC'/'sap.com'/'MAIN_CRM50VAL_C'/'1000.5.0.17.0.20100820072113''/'2' update
    s currently deployed software component 'SAP-CRMDIC'/'sap.com'/'MAIN_CRM50VAL_C'
    /'1000.5.0.14.0.20090211084319''/'1'.
    Feb 12, 2011 7:54:05 PM  Error: Aborted: software component 'SAP-CRMDIC'/'sap.co
    m'/'MAIN_CRM50VAL_C'/'1000.5.0.17.0.20100820072113''/'2':
    Failed deployment of SDAs:
    development component 'crm/migr/xcm'/'sap.com'/'MAIN_CRM50VAL_C'/'7630861'/'2' :
    aborted
    Please, look at error logs above for more information!
    Feb 12, 2011 7:54:05 PM  Info: Starting to save the repository
    Feb 12, 2011 7:54:05 PM  Info: Finished saving the repository
    Feb 12, 2011 7:54:05 PM  Info: J2EE Engine is in same state (online/offline) as
    it has been before this deployment process.
    Feb 12, 2011 7:54:05 Error: -
    At least one of the Deployments
    failed -
    Thanks.

    Hi,
    You would need to start the services MigrationService and MigrationContainer using following commands.
    - connect via telnet to the system: telnet <hostname> 5<instance number>04
    - authenticate with administrator username/password
    - jump <server_id>         Server ID can be obtained from the Visual Administrator/or from System Information Page.
    - startservice MigrationService
    - startservice MigrationContainer
    Then retry the deployment.
    Regards,
    Srikishan

  • Java not active

    Hello Friends,
    I installed my CRM 5 weeks ago, it was working fine till
    yesterday.  I was triying to restar my CRM but j2ee
    never wanted to start. I didn't know what happened that
    caused him never want to restart. i looked into mmc
    console  and i saw " java not active " ..
    i saw the logs and found these lines :
    com.sap.engine.core.Framework##com.sap.engine.core.Framework#######SAPEngine_System_Thread[impl:5]_53##0#0#Fatal#1#/System/Server#Plain###Critical shutdown was invoked. Reason is: Core service security failed. J2EE Engine cannot be started.#
    #1.5#000423A6E1B4001F00000005000009CC00041D2FDDB1AD3C#1157991326917#com.sap.engine.services.security##com.sap.engine.services.security#######SAPEngine_System_Thread[impl:5]_31##0#0#Error#1#/System/Security#Java#security_0001##Unexpected exception:##
    #1.5#000423A6E1B4001F00000006000009CC00041D2FDDB1C77D#1157991326933#com.sap.engine.services.security##com.sap.engine.services.security#######SAPEngine_System_Thread[impl:5]_31##0#0#Error#1#/System/Audit#Java###Exception #1#com.sap.engine.services.security.exceptions.SecurityServiceException: Unexpected exception:
         at com.sap.engine.services.security.SecurityServerFrame.start(SecurityServerFrame.java:179)
         at com.sap.engine.core.service630.container.ServiceRunner.startApplicationServiceFrame(ServiceRunner.java:211)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:142)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    Caused by: com.sap.engine.services.security.exceptions.BaseSecurityException: Anonymous principal not configured
         at com.sap.engine.services.security.login.SecurityContext.setAnonymousPrincipal(SecurityContext.java:513)
         at com.sap.engine.services.security.SecurityServerFrame.start(SecurityServerFrame.java:139)
    i don't understand what the meanning of these lines..
    i searched in this forum and found some post about VMC
    but did not know what to do to activate java..
    plz help me and i promise a lot pts..
    Message was edited by: Blackman

    thnx,
    but i used config tools to change the entries :
    sap.com.core.security.master.ahost
    sap.com.core.security.master.user
    sap.com.core.security.master.pass
    sap.com.core.security.master.syncn
    i gave the new user RFC authorizations, then the j2EE server restarted, but i have new porblemes :
    i don't know what i have done , i can't access to my applications ( B2B, XCM, Useradmin) i have one of the two messages :
    Application cannot be started.
      Details:   com.sap.engine.services.deploy.container.ExceptionInfo: Naming error.
    or
    You are not authorized to view the requested resource.   Details:   No details available
    i think i lost J2EE_ADMIN pass because i tried it 3 times wrongly..
    what to do?
    lots of pts if help
    Message was edited by: Blackman

  • With login attempt wrong password -- User is not active

    All,
    During login on portal 6.2 with a wrong password we got a message that the user is not active.
    However iplanet-am-user-login-status is definitely "Active".
    Any suggestion how we can modify that to get the right notice.
    Regards,
    Arnout

    Do you have the error at the first wrong attempt?
    Did you activate "Enable Login Failure Lockout Mode" in the Core Authentication Module?

  • Resource Tab Create/delete/Display role is not active

    Dear Friends,
    I have been trying to work on cprojects 4.0, i encountered one issues. I tried exploring all the threads on the forum related this issue, but i could not find any resource related this issue.
    in Resource Tab Create/delete/Display role is not active, they are grayed out.
    I have maintained all the authorization
    1. Roles for my user id are:
    SAP_CPR_PROJECT_ADMINISTRATOR
    SAP_CPR_PROJECT_LEAD
    SAP_CPR_USER
    i also have SAP_ALL
    0SAP_ADMIN Project Role 'Administration'
    Default Authorization : ResMan,Write
    Z13_CONSULTANT Consultant
    Default Authorization : ResMan,Write
    Z13_DEVELOPER Developer
    Default Authorization : ResMan,Write
    Z13_PROJEKTLEIT Project Manager
    Kindly request your valuable inputs.
    Thanks and Regards
    Mukesh

    Hi Mukesh,
    Please go to following SPRO setting:
    Collaboration Projects -> Resource management -> Qualification Management ->  Activate Qualification Search and Matchup Using WFM Core
    Delete the X under Value abbr. for Group WFM and Sem. abbr. QUINC. This will deactivate use of WFM.
    Hope this resolves your problem.
    Regards,
    Niraj

  • Webbrowser control window not activated

    I have a multi-child application, some of them holds a MS Webbrowser control loading an html document containing an applet.
    When selecting an applet by clicking on it, the corresponding child window is not activated but the focus is well transfered to a textfield owned by the applet.
    The previously activated child window steal appears activated
    When using TAB on that child window, focus traversal seems to still work well
    But when typing alpha keys, corresponding generated text goes to the applet's textfield.
    Anyone could help me please, it's a very annoying problem
    Thanks

    Hi Cor,
    Thanks for the reply.
    I tried the same URL on IE9 and it works fine and also my test machine has IE9 on it. I found the info on registry entry change from here:
    StackOverflow - Regarding IE9 WebBrowser control
    Thanks Prasad

  • Weblogic Deployments are not active

    I patched Identity Manager using Bundle Patch 05. After patching the deployments in weblogic such as nexaweb.ear and xlWebApp.ear are not active.
    The status is 'new'
    java.lang.Exception:[DeploymentService:290049]Deploy failed for id'1,251,143,213,381' since no targets are reachable

    "since no targets are reachable"
    Deployment targets ( servers ) weren't running ...

  • WARNING: [Labtools 27-3123] The debug hub core was not detected at User Scan Chain 1 or 3

    Hi all,
       When I'm trying to program my xc7k325t_0 on my Kintex 705 evaluation board, I get this error message:
    [Labtools 27-3123] The debug hub core was not detected at User Scan Chain 1 or 3. You must manually launch hw_server
    with -e "set xsdb-user-bscan <C_USER_SCAN_CHAIN scan_chain_number>" to detect the debug hub at User Scan Chain of 2 or 4.
    To determine the user scan chain setting, open the implemented design and use: get_property C_USER_SCAN_CHAIN [get_debug_cores dbg_hub].
     Here are the TCL Console messages: 
    INFO: [Labtools 27-1434] Device xc7k325t (JTAG device index = 0) is programmed with a design that has no supported debug core(s) in it.
      I have tried finding solutions to this, and that this error is because of the following:
    the clock connected to the debug hub is not free running clock or active
    the debug hub User Scan Chain setting is 2 or 4 (It is a 1 by default)
      It seems that there are no debug cores in my design. What should I do now? I am still a beginner, so any help will be greatly appreciated. Thanks.

    
    From which port are you taking the clock? Can you try using System Clock and let us know the results?
    set_property PACKAGE_PIN AD11 [get_ports SYSCLK_N]
    set_property IOSTANDARD LVDS [get_ports SYSCLK_N]
    set_property PACKAGE_PIN AD12 [get_ports SYSCLK_P]
    set_property IOSTANDARD LVDS [get_ports SYSCLK_P]
    Refer below link for more details:
    http://www.xilinx.com/support/documentation/boards_and_kits/kc705/ug810_KC705_Eval_Bd.pdf
    Thanks,
    Anusheel
    Search for documents/answer records related to your device and tool before posting query on forums.
    Search related forums and make sure your query is not repeated.
    Please mark the post as an answer "Accept as solution" in case it helps to resolve your query.
    Helpful answer -> Give Kudos
    -----------------------------------------------------------------------------------------------

  • My apple is not activating,Asking for Apple ID &p.word, I have entered the apple ID which i was using to download all apps,but it wont work, Now system is saying that your apple Id is wrong, My question is Can there be two apple IDs?

    My apple is not activating,Asking for Apple ID &p.word, I have entered the apple ID which i was using to download all apps,but it wont work, Now system is saying that your apple Id is wrong, My question is Can there be two apple IDs? My apple ID is my Yahoo mail it self, but not able to log in to  Icloud, Can any body guide, Why, I can not.

    Hi dip_kinu,
    I apologize, I'm a bit unclear on exactly what device you are trying to set up and what is happening when you try to do so. If you are having issues remembering your Apple ID, or feel like you may have set up multiple Apple ID's, you may find the following page helpful:
    Apple - My Apple ID: Find your Apple ID
    https://iforgot.apple.com/appleid
    Regards,
    - Brenden

Maybe you are looking for

  • RAM expansion on Satellite L50-B-18E

    Hi, I need to expand the RAM memory on my laptop, it is a Toshiba Satellite L50-B-18E i5. How can I do that? Do I send my laptop to some technical support office or can I do it myself? Thank you in advance.

  • Using VBA to generate varibale worksheets in BEx Report

    Hi Gurus, i got an BEx Analyzer report (BW 3.5) in Excel. It shows all orders generated by the customers. In the table we can see the customer number, customer name, some attributes and the sales key figures. For Example: 10000, Peter, ..............

  • Error message when saving a jpeg after updating to Mountain Lion

    I've just updated to Mac Mountian Lion and I'm getting an error message when I go to save a jpeg in Fireworks CS6.  I've attached a screenshot but the message says "Could not save the file.  The file could not be found".  But it actually does save th

  • OS 10.7.5 Safari will not startup

    using OS 10.7.5 on 2008 MacBook Pro. Recently did a reinstall of the OS software. Software Update tells me there are no more updates. Trying to start Safari but it will not run.I get message telling me that Safari quit unexpectedly. Permissions repai

  • How can i get mac app store back when i am on Mac OS X 10.6.8

    it says it's missing or incomplete how do i get it back? because i kinda deleted it by accident