Create Opportunity Relationship record
Sometime we need to create “Opportunity Relationship” record through code. We can use below code to create Opportunity relationship record. Basically we need to set three values while creating opportunity relationship record customerid, opportunityid and opportunityroleid. //I have used Dynamic entity to create opportunity relationship record DynamicEntity _OpportunityRelationship = new DynamicEntity(); //Set entity name as “customeropportunityrole” _OpportunityRelationship.Name = “customeropportunityrole”; //Create… Read more »