Skip to content

Commit

Permalink
Terminology changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Nkrb committed Nov 17, 2020
1 parent 770c976 commit 32e4d5d
Show file tree
Hide file tree
Showing 180 changed files with 193 additions and 193 deletions.
4 changes: 2 additions & 2 deletions ai-builder/labs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ Click **AIBuilder_Lab.zip** in the file list at the top of this page, and then c

Please follow the steps below to set up the environment for use with AIBuilder Labs.

For binary classification, text classification, and object detection scenarios you will need some sample data in Common Data Service.
For binary classification, text classification, and object detection scenarios you will need some sample data in Microsoft Dataverse.

### Manual data set up

#### Part 1 : Import AIBuilderLabSolution_1_0_0_0 solution to the CDS environment

This creates 3 Common Data Service entities - Object Detection Product, Health Feedback, and Online Shopping Intent.
This creates 3 Dataverse entities - Object Detection Product, Health Feedback, and Online Shopping Intent.

#### Part 2 : Upload data to the entities created in Part 1

Expand Down
2 changes: 1 addition & 1 deletion ai-builder/starter-kit/invoice-processing/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

AI Builder Invoice Processing Automation Starter Kit is a reference implementation of invoice processing automation provided by Microsoft to bootstrap your implementation.

This is an installation package including two Power Automate flows orchestrating the processing of invoices with AI Builder, several Common Data Service entities to store the information, a role and a Power App to customize the starter kit and monitor the processing and edit missing or inaccurate extracted data. This is a role-based solution with ability isolate data by region.
This is an installation package including two Power Automate flows orchestrating the processing of invoices with AI Builder, several Microsoft Dataverse entities to store the information, a role and a Power App to customize the starter kit and monitor the processing and edit missing or inaccurate extracted data. This is a role-based solution with ability isolate data by region.

We have also included a connector to invoices received by email, but you can enhance it with any connectors supported by Power Automate.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public static void Main(string[] args)
#endregion Demonstrate
else
{
const string UNABLE_TO_LOGIN_ERROR = "Unable to Login to Common Data Service";
const string UNABLE_TO_LOGIN_ERROR = "Unable to Login to Microsoft Dataverse";
if (service.LastCrmError.Equals(UNABLE_TO_LOGIN_ERROR))
{
Console.WriteLine("Check the connection string values in cds/App.config.");
Expand Down
2 changes: 1 addition & 1 deletion cds/GenerateEntityDiagram/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ You can specify a list of entity names on the command line when executing the pr
## What this sample does

This sample shows two new custom entities created in Common Data Service. The first entity represents a bank account and the second entity represents a safe deposit box. The following entity diagram was generated by using the Metadata Diagram tool. It shows the relationship between the new_bankaccount entity, the new_safedepositbox entity, and other entities in the system. The names shown are the logical entity names. If there are multiple relationships between the same two entities, only one line is drawn in the diagram for simplicity. More information: [Use metadata to generate entity diagram](https://docs.microsoft.com/en-us/dynamics365/customer-engagement/developer/use-metadata-generate-entity-diagrams)
This sample shows two new custom entities created in Microsoft Dataverse. The first entity represents a bank account and the second entity represents a safe deposit box. The following entity diagram was generated by using the Metadata Diagram tool. It shows the relationship between the new_bankaccount entity, the new_safedepositbox entity, and other entities in the system. The names shown are the logical entity names. If there are multiple relationships between the same two entities, only one line is drawn in the diagram for simplicity. More information: [Use metadata to generate entity diagram](https://docs.microsoft.com/en-us/dynamics365/customer-engagement/developer/use-metadata-generate-entity-diagrams)

2 changes: 1 addition & 1 deletion cds/Metadata-Visualizer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

![Entity diagram example](images/intro-graphic.PNG)

Metadata Visualizer (MetaViz) downloads the metadata of your Dynamics 365 Customer Engagement or Common Data Service organization to visually display the entities, entity relationships, and registered plug-in information.
Metadata Visualizer (MetaViz) downloads the metadata of your Dynamics 365 Customer Engagement or Microsoft Dataverse organization to visually display the entities, entity relationships, and registered plug-in information.

## What can you do with MetaViz?

Expand Down
8 changes: 4 additions & 4 deletions cds/README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# How to run Common Data Service samples?
# How to run Microsoft Dataverse samples?

1. Download or clone the repo so that you have a local copy.
1. (Optional) Edit the cds/App.config file to define a connection string specifying the Common Data service instance you want to connect to.
1. (Optional) Edit the cds/App.config file to define a connection string specifying the Dataverse instance you want to connect to.
2. Open the sample solution in Visual Studio and press F5 to run the sample.
- If you have specified a connection string in cds/App.config, any sample you run will use that connection information.
- If you haven't specified a connection string in cds/App.config file, a dialog ([XRM tooling common login control](https://docs.microsoft.com/powerapps/developer/common-data-service/xrm-tooling/use-xrm-tooling-common-login-control-client-applications)) will open each time you run the sample and you will need to enter information about which Common Data Service instance you want to connect to and which credentials you want to use. This dialog will cache previous connections so that you can choose a previously used connection. See the **Known issue** and its workaround later for this scenario.
- If you haven't specified a connection string in cds/App.config file, a dialog ([XRM tooling common login control](https://docs.microsoft.com/powerapps/developer/common-data-service/xrm-tooling/use-xrm-tooling-common-login-control-client-applications)) will open each time you run the sample and you will need to enter information about which Dataverse instance you want to connect to and which credentials you want to use. This dialog will cache previous connections so that you can choose a previously used connection. See the **Known issue** and its workaround later for this scenario.

The samples in this repo that require a connection to a Common Data Service instance to run will include a linked reference to the cds/App.config file.
The samples in this repo that require a connection to a Dataverse instance to run will include a linked reference to the cds/App.config file.

## Known issue

Expand Down
2 changes: 1 addition & 1 deletion cds/Xrm Tooling/QuickStartCS/QuickStartCS/SampleProgram.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ static void Main(string[] args)
#endregion Sample Code
else
{
const string UNABLE_TO_LOGIN_ERROR = "Unable to Login to Common Data Service";
const string UNABLE_TO_LOGIN_ERROR = "Unable to Login to Microsoft Dataverse";
if (service.LastCrmError.Equals(UNABLE_TO_LOGIN_ERROR))
{
Console.WriteLine("Check the connection string values in cds/App.config.");
Expand Down
2 changes: 1 addition & 1 deletion cds/Xrm Tooling/TPLCrmServiceClient/SampleProgram.cs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ private static void Main()

else
{
const string UNABLE_TO_LOGIN_ERROR = "Unable to Login to Common Data Service";
const string UNABLE_TO_LOGIN_ERROR = "Unable to Login to Microsoft Dataverse";
if (service.LastCrmError.Equals(UNABLE_TO_LOGIN_ERROR))
{
Console.WriteLine("Check the connection string values in cds/App.config.");
Expand Down
4 changes: 2 additions & 2 deletions cds/online-management-api/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Quick Start Sample: Retrieve Common Data Service environements using Online Management API
# Quick Start Sample: Retrieve Microsoft Dataverse environments using Online Management API

The C# sample demonstrates how to authenticate to the Online Management API and then retrieve all Common Data Service environements from your Office 365 tenant.
The C# sample demonstrates how to authenticate to the Online Management API and then retrieve all Dataverse environments from your Office 365 tenant.

The sample uses the authentication [helper code](sample-authentication-helper.md) to easily authenticate to Online Management API using the OAuth 2.0 protocol and pass in the access token in header of your request.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ Mary Kay Andersen
#endregion Sample Code
else
{
const string UNABLE_TO_LOGIN_ERROR = "Unable to Login to Common Data Service";
const string UNABLE_TO_LOGIN_ERROR = "Unable to Login to Microsoft Dataverse";
if (service.LastCrmError.Equals(UNABLE_TO_LOGIN_ERROR))
{
Console.WriteLine("Check the connection string values in cds/App.config.");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ static void Main(string[] args)
#endregion Demonstrate
else
{
const string UNABLE_TO_LOGIN_ERROR = "Unable to Login to Common Data Service";
const string UNABLE_TO_LOGIN_ERROR = "Unable to Login to Microsoft Dataverse";
if (service.LastCrmError.Equals(UNABLE_TO_LOGIN_ERROR))
{
Console.WriteLine("Check the connection string values in cds/App.config.");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ static void Main(string[] args)
#endregion Sample Code
else
{
const string UNABLE_TO_LOGIN_ERROR = "Unable to Login to Common Data Service";
const string UNABLE_TO_LOGIN_ERROR = "Unable to Login to Microsoft Dataverse";
if (service.LastCrmError.Equals(UNABLE_TO_LOGIN_ERROR))
{
Console.WriteLine("Check the connection string values in cds/App.config.");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ static void Main(string[] args)
}
else
{
const string UNABLE_TO_LOGIN_ERROR = "Unable to Login to Common Data Service";
const string UNABLE_TO_LOGIN_ERROR = "Unable to Login to Microsoft Dataverse";
if (service.LastCrmError.Equals(UNABLE_TO_LOGIN_ERROR))
{
Console.WriteLine("Check the connection string values in cds/App.config.");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ static void Main(string[] args)
#endregion Sample Code
else
{
const string UNABLE_TO_LOGIN_ERROR = "Unable to Login to Common Data Service";
const string UNABLE_TO_LOGIN_ERROR = "Unable to Login to Microsoft Dataverse";
if (service.LastCrmError.Equals(UNABLE_TO_LOGIN_ERROR))
{
Console.WriteLine("Check the connection string values in cds/App.config.");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ static void Main(string[] args)
}
else
{
const string UNABLE_TO_LOGIN_ERROR = "Unable to Login to Common Data Service";
const string UNABLE_TO_LOGIN_ERROR = "Unable to Login to Microsoft Dataverse";
if (service.LastCrmError.Equals(UNABLE_TO_LOGIN_ERROR))
{
Console.WriteLine("Check the connection string values in cds/App.config.");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ static void Main(string[] args)
}
else
{
const string UNABLE_TO_LOGIN_ERROR = "Unable to Login to Common Data Service";
const string UNABLE_TO_LOGIN_ERROR = "Unable to Login to Microsoft Dataverse";
if (service.LastCrmError.Equals(UNABLE_TO_LOGIN_ERROR))
{
Console.WriteLine("Check the connection string values in cds/App.config.");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ static void Main(string[] args)
}
else
{
const string UNABLE_TO_LOGIN_ERROR = "Unable to Login to Common Data Service";
const string UNABLE_TO_LOGIN_ERROR = "Unable to Login to Microsoft Dataverse";
if (service.LastCrmError.Equals(UNABLE_TO_LOGIN_ERROR))
{
Console.WriteLine("Check the connection string values in cds/App.config.");
Expand Down
2 changes: 1 addition & 1 deletion cds/orgsvc/C#/AssociateSecurityRoleToTeam/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ In order to simulate the scenario described in [What this sample does](#what-thi

### Demonstrate

1. The `query` method retrieves a role from Common Data Service.
1. The `query` method retrieves a role from Microsoft Dataverse.
2. The `Associate` message assigns the role to a team.

### Clean up
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ static void Main(string[] args)
}
else
{
const string UNABLE_TO_LOGIN_ERROR = "Unable to Login to Common Data Service";
const string UNABLE_TO_LOGIN_ERROR = "Unable to Login to Microsoft Dataverse";
if (service.LastCrmError.Equals(UNABLE_TO_LOGIN_ERROR))
{
Console.WriteLine("Check the connection string values in cds/App.config.");
Expand Down
2 changes: 1 addition & 1 deletion cds/orgsvc/C#/AssociateSecurityRoleToUser/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ In order to simulate the scenario described in [What this sample does](#what-thi

### Demonstrate

1. The `QueryExpression` method retrieves a role from Common Data Service.
1. The `QueryExpression` method retrieves a role from Microsoft Dataverse.
2. The `Associate` message assigns the role to a user.

### Clean up
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ static void Main(string[] args)

else
{
const string UNABLE_TO_LOGIN_ERROR = "Unable to Login to Common Data Service";
const string UNABLE_TO_LOGIN_ERROR = "Unable to Login to Microsoft Dataverse";
if (service.LastCrmError.Equals(UNABLE_TO_LOGIN_ERROR))
{
Console.WriteLine("Check the connection string values in cds/App.config.");
Expand Down
2 changes: 1 addition & 1 deletion cds/orgsvc/C#/AuditEntityData/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ products:
- dotnet
- powerapps
page_type: sample
description: "Sample that shows how to enable and disable auditing on an entity and its attributes in Common Data Service. [SOAP]"
description: "Sample that shows how to enable and disable auditing on an entity and its attributes in Microsoft Dataverse. [SOAP]"
---

# Audit entity data changes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ static void Main(string[] args)

else
{
const string UNABLE_TO_LOGIN_ERROR = "Unable to Login to Common Data Service";
const string UNABLE_TO_LOGIN_ERROR = "Unable to Login to Microsoft Dataverse";
if (service.LastCrmError.Equals(UNABLE_TO_LOGIN_ERROR))
{
Console.WriteLine("Check the connection string values in cds/App.config.");
Expand Down
4 changes: 2 additions & 2 deletions cds/orgsvc/C#/Azurecustomworkflowactivity/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Sample: Azure aware custom workflow activity

This sample obtains the data context from the current Common Data Service (CDS) operation and posts it to the Azure Service Bus.
This sample obtains the data context from the current Microsoft Dataverse operation and posts it to the Azure Service Bus.

## How to run this sample

Expand Down Expand Up @@ -37,5 +37,5 @@ In order to simulate the scenario described in [What this sample does](#what-thi

## See Also

[Configure Azure integration with Common Data Service](https://docs.microsoft.com/en-us/powerapps/developer/common-data-service/configure-azure-integration)
[Configure Azure integration with Dataverse](https://docs.microsoft.com/en-us/powerapps/developer/common-data-service/configure-azure-integration)
[Workflow extensions](https://docs.microsoft.com/en-us/powerapps/developer/common-data-service/workflow/workflow-extensions)
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ static void Main(string[] args)

else
{
const string UNABLE_TO_LOGIN_ERROR = "Unable to Login to Common Data Service";
const string UNABLE_TO_LOGIN_ERROR = "Unable to Login to Microsoft Dataverse";
if (service.LastCrmError.Equals(UNABLE_TO_LOGIN_ERROR))
{
Console.WriteLine("Check the connection string values in cds/App.config.");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ static void Main(string[] args)
#endregion Sample Code
else
{
const string UNABLE_TO_LOGIN_ERROR = "Unable to Login to Common Data Service";
const string UNABLE_TO_LOGIN_ERROR = "Unable to Login to Microsoft Dataverse";
if (service.LastCrmError.Equals(UNABLE_TO_LOGIN_ERROR))
{
Console.WriteLine("Check the connection string values in cds/App.config.");
Expand Down
2 changes: 1 addition & 1 deletion cds/orgsvc/C#/BulkDeleteExported/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ products:
- dotnet
- powerapps
page_type: sample
description: "This sample shows how to perform a bulk deletion of records that were previously exported from Common Data Service by using the Export to Excel option. [SOAP]"
description: "This sample shows how to perform a bulk deletion of records that were previously exported from Microsoft Dataverse by using the Export to Excel option. [SOAP]"
---

# Bulk delete exported records
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ select emailTemplate.Id
#endregion Demonstrate
else
{
const string UNABLE_TO_LOGIN_ERROR = "Unable to Login to Common Data Service";
const string UNABLE_TO_LOGIN_ERROR = "Unable to Login to Microsoft Dataverse";
if (service.LastCrmError.Equals(UNABLE_TO_LOGIN_ERROR))
{
Console.WriteLine("Check the connection string values in cds/App.config.");
Expand Down
2 changes: 1 addition & 1 deletion cds/orgsvc/C#/BulkEmail/BulkEmail/SampleProgram.cs
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ static void Main(string[] args)

else
{
const string UNABLE_TO_LOGIN_ERROR = "Unable to Login to Common Data Service";
const string UNABLE_TO_LOGIN_ERROR = "Unable to Login to Microsoft Dataverse";
if (service.LastCrmError.Equals(UNABLE_TO_LOGIN_ERROR))
{
Console.WriteLine("Check the connection string values in cds/App.config.");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ Only set the attribute values you are changing.
}
else
{
const string UNABLE_TO_LOGIN_ERROR = "Unable to Login to Common Data Service";
const string UNABLE_TO_LOGIN_ERROR = "Unable to Login to Microsoft Dataverse";
if (service.LastCrmError.Equals(UNABLE_TO_LOGIN_ERROR))
{
Console.WriteLine("Check the connection string values in cds/App.config.");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ static void Main(string[] args)
#endregion Sample Code
else
{
const string UNABLE_TO_LOGIN_ERROR = "Unable to Login to Common Data Service";
const string UNABLE_TO_LOGIN_ERROR = "Unable to Login to Microsoft Dataverse";
if (service.LastCrmError.Equals(UNABLE_TO_LOGIN_ERROR))
{
Console.WriteLine("Check the connection string values in cds/App.config.");
Expand Down
2 changes: 1 addition & 1 deletion cds/orgsvc/C#/CRUDEmailAttachments/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ products:
- dotnet
- powerapps
page_type: sample
description: "This sample shows how to create, retrieve, update, and delete email attachments in Common Data Service. [SOAP]"
description: "This sample shows how to create, retrieve, update, and delete email attachments in Microsoft Dataverse. [SOAP]"
---

# Create, retrieve, update, and delete an email attachment
Expand Down
Loading

0 comments on commit 32e4d5d

Please sign in to comment.