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
Rakesh SRakesh S 

connecting to another instance using external data source

Hi All,

I want to connect external system using External Data Sources.
Please check the following screen shots.
User-added image

User-added image

After that what are the steps need to connect external system. How can i check whether the system is connected or not with other system.

Please let me know with appropriate information.

Appriciate your response.


Thank you
Rakesh.S
KevinPKevinP
Rakesh,

Once you established the external data source (looks like you've done that) you'll just need to access those external objects via the namespace. ie:  srt__account__x
Rakesh SRakesh S
Hi Kevin,

thank you for your information. now i want to create record in external system from soure. is it possible ?
while creating a record getting error like system.sobjectException : Field is not writeable: srt__Account__x.srt__Name__c

this is my code:
srt__Account__x aa = new srt__Account__x();
aa.srt__Name__c = 'IBM';
insert aa;

What are the actions we can do using External Data Sources.

thank you..