Hello,
Does anyone have a good and clear example on how to create a custom javascript rule that enables or disables a custom ribbon button Asynchronously to increase loading performance?
Thank you.
Hello,
Does anyone have a good and clear example on how to create a custom javascript rule that enables or disables a custom ribbon button Asynchronously to increase loading performance?
Thank you.
I have created a custom action using CodeActivity assembly and it processes various Operations.
When I execute this action, it is taking more time to complete the operation near about more than one hour. The more time is taking since I am processing more than 10000 records as per my requirement.
So, this action takes more than one hour to complete the process then it won't get back response. But, process completing successfully without any error.
But, if process completes with 30-40 minutes then it is giving response.
Can any one know to increase the response time of Custom Action ?
Also, in the past this custom action was working well with processing more than one hour. But, recently, this issue get started. I think something at CRM Server settings changed.
Let me know If any one know, what I have to check at CRM Server setting to identity this issue ?
CRM is IFD.
I am getting this error in my Expense category whenever I select Vendor Name. They are link.
function makeRequest(method, url) { return new Promise(function (resolve, reject) { var xhr = new XMLHttpRequest(); xhr.open(method, url); xhr.setRequestHeader("OData-MaxVersion", "4.0"); xhr.setRequestHeader("OData-Version", "4.0"); xhr.setRequestHeader("Accept", "application/json"); xhr.setRequestHeader("Content-Type", "application/json; charset=utf-8"); xhr.onload = function () { if (this.status >= 200 && this.status < 300) { resolve(xhr.response); } else { reject({ status: this.status, statusText: xhr.statusText }); } }; xhr.onerror = function () { reject({ status: this.status, statusText: xhr.statusText }); }; xhr.send(); }); } function setExpenseCategorybasedonVendor() { var lookup1 = Xrm.Page.getAttribute("cse_vendor_name").getValue()[0].id; var clientUrl = Xrm.Page.context.getClientUrl(); var query = clientUrl + "/api/data/v8.0/cse_vendormasters(" + lookup1.slice(1, -1) + ")?$select=_cse_expense_category_value"; makeRequest('GET', query) .then(function (res) { var res2 = JSON.parse(res); var guid = res2._cse_expense_category_value; var query2 = clientUrl + "/api/data/v8.0/cse_expensemasters(" + guid + ")?$select=cse_name"; makeRequest('GET', query2) .then(function (response) { var res3 = JSON.parse(response); var value = new Array(); value[0] = new Object(); value[0].id = guid; value[0].name = res3.cse_name; value[0].entityType = "cse_expensemasters"; Xrm.Page.getAttribute("cse_expense_category").setValue(value); }) .catch(function (err) { console.error('there was an error!', err.statusText); }); }) .catch(function (err) { console.error(' there was an error!', err.statusText); }); }
So I have a Vendor name Lookup field and whenever I select a value for that it will fill the expense category lookup. So my problem is when I clear the Vendor Name lookup, I'm getting this error "TypeError: Cannot read property '0' of null at setExpenseCategorybasedonVendor".
Already tried this clear the value of expense category
lookup1.reset(); value.reset(); cse_expense_category_value.reset(); cse_expense_category_value.clear(); nullcse_expense_category_value.setValue(""); cse_expense_category_value.setValue(null); document.getElementById("cse_expense_category").reset(); document.getElementById("cse_expense_category").null(); document.getElementById("cse_expense_category").clear(); document.getElementById("cse_expense_category").setValue(""); document.getElementById("cse_expense_category").setValue(null); Xrm.Page.getElementById("cse_expense_category").reset(); Xrm.Page.getElementById("cse_expense_category").clear(); Xrm.Page.getElementById("cse_expense_category").null(); Xrm.Page.getElementById("cse_expense_category").setValue(""); Xrm.Page.getElementById("cse_expense_category").setValue(null);
My full code
function makeRequest(method, url) { return new Promise(function (resolve, reject) { var xhr = new XMLHttpRequest(); xhr.open(method, url); xhr.setRequestHeader("OData-MaxVersion", "4.0"); xhr.setRequestHeader("OData-Version", "4.0"); xhr.setRequestHeader("Accept", "application/json"); xhr.setRequestHeader("Content-Type", "application/json; charset=utf-8"); xhr.onload = function () { if (this.status >= 200 && this.status < 300) { resolve(xhr.response); } else { reject({ status: this.status, statusText: xhr.statusText }); } }; xhr.onerror = function () { reject({ status: this.status, statusText: xhr.statusText }); }; xhr.send(); }); } function setExpenseCategorybasedonVendor() { var lookup1 = Xrm.Page.getAttribute("cse_vendor_name").getValue()[0].id; var clientUrl = Xrm.Page.context.getClientUrl(); var query = clientUrl + "/api/data/v8.0/cse_vendormasters(" + lookup1.slice(1, -1) + ")?$select=_cse_expense_category_value"; makeRequest('GET', query) .then(function (res) { var res2 = JSON.parse(res); var guid = res2._cse_expense_category_value; var query2 = clientUrl + "/api/data/v8.0/cse_expensemasters(" + guid + ")? $select=cse_name"; makeRequest('GET', query2) .then(function (response) { var res3 = JSON.parse(response); var value = new Array(); value[0] = new Object(); value[0].id = guid; value[0].name = res3.cse_name; value[0].entityType = "cse_expensemasters"; if (lookup1 != null){ Xrm.Page.getAttribute("cse_expense_category").setValue(value); Xrm.Page.getControl("cse_expense_category").setFocus(); Xrm.Page.getControl("cse_amount").setFocus(); } else{ Xrm.Page.getElementById("cse_expense_category").clear(); } }) .catch(function (err) { console.error('there was an error!', err.statusText); }); }) .catch(function (err) { console.error(' there was an error!', err.statusText); }); }
Can we import an Organization unit of size 3.1 TB into CRM 2011 instance by deployment manager?
Will the Application hangs?
If no, what is other way to import this huge amount of organization unit into newly installed CRM 2011 instance?
Regards ,
Raj
Hi
I'm working on an Data Vault project and need to bring in the ActivityParty table.
My problem is that each PartyId could have come from a different entity.
I need to know which Entity that PartyId comes from. i.e. Is it a contact or an account ?
There is probably a property that could be used. Does anyone know what I should add to the following FetchXML to add the entity that provided the partyid/partyname ?
<fetch mapping='logical'><entity name='activityparty'><attribute name='activityid'/><attribute name='activitypartyid'/><attribute name='partyid'/><attribute name='partyidname'/><attribute name='versionnumber'/><filter><condition attribute='versionnumber' operator='gt' value="@[User::v_ExtractNextStartVersionNumber]"></condition></filter></entity></fetch>
Thanks,
Jason
I have a weird problem that we only noticed recently.
On Cases if we choose the three dots to show the additional menu it will not allow us to select any of the sub menus.
We want to choose Word Templates to be able to choose a saved template we have but it flashes the list of templates for a second and then highlights the first item on the root menu without giving any time to select what you want.
This happens with all submenus like 'Run Reports', 'Other Activates' etc. It shows the contents of the submenu but it does not give time to select the items on it.
The problem is limited to the menu when you have an active case open and it has been tested on several different browser types on several different machines so we can rule out machine or browser error.
Anyone else come across a problem like this or found a fix?
I have a call logged with Microsoft but I can't wait weeks for them to reply.
Thanks,
Carl.
Hi ,
Can some one tell me what is the out of box algorithm/technique used in Dynamics CRM for sorting.
Please suggest useful pages and articles related to this.
Thanks
Hi,
Is there a way in SQL to retrive all the entities and thier relationShips?
Thanks!
I am trying to default the field Unit to the Lookup value of 'KG' on Quote Products. I have tried the following 2 methods and neither seem to work. Could someone please advise.
Method 1:
function SetDefaultUnit() {
//Create an array to set as the DataValue for the lookup control.
var lookupData1 = new Array();
//Create an Object add to the array.
var lookupItem1= new Object();
//Set the id, typename, and name properties to the object.
lookupItem1.id = '{DD0CD04E-6D92-E311-86C4-00505688378E}';
lookupItem1.typename = 'uom';
lookupItem1.name = 'KG';
// Add the object to the array.
lookupData1[0] = lookupItem1;
// Set the value of the lookup field to the value of the array.
crmForm.all.defaultuomid.DataValue = lookupData1
}
Method 2:
if (Xrm.Page.getAttribute("uomid").getValue() == null)
{
var lookupData = new Array();
var lookupItem= new Object();
lookupItem.id = '{DD0CD04E-6D92-E311-86C4-00505688378E}';
lookupItem.entityType = 'uom';
lookupItem.name = 'KG';
// Add the object to the array.
lookupData[0] = lookupItem;
// Set the value of the lookup field to the value of the array.
Xrm.Page.getAttribute("uomid").setValue() =lookupData;
Xrm.Page.getAttribute("uomid").setSubmitMode("always");
alert(lookupData);
}
Hi
How i can install Dynamic Crm 2011 . Do i need Windows Server or it can be installed on Windows 7. Secondly is there any Dynamic CRM Version which can be used for Trial online like Salesforce.
Thanks
Hello everyone,
I try to understand the best way to work with multiple locations in the account-entity.
We have to manage several accounts with multiple locations. However, I don't want to add several sub-accounts as all the opportunities, addresses and so on should be managed and seen in one place. I also would like to have the option to choose a location (address) for each contact that works in the respective company without having duplicates stored in the contact-entity. That way, I only would need to update one record if a location changes.
What is the best practice to handle that requirement?
Thank you in advance and best regards!
Hi,
I am currently on a project that will implement a MS Dynamics CRM Case Mgmt solution on Dynamics 2015 (on-premise) hosted in a private cloud, WITH NO ACCESS TO THE EXTERNAL INTERNET.
However, the client also wants Web Forms, to be developed using ADX Studio Portals, which external customers (on the Internet) will have access to, but not directly to the CRM instance in the aforementioned private cloud. In addition, ADX Studio can not be housed in the same private cloud as the MS Dynamics CRM solution.
Any suggestions on:
1.) How to setup the development environment so that ADX Studio Portals can be developed in a separate environment than that of the MS Dynamics CRM development and/or production environments... both of which are in a private cloud?
2.) How to setup the production environment, such that the ADX Portal (sitting on a Webserver) doesn't directly directly connect to the private cloud. In other words, the Webserver that houses the Webform (developed by ADX Studio Portal) will need to connect to a server (likely virtual) behind the organization firewall and then once behind the firewall, only then connect to the private cloud (hosting the MS Dynamics CRM solution).
You help would be much appreciated,
S.
Dear friends,
I have learned Salesforce CRM and have completed couple of volunteer projects, but I see only requirements for MS CRM developer/MS NAV/ AX in my current location, so I am thinking of learning once on those product, I am basically from manual testing background, know little bit basic C and K shell scripting. I have reached other forums (AX/NAV) to see what skills needs to learn those, I would like to know
1) what to learn first in order to become MS CRM developer?
2) how can i setup practice environment at home to practice the CRM development?
3) is there any non-profit org available to get volunteer projects like Salesforce?
4) can we find any free projects online to try it on our own?
any help on this would be really appreciated?
thanks,
We're using PowerWebForm from Power Objects to get the details of our leads into CRM. I've created a workflow that then sets the Territory, Region and Currency based on the Country, and in the case of the United States, which state the lead has come from. However, the process doesn't seem to be working. I thought having the process start after the record is created would do the trick but obviously not, any suggestions would be greatly appreciated.
The Orgainzation update fails with below error
06:07:50| Info| Applying latest dbUpdates to organization. Id=6c0bd087-8512-438b-89a3-0d1d450d7cb4, UniqueName=CRM.
06:08:20| Info| CrmAction execution time; InstallDatabaseUpdatesAction; 00:00:30.7941678
06:08:20| Error| Installer Complete: OrganizationDatabaseHotFixer - Error encountered
06:08:20| Error| Exception occured during Microsoft.Crm.Tools.Admin.OrganizationDatabaseHotFixer: Error.ActionFailed Microsoft.Crm.Tools.Admin.InstallDatabaseUpdatesAction
InnerException:
System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> Microsoft.Crm.CrmException: Error installing sp with name=t_ComponentSetTable
Cannot drop type 'dbo.t_ComponentSetTable' because it is being referenced by object 'p_RetrieveMultipleDirectAncestors'. There may be other objects that reference this type. ---> System.Data.SqlClient.SqlException: Cannot drop type 'dbo.t_ComponentSetTable' because it is being referenced by object 'p_RetrieveMultipleDirectAncestors'. There may be other objects that reference this type.
at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
at System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
at System.Data.SqlClient.SqlCommand.RunExecuteNonQueryTds(String methodName, Boolean async, Int32 timeout, Boolean asyncWrite)
at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(TaskCompletionSource`1 completion, String methodName, Boolean sendToPipe, Int32 timeout, Boolean asyncWrite)
at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
at Microsoft.Crm.CrmDbConnection.InternalExecuteWithRetry[TResult](Func`1 ExecuteMethod, IDbCommand command)
at Microsoft.Crm.CrmDbConnection.InternalExecuteNonQuery(IDbCommand command, Boolean capturePerfTrace)
at Microsoft.Crm.Metadata.SqlHelper.ExecuteBatches(IDbCommand sqlCommand, String sqlScript)
at Microsoft.Crm.Setup.StoredProcedureService.InstallStoredProcedureInternal(StoredProcedureData spData, SqlExecutionContext sqlContext)
--- End of inner exception stack trace ---
at Microsoft.Crm.Setup.StoredProcedureService.InstallStoredProcedureInternal(StoredProcedureData spData, SqlExecutionContext sqlContext)
at Microsoft.Crm.Setup.StoredProcedureService.InstallStoredProceduresInternal(String targetType, String databaseName, String catalogXmlFile, Boolean dropExistingProceduresFirst, Boolean startTransaction, InstallationSequences installationSequenceNumber)
at Microsoft.Crm.Setup.StoredProcedureService.InstallStoredProceduresUpdate(String targetType, String databaseName, String catalogXmlFile)
--- End of inner exception stack trace ---
at System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
at System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments)
at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
at System.RuntimeType.InvokeMember(String name, BindingFlags bindingFlags, Binder binder, Object target, Object[] providedArgs, ParameterModifier[] modifiers, CultureInfo culture, String[] namedParams)
at Microsoft.Crm.Setup.Database.DllMethodAction.Execute(Guid organizationId, Nullable`1 operationType)
at Microsoft.Crm.Setup.Database.DatabaseInstaller.ExecuteReleases(ReleaseInfo releaseInfo, Boolean isInstall)
at Microsoft.Crm.Setup.Database.DatabaseInstaller.Install(Int32 languageCode, String configurationFilePath, Boolean upgradeDatabase, Boolean isInstall)
at Microsoft.Crm.Setup.Database.DatabaseInstaller.InstallUpdate(String configurationFilePath, Boolean upgradeDatabase)
at Microsoft.Crm.Setup.Common.Update.DBUpdateDatabaseInstaller.ApplyDBUpdates(Guid orgId, Nullable`1 operationType)
at Microsoft.Crm.Tools.Admin.InstallDatabaseUpdatesAction.ApplyDBUpdatesInternal(Guid orgId, String orgUniqueName, String releaseFilePath, Boolean ignoreErrors, OrganizationOperationType operationType)
at Microsoft.Crm.Tools.Admin.InstallDatabaseUpdatesAction.ApplyDBUpdates(Guid orgId, String orgUniqueName, OrganizationOperationType operationType)
at Microsoft.Crm.Tools.Admin.InstallDatabaseUpdatesAction.Do(IDictionary parameters)
at Microsoft.Crm.Setup.Shared.CrmAction.ExecuteAction(CrmAction action, IDictionary parameters, Boolean undo)
InnerException:
Microsoft.Crm.CrmException: Error installing sp with name=t_ComponentSetTable
Cannot drop type 'dbo.t_ComponentSetTable' because it is being referenced by object 'p_RetrieveMultipleDirectAncestors'. There may be other objects that reference this type. ---> System.Data.SqlClient.SqlException: Cannot drop type 'dbo.t_ComponentSetTable' because it is being referenced by object 'p_RetrieveMultipleDirectAncestors'. There may be other objects that reference this type.
at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
at System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
at System.Data.SqlClient.SqlCommand.RunExecuteNonQueryTds(String methodName, Boolean async, Int32 timeout, Boolean asyncWrite)
at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(TaskCompletionSource`1 completion, String methodName, Boolean sendToPipe, Int32 timeout, Boolean asyncWrite)
at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
at Microsoft.Crm.CrmDbConnection.InternalExecuteWithRetry[TResult](Func`1 ExecuteMethod, IDbCommand command)
at Microsoft.Crm.CrmDbConnection.InternalExecuteNonQuery(IDbCommand command, Boolean capturePerfTrace)
at Microsoft.Crm.Metadata.SqlHelper.ExecuteBatches(IDbCommand sqlCommand, String sqlScript)
at Microsoft.Crm.Setup.StoredProcedureService.InstallStoredProcedureInternal(StoredProcedureData spData, SqlExecutionContext sqlContext)
--- End of inner exception stack trace ---
at Microsoft.Crm.Setup.StoredProcedureService.InstallStoredProcedureInternal(StoredProcedureData spData, SqlExecutionContext sqlContext)
at Microsoft.Crm.Setup.StoredProcedureService.InstallStoredProceduresInternal(String targetType, String databaseName, String catalogXmlFile, Boolean dropExistingProceduresFirst, Boolean startTransaction, InstallationSequences installationSequenceNumber)
at Microsoft.Crm.Setup.StoredProcedureService.InstallStoredProceduresUpdate(String targetType, String databaseName, String catalogXmlFile)
InnerException:
System.Data.SqlClient.SqlException (0x80131904): Cannot drop type 'dbo.t_ComponentSetTable' because it is being referenced by object 'p_RetrieveMultipleDirectAncestors'. There may be other objects that reference this type.
at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
at System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
at System.Data.SqlClient.SqlCommand.RunExecuteNonQueryTds(String methodName, Boolean async, Int32 timeout, Boolean asyncWrite)
at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(TaskCompletionSource`1 completion, String methodName, Boolean sendToPipe, Int32 timeout, Boolean asyncWrite)
at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
at Microsoft.Crm.CrmDbConnection.InternalExecuteWithRetry[TResult](Func`1 ExecuteMethod, IDbCommand command)
at Microsoft.Crm.CrmDbConnection.InternalExecuteNonQuery(IDbCommand command, Boolean capturePerfTrace)
at Microsoft.Crm.Metadata.SqlHelper.ExecuteBatches(IDbCommand sqlCommand, String sqlScript)
at Microsoft.Crm.Setup.StoredProcedureService.InstallStoredProcedureInternal(StoredProcedureData spData, SqlExecutionContext sqlContext)
ClientConnectionId:42aef1b7-802e-4436-a4f4-13ff917ca1d2
Error Number:3732,State:1,Class:16
06:08:20| Info| Setting organization state. New state = Failed
06:08:21| Error| Update Organization with Id=6c0bd087-8512-438b-89a3-0d1d450d7cb4 failed with Exception:
System.Exception: Error.ActionFailed Microsoft.Crm.Tools.Admin.InstallDatabaseUpdatesAction ---> System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> Microsoft.Crm.CrmException: Error installing sp with name=t_ComponentSetTable
Cannot drop type 'dbo.t_ComponentSetTable' because it is being referenced by object 'p_RetrieveMultipleDirectAncestors'. There may be other objects that reference this type. ---> System.Data.SqlClient.SqlException: Cannot drop type 'dbo.t_ComponentSetTable' because it is being referenced by object 'p_RetrieveMultipleDirectAncestors'. There may be other objects that reference this type.
at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
at System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
at System.Data.SqlClient.SqlCommand.RunExecuteNonQueryTds(String methodName, Boolean async, Int32 timeout, Boolean asyncWrite)
at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(TaskCompletionSource`1 completion, String methodName, Boolean sendToPipe, Int32 timeout, Boolean asyncWrite)
at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
at Microsoft.Crm.CrmDbConnection.InternalExecuteWithRetry[TResult](Func`1 ExecuteMethod, IDbCommand command)
at Microsoft.Crm.CrmDbConnection.InternalExecuteNonQuery(IDbCommand command, Boolean capturePerfTrace)
at Microsoft.Crm.Metadata.SqlHelper.ExecuteBatches(IDbCommand sqlCommand, String sqlScript)
at Microsoft.Crm.Setup.StoredProcedureService.InstallStoredProcedureInternal(StoredProcedureData spData, SqlExecutionContext sqlContext)
--- End of inner exception stack trace ---
at Microsoft.Crm.Setup.StoredProcedureService.InstallStoredProcedureInternal(StoredProcedureData spData, SqlExecutionContext sqlContext)
at Microsoft.Crm.Setup.StoredProcedureService.InstallStoredProceduresInternal(String targetType, String databaseName, String catalogXmlFile, Boolean dropExistingProceduresFirst, Boolean startTransaction, InstallationSequences installationSequenceNumber)
at Microsoft.Crm.Setup.StoredProcedureService.InstallStoredProceduresUpdate(String targetType, String databaseName, String catalogXmlFile)
--- End of inner exception stack trace ---
at System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
at System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments)
at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
at System.RuntimeType.InvokeMember(String name, BindingFlags bindingFlags, Binder binder, Object target, Object[] providedArgs, ParameterModifier[] modifiers, CultureInfo culture, String[] namedParams)
at Microsoft.Crm.Setup.Database.DllMethodAction.Execute(Guid organizationId, Nullable`1 operationType)
at Microsoft.Crm.Setup.Database.DatabaseInstaller.ExecuteReleases(ReleaseInfo releaseInfo, Boolean isInstall)
at Microsoft.Crm.Setup.Database.DatabaseInstaller.Install(Int32 languageCode, String configurationFilePath, Boolean upgradeDatabase, Boolean isInstall)
at Microsoft.Crm.Setup.Database.DatabaseInstaller.InstallUpdate(String configurationFilePath, Boolean upgradeDatabase)
at Microsoft.Crm.Setup.Common.Update.DBUpdateDatabaseInstaller.ApplyDBUpdates(Guid orgId, Nullable`1 operationType)
at Microsoft.Crm.Tools.Admin.InstallDatabaseUpdatesAction.ApplyDBUpdatesInternal(Guid orgId, String orgUniqueName, String releaseFilePath, Boolean ignoreErrors, OrganizationOperationType operationType)
at Microsoft.Crm.Tools.Admin.InstallDatabaseUpdatesAction.ApplyDBUpdates(Guid orgId, String orgUniqueName, OrganizationOperationType operationType)
at Microsoft.Crm.Tools.Admin.InstallDatabaseUpdatesAction.Do(IDictionary parameters)
at Microsoft.Crm.Setup.Shared.CrmAction.ExecuteAction(CrmAction action, IDictionary parameters, Boolean undo)
--- End of inner exception stack trace ---
at Microsoft.Crm.Setup.Shared.CrmAction.ExecuteAction(CrmAction action, IDictionary parameters, Boolean undo)
at Microsoft.Crm.Setup.Shared.Installer.Install(IDictionary stateSaver)
at Microsoft.Crm.Tools.Admin.OrganizationOperation.Install(IDictionary stateSaver)
at Microsoft.Crm.Tools.Admin.OrganizationOperation.Execute()
at Microsoft.Crm.Tools.Admin.OrganizationDatabaseHotFixer.Execute()
at Microsoft.Crm.Tools.Admin.ApplyDatabaseHotFixInstaller.ApplyDatabaseHotFix(IApplyDatabaseHotFixInfo applyDatabaseHotFixInfo)
06:08:21| Info| Found the older table DBUpdateInstallInfo_V5, updating new table and deleting
06:08:21| Info| GetDBUpdateRevisionThresholdForServer(): Threshold = 8.1.0000.0359.
HI Friends,
my task is when ever create a account record one task will be created in task entity but it will develop with
workflow and plugin and javascript these three are possible which one i have select ? why? please somebody help me.
Regards,
Naresh.
Hi All,
I have an CRM dynamics personal account and when I try to login it always says "We don't recognize this user ID or password". But in different system I am able to login.
I am not getting what's the actual issue is. And I don't want to login with school or business account. I need ti login through personal account.
Can some one help me out in resolving this issue ?
Thanks,
Manjunatha R
Trying to increase the frequency in which the goals are recalculated. By default the goals rollup every 24 hours. I would like to have it at least once an hour. I'm using the msdyncrmWorkflowTools (1.0.36.0):Goal Recalculate within a workflow to do the work. Would there be a way to use JavaScript to kick off a workflow every hour based on the system time. I have tried scheduling the Bulk Delete jobs, and due to the restriction that the earliest the next time would be 7 days later I had to create a recurring job for each time it was supposed to run that day ( 8am, 9am, 10am, 11am, 12pm, 1pm, 2pm, 3pm, 4pm, 5pm, 6pm, 7pm), and repeated that for each day. That was a lot of work, and still couldn't get it to work. Does anybody have a simpler solution?
Dear Exports,
1.I am Using Kendo Html Grid
1.Here i Have Place Some Columns Like Bellow
2.Here Actor Column is Lead Lookup for that here i have written bellow code
columnArray.push(
{
name: "pcl_typeofdealer",
type: "EntityReference",
required: true,
editable: true,
title: "Actor",
width: "45px",
editor: TypeofDealer
});
function TypeofDealer(container, options) {
jQuery('<input data-text-field="name" data-value-field="id" data-bind="value:' + options.field + '"/>')
.appendTo(container)
.kendoDropDownList(
{
dataTextField: "name",
dataValueField: "id",
serverFiltering: true,
dataSource: RetrieveEntityReferenceMetaDataTOD(options.field),
optionLabel: {
id: "",
name: "",
logicalName: "",
type: "EntityReference"
}
});
}
3. As per my Requirement i need to Get the Lead,Contact and Account in a same Actor Column.
Can any one Please help me
Thanks and Regards
Shankar