You need to sign in to do that
Don't have an account?

Integration Question
scenario : Case is created in Salesforce, Immediatly this case details be moved to third patry systems ( .net system, java sysstem,.......)
how can i do this ?
example :
case # 12345 created in salesforce, immediatly case reflected in third party systems like java ,.net or some other systems.
Due to project cost, not going for opiton use third party integration tools like Dell boomi......or any other tools.
please provide any ideas on this requirement
Thanks
how can i do this ?
example :
case # 12345 created in salesforce, immediatly case reflected in third party systems like java ,.net or some other systems.
Due to project cost, not going for opiton use third party integration tools like Dell boomi......or any other tools.
please provide any ideas on this requirement
Thanks
https://developer.salesforce.com/docs/atlas.en-us.integration_patterns_and_practices.meta/integration_patterns_and_practices/integ_pat_pat_summary.htm
Your scenario sounds like a "fire and forget" would work, but you can review based on your specific requirements.
http://enrollmytraining.com/dell-boomi-online-training/
or
Informatica use to have a free data integration version with limited features and would be more applicable if your destination was a database or simialr entity where data could be applied.
Simplest solution :
------------------------
On After Insert of the Case --> Fire Trigger --> Do a rest callout to the endpoint (java, .Net) (future call) --> Send case data in the callout --> Third Party System consumes the Case date --> Gives the external Id of the case i.e Primary key of thier system --> Story of the External id for future reference.
Depending on the data volumes, External system webservices and other parameters we can change the approach as to how we integrate to the third party.
Regards,
Mohan
you need to insert the record and then do a callout in @future method