Skip to main content

This is documentation for Caché & Ensemble. See the InterSystems IRIS version of this content.Opens in a new tab

For information on migrating to InterSystems IRISOpens in a new tab, see Why Migrate to InterSystems IRIS?

Sample.TaskExample1

class Sample.TaskExample1 extends Sample.Task

Defining a task for End Users You want to generate a standard report that the user schedules to run, allowing them the flexibility to choose when it runs. By assigning Properties to the Class we can make items configurable such as where the report will be directed and perhaps a heading to be displayed. The System Management Portal will automatically display the properties for Printer and Heading and will validate that Printer is not "" You can add any logic you would like to any property

Property Inventory

Method Inventory

Properties

property Heading as %String;
Property methods: HeadingDisplayToLogical(), HeadingGet(), HeadingIsValid(), HeadingLogicalToDisplay(), HeadingLogicalToOdbc(), HeadingNormalize(), HeadingSet()
property Printer as %String;
Output printer for report
Property methods: PrinterDisplayToLogical(), PrinterGet(), PrinterLogicalToDisplay(), PrinterLogicalToOdbc(), PrinterNormalize(), PrinterSet()

Methods

method OnTask() as %Status
Your program logic can be here in the OnTask method or in another class or a routine just be sure to return a status code from the OnTask method
classmethod PrinterIsValid(Printer As %String) as %Status

Inherited Members

Inherited Properties

Inherited Methods

FeedbackOpens in a new tab