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
1
vote
0 answers

Issues using Early Bound classes with PowerPlatform.Dataverse.Client.Dynamics 1.0.9 library in .NET 6

I have managed to generate early bound classes using the CrmSvcUtil code generation tool: But the highlighted assembly ProxyTypesAssemblyAttribute is causing issues when trying to establish a connection with my organization through Dataverse with…
Osman Esen
  • 1,704
  • 2
  • 21
  • 46
1
vote
1 answer

Error while retrieving records from Microsoft Dynamics CRM

I'm getting below error while retrieving records from account table in Dynamics CRM. Error message is in the screenshot below. Could you please guide me what I'm doing wrong here. Strange thing is that it is working in a console app. Hence I'm…
Shahab Haidar
  • 625
  • 3
  • 11
  • 25
1
vote
0 answers

Reference to lookup column DataVerse with FIlter - PowerApps

Ok, let's contemplate the next scenario with powerapps: We have a simple filter: Filter(datasource, column1 = "condition") After that you can refer a column like that: Filter(datasource, column1 = "condition").Column2 But I realized that can't…
Aibloy
  • 137
  • 3
  • 10
1
vote
0 answers

How to implement Retry/Restart logic for data import using C#?

I will be importing data from SQL Server into Microsoft Dynamics CRM (Dataverse) using a custom Console application (C#) I will work on. One of the requirements is that we can restart the import in case something happens and the application fails -…
1
vote
0 answers

Merge or delete semi-duplicates in an array

I need to either merge or delete semi-duplicates in a Dataverse table. I looked into duplicate detection there, but I couldn't figure it out. I want to point out that that might be the solution to this and might be easier than what I'm asking for…
Robby
  • 843
  • 3
  • 19
  • 53
1
vote
0 answers

Error saving RasterStack with writeRaster

I am downloading tree cover spatial data using the 'dataverse' package and attempting to save it as a RasterStack. The download is fine, however when I use writeRaster to save it, I get the following error message: "Error in .local(.Object, ...)…
Kate
  • 51
  • 1
  • 3
1
vote
0 answers

Access choice labels directly from Azure Synapse Link for Dataverse - Unable to implement sample code

I am trying to work 'Choices', formerly known as OptionSets in Azure Dataverse. I am trying to implement the sample code from the link https://learn.microsoft.com/en-us/power-apps/maker/data-platform/azure-synapse-link-choice-labels The code is as…
Patterson
  • 1,927
  • 1
  • 19
  • 56
1
vote
1 answer

How to unit test an Azure Function against Dataverse?

I'm a developer with .net background and I'm new to the Dataverse / PowerPlatform ecosystem. I need to dev and test an Azure Function but not sure how to do it. I did found this post in the official Microsoft documentation about tools for server…
1
vote
1 answer

Plugin to trigger only once on create / update of multiple records in entity / table x

We have an entity which holds 3 types of Records A, B, C. Record type A is the parent of B (each A can be the parent to multiple B records) and further B is the parent of C (each B can be the parent to multiple C records). On creation / update of…
Raghu
  • 151
  • 1
  • 13
1
vote
1 answer

How to connect to Microsoft Dataverse API Endpoint with Python

I'm facing an issue in connecting to Microsoft Dataverse API endpoint through Python. The code is broken down into three parts: A) Token Generation B) Endpoint API call Option 1 C) Endpoint API call Option 2 ################ Token generation code…
Aakash Basu
  • 1,689
  • 7
  • 28
  • 57
1
vote
1 answer

Update Status Column in Dataverse

Currently, I'm facing a problem with DataVerse. I try to update the pre-defined statuscode column through the Web API using C# (and Postman). I've tried to update with these lines of code { "statuscode": 1 } The error is 1 is not a valid…
Seledy
  • 13
  • 3
1
vote
0 answers

Retrieving Full sized images stored in a Image type column in a dataverse table through Azure API Management

We are storing images in a dataverse table under the Image type column When trying to retrieve it using an OData call through API management it only returns the image at icon size(144x144). I have tried to use [Organization…
1
vote
1 answer

Submit Form based on dataverse table with Polymorphic field owner

I've created a form based on a dataverse table with User/Team ownership. In such table only 3 fields are required: ID Status Owner When adding those 3 field to the form I can see values for the first 2, not for the Owner field. Trying to submit…
1
vote
1 answer

Dataverse to Synapse Link - missing Lake database in Workspace

I was able to successfully configure link integration between Dataverse and Azure Synapse. The data flow between Dataverse and the Lake works and I can see files with data from Dataverse inside my Azure Storage. My problem is that when I'm opening…
1
vote
1 answer

Calling a custom api via c# sdk

I have this custom api called "pits_PostProjectLineEntries" which takes in a EntityCollection called Transactions. I am using the option to have the entities in that EntityCollection to be expando since I really not need to create a table to hold…
1 2
3
18 19