CMS - Items remain "Waiting for assembly", even after succesfull assembly

When we assemble components in the Integration Directory track, the assembly is succesfull and the components appear in the approval tab.
But... the components remain in the assembly tab with state "Waiting for assembly" (there are also corresponding entries with state "assembled"). The components also remain in state "Waiting for assembly" after approving or rejecting.
We have checked the How to guides several times and searched sdn and sap notes, but could not find any leads.
We would really appreciate if anybody could help us.

baltwo,
I have a lion clone. so I guess there is no reason to install lion upon it's own clone.
anyways, how is it possible that after the complete format, the ACL problem remains.
what about removing the recovery partition.
the reason I want it to be done is to get rid of the problems I had with the new installation, tham I'm afraid will not be fixed otherwise: crashing apple applications (safari quitted unexpectedly), slow performance, computer freezes, GUI lags (copying 138 items to another folder stucks and I have to relounch finder) and other animation bugs at almost everywhere on the system.
restoring lion clone and turning on the time machine sounds like the last option right now...
and I'll be happy to hear opinions about what to do with the backed up data on the external hdd permissions.

Similar Messages

  • Mini Bridge holds on waiting for bridge even after suggested fixes

    I have CS6 Photoshop and run macbook pro w/ OS Yosemite.  I have deleted switchboard folder and that did not resolve the issue.  My firewall is disabled.  Bridge can run on its own w/o problem.  What can I try to get it to work?

    I not a Mac user however I woyld think a problem like that can happen on a mac like ones on a PC.  If tot hace mor the one version of Bridge and Photoshop installed on you computer.  System configuration files may get misconfigured and the wrong version of the bridge may be launch a photoshop version and Mini Bridge will not work.  In fact CC 2014 has no mini bridge for Mini Bridge used Flash Panels and Adobe removed Flash panel support in CC 2014.  So If you have more then one version installed check that all your system and Adobe settings are correct pointing to the correct programs files to start.

  • Unhandled Exception: System.TimeoutException: The request channel timed out while waiting for a reply after 00:01:59.9139778.Increase the timeout value passed to the call to Request or increase the SendTimeout value on the Binding.

    Hi, 
    I created a simple plugin and since i wanted to use Early Binding i added Xrm.cs file to my solution.After i tried registering the plugin (using the Plugin Registration Tool) the plugin does not gets registered and i get the below mentioned Exception.
    Unhandled Exception: System.TimeoutException: The request channel timed out while waiting for a reply after 00:01:59.9139778. Increase the timeout value passed to the call to Request or increase the SendTimeout value on the Binding. The time allotted to this
    operation may have been a portion of a longer timeout.
    Server stack trace: 
       at System.ServiceModel.Channels.RequestChannel.Request(Message message, TimeSpan timeout)
       at System.ServiceModel.Channels.SecurityChannelFactory`1.SecurityRequestChannel.Request(Message message, TimeSpan timeout)
       at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)
       at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)
       at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)
    Exception rethrown at [0]: 
       at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
       at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
       at Microsoft.Xrm.Sdk.IOrganizationService.Update(Entity entity)
       at Microsoft.Xrm.Sdk.Client.OrganizationServiceProxy.UpdateCore(Entity entity)
       at Microsoft.Crm.Tools.PluginRegistration.RegistrationHelper.UpdateAssembly(CrmOrganization org, String pathToAssembly, CrmPluginAssembly assembly, PluginType[] type)
       at Microsoft.Crm.Tools.PluginRegistration.PluginRegistrationForm.btnRegister_Click(Object sender, EventArgs e)
    Inner Exception: System.TimeoutException: The HTTP request to 'https://demoorg172.api.crm.dynamics.com/XRMServices/2011/Organization.svc' has exceeded the allotted timeout of 00:01:59.9430000. The time allotted to this operation may have been a portion of a
    longer timeout.
       at System.ServiceModel.Channels.HttpChannelUtilities.ProcessGetResponseWebException(WebException webException, HttpWebRequest request, HttpAbortReason abortReason)
       at System.ServiceModel.Channels.HttpChannelFactory`1.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)
       at System.ServiceModel.Channels.RequestChannel.Request(Message message, TimeSpan timeout)
    Inner Exception: System.Net.WebException: The operation has timed out
       at System.Net.HttpWebRequest.GetResponse()
       at System.ServiceModel.Channels.HttpChannelFactory`1.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)
    And to my Surprise after i remove the Xrm.cs file from my solution the Plugin got registered!
    Not understanding what exactly is the issue.
    Any Suggestions are highly appreciated.
    Thanks,
    Shradha
      

    Hello Shardha,
                            I really appreciate that you have faced this issue.This is really very strange issue and basically it occurs because of big size of your early bound class and slow internet
    connection.
                            I would strictly recommend you to reduce the file size of your early bound class and then register.By default early bound class is created for all the entities which are
    present in CRM(System entities as well custom entities).Such kind of early bound classes takes lots of time to register on server and hence timeout exception comes.
                            There is some standard define to reduce the size of early bound class.Please follow the link to get rid from big size of early bound class.
    Create a new C# class library project in Visual Studio called SvcUtilFilter.
    In the project, add references to the following:
    CrmSvcUtil.exe(from sdk)   This exe has the interface we will implement.
    Microsoft.Xrm.Sdk.dll  (found in the CRM SDK).
    System.Runtime.Serialization.
      Add the following class to the project:
    using System;
    using System.Collections.Generic;
    using System.Xml.Linq;
    using Microsoft.Crm.Services.Utility;
    using Microsoft.Xrm.Sdk.Metadata;
    namespace SvcUtilFilter
        /// <summary>
        /// CodeWriterFilter for CrmSvcUtil that reads list of entities from an xml file to
        /// determine whether or not the entity class should be generated.
        /// </summary>
        public class CodeWriterFilter : ICodeWriterFilterService
            //list of entity names to generate classes for.
            private HashSet<string> _validEntities = new HashSet<string>();
            //reference to the default service.
            private ICodeWriterFilterService _defaultService = null;
            /// <summary>
            /// constructor
            /// </summary>
            /// <param name="defaultService">default
    implementation</param>
            public CodeWriterFilter( ICodeWriterFilterService defaultService )
                this._defaultService = defaultService;
                LoadFilterData();
            /// <summary>
            /// loads the entity filter data from the filter.xml file
            /// </summary>
            private void LoadFilterData()
                XElement xml = XElement.Load("filter.xml");
                XElement entitiesElement = xml.Element("entities");
                foreach (XElement entityElement in entitiesElement.Elements("entity"))
                    _validEntities.Add(entityElement.Value.ToLowerInvariant());
            /// <summary>
            /// /Use filter entity list to determine if the entity class should be generated.
            /// </summary>
            public bool GenerateEntity(EntityMetadata entityMetadata, IServiceProvider services)
                return (_validEntities.Contains(entityMetadata.LogicalName.ToLowerInvariant()));
            //All other methods just use default implementation:
            public bool GenerateAttribute(AttributeMetadata attributeMetadata, IServiceProvider services)
                return _defaultService.GenerateAttribute(attributeMetadata, services);
            public bool GenerateOption(OptionMetadata optionMetadata, IServiceProvider services)
                return _defaultService.GenerateOption(optionMetadata, services);
            public bool GenerateOptionSet(OptionSetMetadataBase optionSetMetadata, IServiceProvider services)
                return _defaultService.GenerateOptionSet(optionSetMetadata, services);
            public bool GenerateRelationship(RelationshipMetadataBase relationshipMetadata, EntityMetadata otherEntityMetadata, IServiceProviderservices)
                return _defaultService.GenerateRelationship(relationshipMetadata, otherEntityMetadata, services);
            public bool GenerateServiceContext(IServiceProvider services)
                return _defaultService.GenerateServiceContext(services);
    This class implements the ICodeWriterFilterService interface.  This interface is used by the class generation
    utility to determine which entities, attrributes, etc. should actually be generated.  The interface is very simple and just has seven methods that are passed metadata info and return a boolean indicating whether or not the metadata should be included
    in the generated code file.   
    For now I just want to be able to determine which entities are generated, so in the constructor I read from an XML
    file (filter.xml) that holds the list of entities to generate and put the list in a Hashset.  The format of the xml is this:
    <filter>
      <entities>
        <entity>systemuser</entity>
        <entity>team</entity>
        <entity>role</entity>
        <entity>businessunit</entity>
      </entities>
    </filter>
    Take a look at the methods in the class. In the GenerateEntity method, we can simply check the EntityMetadata parameter
    against our list of valid entities and return true if it's an entity that we want to generate.
    For all of the other methods we want to just do whatever the default implementation of the utility is.  Notice
    how the constructor of the class accepts a defaultService parameter.  We can just save a reference to this default service and use it whenever we want to stick with the default behavior.  All of the other methods in the class just call the default
    service.
    To use our extension when running the utility, we just have to make sure the compiled DLL and the filter.xml file
    are in the same folder as CrmSvcUtil.exe, and set the /codewriterfilter command-line argument when running the utility (as described in the SDK):
    crmsvcutil.exe /url:http://<server>/<org>/XrmServices/2011/Organization.svc /out:sdk.cs  /namespace:<namespace> /codewriterfilter:SvcUtilFilter.CodeWriterFilter,SvcUtilFilter
    /username:[email protected] /password:xxxx
    That's it! You now have a generated sdk.cs file that is only a few hundred kilobytes instead of 5MB. 
    One final note:  There is actually a lot more you can do with extensions to the code generation utility. 
    For example: if you return true in the GenerateOptionSet method, it will actually generated Enums for each CRM picklist (which it doesn't normally do by default).
    Also, the source code for this SvcUtilFilter example can be found here. 
    Use at your own risk, no warranties, etc. etc. 
    Please mark as a answer if this post is useful to you.

  • HT4623 what is waiting for activation mean, after factory reset

    what is waiting for activation mean after doing a factory reset, how long does it take

    Has your iPhone been jailbroken or otherwise hacked?

  • I can't go further "waiting for Printing Services" after turning on.

    I have tried to reboot but it comes to the same point, The logo and spining daisy are there for 5 min. then I see the Blue bar with prompts growing at times(it takes 10 - 15 min. when it reaches "waiting for Prionting Services" stays there forever, I guess this all started when I tried to instal new updates (with no success)How can I revert the installation? or how can I get to the loging screen?
    what shall I do?PLEASE HELP!!!!!

    I am working on a friend's Ibook, I am a PC IT, and know very little about Mac's so please bare with me in helping (1st grade Mac user).
    In my Mac fixing journey, I have used:
    1. Repair Disk = no repairs found to fix
    2. Repair Permissions = stalls and gives a prompt disconnected quit and restart, did that same prompt
    3. Booted in safe mode, gets to the same point "waiting for Printing Services" and then fades out and shuts itself down after a long period.
    4. I have tried to holding down opt, apple, p & r keys to reset "pram" = no go.
    5. Removed the power source and batter to reset computer.
    6. Booted computer connected into the printer and not connected to the computer. Same freeze place.
    After all this being done,and reading alot in here, I purchased disk warrior, it corrected a few errors, rebuilt and rebooted...only to come back to "waiting for Printing Services" and then freeze.
    Anyone have anything else they can help me with, that might get me passed this problem??
    Thanks in Advance for any advice!!
    Sav
    Ibook G4   Mac OS X (10.0.x)  

  • "Plugin Container" remains open, consuming large amounts of CPU power for nothing, even after Firefox is quit! It can only be killed from the Activity Monitor!

    (I'm on a Mac.)

    Hello,
    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!
    Thank you.

  • Customer Line items are showing in red even after clearing? Is there some configuration I am missing?

    I am learning SAP FI. For this I created a customer invoice using T.Code F-22 and later posted incoming payment from the customer using T.Code F-28. After that I checked the line items for this same customer using the T.Code FBLN5. The cleared items are still showing up in red. I double clicked on the DZ(Incoming payments) documents and also verified that the incoming payments went towards the correct DR (Customer invoice) document. could someone help me understand why this is happening?

    Hi,
    I observed your Line items.... your invoice amounts are not equal with the payment documents
    for ex:
    doc no: 200001 .... invoice is posted with amount 27K inr.....but the Incoming payment is not matching with this 27K..... once the dr and cr is matched they only items will be cleared.  so now you can clear doc no 200001... with doc nos 400000 and 400003...with t.code f-30 transfer with clearing.... first select all the items and deactivate them and after that select doc no 200001 and doc no 400000 and 400003... now dr and cr will be matched you can get this info at not assigned field if this is o then you can save and the items will be cleared. for clearing the items you use the standard tab... in f-28 or f-30.

  • SC status is still in Awaiting for Approval Even after PO and confirmation creation.

    Hi Experts,
    We have SRM 7.0 with Classic scenario, Here we have strange case where for One SC already backend PO created and Confirmation is done. Still SC status is showing as Awaiting for approval. Kindly Help me to solve this issue.
    Thanks in advance
    BR,
    Basu

    Hi Basu,
    What is the workflow framework that your are using. Is  it application controlled workflow?
    1.     Go to T code BBP_PD and check if the workflow triggered for the shopping cart is in in-Process status. If it is in in-process status copy the header workitem and go to T code SWPC , remove all the values displayed in the selection screen just enter the header work item ID and execute.  If you are able to see any entry after execution select it and click on continue workflow. this will fix your problem.
    2.     Check in transaction SM58 to see if there are any failed entry on the day of shopping cart creation , if there is any entry in failed status please reprocess the LUW.
    hopefully any one of the above steps will fix your issue.
    Regards,
    Suresh

  • App gives tryout screen, asks for activation, even after purchasing CC sub and logging in

    Just as the title says:
    I'm getting "(App Name) CC Tryout" screen after starting an app, then getting trial screen - I try to log in, and it regiters that I'm logged in, but still wants a serial #. I quit the "registration", and have just been going to work, but it concerns me anyways, since I'm guessing this isn't supposed to be happening.
    I tried with customer chat this morning, but they logged off when I didn't answer back immediately, even though they left me alone for a while. This isn't stopping me from working at the moment, but it is something that I need fixed before the countdown for the trial (at 27 days now, purchased the sub last week).
    CC app automatically logs me in and gives me no issues, it's just the apps I'm using like Illustrator, AE, and Photoshop that are giving me constant trial screens (not even consistent trial screens - sometimes they come up, sometimes they don't).

    http://helpx.adobe.com/creative-cloud/kb/ccm-prompt-serial-number.html may help

  • Cursor remains in the selectionscreen even after giving the possible inputs

    I am working for an Upgrade project (upgradation from 4.6 version to ECC 6 version) and the problem is in the ECC 6 Version.
    When I press on the execute button or F8 from the selection screen by giving all the possible inputs, cursor position still remains in the same screen giving some status message in some different language other than English which i cannot understand i.e. Program is maintained in some other language other than English.
    This program is giving output for the same inputs in the 4.6 version.
    can anyone help me regarding this issue by letting me know some possible solution.

    Hi,
    execute in debigging mode and analyse the results. you can find out the problem were it is coming from.
    regards.
    sriram.

  • 11 Release 2 Activex viewer prompts for parameters even after I set them in the program

    My program worked in 11 base.  I upgraded to 11 Release 2 and now the viewer prompts the user for the parameters even though the program has set the parameters
    here's some of the code
    Dim aCRreport As CRAXDRT.Report
    Dim crystalParms As CRAXDRT.ParameterFieldDefinitions
    Dim crystalParm As CRAXDRT.ParameterFieldDefinition
    Set aCRreport = m_CRapp.OpenReport("c:\somereport.rpt")
    Set crystalParms = aCRreport.ParameterFields
    Set crystalParm = crystalParms(1)
    crystalParm.SetCurrentValue FormatDateTime(Now, vbShortDate), crStringField
    frmViewer.CRViewer1.ReportSource = aCRreport
    frmViewer.CRViewer1.ViewReport
    the viewer opens and asks for a value for parameter one. 
    Thanks, in advance, for any help

    I got the same problem. I could encounter it does appear when using date parameters. We are using german OS and german VS6 so date is localized as "dd.mm.yyyy" but in the report parameter fields it is expected as "jjjj-mm-dd". I cant convert the param in code because it will always be localized to german date.
    Could this be the problem? When yes why isn't crystal reports accepting localized dates?

  • Employee Record Remains Locked for a While After BAPI_EMPLOYEE_DEQUEUE

    Hi All,
    I'm exposing the following BAPI's:
    I'm calling the following  functions (through the webservice) in the following sequence:
    BAPI_EMPLOYEE_ENQUEUE
    BAPI_PERSDATA_CHANGE
    BAPI_EMPLOYEE_DEQUEUE
    The ENQUEUE and CHANGE operations work fine, m running the dequeue bapi but the record remains locked after that.
    (as seen by SM12), it adds one more entry, and the employee remains locked. So question now is u2013 how to successfully Dequeue it now ?
    Here is a copy of entries as seen in SM12 after Enqueue, Change, and Dequeue:
    800 MZZZZZB 13:Ǻ:31 E PLOGI 80001CP00010358 0 1
    800 MZZZZZB 13:26:31 E PREL 80000001273############################## 1 1
    800 MZZZZZB 13:27:07 E BUT000 8000000002083 0 1
    Important: The entries disappear after a while, so there is a delay in DEQUEUE to take effect.
    Is there any configuration/customization to make DEQUEUE happen immediately?

    Hi ,
    Try using commit work statement after deque FM., else use DEQUE_ALL FM.
    This may helps,
    thanks & regards,
    Kiran

  • Waiting for file redraws after deleting bits of audio

    I keep looking in the prefs for something to alleviate this.
    This being, that if I have a big audio file loaded (hundreds to over a gig in size)
    and as I'm editing it (going along and deleting sections) most of the time I have to wait a while for the darn waveform to redraw itself.
    Sometimes it doesn't do this, less often though, and I'm clueless as to why it behaves this way.
    I used to use Peak on my old OS9 machine and it never did this (probably because it always referenced the actual file)
    Why does STP do this? Is there a way to not get the waveform to redraw whenever I want to delete a bit of audio?
    Thanks

    Gerald,
    your will run into an error during the event afterOpen if there are no documents open and you want to adress the being opened document with
    app.activeDocument.
    You better adress it with
    app.documents[0].
    But - funny - if there is already a document opened, then app.documents[0] won't adress the new document (which is opened and calls the event afterOpen), but the old document which has been active before.
    So you will have to adress the document which gets opened with
    app.documents[-1].
    (excuse my english)
    Martin

  • Still Waiting For Deposit Refund after 6 Months

    Having cancelled my FIOS + TV service after 1year, which I did at the end of January this year (2013), I have yet to be refunded my $250 deposit. This is despite the fact that the customer services have told me, on more than one occasion, that it should be "on it's way in the next billing cycle". Another billing cycle, another telephone call. It seems that there isn't a group of phone operators that are capable of dealing with deposits, and consequently I'm stuck on the phone typically for an hour at a time, being transferred back and forth between the customer service and financial services departments. Talk about infuriating and repetitive discussions! 
    Is there anyone who knows which department I need to speak to and what I can do from here? I can't bear the thought of yet more more hour-long phone sessions with resolutions that are never fulfilled.
    Help!!!
    - Depositless in Delaware.

    Hi, thanks, my case was was finally resolved, and was an issue with the bank. If only I could have found that information out sooner though.
    This forum does appear to be a better way to reach appropriate/helpful verizon representatives.
    Thanks.

  • Apps won't download, keeps asking for password even after I enter it.

    When I go to download any app, it asks for my password, I enter my password, it thinks for a second, then asks for my password again.  It does this continuously and no apps will download.  Please help.  So far I have tried to sign out of my Apple ID then restart the phone and sign back in.  I have tried going to Settings > Wifi then hitting the info button and hitting Renew Lease.  I also made sure my Data & Time settings were set to automatic.  These were all of the suggestions I have seen, need some more!

    Yes, it shows it, and it is correct.  I even tried typing in an incorrect password, and it says that password is incorrect when I am typing my password wrong.

Maybe you are looking for