I have created an Action in a secondary database which, among other things, is supposed to go through all of the folders in my main mail database and copy the design from one folder, called Computing, to all of the rest. I have based this part of the Action roughly on the sample agent IBM provided as an example for the @UpdateViewDesign function (see http://www-1.ibm.com/support/docview.wss?rs=474&uid=swg21086404). Everything works fine, except for the actual @UpdateViewDesign call. I’ve modified that line so it looks as follows:
Evaluate( |@UpdateViewDesign(“| & view_name & |” ; “Computing”)| )
view_name is the name of the folder to be changed.
The problem, it seems, is that view_name and “Computing” do not contain enough information to indicate to the function which database they are in. Any ideas?