Quantcast
Channel: Microsoft Dynamics CRM Forum - Recent Threads
Viewing all 46379 articles
Browse latest View live

Shall i skip the warning?

$
0
0

Hello Guys,

I am getting warning while exporting the solution.

the warning says the below components needs to be there in the target environment.

while checking those components i find that .

these are Web Resources of System Solution type.


An unsecured or incorrectly secured fault was received from the other party. See the inner FaultException for the fault code and detail.

$
0
0

We have a portal created in MVC and is hosted in Azure. This portal is connected to one of our CRM environment. When we connect our portal to our sandbox environment we can successfully login but when we connect it to our dev environment, we get the below error: 

  • An unsecured or incorrectly secured fault was received from the other party. See the inner FaultException for the fault code and detail.

Any hint on what could be the possible reason for this error? 

Workflow Id using JS

$
0
0

Hi all

I am using the following code to get the workflow Id but my code is not working

function getWorkflowId() {
    debugger;
    var workflowName = "List";//"0197a5a2-e574-49ac-8511-f1b50954ca52"
    var odataSelect = Xrm.Page.context.getServerUrl() + "/XRMServices/2011/OrganizationData.svc/WorkflowSet?$select=WorkflowId&$filter=StateCode/Value eq 1 and ParentWorkflowId/Id eq null and Name eq \'' + workflowName + '\'";
 
    var xmlHttp = new XMLHttpRequest();
    xmlHttp.open("GET", odataSelect, false);
    xmlHttp.send();
 
    if (xmlHttp.status == 200) {
        var result = xmlHttp.responseText;
 
        var xmlDoc = new ActiveXObject("Microsoft.XMLDOM");
        xmlDoc.async = false;
        xmlDoc.loadXML(result);
         
        return workFlowID = xmlDoc.getElementsByTagName("d:WorkflowId")[0].childNodes[0].nodeValue;
    }
}

Please suggest me Where am I wrong?

Thank You

SDK.Metadata.js - warning when run CRM 2013 customization validation tool

$
0
0

Hi,

I am upgrading CRM 2011 to CRM 2013.  I am using SDK.Metadata.js to get option set text but I am getting warning even I used SDK.Metadata.js from CRMSDK 2013 version.  Please find the warning and let me know will this make any issue while upgrading CRM2011 to CRM2013. Please inform if any other solution for this.

Does anyone have better solution for language based JavaScript code?

$
0
0

Hi,

I have a JavaScript function on Case form in which I am fetching BPF's active stage using XRM object. Below is skeleton of my code:

var activeStage = getActiveStage(); //Identify

if (activeStage === "Identify")

{

//perform some operations

}

It is working fine for English language, but when I change the language to another language, the condition fails.

Any solution ?

In worst case, I will have to create an array and based on language id I will pass the value.

Thanks in advance.

Goal Metric & Roll up query difference

$
0
0

Hi Community,

   I am quite new to ms crm and need suggestion on below points.

I am working on project where we follow users hierachy. We have Area Sales manager -> Sales Manager -> BDEs

  Child goals details would not be available in the data shared by client as they would set goals till SM only.

I have created one goal metric in which I have set Rollup fields and criteria. I need records created by SM and also the records created by BDEs under that SM. Without child goals for BDEs how can we achieve Target set and achievements. Can we define rollup query in such a way that we implement Rollup calculation based on user hierarchy.

Error when testing and enabling mailbox

$
0
0

I have tried numerous times to enable my mailbox without any success. Here is the synchronization method:

Incoming Email: Server-side synchronization or Email router

Outgoing Email: Server-side synchronization or Email router

Appointments, Contacts and Tasks: Server-side synchronization

Whenever I try to approve mailbox then test it and enable it, I get the following error:

"

mail cannot be received for the mailbox [My Mailbox]. Make sure that the credentials specified in the mailbox are correct and have sufficient permissions for receiving email. Then, enable the mailbox for email processing.
Email Server Error Code: Http server returned 401 Unauthorized exception"
My email address is exactly the same as the one I log into CRM with : *@*.onmicrosoft.com. And for "Allow to Use Credentials for Email Processing", I chose No.
Any idea why I am getting this error?. What is the solution?
P.S. I have read and tried so many microsoft pages on this error without any success

Outlook Client prompts for user name & Password

$
0
0

Hi,

Issues when chaning passwords on our clients; after which Outlook prompts for a new password. So far so good. After a while, however, users are again prompted for Username & Passwords, when redirected to domain - whereafter an error appears.

It can be solved via opening the CRM Config. Wizard, removing our company, and then let the CRM Client open up and run the Config. Wizard yet again. Then it works, but that is a hazzle to perform every time a password is changed.

The domain is added to security internet zones

IE is not set to fetch configuration settings  automatically in LAN Settings.

Thanks

David


activitypointer vs activity entity

$
0
0

Hi,

Would like to know is activitypointer's statecode value equal to the activity's statecode? 

Thanks.

Background Update workflow on account not working on CRM 2016 SP1.

$
0
0

Hi  all;

For some reason a dead simple Background Workflow updating an account does not do anything.

I could reproduce this in a vanilla online Trial that i downgraded to 2016 Sp1.

Any clues?

Upgrade CRM 2011 on premise to Dynamics CRM 365

$
0
0

Hello everyone,

I want to upgrade my on CRM 2011 on premise version to microsoft dynamics 365 crm, can anyone guide me how can i update this.

Navison to CRM issue-owner Name showing different

$
0
0

For customer 204684, this is Shevette Barnes’s account, but in CRM it shows under Janet Hoover

Is CRM 2011 SMTP compatible?

$
0
0

I'm presuming yes, as it uses the Exchange server for sending emails?

How to avoid multiple save on update?

$
0
0

Hi,

I'm using crm 2016 on-premise. Have a problem with multiple click's save button while updating record multiple requests send to server and some plug-in executing multiple times. What is the best way to avoid this on client-side or server side? This happens when save executing longer around 0.3s-0.5s. I tried to check plug-in executioncontext depth property but is only work on same transaction. "Save" button is standard crm button, there are no custom logic on client-side.

Upgrade CRM 2013 on premise to Dynamics 365 CRM online

$
0
0

Hi


Is it possible to move unmanaged solution from CRM 2013 to Dynamics 365 CRM online?


Sum the result from a LookupSet without using Custom Code because of RDL Sandboxing

$
0
0

Hi there,

In a Dynamics 365 Online environment, I've written a report which needs to establish the total number of records that are still Open and Within SLA. I have a field in my dataset called "SLAStatus" and it's value is set to OpenInSLA, OpenOutSLA, ClosedInSLA or ClosedOutSLA.

My approach is to use the LookupSet function, and return 0 or 1 depending on the value of the SLAStatus field.

As the LookuupSet function returns an array of values, I've then used the code from Salvo's blog (http://salvoz.com/blog/2013/05/27/sum-result-of-ssrs-lookupset-function/) to create the "SumLookup" function which then adds all the values in the resulting LookupSet array.

A complication is that my dataset is larger than 50,000 records, so I have split my datasets by their geographic location (called "CCC" - Client Care Centre) and thus have the resulting expression in my report:

=Sum(

Code.SumLookup(

LookupSet(Fields!CCC.Value, Fields!CCC.Value, iif(Fields!SLAStatus.Value = "OpenInSLA", 1, 0), "CCC_1")

) +

Code.SumLookup(

LookupSet(Fields!CCC.Value, Fields!CCC.Value,iif(Fields!SLAStatus.Value = "OpenInSLA", 1, 0),"CCC_2")

)

)

The above works perfectly, except I cannot upload this now to the Dynamics 365 Online platform, given the restriction of RDL Sandboxing which I've just discovered does not permit any custom code within an RDL file.

I've tried replicating the login of the custom SumLookup function within the actual expression, however no matter where I try to "sum" or "convert.todecimal" etc, I'm just not getting it right - I keep getting an error.

I've been toying with the idea of replacing all the "sum" login with merely a "countif", but haven't figured this out yet either.

Any and all suggestions welcomed!! :)

CRM On Premise 2015 SP1 - What mobile Apps Available

$
0
0

Hi,

We are looking to try using mobile apps in the business and we have setup our test environment to trial a few. What are the options available to me for CRM 2015 On Premise (Ideally MS offering) as the latest I don't think is compatible?

Team Members in Dynamics 365 - bulk data import

$
0
0

Team members are missing "bulk data import" functionality in new licenses. Does "bulk data import" mean here normal "impor data" -functionality ?

Maximum members a Marketing List can hold at any given time

$
0
0

Hi,

I am developing a marketing automation campaign and have a query regarding the amount of members a Marketing List can hold at any given time. I understand there is a limit on the number records that can be retrieved in one go but is there also a limit to how many members a Marketing List can hold?

I am planning on having one ML and a custom workflow to identify the members. Through the campaign automation the members would be removed once the tasks had completed but currently have a wait condition which holds them in the list until next phase. So I am unlikely to have more than 50,000 people added at one time but the list of members might end up going over 50,000. Is this ok or will it stop adding once the member count reaches 50,000?

Thanks

Unable to connect with dynamic 365 instance(version 8.2.x.x) using connector for Microsoft dynamics

$
0
0

Hi I am trying to integrate my dynamic 365 instance with NAV 2013 through a connector but while configuring it, I am getting an error "Unhandled thread exception caught. Metadata contains a reference that cannot be resolved: "organizationname.api.crm8.dynamics.com/.../organization.svc = wsdl0".

I want to know which URL should be passed in the adapter configuration for connecting it to dynamic 365 instance. Right now I am passing discovery service URL.

Thanks in advance

Viewing all 46379 articles
Browse latest View live


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