-
Find all files created after a certain date
I was requested to get a list of all files created after a certain date. 1st plan was: foreach $file $date = `iwattrib $file crdate`; However that date returns the date the version was created, not when the object was created. Only option I can think of (which will be painfully slow) foreach $file get crdate get…
-
close does not work for certain DCRs
Another strange one. I have a DCR, saves file. Close button says closing & nothing happens. Repeatable for that DCR, other DCRs work fine. Create new DCR with name TEST, (same data) it works. Move new DCR to the problem DCR it fails. We are using the buttondisabler code posted last year. TS 552 SP4 Solaris 8. While we have…
-
Workflows during backups
OK, so I had a strange one yesterday. Backup occured 10:30-10:42 pm last night. Workflow in process, steps are: Approval -> DataDeploy (not DAS) from WA to Staging DB -> submit to Staging -> DD Staging area to Prod DB DD log (staging) happened, files were not marked as modified so it looks like the submit happened, but the…
-
lock of deleted & submitted files ?
I went though and deleted a bunch of old files a month ago. Submitted and approved the deletes (they are gone from WA and STAGING, do not exist in any workareas) But I did a view -> list locks and the files are shown as locked because they were deleted. What is the impact of this ? My workflow normally removes locks (on…
-
limit to value-from-field on DD ?
We are deploying 1-N fields to a DB (choosing multiple selections from a scrolling list. From the DD manual, it shows: <column name="Vector" data-type="varchar(40)" value-from-field="Vector List/[0-5]/Vector" is-replicant="yes"/> meaning that up to 6 can be placed in there. Currently we are going over our 500 limit. Is…
-
iwpt_get_flag_param ?
Saw this in a templating WP, but cannot find any docs anyone have any docs on this ? nothing in perldoc Trying to get the name of a DCT within the TPL. Looking for ideas. Andy
-
TS Login - Constraint Violation ?
TS 552 SP4 Sol 2.8, ldap authent. We have 2 users (out of hundreds) that consistantly get rejected on login: from iwtrace: Failed to authenticate user: Constraint violation Failed to authenticate user: additional info: Exceed password retry limit. Please try later. Failed to authenticate user: Constraint violation Failed…
-
TeamSite::WFtask($id) who approved
got an external task that runs right after an approval process. I want to know who approved the transition. From the WF manual, I can get the owner, but can I get the name ? Tips/Pointers/RTFms appreciated Andy
-
submit direct + overwrite + no get latest = revert
This bit us on our config branch. One person renamed a directory and just did a submit direct to clean up, with overwrite. View modified showed only the rename, HOWEVER since they had not done a get latest, it REVERTED all the changes in Staging back the version his workarea had. So, how can I prevent this in the future ?…
-
finding all files submitted on day MM/DD/YYYY
Reporting is not configured. We do not have editions. I have been asked to get a list of all files submitted on a certain day. Log files have been cycled since then. My only idea is to use iwattrib to get prev versions of each file, until I see a submit time on or before said date. Not trivial scripting. Any other (easier)…
-
servlet D errors ?
getting these in iwui: It is really **** up my customers & we may be losing some. Any ideas ? Andy com.interwoven.api.utility.IWInternalError: IWServiceSciface::setSessionServerId(): sci_OpenSession failed.: Sciface error #1 (Failure in operation) at…
-
Webdesk transition hangs
Happens once in a while, users click OK to transition a task in Webdesk (Solaris 2.8 TS 552 SP3) the gui sits there (the button goes away, but nothing happens) Have the user log out & In with webdeskpro & the task has not moved. Transition works there. Nothing meaningful I can find in servletd.log. Anyoine see this before…
-
2 TS instances (one running) on one server ?
We are starting to have some conflicts between TS Dev and Test of TeamSite. What I was thinking about was having 2 installs of TeamSite (only one running at a time): /disk1/iw-home (TEST) /disk2/iw-home (DEV) both using: /disk3/iw-store I understand there will be some moving of config files to switch from one instance to…
-
servlet D errors ?
Have 2 users, work fine on branch A, branch B (which works great for me) gives errors like this: Error: 500 Location: /iw/webdesk/FileSystemListDirectory Internal Servlet Error: java.lang.NullPointerException <> and in servletd.log: com.interwoven.api.utility.IWInternalError: IWServiceSciface::setSessionServerId ():…
-
force DD update ?
Have an issue were 1 DCR inserts in different tables. If I change some fields in the sub tables, but not the main, DD is smart enough to not update the main table. Unfortunately the code looks at the DB record update time for the main record & bypasses it based on the date (incorrectly) I think it is a code problem,…
-
Vis Format browse button not working
re post of this. One user, when she uses the vis formatter to create a hyperlink, the browse button does not work. It just returns with nothing. I have checked IE settings (5.5, win 2K client) and the ektron site for config, it passed. TS 552 SP3 on Solaris 2.8 Tips/pointers/RTFMs appreciated Andy
-
iwsubmit to workflow ?
Is there an easy way to programmatically start a WF ? I had been using submit direct from my perl scripts, but now the users want this to go through the approval process. I assume I would have to pre-load comments for the CGI request. Tips/pointser/RTFMs appreciated Andy
-
finding # of lines changed..
Trying to produce a list (order of magnitude) how many lines of a text file are different from one version to another. Checking the man page for iwrcsdiff and iwdiff does not look like an easy solution. My current choice is iwrcsdiff blah | wc -l, then divide by 2. Gives a larger number, but in the order of magnitude. Any…