
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-26-2019 05:45 PM
G'day all,
I'm trying to integrate two SN instances such that as soon as an Incident record is created in instance 1 it should also replicate in instance 2. For instance, if I've created an Incident INC0001 in instance 1 then it should also be visible in instance 2. dynamically using REST.
Can someone please provide me the steps to achieve this requirements.
Cheers,
Rahul J
Solved! Go to Solution.
- Labels:
-
Integrations

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-26-2019 07:38 PM
Business rules get triggered after an action on the server, such as on Insert of the record...so as mentioned, you'd want to create a Insert BR for Incident table and then trigger your outbound REST with all the details. Then pick that up in your other instance, parse through it and then insert new record there.
Is there a reason why they need to be replicated in both instances, basically live like that? Are you all merging over to another instance or something? Do you have experience with web services/REST?
Regardless of my curiosity though, the basic gist of everything is above.
Please mark reply as Helpful/Correct, if applicable.
Please consider marking my reply as Helpful and/or Accept Solution, if applicable. Thanks!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-26-2019 07:53 PM
I'm trying it out for Testing purpose so as to get some hands on exp. Anyway, I'll adhere to BR now rather than Script Include. Moreover, I've got good experience with Web Services since I've worked as a Java Dev before.