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
harshad kokateharshad kokate 

How access the data from one SF org to Other SF org??

In one Org we have data model  
i.e 
Object = CountryValidity 
Field : 
  • Country = india , IsValid =True
  • Country = USA , IsValid =False
  • Country = AUS , IsValid =True
  • Country = S.Afrika , IsValid =Flase
  • Country = PAK , IsValid =True

In other org we are creating data for the same object what we want is while creating the data for object I will just enter the "country" field value and "IsValid" field's value we need to check from first org and whatevr will be the value we will store it in current org.
Hope explaination is good enough .....
Ruwantha  LankathilakaRuwantha Lankathilaka
Try change sets 
https://developer.salesforce.com/docs/atlas.en-us.dev_lifecycle.meta/dev_lifecycle/quick_start_sandbox_changesets.htm
harshad kokateharshad kokate
This is not about metadata deployment. this is about data .
And I need to check this on every contact insert.
James LoghryJames Loghry
One way to do this is to write a down and dirty REST integration that queries the 2nd Salesforce org.  This can be done via a trigger, for instance.

Another option is to purchase Salesforce Connect / Lightning Connect licenses and use the external data feature.