Questions tagged [dataverse]

Microsoft Dataverse is a Microsoft-created cloud-based storage space that businesses can use to store data securely. Dataverse allows you to store and manage data securely while maintaining ease of use and accessibility. Data is stored in a set of tables. Each of these tables consists of a set of rows (also known as records) and columns (also known as fields/attributes). Each column in a table can store a certain data type (i.e., text, number, etc.,)

285 questions
0
votes
1 answer

R httr MS Dataverse API: Bad Request (HTTP 400), Define scope

My question is closely related to this one: R httr Linkedin API: Bad Request (HTTP 400). I have an application set up in Azure AD that I would like to use to get data out of MS Dataverse using R. I am new to APIs, so I first set it up in Postman. I…
SIE_Vict0ria
  • 174
  • 1
  • 10
0
votes
1 answer

How do I not add duplicate values in dataverse Table power automate add rows

I am attempting to add rows to a dataverse table, but skip rows where a particular ID column has an existing value. I've created an alternate key using that column but it doesn't appear to do anything. Just add more rows. I would rather avoid a…
James W
  • 410
  • 2
  • 10
0
votes
0 answers

Why I cannot see all the environments listed in PowerApps but can see in Power Automate

I have Dataverse of Team and I am creating a Power App specifically for that team. The development for that I am doing in Microsoft Teams application. But if I want to in my own PowerApp application in the browser I am not able to see my dataverse…
GMAC
  • 788
  • 4
  • 23
0
votes
1 answer

Accessing Dataverse/Power App Data on external Public Website via API

I am stumped trying to find a similar idea on how we can achieve this. We are currently using a model-driven power app/Dataverse to house school applications. Once an application is submitted, our representatives will begin updating the application…
iammikerodriguez
  • 379
  • 1
  • 5
  • 16
0
votes
2 answers

D365 CE: difference between OrganizationServiceContext and QueryExpression through Service?

I'm trying to execute a LINQ query within a plugin, using the OrganizationServiceContext, to retrieve some quotes. On these quotes, I'm using .Select() to only select the value for the field cgk_totalnetprice, as shown below: quotes =…
0
votes
1 answer

Query (HTTP GET) data in Power Apps Portal from Web API with JavaScript

I have a "Starter Portal" Power App Portal. I would like to utilize JavaScript and the Web API for querying data. Documentation states You can use the Web API to perform create, update, and delete operations across all Microsoft Dataverse tables…
0
votes
1 answer

XrmToolBox Error while deserializing configuration file. Details: There is an error in XML document (13, 8) at ConnectionManager

An unexpected error occurred: System.Exception: Error while deserializing configuration file. Details: There is an error in XML document (13, 8). at McTools.Xrm.Connection.ConnectionManager.loadConnectio nslistO at…
0
votes
0 answers

Model-driven app - calculating majority Lookup value

I have an entity Dancers that has a lookup to entity Level. The level is determined based on the hours that the dancer dances per week. Currently there are 4 levels (Level 1, Level 2, Level 3, Level 4) I also have an entity called Routine. Once the…
0
votes
2 answers

Why isn't column data for a table visible when viewing data?

I added some custom columns to a table and then imported data to the Dataverse database table from an Excel file. When I choose Data>Edit Data In Excel, all of the imported data is visible in Excel. When just clicking on the Data option, however,…
rekay
  • 53
  • 1
  • 7
0
votes
1 answer

Dataverse - Check if element exists in array returned from OData query using the RetrieveAvailableLanguages function

I am using the RetrieveAvailableLanguages function to run this query on my target environment. https://ORG_NAME.crm.dynamics.com/api/data/v9.0/RetrieveAvailableLanguages In the response from this OData query it should provide one or more language…
greg
  • 1,118
  • 1
  • 20
  • 40
0
votes
1 answer

Export Choice field labels from DataVerse

We were previously using Data Export Services to export tables from Dataverse to a Azure SQL database for reporting purposes. Since this tool has been depreciated, we are looking into Data Factory. The limitation we have come across is exporting…
0
votes
1 answer

Linked server to Dataverse

How Create a linked server to Dataverse from SQL Server ? I would like to know if i can use linked servers to do this and what are the correct properties for the connection. Thanks!
0
votes
1 answer

Show Dataverse but restrict tables

I’m trying to work out what permissions for the relevant security role I need. I’ve got it so that the user can only see tables that I’ve given them access to in PowerApps, but they also need to see it in Dataverse. They don’t have permission to…
Omar.Ebrahim
  • 862
  • 1
  • 10
  • 30
0
votes
0 answers

Why is dataverse taking so long to answer to simple requests?

I'm using Microsoft.PowerPlatform.Dataverse.Client to do requests on my dynamics 365 environment and every request takes a long time to finish, but the requests are processed nearly instantly on dataverse side. My project is .net core 5. For…
0
votes
2 answers

Is there a way to link contact "parentcustomerid" to account when creating related entities in one operation in dynamics?

I'm using the Microsoft.PowerPlatform.Dataverse.Client library to get and create data into my dynamics 365 env using a .Net core app. I'm trying to create an Account with a Contact in the same request using this method. It works great, but I can't…