• arun Bikkasani
  • NEWBIE
  • 10 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 9
    Questions
  • 3
    Replies
I want vf page seach Accounts and search accounts are dispalyed with one check box when  iam section Accounts are display in the next vf page

could you please help me
is it posible to create for two unrelated objects in salesforce pleas help me
i want to dispay phone image along with input fileld in vf page how to achieve this can you help me 
i have Postion and candidate object in my application candidate having status picklistfiled values are 
selected,Rejacted. i want to filter the selected records and rejected records for the position for that 
record pagelayout how ito achieve this help me   
 
hi i have two objects student__c  and Library__c both are related ojects


trigger createLibrary on student__c (after insert,after delete) {
    
   if(Trigger.isInsert){
       studentTriggerHandler.onStudentInsert(Trigger.New);
   }
   if(Trigger.isDelete){
       studentTriggerHandler.onStudentDelete(Trigger.Old);
   }
   
 }
handler class:
public class studentTriggerHandler{

    public static void onStudentInsert(List<student__c> studRecs){
    
        List<Library__c> lib1=new List<Library__c>(); 
        for(student__c std : studRecs){
        
            Library__c lib=new Library__c();
            lib.name=std.name;
            lib.studentname__c=std.id;
            lib.Enrollment_date__c=std.date__c;
            lib1.add(lib);
        }
        
        if(lib1.size() > 0){
            try{
                insert lib1;
            }catch(Exception ex){
                System.debug('Exeption'+ex);
            } 
          }
        }
    
    public static void onStudentDelete(List<student__c> oldStudRecs){
        
        list<id> stdlist=new list<id>();
        for(student__c  str : oldStudRecs){
            stdlist.add(str.id);
        }
        list<Library__c > liblist=[select id from Library__c where studentname__c in :stdlist];
        delete liblist;
    }

}
I want vf page seach Accounts and search accounts are dispalyed with one check box when  iam section Accounts are display in the next vf page

could you please help me
i have Postion and candidate object in my application candidate having status picklistfiled values are 
selected,Rejacted. i want to filter the selected records and rejected records for the position for that 
record pagelayout how ito achieve this help me