Skip to main content Skip to complementary content

Creating an on-demand template app

An on-demand template app is a regular Qlik Sense app with one important difference: its load script contains data binding expressions used to formulate the queries made on the data sources. These data binding expressions are used at on-demand app generation time to read values from the selection state of the selection app and bind them to the template app script so that the generated app is loaded with a user-controlled subset of the data.

The template app typically connects to the same data source as the selection app. The load script of a selection app typically loads aggregated data to reduce data volumes while still offering interactive visualizations of important dimensions and measures. The load script of a template app uses queries that load a controlled subset of more granular data.

Information noteAn on-demand template app does not load data directly. Attempting to load data from the template app will result in an error. The template app connection must be valid, but to test whether the connection works correctly, you must generate an on-demand app. When an on-demand app is generated, the load script is modified by the On-demand app service to load the selection state of the on-demand selection app. If the on-demand app generates without error, then you know the connection in template app work correctly.

Structure of a template app

A template app is linked to a selection app using an on-demand app navigation link. The app navigation link includes properties that control the number of records queried when the on-demand app is loaded with data. The load script of the template app contains data binding expressions that specify which field data from the selection app is used to formulate the queries issued when loading data into the on-demand app.

Information noteThere is a sample on-demand template app included in the Qlik Sense installation at ProgramData\Qlik\Examples\OnDemandApp\sample.

The data binding expressions have the form:

$(od_FIELDNAME)

The od_ prefix is used to bind the selection state of the selection app to the load script of the on-demand app, which is created by copying the template app. The part of the data binding expression that follows the od_ prefix must be a name that matches a field in the selection app. When the on-demand app is generated, the current selection state of the selection app is used to obtain the desired values to bind for each field. Each occurrence of a $(od_FIELDNAME) expression in the load script of the newly created on-demand app is replaced with the list of values selected for the corresponding field in the selection state of the selection app.

To understand how to bind values using INLINE load statements:

See: Binding expressions in on-demand template apps

To be valid SQL syntax, the template app's SELECT statement for filtering on multiple values must use an IN clause. The recommended practice is to write a subroutine to create the correct WHERE clause:

SUB ExtendWhere(Name, ValVarName)
  LET T = Name & '_COLNAME';
  LET ColName = $(T);
  LET Values = $(ValVarName);
  IF len(Values) > 0 THEN
  	IF len(WHERE_PART) > 0 THEN
    	LET WHERE_PART = '$(WHERE_PART) AND $(ColName) IN ( $(Values) )';
    ELSE
    	LET WHERE_PART = ' WHERE $(ColName) IN ( $(Values) )';
    ENDIF
  ENDIF
END SUB;

Prior to calling the ExtendWhere subroutine, you must set the WHERE_PART variable.

SET WHERE_PART = '';

If you want the SQL statement to have an unchanging WHERE clause in addition to the clauses that will be inserted by the selection app, insert a 'WHERE <condition>' in the SET statement. Otherwise, use the simple SET statement.

The following is an example of how the ExtendedWhere subroutine is used:

FOR EACH fldname IN 'ORIGIN', 'DEST', 'YEAR', 'QUARTER', 'ORIGIN_STATE_ABR', 'DEST_STATE_ABR'
  LET vallist = $(fldname);
  WHEN (IsNull(vallist)) LET vallist = '';
  IF len(vallist) > 0 THEN
    CALL ExtendWhere('$(fldname)','vallist');
  ENDIF
NEXT fldname

The list of field names should match the names of the fields used in each field binding you created.

Once the value list for each field has been built, a SELECT statement can be written. For example:

SQL SELECT  "MKT_ID",
	     "YEAR",
	     "QUARTER",
            "ORIGIN",
            "ORIGIN_STATE_ABR",
            "DEST",
            "DEST_STATE_ABR",
            "TICKET_CARRIER",
            "FARE_CLASS",
            "PASSENGERS",
            "DISTANCE",
            1 AS "FLIGHT_COUNT"
FROM "SAPH7T"."/QT/AIRPORT_FACT"
$(WHERE_PART);

The $(WHERE_PART) portion of the SELECT statement will be expanded to include the WHERE clause generated by the execution of the FOR-NEXT loop illustrated above. The list of column expressions that follow the SELECT keyword should be modified to match your specific database table's columns.

Warning noteAvoid using the names of fields from the template app model when creating on-demand app binding variables. Variables defined in the script become available in the template app model that is referenced when creating data visualizations. Choosing on-demand app binding variables that do not overlap with fields in the model will prevent unintentional confusion between fields in the template app model and the on-demand app binding variables in the data load script. A good practice is to establish a prefix for on-demand app binding variables. For example, use X_ORIGIN instead of ORIGIN.

Single Sign-On (SSO)

On-demand apps can use single sign-on (SSO) with data sources that support SSO. The engine and the data source must be configured to allow SSO.

Configuring SAP HANA for SAML Single Sign-On with Qlik Sense

Configuring Cloudera Impala for Single Sign-On

Once the engine and data source have been configured for SSO, the template app must enable SSO by adding the following syntax to the template app script:

///!ODAG_SSO

The On-Demand App Service parses the script when an on-demand app is generated and each time it is reloaded.

When an on-demand app is loaded with SSO, the identity of the end user is sent to the data source. The end user must have access to the sources used in the template app's data connections. Only data that user has access to in those sources is loaded, even if a larger set of data is selected.

Warning noteOn-demand apps generated from template apps that use single sign-on (SSO) cannot be published.

Reload nodes for template apps

Administrators can control where on-demand apps are reloaded in a multi-node environment by setting load balancing rules on template apps. When a load balancing rule is set, all apps generated from links to the template app will be loaded according to the rule that applies to the template app. See Managing on-demand apps.

Did this page help you?

If you find any issues with this page or its content – a typo, a missing step, or a technical error – let us know how we can improve!