Forum Discussion

TJTalha's avatar
TJTalha
Copper Contributor
Jul 06, 2017
Solved

Sync Data from Sharepoint Custom List to External List

Hi all., I am using Office 365 SharePoint online Plan 2, and Azure SQL database. I have successfully connected Business Connectivity Server for Both SharePoint & Azure SQL. I have Successfully Cre...
  • jcgonzalezmartin's avatar
    Jul 06, 2017
    Well, Indeed what you need to do is just write from your list into the SQL Azure database that is behind the scenes...there are some approaches you could use here:
    (1) Since it seems you want to add the data in the SQL Azure database when a new item is added into the list, then you need to be able to react the event triggered by SharePoint when the item is added. To catch this event you have some options: a.) A Remote Event Receiver b.) a Web Hook c.) a SPO Workflow d.) a Flow
    (2) Instead of adding the data to the SQL Azure database just at the moment is added to the list, poll the list for new items and add to the database. You could do this by means of a programmatic job implemented in an Azure WebJob / Azure Functions

Resources