/* * Licensed Materials - Property of IBM * * IBM Cognos Products: SHARE * * (C) Copyright IBM Corp. 2016 * * US Government Users Restricted Rights - Use, duplication or disclosure * restricted by GSA ADP Schedule Contract with IBM Corp. */ define([ 'bi/schedule/views/ScheduleView' ], function(View) { 'use strict'; var datasetScheduleView = View.extend({ /** * @constructor */ init: function(options) { options.showOptions = false; datasetScheduleView.inherited('init', this, arguments); this.options = { delivery: { save: { notify: false } }, outputLocale: [this.defaultLocale], pdf:{}, burst:false, outputFormat: ['dataSet'] }; } }); return datasetScheduleView; });