
AUTO SCHEDULING TASKS
OVERVIEW
- The Kontinuum Scheduler is an
executable which is used to create new workflow instances automatically
USAGE
- The Kontinuum Scheduler is
found in the c:\inetpub\wwwroot\<Kontinuum install directory>\bin
folder
- It can be run from the command
line, from a batch file or from MS Scheduler
- It takes only one command line
option which is a WAFFL statement
- This statement is then
evaluated every time the executable is run
- The statement must return: The
name of the workflow, the Primary key or keys and the name of the user who
is starting this process
- For example: If the Scheduler
is run with the following command line options it will look through the
users database and for every user it finds it will create a new workflow
instance in the Daily Activities workflow
- sqlset{select 'Daily
Activities',cast(cast(DATEPART(m, getdate()) as varchar(4)) + '/' + cast(
DATEPART(d, getdate())as varchar(4)) + '/' + cast( DATEPART(yy,
getdate())as varchar(4)) as datetime) ,user_name from
webandflo1v1.dbo.users}