function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
salmanmanekiasalmanmanekia 

Build a solution to process large data set of Unprocessed agreement to Processed

Hi All,

 

I am new to the concept of Cloud Computing in general and salesforce.com specifically and have a bit of Java experience. I have one task to be done and need commuinty's help in that. Below is the descritption of what is require of me and my questions related to that .

 

1 : Have to create a functionality  to run on schedule that processes the information (Custom Object)

2 : Schedule the functionality in Salesforce

3 : Upload a CSV file example to Unprocessed agreement custom object

 

My questions (Here i am anticipating some direct few lines answer and/or links to the related user guides or tutorials):

For 1: How to create a functionality and to make it run on schedule ?

For 2: What does this statement means ??

For 3: What is the significance of Comma Seperated Values, why and how it can be uploaded.

 

Once again, i am not looking for direct whole solution to this problem but some pointers/ hint to get me started and point me in the right direction  with the saleforce.com

 

Looking forward to hear from you

 

Thanks

 

 

Best Answer chosen by Admin (Salesforce Developers) 
SRKSRK

How to create a functionality and to make it run on schedule ?

SOl:-
Salesfroce provide a interface call Schedulable u need to implemt
Eg:-

global class DCR7daysAlert implements Schedulable
{
    global void execute(SchedulableContext SC)
    {

 

What does this statement means ??

Sol:- On the list page to apex class there is a button Schedule Apex
once u implements a class with Schedulable u can  Schedule it using this button


What is the significance of Comma Seperated Values, why and how it can be uploaded.

U can uplad a file in document or in salesfroce using Apex:inutfile
But i have still dout how to parse the CSV file in Apex i don't think salesfroce provide any method for parsing CSV or Excel