Hi ,I have written a simple after insert trigger on Account such that for every new Account created, a new related Opportunity is created.But the trigger is not getting invoked.Any ideas why this may be happeningtrigger CreateNewAccountOpportunity on Account (after insert) { List<Opportunity> oppList = new List<Opportunity>(); for(Account acc : Trigger.new){ Opportunity opp = new Opportunity(); opp.Name = acc.Name; opp.StageName = 'Proposal'; opp.CloseDate = System.today() + 30; oppList.add(opp); } System.debug('@@@---->'+Trigger.new); System.debug('oppList---->'+oppList); if(oppList.isEmpty() == false){ Database.insert(oppList); }}