Moving checked in activity back..!

Hi
I have imported some code from DTR...
Now I have made chndes to that code by checking Out the code against an activity...
I have now checked in this activity...
After checking in this activity it has moved to DTR...and when i try to take fresh code from DTR it is giving me my changed code....
It has now moved to Activation View...where it is asking for activating the activity....
But....Now i wish if i can revert back this activity.
I.e. again remove my changed code from DTR...!!
Bring the same code in "Open Activities" view of NWDS....
Is this possible...
thanks.

Wrong forum, I'll ask for the thread to be moved to DTR respective forum

Similar Messages

  • Moving Scriptlet Code to backing bean when converting from JSP - Facelets

    Hello!
    We are converting our application from jsf1.2 to 2.0 and all jsps are being converted to XHTML. Some are trivial while others had very complex scriptlets.
    I would like to know what are some of the recommended ways of moving Scriptlet Code to backing bean when converting from JSP -> Facelets.
    I have thought about listeners, actionListeners, putting code getXXXX() of the backing bean and then calling #{bean.XXXX} but not sure whats the best way.
    I do appreciate the response!
    Eg of a jsp page:
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <%@ taglib uri="/WEB-INF/xxx-jsf.tld" prefix="l" %>
    <%@ taglib uri="/WEB-INF/yyy-pp.tld" prefix="p" %>
    <%@ page import="com.ttyy.search.beans.jsf.AdvancedSearchFormManagedBean" %>
    <%@ page import="com.kkee.util.*"%>
    <%
        AdvancedSearchFormManagedBean advancedSearchFormManagedBean = (AdvancedSearchFormManagedBean) request.getSession().getAttribute("AdvancedSearchFormManagedBean");
        if (advancedSearchFormManagedBean == null) {
           advancedSearchFormManagedBean = new AdvancedSearchFormManagedBean();
           request.getSession().setAttribute("AdvancedSearchFormManagedBean", advancedSearchFormManagedBean);
        advancedSearchFormManagedBean.initializeForAdvancedSearchOptions();
        advancedSearchFormManagedBean.setQuickSearch();
         request.setAttribute("portletHeader", "Hello " + advancedSearchFormManagedBean.getPerson().getFirstname() + ", check out the latest programs in your practice areas and jurisdictions");
    %>
    <h:form id="MYCenterForm">
         <p:portletRenderer portletSetName="test of portlet"
              portletContainer="#{PortletContainerManagedBean}"
              id="MYCenter"
              portletScope = "TEST_SCOPE"
              suppressIfNoData="true"
              portletSkinName="SOME_SKIN">
              <f:facet name="persistenceToolkit">
                   <h:commandLink id="persistenceToolkitLink"
                        actionListener="#{PortletContainerManagedBean.persistPortletSetStateListener}">
                        <h:outputText value="Save State Of Portlet Set" id="persistenceToolkitLinkText"/>
                   </h:commandLink>
              </f:facet>
         </p:pagePortletSetRenderer>
    </h:form>
    <%
         String flag = PropertyItems.getInstance().getPropertyItem("response.time.flag");
         if("1".equals(flag)){
              ResponseTime rt = (ResponseTime) session.getAttribute("responseTime");
            if(rt!=null){
                rt.setDesc("my cle loaded");
                long now = System.currentTimeMillis();
                long start = rt.getStart() + rt.getTotal();
                rt.setInterval(now-start);
                rt.setTotal(rt.getTotal()+rt.getInterval());
                LogUtil.log(rt.toString(), LogUtil.DEBUG_LEVEL);
                session.setAttribute("responseTime", rt);
    %>

    That helps.
    This could be another topic question but itst kind of related to what i am doing right now. while converting JSP to facelet (in jsf2) I came across another issue.
    <h:commandLink id="Save" rendered="#{RegistrationBean.isNOTInOrigionalRegistrationMode}" action="#{RegistrationBean.updateProfile2Submit}" styleClass="#{portalSkinManagedBean.contentPortletSkin.strongTextStyle}">
              <l:htmlSkinnedImage id="SaveImage" style="border:0;" url="save.gif" alt="Save Information"/>
    </h:commandLink>When I click on the generated link, I get this. And this is happening for all the h:commandLink in the application.
    http://localhost:9080/registration/updateProfile2.jsf[request.getQueryString()=null][request.getRequestedSessionId()=F1CCE237DD81D301F1C4DBA6910FFD8A][request.isRequestedSessionIdFromCookie()=true][request.isRequestedSessionIdFromURL()=false][request.isRequestedSessionIdValid()=true]Parameters:[rolePracticeAreasForm:title=rolePracticeAreasForm:primaryPracticeArea=10002javax.faces.ViewState=-2943345291093118815:-4400303399130292206rolePracticeAreasForm:practiceAreasMod2=10148.1rolePracticeAreasForm:practiceAreasMod1=10002.1rolePracticeAreasForm:Save=rolePracticeAreasForm:SaverolePracticeAreasForm=rolePracticeAreasFormrolePracticeAreasForm:otherField=rolePracticeAreasForm:fromMyAccount=1]||
    javax.servlet.ServletException: Index: 0, Size: 0
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:325)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at com.legaledcenter.util.urlrewrite.UrlRewriteFilter.doFilter(UrlRewriteFilter.java:250)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at org.springframework.orm.hibernate3.support.OpenSessionInViewFilter.doFilterInternal(OpenSessionInViewFilter.java:198)
         at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:75)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at com.jscape.framework.galileo.support.upload.UploadFilter.doFilter(UploadFilter.java:71)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:849)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
         at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:454)
         at java.lang.Thread.run(Thread.java:619)
    Caused by: java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
         at java.util.ArrayList.RangeCheck(ArrayList.java:547)
         at java.util.ArrayList.get(ArrayList.java:322)
         at javax.faces.component.AttachedObjectListHolder.restoreState(AttachedObjectListHolder.java:161)
         at javax.faces.component.UIComponentBase.restoreState(UIComponentBase.java:1427)
         at com.sun.faces.application.view.StateHolderSaver.restore(StateHolderSaver.java:121)
         at com.sun.faces.application.view.StateManagementStrategyImpl$4.invokeContextCallback(StateManagementStrategyImpl.java:289)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:1253)
         at javax.faces.component.UIComponentBase.invokeOnComponent(UIComponentBase.java:672)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:1262)
         at javax.faces.component.UIComponentBase.invokeOnComponent(UIComponentBase.java:672)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:1262)
         at javax.faces.component.UIComponentBase.invokeOnComponent(UIComponentBase.java:672)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:1262)
         at javax.faces.component.UIComponentBase.invokeOnComponent(UIComponentBase.java:672)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:1262)
         at javax.faces.component.UIComponentBase.invokeOnComponent(UIComponentBase.java:672)
         at com.sun.faces.application.view.StateManagementStrategyImpl.restoreView(StateManagementStrategyImpl.java:284)
         at com.sun.faces.application.StateManagerImpl.restoreView(StateManagerImpl.java:177)
         at com.sun.faces.application.view.ViewHandlingStrategy.restoreView(ViewHandlingStrategy.java:119)
         at com.sun.faces.application.view.FaceletViewHandlingStrategy.restoreView(FaceletViewHandlingStrategy.java:434)
         at com.sun.faces.application.view.MultiViewHandler.restoreView(MultiViewHandler.java:143)
         at com.sun.faces.lifecycle.RestoreViewPhase.execute(RestoreViewPhase.java:199)
         at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101)
         at com.sun.faces.lifecycle.RestoreViewPhase.doPhase(RestoreViewPhase.java:110)
         at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:312)
         ... 22 more
    ********** Message End *************Thanks

  • Software Update status stuck in Unknown Client check passed/Active

    I've been rooting around in this for a week now so I'm looking for some other ideas.
    A couple of weeks back I tried publishing some updates from SCUP into SCCM. Shortly thereafter I started seeing all my client getting stuck in Unknown "Client check passed/Active" status for Software Updates, starting with my most recent Software
    Update Groups and progressively creeping its way back into older ones.
    Clients' WUAHandler.log show errors with <![LOG[OnSearchComplete - Failed to end search job. Error = 0x8024000f.]LOG]!><time="18:16:20.329+240" date="08-14-2014" component="WUAHandler" context="" type="3"
    thread="2496" file="cwuahandler.cpp:3064">
    Client WindowsUpdate.log shows the same error code: 2014-08-15 11:37:16:278  520 1b7c Agent WARNING: WU client failed Searching for update with error 0x8024000f.
    I also have one of my older deployments starting to pick up a status of Error, code 0X8024000F "Circular update relationships were detected in the metadata."
    I found some folks with similar issues where they were advised to remove the offending updates from their packages. I never got the SCUP updates into any packages; they were showing up as Metadata Only and I started troubleshooting this issue instead. At this
    point I have removed everything from SCUP showing in SCCM console just to make sure. (I think I expired them all in SCUP and then synced with it again.)
    I have tried several client-side fixes that have not resolved the issue (KB971058, rebuild the SoftwareDistribution folder, KB947821).
    I have even uninstalled the WSUS role off my server, restarted, then reinstalled. SCCMw ill sync happily with WSUS and received this week's updates successfully but it cannot pull a status for these new updates and all the existing ones still sit in Unknown
    status in their deployments. I tried creating a new small deployment and it still gets stuck in the same place.
    It looks like my Software Updates metadata in SCCM is a mess and I'm not sure how to resolve it. I think the next step I can think of is to strip the SUP role off the server and pop it back in after its had some time to clean itself up. Does anybody have
    any other less severe suggestions?

    Hi,
    There is someone remove all the third-party metadata in WSUS Database, then run full sync and initiated scan cycle on the machine. The client successfully scanned updates.
    But editing database directly is unsupported by Microsoft.
    Best Regards,
    Joyce
    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.

  • Unknown Client Check passed Active after patching

    I have just deployed an software update for my clients. It seems to me at first a lot of client where in the Progress tab stating "downloading updates". When I came back the next day, most of the clients are in the Unkown tab stating "Client
    check passed / Active". How can I make the clients compliant?

    Just out of curiosity - this looks like an update deployment, have you checked the compliance in the reporting section (assuming you have one setup)?  I have been noticing that our patch groups are showing similar behavior where more state "Client
    check passed/Active" just like you're seeing, but our compliance reports are showing different numbers.

  • Compliance Unknown - Client Check passed/Active

    I am running SCCM 2012 R2 in a test environment. My setup is very simple in that I only have around a dozen machines in it and I only have one site server.
    I have a couple of software deployments for my baseline updates and when I check these all of my machines are green and compliant. However, I have another deployment that is created via an ADR and most of my machines are green and compliant except two which
    are stuck on the Unknown tab saying "client check passed/Active". I have rebooted them, kicked off every action, refreshed, run summarization, reinstalled the client - yet none of these seem to be having any effect. Keep in mind these two machines
    are also in my 'baseline' deployments and they are reporting back just fine. For whatever reason, they are stuck as unknown in my ADR deployment.
    I've checked on a few of the logs and haven't stumbled across anything that stuck out but if anyone could kindly point me in the direction of the logs that are relevant to this issue I would appreciate it.
    EDIT 1:
    I ran the 'Compliance 1 - Overall Compliance' report against the ADR deployment and my test collection and the two machines in question came back as "Non-compliant" rather than compliance state unknown... which I find interesting
    EDIT 2:
    In my past experiences with SCCM 2012, I had very similar issues related to checking compliance. We would have a ton of machines go into the 'unknown' state and several other weird issues. We had a complex environment at my past job so I figured this evaluation
    would go much smoother since I have one site system and a dozen test machines. It makes me nervous that I am already experiencing similar issues. I am also shocked I can't find more info when searching related to machines reporting back as
    Unknown Passed/Active...

    One of the servers in question has not received updates since February. Here is WUAHandler.log and updatesHandler.log - I don't see anything that sticks out. Most logs appear to be acting normal and don't have any glaring errors being reported. I do not
    have any updates showing up in the software center on the server in question. It is the same OS and image as other servers that are working. Please let me know if you would like to see a different log....
    WUAHandler.log (timestamps removed for readability)
    Its a WSUS Update   Source type ({E280636E-013D-473D-96D6-E9A09826B935}), adding it.
    Existing WUA Managed server was already   set (**EDITED OUT**), skipping Group Policy   registration.
    Added Update Source   ({E280636E-013D-473D-96D6-E9A09826B935}) of content type: 2
    Scan results will include superseded   updates only when they are superseded by service packs and definition   updates.
    Search Criteria is (DeploymentAction=*   AND Type='Software') OR (DeploymentAction=* AND Type='Driver')
    Async searching of updates using WUAgent   started.
    Async searching completed.
    Successfully completed scan.
    Scan results will include superseded   updates only when they are superseded by service packs and definition   updates.
    Search Criteria is ((DeploymentAction=*   AND Type='Software' AND CategoryIDs contains   '0FA1201D-4330-4FA8-8AE9-B877473B6441') OR (DeploymentAction=* AND   Type='Software' AND CategoryIDs contains  
    'FDFE8200-9D98-44BA-A12A-772282BF60EF') OR (DeploymentAction=* AND   Type='Software' AND CategoryIDs contains   '7F44C2A7-BC36-470B-BE3B-C01B6DC5DD4E') OR (DeploymentAction=* AND   Type='Software' AND CategoryIDs contains   'BA0AE9CC-5F01-40B4-AC3F-50192B5D6AAF')
    OR (DeploymentAction=* AND   Type='Software' AND CategoryIDs contains   'BFE5B177-A086-47A0-B102-097E4FA1F807') OR (DeploymentAction=* AND   Type='Software' AND CategoryIDs contains   'A105A108-7C9B-4518-BBBE-73F0FE30012B') OR (DeploymentAction=*
    AND   Type='Software' AND CategoryIDs contains '2EE2AD83-828C-4405-9479-544D767993FC')   OR (DeploymentAction=* AND Type='Software' AND CategoryIDs contains   'E6CF1350-C01B-414D-A61F-263D14D133B4'))
    Async searching of updates using WUAgent   started.
    Async searching completed.
    Successfully completed scan.
    Scan results will include superseded   updates only when they are superseded by service packs and definition   updates.
    Search Criteria is ((DeploymentAction=*   AND Type='Software' AND CategoryIDs contains   '7F44C2A7-BC36-470B-BE3B-C01B6DC5DD4E') OR (DeploymentAction=* AND   Type='Software' AND CategoryIDs contains  
    'DBF57A08-0D5A-46FF-B30C-7715EB9498E9'))
    Async searching of updates using WUAgent   started.
    Async searching completed.
    Successfully completed scan.
    Scan results will include superseded   updates only when they are superseded by service packs and definition   updates.
    Search Criteria is ((DeploymentAction=*   AND Type='Software' AND CategoryIDs contains   'FDFE8200-9D98-44BA-A12A-772282BF60EF') OR (DeploymentAction=* AND   Type='Software' AND CategoryIDs contains  
    '7F44C2A7-BC36-470B-BE3B-C01B6DC5DD4E') OR (DeploymentAction=* AND   Type='Software' AND CategoryIDs contains   'BFE5B177-A086-47A0-B102-097E4FA1F807') OR (DeploymentAction=* AND   Type='Software' AND CategoryIDs contains   'BA0AE9CC-5F01-40B4-AC3F-50192B5D6AAF')
    OR (DeploymentAction=* AND   Type='Software' AND CategoryIDs contains   'CB263E3F-6C5A-4B71-88FA-1706F9549F51') OR (DeploymentAction=* AND   Type='Software' AND CategoryIDs contains   '2EE2AD83-828C-4405-9479-544D767993FC') OR (DeploymentAction=*
    AND   Type='Software' AND CategoryIDs contains '0FA1201D-4330-4FA8-8AE9-B877473B6441')   OR (DeploymentAction=* AND Type='Software' AND CategoryIDs contains   '3B4B8621-726E-43A6-B43B-37D07EC7019F') OR (DeploymentAction=* AND   Type='Software'
    AND CategoryIDs contains   'E6CF1350-C01B-414D-A61F-263D14D133B4') OR (DeploymentAction=* AND Type='Software'   AND CategoryIDs contains 'A105A108-7C9B-4518-BBBE-73F0FE30012B') OR   (DeploymentAction=* AND Type='Software' AND CategoryIDs contains
      'DBF57A08-0D5A-46FF-B30C-7715EB9498E9') OR (DeploymentAction=* AND   Type='Software' AND CategoryIDs contains   '9B135DD5-FC75-4609-A6AE-FB5D22333EF0'))
    Async searching of updates using WUAgent   started.
    Async searching completed.
    Successfully completed scan.
    UpdatesHandler.log (timestamps removed for readability)
    Initiating updates   scan for checking applicability.
    Successfully initiated scan.
    Updates scan completion received, result   = 0x0.
    Initiating updates scan for checking   applicability.
    Successfully initiated scan.
    Updates scan completion received, result   = 0x0.
    Initiating updates scan for checking   applicability.
    Successfully initiated scan.
    Updates scan completion received, result   = 0x0.
    Method (Discover) called from SDM.
    Starting job with id =   {A007C151-234D-4EEF-9907-4E029C0FDBBD}
    Initiating Scan. Forced = (0)
    Successfully initiated scan for job   ({A007C151-234D-4EEF-9907-4E029C0FDBBD}).
    Scan completion received for job   ({A007C151-234D-4EEF-9907-4E029C0FDBBD}).
    Evaluating status of the updates for the   job ({A007C151-234D-4EEF-9907-4E029C0FDBBD}).
    Successfully sent job   ({A007C151-234D-4EEF-9907-4E029C0FDBBD}) success completion to the SdmAgent
    CompleteJob received from SDM.
    Complete - Job   ({A007C151-234D-4EEF-9907-4E029C0FDBBD}) Cleanup.
    CompleteJob - Job   ({A007C151-234D-4EEF-9907-4E029C0FDBBD}) removed from job manager list.
    Initiating updates scan for checking   applicability.
    Successfully initiated scan.
    Updates scan completion received, result   = 0x0.
    Method (Download) called from SDM.
    Starting job with id =   {FB0A56F7-0247-45C0-A4E2-D7A3CFF91BBD}
    Initiating Scan. Forced = (0)
    Successfully initiated scan for job   ({FB0A56F7-0247-45C0-A4E2-D7A3CFF91BBD}).
    Scan completion received for job   ({FB0A56F7-0247-45C0-A4E2-D7A3CFF91BBD}).
    Evaluating status of the updates for the   job ({FB0A56F7-0247-45C0-A4E2-D7A3CFF91BBD}).
    Initiating download for the job   ({FB0A56F7-0247-45C0-A4E2-D7A3CFF91BBD}).
    Bundle update   (39d68759-cc66-4fa4-8907-096b610c9583) is requesting download from child   updates for action (INSTALL)
    Starting download on action (INSTALL) for   Update (46201763-6bf4-47f9-8d9c-b6549bb32a3b)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Contents already available.
    StateCore - bundle update   (39d68759-cc66-4fa4-8907-096b610c9583) state changed from (WAIT_CONTENTS) to   (EXECUTE_READY) as child update state changed
    Bundle update   (67c66c9f-bef4-4057-860f-0dbbd2fc25dd) is requesting download from child   updates for action (INSTALL)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Starting download on action (INSTALL) for   Update (8efab745-b428-4bab-9933-822857c11e03)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Contents already available.
    StateCore - bundle update   (67c66c9f-bef4-4057-860f-0dbbd2fc25dd) state changed from (WAIT_CONTENTS) to   (EXECUTE_READY) as child update state changed
    Bundle update   (8263f7a7-6ed2-48a9-90bd-05a361e0a81f) is requesting download from child   updates for action (INSTALL)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Starting download on action (INSTALL) for   Update (ebb06d79-b446-432d-b26d-0bd168e58192)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Contents already available.
    StateCore - bundle update   (8263f7a7-6ed2-48a9-90bd-05a361e0a81f) state changed from (WAIT_CONTENTS) to   (EXECUTE_READY) as child update state changed
    Bundle update   (8f7e4dbd-be3f-463b-bb5a-55b33039a023) is requesting download from child   updates for action (INSTALL)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Starting download on action (INSTALL) for   Update (8d7948a9-3fd9-4430-b790-0511a7cb4502)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Contents already available.
    StateCore - bundle update   (8f7e4dbd-be3f-463b-bb5a-55b33039a023) state changed from (WAIT_CONTENTS) to   (EXECUTE_READY) as child update state changed
    Bundle update   (9550b374-112f-42ab-80a0-8caba8652e59) is requesting download from child   updates for action (INSTALL)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Starting download on action (INSTALL) for   Update (8a454fff-d319-4bb0-bb00-76a67f07c88f)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Contents already available.
    StateCore - bundle update   (9550b374-112f-42ab-80a0-8caba8652e59) state changed from (WAIT_CONTENTS) to   (EXECUTE_READY) as child update state changed
    Download completed for the job   ({FB0A56F7-0247-45C0-A4E2-D7A3CFF91BBD}).
    Successfully sent job   ({FB0A56F7-0247-45C0-A4E2-D7A3CFF91BBD}) success completion to the SdmAgent
    CompleteJob received from SDM.
    Complete - Job   ({FB0A56F7-0247-45C0-A4E2-D7A3CFF91BBD}) Cleanup.
    CompleteJob - Job   ({FB0A56F7-0247-45C0-A4E2-D7A3CFF91BBD}) removed from job manager list.
    Initiating updates scan for checking   applicability.
    Successfully initiated scan.
    Initiating updates scan for checking   applicability.
    Successfully initiated scan.
    Initiating updates scan for checking   applicability.
    Successfully initiated scan.
    Updates scan completion received, result   = 0x0.
    Updates scan completion received, result   = 0x0.
    Method (Discover) called from SDM.
    Starting job with id =   {EB8A0FE5-B84E-471A-9658-3607767C7CCE}
    Initiating Scan. Forced = (0)
    Successfully initiated scan for job   ({EB8A0FE5-B84E-471A-9658-3607767C7CCE}).
    Scan completion received for job   ({EB8A0FE5-B84E-471A-9658-3607767C7CCE}).
    Evaluating status of the updates for the   job ({EB8A0FE5-B84E-471A-9658-3607767C7CCE}).
    Successfully sent job   ({EB8A0FE5-B84E-471A-9658-3607767C7CCE}) success completion to the SdmAgent
    Updates scan completion received, result   = 0x0.
    CompleteJob received from SDM.
    Complete - Job   ({EB8A0FE5-B84E-471A-9658-3607767C7CCE}) Cleanup.
    CompleteJob - Job   ({EB8A0FE5-B84E-471A-9658-3607767C7CCE}) removed from job manager list.
    Initiating updates scan for checking   applicability.
    Successfully initiated scan.
    Updates scan completion received, result   = 0x0.
    Method (Download) called from SDM.
    Starting job with id =   {CD1BC7C4-1BFF-44D1-B206-6BC650B4D54C}
    Initiating Scan. Forced = (0)
    Successfully initiated scan for job   ({CD1BC7C4-1BFF-44D1-B206-6BC650B4D54C}).
    Scan completion received for job   ({CD1BC7C4-1BFF-44D1-B206-6BC650B4D54C}).
    Evaluating status of the updates for the   job ({CD1BC7C4-1BFF-44D1-B206-6BC650B4D54C}).
    Initiating download for the job   ({CD1BC7C4-1BFF-44D1-B206-6BC650B4D54C}).
    Bundle update   (39d68759-cc66-4fa4-8907-096b610c9583) is requesting download from child   updates for action (INSTALL)
    Starting download on action (INSTALL) for   Update (46201763-6bf4-47f9-8d9c-b6549bb32a3b)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Contents already available.
    StateCore - bundle update   (39d68759-cc66-4fa4-8907-096b610c9583) state changed from (WAIT_CONTENTS) to   (EXECUTE_READY) as child update state changed
    Bundle update   (67c66c9f-bef4-4057-860f-0dbbd2fc25dd) is requesting download from child   updates for action (INSTALL)
    Starting download on action (INSTALL) for   Update (8efab745-b428-4bab-9933-822857c11e03)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Contents already available.
    StateCore - bundle update   (67c66c9f-bef4-4057-860f-0dbbd2fc25dd) state changed from (WAIT_CONTENTS) to   (EXECUTE_READY) as child update state changed
    Bundle update   (8263f7a7-6ed2-48a9-90bd-05a361e0a81f) is requesting download from child   updates for action (INSTALL)
    Starting download on action (INSTALL) for   Update (ebb06d79-b446-432d-b26d-0bd168e58192)
    Contents already available.
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)
    Ignoring update state (DOWNLOAD_READY)   change in job state (2)

  • Check-in error while checking in activity in nwdi

    Hi,
    I have a nwdi track with the ability to create VC and webdypro DCs. I created a Visual Composer DC and created a model within it. This activity was activated and released and I could preview the vc model successfully.
    I checked-out the model assigning it a new activity, and made changes to this vc model. Saved the model. So far so good.
    The problem occurs when I try to check-in this particular activity. And the same problem occurs when I try to create a second or third VC model within the DC and try to check them in.
    Infractructure console in nwds says:
    FAILED: CHECKIN on activity act_w_ABCCOMP_abc_2e_com_
    ABCCOMP_dev_inactive_u_nss09_t_2010_12_07_17_28_15_GMT_276e3e68-4ac5-4177-acd1-4efe79a327f7 failed : The operation was aborted because: Could not Check in Activity. See ErrorLog for more Details..:operation failed at10:43:52.528
    The Error Log View in nwds says:
    com.sap.ide.devserver.eclipse.diievent.DIIEventListener:Could not check in activity Reason: Model(s) {home/abc_cust_impl=nwdi_test} not Compiled. Solution : Open the Model(s) in VisualComposer and Compile it.
    Regards,
    Namrata Shenoy

    The compile option in NWDS was not helping my case, although that is the right way to check-in activity in nwds/nwdi. What I found was that my project was corrupted, I don't really know when and why it happened, but I deleted contents of the .project folder and check-in activity worked beautifully after that. I also saw that, if you can afford to, creating a new workspace helps a problem like this.

  • Had 3G, moved to 3GS.  Backed up 3G and restored 3GS from backup with no problem.  When I want to add songs, I get itunes message that the new iphone is synced to another computer and now wants to erase everything.  How can I add music?

    Had 3G, moved to 3GS.  Backed up 3G and restored 3GS from backup with no problem on a Dell computer.  But now when I want to add songs, I get itunes message of death that the new iphone is synced to another computer and now wants to erase everything.  How can I add music without erasing everything on my new iphone?

    Yes, I was aware of this but the phrase "Any items imported from audio CDs or acquired from other sources will not copy from your device to the iTunes library." is what worries me.  Will this eliminate my Notes, Calendar Events, etc or will it apply mostly just to the music?

  • Write back in OBIEE 11g : unable to check "enable write back"

    Hi all!
    I have a table on presentation, i want to make a table in analysis with function "Write back". But in criteria, when i choose "column properties" --> "write back" tab --> i can not check "Enable write back". I have granted privileges "write back" to user
    Please tell me how to configure to make it.
    Thanks so much.
    Edited by: OBIEE.vn on Jan 6, 2011 7:54 PM

    Guys,
    In OBIEE 11g You need to make sure that you mark the logical columns in your Repository RPD as "Writeable". Otherwise the ability to write to these columns is not allowed for WriteBack functionality.
    Cheers,
    Christian
    http://www.artofbi.com

  • Activity report failed(Communication error)- while check-in Activity

    Hello SDN,
    I am getting following error while Checking in activity from open activities .currently we are using NWDS7.3
    CHECKIN      Finished24s.9Files scuceeded.
    ACTIVATE     Activation Performed.Build request ID : 166
              Internal Problem(Activity report failed(Communication error
    [cause: Unalble to open connection to host<host>:<port>][reason:Address already in use : connect]]))
    Check-in completed successfully but Activation is not completed and giving connectivity error described above. Again
    I activated activity from Activation view. Still I am getting following error description.Plesae provide me solution
    to resolve this issue.
    GET_STATUS      could not retrieve activation status of request '166' (Unable to connect to
    host:port-Address already in use:connect(Service call exception; nested exception java.io.
    IOException: Unable to connect to host:port-Address already in use:connect))
    regards,
    Sree.

    Just check the full hostname of your DTR server, should be like
    hostname.company.com
    and check if somewhere only
    hostname
    is being used.and both are getting successfully pinged. DO not try the NWDS ping. Use command prompt and
    ping hostname
    and
    ping hostname.company.com
    Also this happens due to some clash with some other developer. Please check after some time, may be after a desktop restart. things should start working.
    Edited by: Varun Biswas on Nov 29, 2011 11:53 PM
    Edited by: Varun Biswas on Nov 29, 2011 11:53 PM

  • How do I set up InDesign cross-document Text Anchor Hyperlinks so that when the files are moved, they remain active?

    I’m combining several InDesign files into one PDF, with several hundred text links across the different sections, as well as within each. The cross-document (section) Text Anchor Hyperlinks work fine in my workspace - but when I change the file location, they are no longer active (other links, bookmarks remain intact).
    How do I set up InDesign cross-document Text Anchor Hyperlinks so that when the files are moved, they remain active? 

    They seem to be a lot of extra work, and I don't see what the additional benefit is. I have several hundred links to do. I would appreciate learning what the benefit is, as I don't mind the extra effort if it will deliver the desired results.

  • Automatic Credit Check- Credit active field in Item Category

    Hi All,
    In the current system, simple credit check is active and now the customer would like to consider the open sales order and delivery documents as well. Hence we are activating automatic credit check.
    The issue I am facing here is the credit active field is not activated in Item category level, since it has not been activated, the system is not performing the automatic credit check for the old as well as newly created sales order. If I activate the credit active field in Item category level its working fine for newly creating documents.
    But the credit check is not happening for the sales order which has been created in the past.Whether the credit active field not activated earlier is the reason behind this issue.
    Please let me know is there is any other way to perform credit check for the old sales orders as well.
    Regards,
    Mythily

    But the credit check is not happening for the sales order which has been created in the past.Whether the credit active field not activated earlier is the reason behind this issue.
    Credit check will not happen for the saved sales orders. It is not the reason because of credit active field was  not ticked for item category. you had performed Simple credit check for those orders,
    I assume you might be knowing that Simple credit check does not update open order, open delivery and open invoices etc, it updates only receivables. Even though you had ticked the item category the field credit active, it would not have performed.
    Now for old sales order anyway it will not perform the credit check, only thing you can do
    Run the program RVKRED88  in SE38  so that it will update the all sales values into FD32. This.This is the best way i think this will work. Please test this from your side. I did not check in my system.
    Why you want to perform the credit check on the sales documents which are already created and saved. as per me it does not make sense.
    thanks,
    Srinu.
    Message was edited by: Srinu S

  • How to check SQL activity in OWB Process flow

    Hi,
    In OWB process flow,I need to check SQL activity. How to check that? I am using OWB 11g R2.
    Regards,
    Rashmik

    Gowtham,
    Well the following hint is provided by oracle warehouse builder help.........
    The time-out setting for the workflow engine determines how long the File Exist activity waits for a file. If the file does not arrive before the time-out setting expires, the File Exists activity terminates with errors.
    well someone with deep workflow knowledge can answer this one...
    If you get the answer please share with us.....
    Regards,
    Suraj.

  • Getting an Error when checking a PDF back into Sharepoint 2010

    Hi,
    I seem to be getting an error every time i want to check a document back into Sharepoint 2010. Error attached for you.
    Does any one have any ideas why this may be happening?

    Sorry - I am using Adobe Acrobat XI

  • Can someone please help me!! I keep trying to download itunes but get a message that and error has happened 2/3 and check window activity. Then it shows A sever with the specified host name could not-- and then it cuts off the rest of the message.

    I keep trying to download itunes in Safari but get a message that and error has happened 2/3 and check window> activity. Then it shows A sever with the specified host name could not…… and then it cuts off the rest of the message. I have reset Safari and still nothing!!!
    Very frustrated!!!

    It's downloading with Firefox 3.6.27 as I write.  It's probably more a Safari problem in your case for which people on the Safari forum could provide suggestions.  Or mybe just try again in a while as I suspect everybody is downloading right now.

  • Moving to Logic Pro (back really I was a Logic user on PC)

    moving to Logic Pro (back really I was a Logic user on PC)
    What is the best amount of RAM to start with in the best chip pair arrangement?
    As in 2 chips x 4 gig = 8 gigs total. would like to leave room to up grade so starting with either 8 or 12 gigs. Using Logic and Kontact sounds files.

    Hi
    Indeed, early MacPros work best with RAM in matched pairs.... I had assumed that the OP was working with a MacPro post 2009, rather than a 2008 model
    Perhaps these links will help clarify for the OP:
    http://manuals.info.apple.com/enUS/MacPro_Early2008_MemoryDIMMDIY.pdf
    http://manuals.info.apple.com/enUS/Mac_Pro_2009_2010_Memory_DIMMsDIY.pdf
    For 2009-2010 models:
    "Single-Processor Memory
    For optimal memory bandwidth, all three memory channels should be used, and memory should be balanced across the three channels.
    Dual-Processor Memory
    For optimal memory bandwidth, all six memory channels should be used, and memory should be balanced across the six channels.
    Note: Populating slot 4 (or 8) slightly drops maximum memory bandwidth, but depending on the applications used, overall system performance may benefit from the larger amount of memory."
    HTH
    CCT

Maybe you are looking for

  • Sync Windows Mobile Treo 750 with Vista 64 bit, FINALLY DID IT!

    I have just spent 3 hours trying to set up sync between my Treo 750 and my new Vista 64-bit computer.  Here's what I learned: You have to download the Windows Mobile Device Center and its update (that's why some people felt they were downloading twic

  • Adobe Acrobat  x Standard'  Downlaod Link

    I need the down load link for 'Adobe Acrobat  x Standard'  my previous installed  PC , had a hard drive problem, so I'm, trying to download  the version that I have licence for it was  obtained from Digital rivers  ,but i cannot locate a download lin

  • Lightweight alternative to Declarative Components?

    Hi, Is there a simpler, lighter way to extract part of an ADF page into a re-usable tag that can be used instead of the Declarative Components feature? In my application, I have a table which displays some data from a VO. Some columns are links, and

  • [SOLVED] Pacman errors

    Hello, I've been trying to install fluxbox on my freshly installed arch linux (with updates) and I've been following a guide on how to do so. The problem is that I can't really install anything but 'pacman -S xorg', like for example if I try 'pacman

  • How to upload data in excel file to an internal table

    hi, how can we upload data in excel file on presentation server to an internal table..? Any pointers on this would be helpful. Regards, Anil.