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

Workflow not triggering on field change

$
0
0

Hi All,

CRM workflow not working on field change, works on onsave of record 

but i need it on field change

If i use javascript field change the field Purchase timeframe is not available.


Opportunity Sales Process is not as per default

$
0
0

Hi Everyone,

The ideal Opportunity Sales Process should be

Qualify - Opportunity
Propose - Quote
Contract - Order
Close - Order

but my default Opportunity Sales Process is appearing as follows (I didn't make any changes)

Qualify  - Opportunity
Develop  - Opportunity
Propose - Opportunity
Close - Opportunity

However, Leads to Opportunity Sales Process is exactly the same as it should be

Qualify - Lead
Develop - Opportunity
Propose - Opportunity
Close - Opportunity

What am I missing or is this a bug?

CRM 365 outlook addin button are not visible some time.

$
0
0

Hello All Experts,

I need to know what is causing the issue, when i am in office the outlook addins and buttons like Track and Set Regarding are visible and when i am in travelling or at home then sometimes these buttons are disappear.

what can be the cause for this?

Changing the color of the Read Only footer

$
0
0

Is there a way to change the color of the gold Read Only bar across the bottom? I'd like to do this based on opportunity status. I tried inspecting the element and got "ms-crm-Form-StandaloneSection", but this changes both this bar and the header. I just want to change the Read Only bar. I know how to change form elements using web resources, I just need the name of this element.

how to enable mandatory for particular field (periodfrom and periodto )when i click on AMC check box in crm on premise ?

$
0
0

i want to enable mandatory for particular field (periodfrom and periodto )when i click on AMC check box ?

i want to automatic read record for 3 fields when i select contact person from account master in crm 2013 on premise

$
0
0

i want to automatic read record for 3 fields when i select contact person from account master

i need javascript for this solution .if anyone know about this please help me

Running Dynamics 365 on-premise on Azure VMs

$
0
0

I'm looking into the cost options for this.  Has anyone investigated this, or have this current setup? I'm getting the specs from here.

If so what size and which series Azure VMs did you use for Production and non-Production environments?

For production and non-production I'm looking at 2 x CRM, and 3 x SQL Servers (SQL/SSIS/SSRS) with production being higher spec'd.

Thanks

D365 Sales Hub: closing the opportunity do not trigger on state change event

$
0
0

Hi, 

Solving some issue I have found that when I close a opportunity record the registered "on state change" event is not triggered. The problem appears when I use Sales Hub (on D365 online) otherwise it is working fine.

If it is the expected behaviors I would like to know how can I execute JS function after close the opportunity record.

Thanks for any information.

Regards Mateusz


Unable to process request. - MS Teams Connector - Dynamics CRM

$
0
0

Hi Guys,

I wanted to connect MS Teams with Dynamics 365 CRM and got an error "Unable to process request. - ".  Do you know what went wrong? Is it possible to get logs? Are there any prerequisites for this Connection? 

If I try to connect to our Sandbox, it looks okay.

BR,

Miha

Prod

Sandbox

Global search is not showing the cases created by user

$
0
0

Hi experts,

In CRM Portal Global search I am not able to see cases which are created from portal I have enabled the site settings as well.

Please help

Thanks

Filtered on and Include drop downs are not showing on my Associated views in CRM 2016...

$
0
0

Hello,

In my CRM 2016 associated views I am not seeing the Filtered on: drop down and not seeing the Include: drop down area.  All I see is the grid.  How can I get this back?

Refresh HTML Web Resource after Save

$
0
0

Hi Experts,

I have an HTML web resource that loads during the onload of a form.  If the formtype is 1 it does not build anything otherwise the HTML web resource loads a table of data from the existing record.

It looks like the behavior of the save on a form does not load the HTML web resource without trickery.

I put the following code in my OnSave of my form but the alert in my HTML web resource that says "HI" is not showing.  Any guidance would be appreciated.

OnSave runs:

function refreshWebResArea() {
    var webResArea = Xrm.Page.ui.controls.get("WebResource_ContractChangeStatusBar");
    webResArea.setSrc(webResArea.getSrc());
}


How to set permission in specific tab

$
0
0

I have a form that can be used by all users, in that form I have a tab, all users can watch that tab, but only a specific team can edit that tab.
I didn't find an option to restrict the use of that tab In crm permissions section management, so I turn to JS for a solution, I need to know how to "catch" that tab, how to know that a user clicked on it or using it - is there a xrm option to get it ?

On the other side if there is an option to restrict permissions to a tab using crm permission managment I would like to know where and how to use it.

Many thanks 

Syncing Data from CRM to Portal taking too much time

$
0
0

Hi All,

Is there any setting from where we can reduce the syncing time of data from CRM to Portal?

Thanks,

Shahbaaz

Values Set By Business Rules Not Showing In Views

$
0
0

Hi

We have some business rules which set values in optionsets based on the value of another field. When you look at the entity record the value is set correctly. 

We have some records that have been exported, had the value changed that triggers the business rule and then re-imported. On looking at the record after import the business rule has set the value correctly. However if that record is include in the results of a view the value shows as blank. Records that are created from new show the value in the view. 

Anyone know what is going on here

Thanks 

Jon


Using crm images in HTML webresource

$
0
0

Crm images can be found at SDK\Resources\Images. How do I include them in a HTML webresource? Do I have to import it as an image webresource and reference that or are they already in CRM? If so, What is the path to access them from a HTML webresource?

Microsfot.Crm.Application.Outlook.TelemetryService takes 30% CPU load, MS Outlook 2016 menu stop working

$
0
0

It happens when one or more messages are openned and some of them has hyperlink to internet inside.

Outlook menu starts cyclicaly refresh ribbon and menu tree and Outlook is not running till restart.

Thanks for suggestion od sollution.

Jiri

Loop through a WebApi Result

$
0
0

Anytime, I try to loop the WebAPI(Json result), I always get the first value in the api printed the number of count of the result.

If I have 50 results in the Web Api query the first company(eg. ABC Corp) will be printed 50x. 

Here is a sample code below, I am using to test from https://github.com/davidyack/Xrm.Tools.CRMWebAPI/tree/master/dotnet:

string fetchXml = "<fetch mapping='logical'><entity name='account'><attribute name='accountid'/><attribute name='name'/></entity></fetch>";

var fetchResults = await api .Result.Item2.GetList("accounts", QueryOptions: new CRMGetListOptions() { FetchXml = fetchXml });

foreach (var record in fetchResults.List){
      foreach (var account in record){
         _accountRecord.accountIdNumber = account.Value.ToString();
         _account.Add(_accountRecord);
                             }
                     }

I would like to be able to pint out each company/account name our DynamicsCrmOnline.


Thank you in advance,

Synchronizing mailbox to CRM Queue - NOT WORKING

$
0
0

Hi CRM World,

I am facing an issue with synchronizing a shared mailbox (which is on-prem) to my CRM (Dynamics 365 online) Queue. I am not able to find a solution to debug this issue. Please help me.

1. Since it is shared mailbox, i haven't created any user, haven't assigned a CRM license for the shared mailbox in my CRM.

2. My global admin approved email. When i click test and enable mailbox i get error on both incoming and outgoing emails.

Outgoing error: A general mailbox access error occurred while sending the email message "Test Message". Mailbox Customer Service didn't synchronize. The owner of the associated email server profile Microsoft Exchange Online has been notified.

Incoming error: Email can't be received for the mailbox Customer Service because the mailbox record doesn't have a valid email address. The mailbox didn't synchronize. A notification about this is posted on the alerts wall for the owner of the email server profile Microsoft Exchange Online.

How User Power Shell in CRM Server?? - Create a New Key

$
0
0

Hello everybody!

I've asked somes post agos "How Configurate Email Sending with http web" and there was this two steps of answer:

  1. On the CRM server, create a new key called 'AllowCredentialsEntryViaNonSecureChannels' and set it to 1

  2. then, on the CRM Server, run this Powershell script:
    Add-PSSnapin Microsoft.Crm.PowerShell
    $setting = Get-CrmSetting ServerSideSyncEmailSettings
    $setting.AllowCredentialsEntryViaNonSecureChannels=$True
    Set-CrmSetting $setting
    Get-CrmSetting TraceSettings


    But I enter in PowerShell and it gave me an error, I've made a search about that and everyones has the same script....
    So, How I'ld use PowerShell to make that? Can Show with Photos?






Viewing all 46379 articles
Browse latest View live


Latest Images

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