Dynamics 365 keeps opening the sign in page in the new tab

Nishant Rana's Weblog

We all have faced this issue where Dynamics 365 keeps opening the login page in the new tab.


If we check the URL it is basically redirecting to

Below URL à

To disable this behaviour for all the users, disable the learning path.

Set Enable Learning Path as No.

For individual user, select Opt Out of Learning Path from Personal Options.

https://docs.microsoft.com/en-us/previous-versions/dynamicscrm-2016/admins-customizers-dynamics-365/mt826648(v=crm.8)?redirectedfrom=MSDN

For Internet Explorer (without changing above settings)

http://ronaldlemmen.blogspot.com/2017/02/unlimited-redirects-or-popups-to.html

Hope it helps..

View original post

Advertisement

Add Dynamics 365 Marketing Trial To Your Instance

Passion Dynamics

 

Here is the step by step process for adding Dynamics 365 Marketing to your dynamics 365 instance.
You can sign up for, install, and use a trial version of Dynamics 365 Marketing for free. Trials last for 30 days.

Few important points to remember :

  • You will receive a trial Dynamics 365 instance together with your Marketing trial. You must run the Marketing trial on a trial instance, and can’t install it on a production instance.
  • You can’t convert a trial instance into a production instance.
  • You can install, at most, one Dynamics 365 Marketing trial per Microsoft 365 tenant.
  1. Go to the admin platform of your tenant:  https://admin.powerplatform.microsoft.com/  
    Expand Admin centers and click on Dynamics 365:
    1
  2. In Dynamics 365 Admin centre, click on Applications tab  –> Select Dynamics 365 Marketing Application  –> Click on Manage:
    2
  3. Otherwise access this url directly :  https://port.crm8.dynamics.com/G/Applications 
    [Replace crm8 with appropriate region]. Follow…

View original post 168 more words

How to get ObjectTypeCode and LogicalName of all Entities in Dynamics CRM using Web API?

In my earlier article, i have explained,

How to get list of all Entities Display Name, Logical Name and Other info using SQL Query in MSCRM?

Now, follow the below steps to get all Entities Logical Names and Object Type Codes in Dynamics CRM Online or On-premises.

Step 1: Login to Dynamics CRM and Navigate to Settings -> Customizations.

Copy the Instance Web API URL (Service Root URL).

URL looks like the below,

https://[CRM ORG Name].api.crm9.dynamics.com/api/data/v9.1

Step 2: We have to use the below text to get the ObjectTypeCode and LogicalName

/EntityDefinitions?$select=LogicalName,ObjectTypeCode

Step 3: Append Instance Web API URL text with the above URL (mentioned in Step 2), final URL looks like the below,

https://[CRM ORG Name].api.crm9.dynamics.com/api/data/v9.1/EntityDefinitions?$select=LogicalName,ObjectTypeCode

Step 4: Browse the above URL in a new Browser window to see the below result.

Note: To get all custom entities Logical Names and Object Type Codes only, then use the below URL.

https://[CRM ORG Name].api.crm9.dynamics.com/api/data/v9.1/EntityDefinitions?$select=LogicalName,ObjectTypeCode&$filter=ObjectTypeCode gt 9999

Hope this article helps you !!!

Global notification – Xrm.App (Client API Reference) – In Preview – Dynamics 365

Dynamics 365 CE and Power Platform

Global notification – Xrm.App (Client API Reference) – In Preview – Dynamics 365

Hi Everyone,

There are many times we might have got an requirement to show some kind of notifications globally in Dynamics 365 and there is no supported way to do it. Here is the supported way to do the same which is coming in, there is a new client API reference called Xrm.App which has two methods

1) addGlobalNotification
2) clearGlobalNotification

Please note this is a Preview feature, refer this link for more information on the updates.

To show the notification first, we need to event to trigger and that event can be from anywhere. For example, I would want to show the notification when Customer Service Representative opens a case in Dynamics 365 saying “Please inform Customer that Tomorrow is a holiday.”

To implement this, we have to call the below piece of code on the…

View original post 126 more words