Untitled
unknown
apex
4 years ago
553 B
9
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...