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

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 5
    Questions
  • 6
    Replies
Hi All, 
I am new to sfdc. practicing trailhead sample project. 
Sample project is : http://ccoenraets.github.io/salesforce-developer-workshop/Creating-Triggers.html
 can any one guide me to write a trigger for one speaker one session per day. 
Thank you.
hi all,

 can any one help me how to save 'rpmdata' values in RPM__C custom object

public class JSRemotingFormSubmitController {
    
 public JSRemotingFormSubmitController(){}

    @RemoteAction
   public static boolean saveform(Map<string,string> rpmdata){
       System.debug('***From Remote saveform');
        system.debug(rpmdata);
        return true;  
        
    }
   

}
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.

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
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.