You need to sign in to do that
Don't have an account?

Inserting new data using ApexScheduler
i want to insert a new data in custom object using ApexScheduler....AnyExampless..
Thanks
============
VenkatSforce
You need to sign in to do that
Don't have an account?
i want to insert a new data in custom object using ApexScheduler....AnyExampless..
Thanks
============
VenkatSforce
You can insert your data directly in your Scheduler's execute method. Like
execute(...) {
//Insert your custom object data here. For examplae I used account, you can use your custom object
Acccout acc = new Account(Name = 'test');
insert acc;
}
Hi Techforce
i use like this its correct?
Your code is not correct.
Change it like below :--