Quantcast
Viewing all 10280 articles
Browse latest View live

CRM 2011 - Team Queue Email Address Question

Hi Forum,

I have a question regarding E-mail field on the Queue. Can we put a email address into this fields which has no associated CRM user?

For example below is my case,

1. I have created a 'Team A' whose adminstrator is a CRM user and Default Queue is 'Test Q'. I have assinged security role and added some members to this team.

2. 'Test Q' has a owner field whch is a 'Team A' created in step 1 above.

3. 'Test Q' also have have E-mail field. My question is, can we put a email address here which is not associated with any user in CRM ? what's the best practice to put email address in this field

   where Queue is owned by a Team ? Does Administrator's email of the team has any impact in this field ?

 I also found that Team form also have email field but by default it's not on the form. What's the significant of this field ?

we have CRM 2011 on-premise with update rollup 6.

Thanks for reading.

Cheers,

H.Desai


how to call a plugin as a step in workflow in CRM 2011?

hi,

I am trying a concoction of workflow and plugin. I am wondering if it is possible at all to do that. If Yes, How? Please assist.

Thank you

Sort Related Entity Columns In A View

Hi Guys,

Is there a way to sort the columns of a related entity attributes in a view?

Thanks in advance.

Updating ServiceAppointment StateCode in C#

I'm trying to close out a ServiceAppointment in code. I can change the StatusCode but not the StateCode. I'm getting an error saying StatusCode100000010is not a valid code for an open ServiceAppointment. At the top of the code below are the two different ways that I've tried to set the StateCode. Neither one works.

retrievedSA.StateCode.Value = 1; retrievedSA.StatusCode.Value = 100000010; // OR retrievedSA.StateCode = new OptionSetValue() { Value = 1 }; retrievedSA.StatusCode = new OptionSetValue() { Value = 100000010 }; myContext.UpdateObject(retrievedSA);
myContext.BeginSaveChanges(OnRescheduledServiceAppointmentCompleted, retrievedSA);

I've seen the SetStateRequest code for the SDK but I am not using the SDK. I have a Service Reference inside Silverlight pointing to my OrganizationData.svc

How can I go about changing the StateCode to closed for this?



Cannot uninstall rollup 11 solution after upgrading to rollup 12

Hi,

I have a managed solution installed that was created using rollup 11 on a vanilla Crm 2011, no additional customizations done, only one record created. Now, I upgraded to rollup 12, and now I am not able to delete the solution. Rollup 12 installation went fine, no errors, did iisreset cleared temporary ASP.NET files from the server, deleted temporary files created by IE. Currently using IE 9.

Any thoughts? Thanks.

Ahmad.

Bulk Delete Wizard only deletes the 1000 records ??

Bulk Delete Wizard only deletes the 1000 records in CRM 2011 onPremise for Companies & contact  ??

Please Help Its Urgent?

Thanks in Advance.

Hide subgrid with serach box in Javascript - CRM 2011

Hi, I have add a subgrid in the case entity and when I hide it, I'm facing two poblems.

1. I can't hide the search box. I try to get its id with the developer tools but cant hide it using the same code I use for hide the subgrid. If in the grid properties I disable the 'Display Search Box' check, it is visible a lines forming the rectangle.

Image may be NSFW.
Clik here to view.

2. After hide it and see the search box or the lines, in both cases there a blank space used by the grid. As show in this picture.

Image may be NSFW.
Clik here to view.

Any ideas on how to resolve this?

This is my code:

function hide_grid(){

 var grid = document.getElementById("subgridkbarticles"); 
    if (grid == null) { //make sure the grid has loaded 
        setTimeout(function () { hide_grid(); }, 2000);
        return;
    }

grid.control.setVisible(false);

}

Thanks!

Jscript tab visible

Hi

I am trying to write a jscript

i want to write the following

IF Relationship Type = Exhibitor - Show Exhibitor tab - else stay the same.

IF Relationship Type = Site - Show Exhibitor tab - else stay the same.

Does anyone have any ideas ? i am a tad stuck.

Cheers


Generated report PDF not showing data in defined specific Language

Hi,

i have set language prefernce for login user as" German" when form load then everything label changes to german from English .But when i run report and export data in PDF.the content of PDF shows data in English language only ,though current user is using German Language.It Should also display PDF data in German language as per CRM behaviour?

Does anyone have worked on this before??


Prashanth M..J

How do i hide/show a subgrid using javascript for crm 2011

I have been looking everywhere for the code to do this can anyone tell me?

Backward checking on duplicate detection rules ?

Hi all,

I have a business requirement that states that whenever a user enters a new LEAD it should look for duplicates on the ACCOUNTS. The idea is to prevent sales people to enter leads when the company is already a customer.

We have created a duplicate detection rule, with BASE RECORD = LEAD, and MATCHING RECORD = ACCOUNT that checks for an exact match between Company Name (in leads) and Account Name (in Accounts).

When a new lead is entered the behaviour is what I expect. But, when the user qualifies the lead into an account the system throws a duplicate detection warning that is very strange: it says there is a potential duplicate, but without identifying the potential duplicate (that part is left blank and says "potential duplicates: none").

After several tests, I disabled this rule, and qualification is again posible, making me believe the problem lays in this rule. If so, it also means that the rule will be applied not only upon creation but also on qualification, which will then result in always existing a duplicate (because qualifying is exactly that: creating an exact match on the accounts entity)

Can anyone clarify this for me ?

Much apprecciated.


Romeo

Microsoft Dynamics 4.0 Function to get an Order Number

//get Order Number function getOrderName(){ //Create the XML that will fetch the required info. //You can inspect this web service call using a tool called FIDDLER. var XMLRequest = "" +"<?xml version=\"1.0\" encoding=\"utf-8\"?>" +"<soap:Envelope xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\">" + GenerateAuthenticationHeader() +" <soap:Body>" +" <RetrieveMultiple xmlns=\"http://schemas.microsoft.com/crm/2007/WebServices\">" +" <query xmlns:q1=\"http://schemas.microsoft.com/crm/2006/Query\" xsi:type=\"q1:QueryExpression\">" +" <q1:EntityName>salesorder</q1:EntityName>" +" <q1:ColumnSet xsi:type=\"q1:ColumnSet\">" +" <q1:Attributes>" +" <q1:Attribute>accountidname</q1:Attribute>" +" <q1:Attribute>name</q1:Attribute>" +" </q1:Attributes>" +" </q1:ColumnSet>" +" <q1:Distinct>false</q1:Distinct>" +" <q1:Criteria>" +" <q1:FilterOperator>And</q1:FilterOperator>" +" <q1:Conditions>" +" <q1:Condition>" +" <q1:AttributeName>name</q1:AttributeName>" +" <q1:Operator>Equal</q1:Operator>" +" <q1:Values>" +" <q1:Value xsi:type='xsd:string'>ORD0011390</q1:Value>" +"</q1:Values>" +" </q1:Condition>" +" </q1:Conditions>" +" </q1:Criteria>" +" </query>" +" </RetrieveMultiple>" +" </soap:Body>" +"</soap:Envelope>" +""; try{ //Create Http request object var xmlHttpRequest = new ActiveXObject("Msxml2.XMLHTTP"); xmlHttpRequest.Open("POST", "/mscrmservices/2007/CrmService.asmx", false); xmlHttpRequest.setRequestHeader("SOAPAction","http://schemas.microsoft.com/crm/2007/WebServices/RetrieveMultiple"); xmlHttpRequest.setRequestHeader("Content-Type", "text/xml; charset=utf-8"); xmlHttpRequest.setRequestHeader("Content-Length", XMLRequest.length); xmlHttpRequest.send(XMLRequest); //alert("aaa"+xmlHttpRequest.responseText); //Store the response which would be XML var Result = xmlHttpRequest.responseXML; /* The return is of type "BusinessEntity" if you were using similar code one server side. Hence we need to select node of type "BusinessEntity" In our case It should be not more one than one node */ var BusinessEntityNodes = Result.selectNodes("//RetrieveMultipleResult/BusinessEntities/BusinessEntity"); // Check If data was retrived if (BusinessEntityNodes.length != 0){ var BusinessEntityNode = BusinessEntityNodes[0]; var accountname = BusinessEntityNode.selectSingleNode("q1:accountidname"); var ordno = BusinessEntityNode.selectSingleNode("q1:name"); var accountname = (accountname == null) ? null : accountname.text; var ordno = (ordno == null) ? null :ordno .text; alert("Order"+ ordno ); } return ordno; } catch (e){ alert(e.message); } } getOrderName();

http://bproud2banindian.blogspot.co.uk/2010/09/get-full-name-of-user-by-using.html

Previously, I used the code from the above link to obtain the full name of the current user.  I tried to modify it to obtain the order number which is in the Name field of the SalesOrder view.  We use the Microsoft Dynamics Adapter to import GP data into CRM and order number is mapped to the name field. 
I pasted the above code into the OnLoad event of the case form which I am in the process of modifying.  Right now I am just trying to display a message box to confirm this is working and then I will modify it to retrieve the data I really want so I can auto populate some fields.The above code does not produce a message box, nothing happens.  I knoe that ORD0011390 is a valid order and should return one result.  Can anyone tell me what is wrong with my code?


GM

Windows Service calling a CRM form

I would like to know if it's possible to open a CRM page of any entity I want (Including the custmized Entities) from a Window Service, I've been searching in everywhere but I couldn't find an anwer yet.

Can anyone help me?

PS: I'm working with a Online CRM 2011.

Thanks in advance.

A currency is required if a value exists in a money field

Hi All

I have one custom currency field . For Existing Record if i am updating this field , getting this Exception "a currency is required if a value exists in a money field"  . As many said on different blog , on Form onload i am setting transactioncurrency field and placing currency symbol in money field .

but when i am entering value in field getting this msg . 

My code 

Xrm.Page.getAttribute("transactioncurrencyid").setValue([{id:'{FD836EE0-2B84-E211-AF22-984BE1732328}',name:"Rupee;",entityType: "transactioncurrency"}]); 

document.getElementById('new_amount').value="Rs.";

Thanks in AdvanceImage may be NSFW.
Clik here to view.


Zafar Khan

plugin assemblies will go into online from IFD with managed solution in ms crm 2011

HI ,

i have two environments 

1. ifd -dev

2.Online -prod

I have created plugin and registered for db in Dev.

when i export the plugin assembly into managed solution from Dev and imported to online(Prod).

the plugin will automatically register for Sandbox or we need register once again in( Online Prod)


hari


CRM 2011 Plugin Outlook Une erreur s'est produite {1}{0} | CRM 2011 Outlook Plugin An error occurred {1} {0}

Bonjour à tous,

J'ai un problème lors de l'installation du plugin CRM 11 pour Outlook. Le problème se produit lors de l'ajout d'une organisation CRM.

Configuration du PC :

Windows 7 / Outlook 32 bits / Plugin CRM 32 bits et Rollup 11

CRM serveur rollup 11

Je tombe sur l'erreur suivante : 

Une erreur s'est produite {1}{0} 

Voici les logs 

J'ai déjà essayé une désinstallation et réinstallation du plugin CRM Outlook.

------

 

Hi all, I have a problem when installing the CRM plugin for Outlook 11. The problem occurs when adding an organization's CRM. PC configuration: Windows 7 / Outlook 32-bit / 32-bit Plugin CRM Rollup 11 CRM server rollup 11

I get the following error: An error has occurred {1} {0}

Here are the logs

 I've tried uninstalling and reinstalling Outlook CRM plugin.

15:17:29|   Info| === Début de la journalisation de l’Assistant de configuration Microsoft Dynamics CRM pour Outlook le 14/03/2013 à 15:17:29 === 15:17:29|Verbose| Method entry: Microsoft.Crm.Application.Outlook.Config.ClientConfig.Initialize 15:17:29|   Info| Client Configuration Wizard Version      : 5.0.9690.2838 15:17:29|   Info| Client Configuration Wizard LanguageID   : 1036 15:17:29|Verbose| Method entry: Microsoft.Crm.Application.Outlook.Config.Validator.IsOutlookInitialized 15:17:29|   Info| Query all rows in profile table 15:17:29|   Info| Outlook is  initialized 15:17:29|Verbose| Method exit: Microsoft.Crm.Application.Outlook.Config.Validator.IsOutlookInitialized 15:17:29|   Info| Client Configuration Wizard Running Mode : Normal 15:17:29|   Info| Configuration file Type : OnPremise. 15:17:29|Verbose| Method entry: Microsoft.Crm.Application.Outlook.Config.ConfigInfo.ConfigInfo 15:17:29|Verbose| Method entry: Microsoft.Crm.Application.Outlook.Config.OutlookCRMDatastoreInstaller.GetAllCRMOrgsInOutlookProfile 15:17:29|   Info| Logon mapi store 15:17:29|   Info| Logon admin service 15:17:29|Verbose| Method entry: Microsoft.Crm.Application.Outlook.Config.OutlookCRMDatastoreInstaller.GetServiceIds 15:17:29|   Info| Query all rows in msg service table 15:17:29|Verbose| Method exit: Microsoft.Crm.Application.Outlook.Config.OutlookCRMDatastoreInstaller.GetServiceIds 15:17:29|Verbose| Method entry: Microsoft.Crm.Application.Outlook.Config.ConfigInfo.CleanUpDatastoreIfNeeded 15:17:29|Verbose| Method exit: Microsoft.Crm.Application.Outlook.Config.ConfigInfo.CleanUpDatastoreIfNeeded 15:17:29|Verbose| Method exit: Microsoft.Crm.Application.Outlook.Config.ConfigInfo.ConfigInfo 15:17:29|Verbose| Method entry: Microsoft.Crm.Application.Outlook.Config.ServerForm.ServerForm 15:17:29|Verbose| Method exit: Microsoft.Crm.Application.Outlook.Config.ServerForm.ServerForm 15:17:29|Verbose| Method entry: Microsoft.Crm.Application.Outlook.Config.ServerForm.SetUIData 15:17:29|Verbose| Method exit: Microsoft.Crm.Application.Outlook.Config.ServerForm.LoadAvailableUrls 15:17:29|Verbose| Method exit: Microsoft.Crm.Application.Outlook.Config.ServerForm.LoadAvailableUrls 15:17:29|Verbose| Method exit: Microsoft.Crm.Application.Outlook.Config.ServerForm.SetUIData 15:17:36|Verbose| Method entry: Microsoft.Crm.Application.Outlook.Config.ServerForm._testConnectionButton_Click 15:17:36|Verbose| Method entry: Microsoft.Crm.Application.Outlook.Config.ServerForm.TestConnection 15:17:36|Verbose| Method exit: Microsoft.Crm.Application.Outlook.Config.ServerForm.TestConnection 15:17:36|Verbose| Method exit: Microsoft.Crm.Application.Outlook.Config.ServerForm._testConnectionButton_Click 15:17:37|   Info| Fill organization comboBox with server information. 15:17:39|Verbose| Method entry: Microsoft.Crm.Application.Outlook.Config.ServerForm._okButton_Click 15:17:39|Verbose| Method exit: Microsoft.Crm.Application.Outlook.Config.ServerForm._okButton_Click 15:17:39|Verbose| Method entry: Microsoft.Crm.Application.Outlook.Config.ConfigEngine.Execute 15:17:39|Verbose| Method entry: Microsoft.Crm.Application.Outlook.Config.ConfigEngine.GetActionList 15:17:39|   Info| Action type : Add. 15:17:39|   Info| Add GlobalRepositoryConfigurator. 15:17:39|   Info| Add AddinConfigurator. 15:17:39|   Info| Add OrganizationRepositoryConfigurator. 15:17:39|   Info| Add PrimaryConfigurator. 15:17:39|   Info| Add OutlookConfigurator. 15:17:39|   Info| Add FinalConfiguratorConfigurator. 15:17:39|Verbose| Method exit: Microsoft.Crm.Application.Outlook.Config.ConfigEngine.GetActionList 15:17:39|   Info| Get action list. 15:17:39|   Info| Get action total progress : 55. 15:17:39|Verbose| Method entry: Microsoft.Crm.Application.Outlook.Config.ConfigEngine.GetActionEntry 15:17:39|   Info| Action command type : Add. 15:17:39|Verbose| Method entry: Microsoft.Crm.Application.Outlook.Config.ConfigEngine.Configure 15:17:39|Verbose| Method entry: Microsoft.Crm.Application.Outlook.Config.GlobalRepositoryConfigurator.Configure 15:17:39|Verbose| Method entry: Microsoft.Crm.Application.Outlook.Config.GlobalRepositoryConfigurator+DeleteUserApplicationFilesAction.DeleteUserApplicationFilesAction 15:17:39|Verbose| Method exit: Microsoft.Crm.Application.Outlook.Config.GlobalRepositoryConfigurator+DeleteUserApplicationFilesAction.DeleteUserApplicationFilesAction 15:17:39|   Info| Deleted user application files. 15:17:39|Verbose| Method entry: Microsoft.Crm.Application.Outlook.Config.GlobalRepositoryConfigurator.SetConfigurationRegistryValuesAction 15:17:39|Verbose| Method entry: Microsoft.Crm.Application.Outlook.Config.GlobalRepositoryConfigurator.SetClientRegistryDefaultSettings 15:17:39|   Info| Copied registry values created by setup in HKLM to HKCU on configuration 15:17:39|Verbose| Method exit: Microsoft.Crm.Application.Outlook.Config.GlobalRepositoryConfigurator.SetClientRegistryDefaultSettings 15:17:39|   Info| Set default settings to client configuration. 15:17:39|Verbose| Method entry: Microsoft.Crm.Application.Outlook.Config.GlobalRepositoryConfigurator.SetLaptopClientRegistryValues 15:17:39|Verbose| Method entry: Microsoft.Crm.Application.Outlook.Config.ConfigInfo.GetAspDotNetPath 15:17:39|   Info| ASP Net version key name : Software\Microsoft\ASP.NET\4.0.30319.0 15:17:39|   Info| ASP Net install path : C:\Windows\Microsoft.NET\Framework\v4.0.30319\ 15:17:39|Verbose| Method exit: Microsoft.Crm.Application.Outlook.Config.ConfigInfo.GetAspDotNetPath 15:17:39|   Info| Created Crm allow list key. 15:17:39|Verbose| Method exit: Microsoft.Crm.Application.Outlook.Config.GlobalRepositoryConfigurator.SetLaptopClientRegistryValues 15:17:39|   Info| Set laptop client registry key values. 15:17:39|Verbose| Method entry: Microsoft.Crm.Application.Outlook.Config.GlobalRepositoryConfigurator.SetPlatformRootAction 15:17:39|   Info| No extended chars in http://crmprod/SOGET/XRMServices/2011/Organization.svc were found. No need for short naming. 15:17:39|   Info| Set platform root registry keys. 15:17:39|Verbose| Method exit: Microsoft.Crm.Application.Outlook.Config.GlobalRepositoryConfigurator.SetPlatformRootAction 15:17:39|   Info| Set platform root key value. 15:17:39|   Info| Set user id registry key. 15:17:39|Verbose| Method exit: Microsoft.Crm.Application.Outlook.Config.GlobalRepositoryConfigurator.SetConfigurationRegistryValuesAction 15:17:39|   Info| Set configuration registry key values. 15:17:39|Verbose| Method entry: Microsoft.Crm.Application.Outlook.Config.GlobalRepositoryConfigurator.AddSQMRegkeysAndDirectory 15:17:39|   Info| Added SQM registry keys. 15:17:39|   Info| Added SQM queue directory. 15:17:39|Verbose| Method exit: Microsoft.Crm.Application.Outlook.Config.GlobalRepositoryConfigurator.AddSQMRegkeysAndDirectory 15:17:39|   Info| Added SQM registry key values and directory. 15:17:39|Verbose| Method exit: Microsoft.Crm.Application.Outlook.Config.GlobalRepositoryConfigurator.Configure 15:17:39|Verbose| Method entry: Microsoft.Crm.Application.Outlook.Config.AddinConfigurator.Configure 15:17:39|Verbose| Method entry: Microsoft.Crm.Application.Outlook.Config.AddinConfigurator.SetCrmRibbonAddinRegistryValuesAction 15:17:39|   Info| Enabled the crm ribbon addin keys under Software\Microsoft\Office\Outlook\Addins\crmaddin.RibbonAddin 15:17:39|Verbose| Method entry: Microsoft.Crm.Application.Outlook.Config.AddinConfigurator.RemoveCrmAddinOfficeResiliencyRegValuesAction 15:17:39|   Info| Deleted the resiliency keys under Software\Microsoft\Office 15:17:39|   Info| Deleted the resiliency keys under Software\Microsoft\Office 15:17:39|Verbose| Method exit: Microsoft.Crm.Application.Outlook.Config.AddinConfigurator.RemoveCrmAddinOfficeResiliencyRegValuesAction 15:17:39|Verbose| Method exit: Microsoft.Crm.Application.Outlook.Config.AddinConfigurator.SetCrmRibbonAddinRegistryValuesAction 15:17:39|Verbose| Method entry: Microsoft.Crm.Application.Outlook.Config.AddinConfigurator.SetFixedRegistryValuesAction 15:17:39|   Info| Registered the form region for IPM.Note in Office registry hive. 15:17:39|   Info| Registered the form region for IPM.Appointment in Office registry hive. 15:17:39|   Info| Registered the form region for CRM.Task in Office registry hive. 15:17:39|   Info| Registered the form region for CRM.Contact in Office registry hive. 15:17:39|Verbose| Method exit: Microsoft.Crm.Application.Outlook.Config.AddinConfigurator.SetFixedRegistryValuesAction 15:17:39|Verbose| Method entry: Microsoft.Crm.Application.Outlook.Config.AddinConfigurator.CreateIntegrationKey 15:17:39|   Info| Created Crm integrate key. 15:17:39|Verbose| Method exit: Microsoft.Crm.Application.Outlook.Config.AddinConfigurator.CreateIntegrationKey 15:17:39|Verbose| Method exit: Microsoft.Crm.Application.Outlook.Config.AddinConfigurator.Configure 15:17:39|Verbose| Method entry: Microsoft.Crm.Application.Outlook.Config.OrganizationRepositoryConfigurator.Configure 15:17:39|Verbose| Method entry: Microsoft.Crm.Application.Outlook.Config.OrganizationRepositoryConfigurator.SetContextValues 15:17:39|Verbose| Method exit: Microsoft.Crm.Application.Outlook.Config.OrganizationRepositoryConfigurator.SetContextValues 15:17:39|   Info| Set org-based registry values. 15:17:39|Verbose| Method exit: Microsoft.Crm.Application.Outlook.Config.OrganizationRepositoryConfigurator.Configure 15:17:39|Verbose| Method entry: Microsoft.Crm.Application.Outlook.Config.PrimaryConfigurator.Configure 15:17:39|Verbose| Method entry: Microsoft.Crm.Application.Outlook.Config.PrimaryConfigurator.SetPrimaryContextValues 15:17:39|Verbose| Method exit: Microsoft.Crm.Application.Outlook.Config.PrimaryConfigurator.SetPrimaryContextValues 15:17:39|   Info| Set Primary Org values. 15:17:39|Verbose| Method exit: Microsoft.Crm.Application.Outlook.Config.PrimaryConfigurator.Configure 15:17:39|Verbose| Method entry: Microsoft.Crm.Application.Outlook.Config.OutlookConfigurator.Configure 15:17:39|Verbose| Method entry: Microsoft.Crm.Application.Outlook.Config.OutlookCRMDatastoreInstaller.DeleteV4CrmDatastore 15:17:39|   Info| Logon mapi store 15:17:39|   Info| Logon admin service 15:17:39|Verbose| Method entry: Microsoft.Crm.Application.Outlook.Config.OutlookCRMDatastoreInstaller.GetCrmStoreServiceId 15:17:39|Verbose| Method entry: Microsoft.Crm.Application.Outlook.Config.OutlookCRMDatastoreInstaller.GetServiceIds 15:17:39|   Info| Query all rows in msg service table 15:17:39|Verbose| Method exit: Microsoft.Crm.Application.Outlook.Config.OutlookCRMDatastoreInstaller.GetServiceIds 15:17:39|Verbose| Method exit: Microsoft.Crm.Application.Outlook.Config.OutlookCRMDatastoreInstaller.GetCrmStoreServiceId 15:17:39|Verbose| Method exit: Microsoft.Crm.Application.Outlook.Config.OutlookCRMDatastoreInstaller.DeleteV4CrmDatastore 15:17:39|Verbose| Method entry: Microsoft.Crm.Application.Outlook.Config.OutlookConfigurator.InitializeMapiStoreForFirstTime 15:17:44|  Error| Exception : An unexpected error occurred.    at Microsoft.Crm.Application.Platform.ServiceCommands.PlatformCommand.XrmExecuteInternal()   at Microsoft.Crm.Application.Platform.ServiceCommands.RetrieveUserSettingsForCacheCommand.Execute()    at Microsoft.Crm.Caching.UserDataWebServiceCacheLoader.LoadCacheData(Guid key, IOrganizationContext context)    at Microsoft.Crm.Caching.ClientCacheLoaderProxy`2.LoadCacheData(TKey key, IOrganizationContext context)    at Microsoft.Crm.Caching.CrmMultiOrgCache`2.CreateEntry(TKey key, IOrganizationContext context)    at Microsoft.Crm.Caching.CrmMultiOrgCache`2.LookupEntry(TKey key, IOrganizationContext context)   at Microsoft.Crm.Application.Outlook.Config.OutlookConfigurator.InitializeMapiStoreForFirstTime()    at Microsoft.Crm.Application.Outlook.Config.OutlookConfigurator.Configure(IProgressEventHandler progressEventHandler)    at Microsoft.Crm.Application.Outlook.Config.ConfigEngine.Configure(Object stateInfo)

Merci d'avance pour votre aide 

Cordialement,

---

Thank you in advance for your helpSincerely,


Crm 2011: Custom workflow activity, errors when running in parallel

Hy

I have a Custom Workflow, which I can trigger on-demand. This workflows starts a sub-workflow. This sub-workflow starts a custom workflow activity (assembly).

When the Custom On-Demand Workflow is triggered more than once in a short period of time, when another instance is already running, we have several errors:

- InvalidPointer Exceptions
- ValidateOpen - Encountered disposed CrmDbConnection when it should not be disposed
- Unhandled Exception: Microsoft.Xrm.Sdk.InvalidPluginExecutionException: An error occurred in Inactivate.Execute during a service call: ValidateClosed - Db GetCreateConnection() should be closed on End
-...

So there seems to be problems when more than one instance is running in parallel. What could cause this problems?

Thanks for your help,

Peter

Is it possible to use the Profiler on a Silverlight Web Resource

I have seen that you can use the Visual Studio Profiler on a Silverlight project to determine which areas of code are running slowly. I have tried to attach this to the IE process running my Silverlight project in the same way that I attach the debugger, but no luck there.

Is attaching the Profiler in this way possible, and if so, what vital steps are missing?

Thanks :)

how to hide a section based on one of its field( not based on section name or count / based on one of its filed with in that section) in mscrm?

I have three fields in one section. i want to hide the total section based on any of the filed name with in that section. not based on section name or tab name.

I have CRM 4.0 code:

Xrm.Page.getAttribute("tls_resourcerate").parentElement.parentElement.parentElement.setVisible(false);

I want same type of implementation in mscrm 2011


hari

Cannot change settings using Visual Ribbon Editor

Hi,

I am attempting to add an alternative action to the Resolve button of a Case. I have successfully accomplished this on our development system but when attempting to edit the ribbon on the live system, these settings appear to be locked and cannot be changed. Does anyone know how I might do this?

Many thanks,

Dan 

Viewing all 10280 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>