Published at: 2026-09-17

BI access functions quick start


This guide helps developers quickly get started with calling BI access functions to retrieve data.

Completion conditions

  • You have the ViewId of the BI chart, crosstab report, or joined report.
  • You understand the basics of the APL language.

Step 1: Load chart data

def(isError,data,errorMsg) = Fx.BI.loadViewData("BI_62174baf180c0b000183a7a6")
if(!isError){
  def page = data["page"]
  log.info("Page 1 data set: "+data["dataSet"])
}

Step 2: Process the returned data

The returned data follows a unified two-dimensional table structure. The header (displayFields) and the data set (dataSet) are returned separately and map to each other in pairs.
For more function details, see:
Submit Feedback