Skip to main content

Posts

Showing posts from December, 2017

Newly created data entity is not visible in data management entity list?

If you created a new data entity and it's not visible in your data management entity list.  Open Data Management workspace -> Framework parameters -> Entity Settings and hit the "Refresh Entity List" button

D365FO: How to debug a non-development and a non-production environment

This post outlines the steps how to debug an issue which is happening in non-development or non-production environments e.g. UAT environment. 1.     RDP to your environment where you want to debug the issue, with this example I am connecting to UAT (Sandbox).  2.     Connect to SQL server a.      Get the server name from LCS database accounts b.     Use .database.windows.net to connect to database 3.     Create a new SQL sign-in that the developer can use. This step lets the system administrator maintain the security of the sandbox environment. The developer will have access to one database for only a limited time. Use the following code to create the new SQL sign-in. CREATE USER devtempuser WITH PASSWORD = 'pass@word1' EXEC sp_addrolemember 'db_owner' , 'devtempuser' 4.     Stop following services in development box a.      ...