-
removing a file from a task
Is there a way to remove a file from a task. For instance if a file matches a certain vpath, remove it from the task?? Thanks.. Lucas Cochrane lcochrane@dc.com
-
webdesk task list
All, Is there a way to default to the task list when users log into webdesk? If if someone has tasks, they are automatically brought into their file view. I know it is easy for the user to simply select Tasks, but I was wondering if there was a way to default to tasks upon login... Thanks Lucas Cochrane lcochrane@dc.com
-
workflow ideas???
Though some folks out there might be able to help me with a workflow design... Essentially, our users will submit a DCR and our workflow kicks off. What we want to happen is start an external task that is going to validate some DCR values, if the values aren't good, they will have a <usertask> to go fix them. If there are…
-
batch processingf
Hi All, Is there a way to run a script (that is usually executed in workflow) on a bunch of files. For example, on Save and Close, we run a one-task workflow that uses an external task to set some metadata on the DCR. Is there a way to run this on all files in a WORKAREA. I guess we could set up this script to also run in…
-
modified files
All, I am a little confused as to what TeamSite is considering a modified file. We are running an external task in workflow that is setting metadata and extended attributes on a file. When the workflow finishes, it is showing the correct system time, modified by SYSTEM (W2K platform), but there is no pencil all the file…
-
workflow file operations
All, Is there a way to manipulate which options are available for a certain file in workflow. For example, we are using an external task to kick off a script, if the file is rejected, the user needs to revisit the metadata on the file. But, from within workflow, there is no "Set Metadata" on the File Operation drop-down…
-
delete from STAGING in a workflow
Is there a way to delete a file from STAGING in a workflow. We want to delete a file by a workflow, but we then want to submit that delete to STAGING. Is a CLT that will do this, or something that has to be completely custom coded. Our platform is Windows 2000, TeamSite 5.5.2 Thanks Lucas Cochrane lcochrane@dc.com
-
finding all branches and workareas
Is there a Teamsite function that will find all branches and workareas under a certain volume (u.e. default\main) or a parent branch? Lucas Cochrane lcochrane@dc.com
-
iwevents log
Hi All, I am trying to manipulate the iwevents.log file. Is there a way I can execute the following code on a Windows 2000 platform $eventlog = `$iwhome/iwgetelog`; chop($eventlog); $tailevent=`greg Submit $eventlog |tail -1`; Basically, it's the last line of code that won't work.. Any suggestions?? Thanks. Lucas Cochrane…
-
manually removing jobs from task list
Is there a way to manually remove jobs from the Task List (or the workflow subsystem for that matter)? Some of our jobs got corrputed and cannot be removed by choosing "Remove Job" from the "Job Options" drop down list - we receive an error :-( Any help here would be great. Thanks. Lucas Cochrane lcochrane@dc.com
-
mkdir in perl script
All, I am trying to create a directory in workflow with a perl script. However, I am not sure of the syntax that should be used. We are capturing the directory in a variable $directory = y:\default\main\testing\WORKAREA\testing\docs\ but I need to know how to throw the proper system command to create this. Any thoughts on…
-
regex :-(
All, Interesting regex question, I know I should be an expert, but I am not there yet. say I have a string with $string = My "name" is "Fred" and I "know" something Is there a way to replace the first quote with something and the second quote with something, and repeat. So for instance, the string above could become…
-
delete data record
What exactly does the Delete Data Record option do in WebDesk Pro? Is this the same as Delete in WebDesk? Does a workflow get kicked off. Problem being we had some users delete data records, but then we have generated file that we created with those data records, now we cannot regenerate the file, and when we edit from the…
-
new directories
All, Is there a way to validate a new directory being created in Teamsite. For instance when an editor creates a new directory in the WebDesk Pro interface, any characters can be put in the name. Is there a way to validate and strip out certain characters, or not let the directory be created? Any thoughts on this would be…
-
Y: vs. Y:\
I am having a **** of a time getting an external task script to run from workflow. I think it has to do with the fact that iwgetmount returns y: when it is run from a workflow, and y:\ when it is run from command prompt. It runs perfectly from command prompt (with jobid, taskid and workarea passed in as ARGV 0..2), but…
-
file owner
Is there an easy way to get the owner of a file/dcr with iwextattr.exe? Lucas Cochrane lcochrane@dc.com
-
dct design
Is there a way to have an option in the datacapture template disabled if a user select something. For instance we want to user to choose the option of having the "Last Update Date" set automatically, or the user entering a manual date. We want to provide them this option with a radio button ("yes","no"), if the user select…
-
file "exists" problems
I am having a problem checking if a file exists in Teamsite, it does actually exist, but my code is saying it doesn't $file = templatedata\testing\FR\data\final-test $EN = $file; $EN =~ s/FR/EN/; if (-e $EN) { print "file exists"; } else { print "file doesn't exist"; } As you can tell, I am getting the "fiel doesn't exist"…
-
perplexing issue
All, What is the best method for applying data capture records (DCR's) to new DCT's. We have a whole whack of old DCR's, and we have since changed out DCT. What is the "best practice" way to update the old DCR's so they are associated with the new DCT. Support has not provided much, and there is no documentation on the…
-
regernate in workflow
All, Is there a way to call a "regenate page" task in workflow, that will regenerate pages. We have a problem where some of our metadata (French Values) are not being written during the initial page generation, but when we regerate the page, everything is published. I know there is iwgenhtml.cgi, but can this be used in…
-
inline command for system date
Does anyone have a good idea as to get the server date to write to a DCT via inline command. I am using an inline command, but can it take the system date and make it read-only so the user cannot edit this? Any thoughts would help a lot... Lucas Cochrane lcochrane@dc.com
-
regenerating pages
All, I have come across a small issue with our Teamsite environment. If a file is generated from a DCR, a user can edit the file (say .shtml for example) and the DCR is brought up for the user to make changes. The problem is, we would like our tt_data workflow to be kicked off when the users "Saves and Closes" (i.e. "Would…
-
iwatsub trigger
All, I am a little confiused aS to how to get the iwatsub.exe trigger to work. I noticed a KB article (1424) on how to make it work on NT, but are those instructions necessary? Addtionally we use W2K. Initially I just want to dump the parameters to a text file, but again I am not sure how to set this up. Any help on this…
-
Webdesk Pro
Has anyone found the ability to change font sizes in WebDesk. When we change fonts in the IE options, WebDesk Pro take the changes, but we cannot change fonts for the WebDesk interface. Does anyone have any thought regarding this one? Thanks. Lucas Cochrane lcochrane@dc.com
-
iwsubmit
Does anyone know the command line syntax for performing an iwsubmit on a whole workarea i.e. y:\default\main\test\WORKAREA\test Any input would be great! I can't seem to get it working. Platform Windows 2000 Teamsite 5.5.2 Lucas Cochrane lcochrane@dc.com
-
environment variables
what are the main environment variables that need to be set on a W@K platform I know of... drive letter:/iw-home/local/bin drive letter:/iw-home/iw-perl/bin i know there is a few more, any help would be excellent thanks. Lucas Cochrane lcochrane@dc.com
-
workflow and cpu
We have a two hundred or so workflows that have hung up in our task list. Will this be a burden on CPU resources? Lucas Cochrane lcochrane@dc.com
-
directory naming
We have scripts that crash when somebody tries to submit files that are in a directory that is named with spaces. We have thoroughly tested, and have noticed this ONLY happens when files are submitted from directories with spaces in the file names. Has anyone heard of this before? Lucas Cochrane lcochrane@dc.com