• sri sfdc
  • NEWBIE
  • 30 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 5
    Questions
  • 6
    Replies
Hi
please let me know how many recs will be inserted with below code

list<Account>acc = new list<Account>();
Account ac;
for(integer i = 0;i<10;i++){
ac = new account();
ac.Name = 'vittu'+i;
acc.add(ac);
}
insert acc;
Hi all
I have an requirement that i will give the OWD:Private for a record but i want to access this record remaining all users in our organization how we achive this?
How do I know current vfpage id in apex class?
Hi ,

I have pick list values like 1,2,3,4,.....20 . There are 5 useres. user1 can see 2,3,4,5 values and U2 can see 1,5,6, values. Like that other users can see different pick list values. How can I achive this. 

Thanks

when ever rating is hot on lead object , I want to create Accout and Contact for that lead. As a new bie, I don't know how to get that lead id to create account ,contact .

 kindly help me in this.