• Waleed Alkhudairi
  • NEWBIE
  • 0 Points
  • Member since 2018

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 2
    Replies
Hi All, 

I have phone field that i need to add "+" or 00 to dial for country how can i add this prefix using dml statments. here is my current one: 
 
list <lead>cs = [select name, id, phone, MobilePhone from lead]; 
for (lead c:cs) {
    c.Phone= c.MobilePhone; 
}
Update cs;

i want to add ' + then  c.MobilePhone 
Hi All, 

I have phone field that i need to add "+" or 00 to dial for country how can i add this prefix using dml statments. here is my current one: 
 
list <lead>cs = [select name, id, phone, MobilePhone from lead]; 
for (lead c:cs) {
    c.Phone= c.MobilePhone; 
}
Update cs;

i want to add ' + then  c.MobilePhone