• Bhavneesh Saluja
  • NEWBIE
  • 20 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 2
    Replies
We are trying to attach the files to Record of Custom Object. The files are attached using code and not UI. CWant to know if the limit of 25 MB file size applies to One record of Object or Limit is on single file attached to record. How many files we can attach to Single record within Salesforce and what should be total size. 
For E.g. I want to attach 10 files of 10 MB each to Single record of custom object. Can anyone confirm if that is possible.  
 
Can I schedule a normal apex class which has few batch classes executed within it?  For Ex: 
 public class A{
//Some Code....
    BatchCLass B= new BatchCLass();
  Database.executebatch(B,200);
Batchcls C= new Batchcls();
Database.executebatch(C,200);
//Some Code...
}
Now i want to write a scheduler class for Apex class A. Will normal Scheduler class work for this scenario  or is there any restriction from Salesforce on this.
Any leads would be appreciated. 

Thanks in Advance !!!