Here we are discussing on how we can connect Dynamics 365 Web Api using external application. Below are the steps we need to follow in order to achieve our goal. Note: if the HTML page is not giving any result or not able to load browser cache (CRM user token) then your need to clear Brower cache and try to load HTML again . 1. Login in to https://portal.azure.com 2. Provide your CRM username and password to log in into azure. Once you login create an application as below screen shot Azure Active Directory à App Registration à Click on New application registration 3. Provide Name, select Application Type as “Web App / API” and provide Sing –on URL as CRM URL as below. 4. Open the newly created application and click on Settings. 5. Click on Keys and provide ...
In Microsoft doc's we can find code to get blob files inside a container using c#. What if Container has some Sub Directories with blob data/files. How we can replicate the folder structure in our local machine. There might a change Container contains empty folder or a file. Below code snippet will help to create the same Azure Container structure. here i have used ASPX pages as per my requirement. we can use other applications as well. To get Azure connection string use below URL: https://docs.microsoft.com/en-us/azure/storage/common/storage-configure-connection-string public string storageAccountName = "azure storage account name"; public string accessKey = "your azure accesskey"; public string containerName = "myfirstblobcontainer"; public string connectiongString = "Azure connection string"; publ...
What is PrinciplalObjectAccess table why is it used? The POA table is used to provide access to specific records for CRM users, and each record in the POA table represents one CRM object that is related to one CRM user. Records created in the POA table come from one of four ways: · Share reassigned records with original owner: CRM System Settings o If this is set to Yes, then records would be added to the POA table whenever an assign takes place. These records will have a value in the AccessRightsMask colum of the POA table. · Direct sharing: Actions – Sharing o When users explicitly share a record to another user, a record would be created in the POA table. These records will have a value in the AccessRightsMask colum of the POA table. · ...
Comments
Post a Comment