Untitled
Anonymous
apex
09/21/2021 8:52 AM
740 B
28
Indexable
public void insertRecords(Opportunity newOpportunity, List<OpportunityLineItem> opportunityProducts) {
.....
insert newOpportunity;
.....
insert opportunityProducs; <--exception
}
/************************************************************************/
public void insertRecords(Opportunity newOpportunity, List<OpportunityLineItem> opportunityProducts) {
try {
.....
insert newOpportunity;
.....
insert opportunityProducs; <--exception
}
catch(Exception exc) {
}
}Editor is loading...