Activity › Forums › Salesforce® Discussions › What is CronTrigger in Salesforce?
-
What is CronTrigger in Salesforce?
Posted by Ratnesh on June 8, 2020 at 6:19 AMWhat is CronTrigger in Salesforce?
Shweta replied 5 years, 11 months ago 5 Members · 4 Replies -
4 Replies
-
CronTrigger contains schedule information for a scheduled job.
CronTrigger is similar to a cron job on UNIX systems. - [adinserter block='9']
-
CronTrigger contains schedule information for a scheduled job.
CronTrigger is similar to a cron job on UNIX systems. -
CronTrigger. Contains schedule information for a scheduled job.
-
CronTrigger: It is similar to a cron job on UNIX systems. It is the parent job that will be run, it can have many runs attached to it.
List<CronTrigger> listCronTrigger = [select Id, OwnerId, CronExpression from CronTrigger
where CronExpression like ‘% MyJobName’];
Log In to reply.