⟵ 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
  • Cycles tables and tables within a cycle
  • Automatic connection of tables within a cycle
  • How do I access tables inside cycle with codes?
  • Link type fields
  • Recalculating the cycles table when changing within a cycle
  • How to configure cycle accesses for users
  • 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
  • Printing and emailing
  • Notifications
  • API interaction
  • Adaptivity and Sections
  • How do I access tables inside cycle with codes?

    cycles

    What parameter of the select function should be set to get the data from the cycle?

    To refer to a cycle from a table outside the cycle, you need to specify the cycle number in the cycle parameter:


    =:
    select(table: 'table_in_cycle'; cycle: #cycle_id; field: 'field')

    When can I not use the cycle in select functions?

    If you refer inside a cycle from the cycle table from the cycle row. In this case, cycle is automatically substituted by the totem.

    How do I know the cycle number?

    Cycle number is the #id of the row in the cycles table.

    If you are inside a cycle table, you can get the variable number using $#nci (now cycle id).


    =:
    listSum(list: $list) list: selectList(table: 'payments'; field: 'summ'; where: 'order' = $#nci)