View.openPaginatedReportDialog(viewName, restrictionsForDataSources, parametersForDataSources, x, y, width, height)

Opens new dialog window and displays specified paginated report view.

See also: View-Level Security

Parameters

Parameter Description
viewName (String) a paginated report view name
restrictionsForDataSources (JSON object) (optional) Restrictions to be applied to the dialog view content.
e.g. {dataSourceId1: Ab.view.Restriction, dataSourceId2: Ab.view.Restriction}
parametersForDataSources (JSON object) (optional) Parameters to be applied to the dialog view content.
e.g. {parameterName1: value, parameterName1: value ...}
x (optional) x position of the new window. Not used (dialog is centered)
y optional) y position of the new window. Not used (dialog is centered)
width (optional) width of the new window. Default = 800px
height (optional) height of the new window. Default = 600px

Example

var parameters = {
'siteRestriction': "(eq.bl_id IN (SELECT DISTINCT bl_id FROM bl WHERE site_id='" + siteClause.value + "'))"
};

restriction.removeClause("bl.site_id");
var restrictions = {
'ds_abApEqByDpPgrp': restriction,
'ds_abApEqByDpPgrp_details': restriction
};

View.openPaginatedReportDialog('ab-ap-eq-by-dp-pgrp.axvw', restrictions, parameters);