Skip to main content
Question

Event daily schedule execution

  • November 19, 2025
  • 6 replies
  • 58 views

Forum|alt.badge.img+1

Hello,

Is it possible to schedule the execution of an event to run it daily ?

6 replies

Forum|alt.badge.img+17
  • Superhero (Partner)
  • November 19, 2025

One of the way is to find database task schduled in daily rutine and then use BACKGROUD_JOB_PROCESSED built-in event to exeute event action with condition equal to database procedure.


Forum|alt.badge.img+1
  • Author
  • Do Gooder (Customer)
  • November 19, 2025

I don’t understand how to gather informations that you mention and how to set up the database task scheduled to execute my custom event


Forum|alt.badge.img+1
  • Author
  • Do Gooder (Customer)
  • November 20, 2025

Hello ​@knepiosko,

After a night to think about it, I understood what you were saying and how to implement your solution into my environment.

Is there a way to create a new task scheduled to execute my event instead of using an existing one ?


Forum|alt.badge.img+17
  • Superhero (Partner)
  • November 20, 2025

Hi ​@Corentin 

My propose is to schedule any cleanup database task which hasn’t been scheduled yet and is not going to be scheduled in future. Example procedure MOBILE%


Savinda.Tennakoon
Hero (Employee)
Forum|alt.badge.img+8

Yes, it is possible to schedule the execution of an event in IFS, but not directly through the Event Action configuration alone. You need to use Background Jobs or Scheduled Tasks in IFS to achieve this.

How to Schedule an Event Daily

  1. Create the Event Action

    • Define your event logic in Event Action Studio or Event Management.
  2. Wrap the Event in a Custom LU or PL/SQL Procedure

    • If the event is based on a database trigger, you cannot schedule it directly.
    • Instead, create a procedure that calls the event logic.
  3. Use Background Jobs

    • Navigate to:
      Solution Manager → Background Jobs → Schedule Job
    • Create a job that runs your procedure or report.
    • Set the recurrence to Daily.
  4. Alternative: Scheduled Task

    • In Application Server Tasks, you can configure scheduled tasks for recurring execution.

dsj
Ultimate Hero (Partner)
Forum|alt.badge.img+22
  • Ultimate Hero (Partner)
  • November 20, 2025

Hi ​@Corentin 

 

You can use the same method describe in this idea to schedule an event action

Timer start event in workflow | IFS Community

  • Create a simple custom entity with one attribute
  • Create a MIGRATE_SOURCE_DATA data migration job to enter data to above entity (use DUAL as source and just use a default value in the source mappings for the column)
  • Schedule the DM job as you wish
  • Create an event to trigger when creating a new record on our custom table
  • create an event action