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
DESTINDESTIN 

Cross referencing field

Currently we have opportunities divided into two record types - svcs & soft
the svcs opps have the option to link to a soft opp.  The soft opps do not
have the option to link to the svcs opps.
I've been asked for a report, or view that shows all the soft opps with a field indicating
which ones are related to a svcs opp
so far I have not found a way to do that in SFDC.  I can export two reports to Excel and
find the common opps, but haven't been able to do that in SFDC yet.
TCAdminTCAdmin
Hello Destin,

Unfortunately this is not something that can be done through the system. If you have Enterprise Edition you should be able to utilize the Data Loader to query the system for these records. The query should look something like this:
Code:
Select o.Opportunity__r.Type, o.Opportunity__c, o.Name, o.Id From Opportunity o WHERE o.Opportunity__r.Type = 'svcs opps'