Show results of an expression rule on Tempo?

Certified Associate Developer

I have built and tested my first expression rule. I heard from a colleague that there is a simple way of displaying that as record, so I tried creating a new record object. My problem is now that I can only choose between data store entity, process model or expression. Am I barking the wrong tree?

My goal is to display filtered data on tempo in the simplest possible way, without using a process at all.

  Discussion posts and replies are publicly visible

Parents Reply Children
  • 0
    Certified Associate Developer
    in reply to Stewart Burchell

    I have the following expression rule and I would like exactly the output which shows in the preview of the rule shown under records (or if that is not possible somewhere else on the Tempo page).

    a!queryEntity(
      entity: cons!myENTITY,
      query: a!query(
        selection:a!querySelection(
          columns:{
            a!queryColumn(field:"id"),
            a!queryColumn(field:"amount"),
            a!queryColumn(field:"currency"),
          }
        ),
        pagingInfo: a!pagingInfo(
          startIndex: 1,
          batchSize: 3,
          sort:a!sortInfo(
            field:"amount",
            ascending: false()
          )
        )
      ),
      fetchTotalCount: false
    ).data
    

    My hope is that it does not depend on whether the entity comes from an Appian DB or from an external DB (ideally the latter).