'Save SharePoint list data from root site to subsite list
Is it possible to save newly created item from list one from the root site to the same list in the other sub site?
Currently we are implementing country specific site and we have the global site where the global news and announcement will be published then it will also be available to the country sites
Global Site
----> News List
News 1
/en-US
----> News List
News 1 from root site
News en-US
/en-PH
---> News List
News PH
News 1 from root site
Solution 1:[1]
If you want to use SharePoint workflow, we can use "Call HTTP web service" action to call the REST to post new item into another site. The following articles for your reference:
Working with Web Services in SharePoint 2013 Workflows using SharePoint Designer 2013
https://msdn.microsoft.com/en-us/library/office/dn567558.aspx
Calling the SharePoint 2013 Rest API from a SharePoint Designer Workflow
Or we can also use Remote Event Receiver with Client Object Model to achieve it. On-Premise, we can also use Event Receiver.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | LZ_MSFT |