• sirajbabu shaik
  • NEWBIE
  • 0 Points
  • Member since 2018

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 2
    Replies
public class triggerHelperClass {
public static void updatePostal(List<account> triggerNewList){
   for (Account a: triggerNewList)
   {
   if(a.Match_Billing_Address__c==True)
   {
   a.ShippingPostalCode=a.BillingPostalCode;
   }
   }
}
}
  • April 12, 2018
  • Like
  • 0
hai
here i created to different recod types for opportunity object.so when i want to create new opportunity record it first asks me record type selection .so how can i skip this page when creating new record?