function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
New_DeveloperNew_Developer 

Using Webservices to send data to external system

Hi,

I have a requirement where i need to send a data upon creation to an external hub using Webservices. I mean when a record in a custom object is created , the data in the fields should also get stored in the external system. Any ideas on how do this is really appreciated.

Thanks
Gupta.VishalGupta.Vishal
Hi , 
Process of this will be as follows , 
1. write a class where you will be calling  the third party system 

2.write a trigger on your custom object and use @future to call the method .


Thanks ,
 

New_DeveloperNew_Developer
Thanks Vishal for the quick reply. It would be great if you can also provide a sample Apex class in which i can call the third party system...
Developer99Developer99
@New_Developer,
 
        check this Link---

                      http://cheenath.com/?tutorial/sfdc/sample1/index.html   it may be useful for you.
New_DeveloperNew_Developer
Thank you so much. That was helpful. But i need other way. I enter data into salesforce object and the data has to get stored in the external system. Can i follow the same example above even for this !!

Thanks