• GOPIKRISHNAN CHANDRASEKARAN
  • NEWBIE
  • 15 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 3
    Replies
Hi, Please can anyone let me know if there are any ways to send SMS in salesforce at free of cost? If it is not able to activate this feature for Free of Cost, what will be charge collected per month if we use any service?
Hi, Please can anyone let me know if it is possible to update a record of same object in a single transaction using a before Trigger? I think it is not possible in a after trigger. Please can you let me know?

I have also tried this with the below test trigger and it throwed me an error.

trigger AccountTrigger on Account (Before insert)
{
    account a = new account();
    a.industry = 'Agriculture';
    Update(a);
}
Hi, Please can anyone let me know if there are any ways to send SMS in salesforce at free of cost? If it is not able to activate this feature for Free of Cost, what will be charge collected per month if we use any service?
Hi, Please can anyone let me know if it is possible to update a record of same object in a single transaction using a before Trigger? I think it is not possible in a after trigger. Please can you let me know?

I have also tried this with the below test trigger and it throwed me an error.

trigger AccountTrigger on Account (Before insert)
{
    account a = new account();
    a.industry = 'Agriculture';
    Update(a);
}