Guest User

Untitled

a guest
Apr 26th, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. public class OppQueryvalues {
  2. public static void StoreConlistData(){
  3. List<Contact> clist = new List<Contact>();
  4. List<Opportunity> opplist = [SELECT name from Opportunity];
  5. for(opportunity opp: Opplist){
  6. contact con = new contact();
  7. con.lastName= opp.name;
  8. clist.add(con);
  9. }
  10. insert clist;
  11. system.debug('erty' +clist);
  12. }
  13. }
Add Comment
Please, Sign In to add comment