Hi!
I'm using the following script in the Initialize event of the Database Script to create a personalized view using an existing view as a template.
The problem is that the new just created view does not inherit the option "Evaluate actions for every document change" from the template view. The template view, of course, has this option checked.
Set templateView = db.GetView(“myTemplateView”)
sql = {SELECT status= “Open”}
Set view = db.CreateView(“My view”, sql, templateView)
Any ideas will be highly apreciated.
tnx,
Rafay2k