⟵ hearthere ⟶
  • Training course
  • Creating simple tables and fields
  • Codes base level
  • Selects and links between tables
  • Table settings basic level
  • Prefilters base level
  • Conditional formatting basic level
  • Action codes base level
  • Using pop-up windows
  • Cycles base level
  • Roles and users on the web
  • Codes advanced level
  • Action codes advanced level
  • Prefilters advanced level
  • Field and table settings advanced level
  • Cycles advanced level
  • Formatting advanced level
  • Select-Tree
  • Executing a scheduled action code
  • General
  • Ordering and overlapping of running crowns
  • Printing and emailing
  • Notifications
  • API interaction
  • Adaptivity and Sections
  • General

    What conditions must be met for the schedule code to run?

    In detail about crons in the documentation.

    The code must be filled in and status included in the table System tables —> Main —> Settings and cron —> Crons.

    Which field code is executed on a schedule?

    From the code field.

    At what intervals will the task run if all the time fields are empty?

    Once per minute.

    At what intervals and at what point the task will run if the hour field is 0, and all other fields are blank?

    From 0:00 to 1:00 every minute.

    What should be specified in the time fields to run the task once a day at 11 pm?

    Minutes = 0, Hours = 23

    How do I execute the schedule code manually?

    By the button do_it_now.

    What functions cannot be used in schedule codes?

    Do not use linkTo... functions as they open windows!

    What is the problem with linkToScript and what should be used instead?

    linkToScript opens a window and does not work in crons. Instead, getFromScript is used.

    How to check if the schedule code works?

    Place in code and enable cron in the line where all time intervals are empty:


    =:
    set(table: $#ntn; field: 'status' = false; where: 'id' = #id)

    When crons are running within a minute, the activity checkbox should be unchecked.