mehrandvd
mehrandvd

Reputation: 9116

How to create a new entity to an existing table in database?

Recently I've started to use Microsoft Dynamic CRM 2015. We have some legacy software with some existing tables.

Question: Is it possible to create Entities connected to those existing tables?

Upvotes: 0

Views: 300

Answers (2)

Daryl
Daryl

Reputation: 18895

Assuming that your syncing from CRM to legacy... In an CRM online environment, you'd have to rely on either custom CRM plugins communicating to a webserver that inserts into the legacy system/, or possibly Scribe, Biztalk, or even SSIS with the appropriate adapter or custom CRM SDK code.

If your CRM on prem, you have an additional option where you can sync data from the filtered views to the legacy system directly in SQL Server.

Theoretically you could write custom plugins to intercept all CRUD operations and redirect them else where, but then you would be unable to do any joins in CRM against that data.

Upvotes: 0

Andrew Butenko
Andrew Butenko

Reputation: 5446

No you can't. To use this entities in CRM you will have to create this entities in CRM.

Upvotes: 1

Related Questions