• kate angila
  • NEWBIE
  • 0 Points
  • Member since 2023

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 1
    Replies
  public void newinsert(string oppName, date newd){
        
        Opportunity opp = new opportunity();
        
        opp.Name = oppName;
        opp.Amount= 344556;
        opp.CloseDate= newd;
        
        insert opp;