-
Attachments in Nested Workflow
Hi, Should <wftask> element automatically pass attached files to child workflow? It appears so going by the documentation. But in reality this is not happening. I am in TS 6.1 on Solaris. My wftask element looks like this - <wftask name='nested_wf' owner = 'admin' description = 'Initiate the nested review WF' start = 'f'>…
-
To find current task name
hi, I want to know the current task name, so that i can have appropriate logic to get required data for the task. I want to have this code in the workflow can anybody tell me how to find the current task name. thanks
-
Submission of unmodified files
In TS 5.5, when unmodified files are selected and the "Submit" button is clicked, user gets a message "There are no modified files". In TS 6.1, CCPRO, the same action brings up all available submit workflow templates and allow the user to run a job. I tried with the default submit workflow, in the end the submit task did…
-
Problem with iwupdate?
I'm trying to use "iwupdate" to copy an older file from STAGING to the WORKAREA. I know that this scenario is not what iwupdate is intended for, but I'm doing this as root with the -x flag on the command and it still complains about the source being older than the destination. It also complained when I tried to use iwcp.…
-
forcing save event ?
I would like to know if it's possible to force a onSave event. I am calling a CGI (cgi-callout) but I want it to be executed only if the DCR is saved with valid fields. So far, we're first doing a IWDatacapture.save() just before calling the CGI but this only invoke the onSaveDone event so validations are not checked. I…
-
setVisibility
Hello, Anyone already succeeded in hiding a button (cgi-callout) in a DCT ? I am trying this but the button is always visible ... <script> <![CDATA[ testButton.setVisibility(false); ]]> </script> ... <item name="testButton"> <hidden> <cgi-callout label="Test Button" /> </hidden> </item> ...
-
UnsatisfiedLinkError using ContentServicesTM SDK
I´m trying make a programa that uses ContentServicesTM SDK to obtain a CSClient. The code for do this is: public class Test{ public static void main(String[] args) throws Exception { Properties properties = new Properties(); properties.setProperty("com.interwoven.cssdk.factory.CSFactory",…
-
DD not getting invoked from a workflow
Hi I am trying to run datadeploy from a command line tool. However when i initiate this using a workflow doesnt work.Any ideas!! ________________ iwdd.sh #!/usr/bin/bash export ORACLE_HOME=/applications/oracle/product/9.2.0 export…
-
using dcr value in pt
Hi, I want to remove extra <p> added by the visual format in the dcr content of replicant text area control. So i am using following code. <iw_iterate list='dcr.Paragraphs' var='sec'> <FONT FACE="Times New Roman" SIZE=3> <iw_perl> <![CDATA[ $content = iwpt_dcr_value'dcr.Paragraphs.Paragraph'); $content =~ s/<p[^>]*>//g;…
-
Submit hangs the machine
Hi, I'm using Teamsite 5.5.2 on windows 2000 server with SP2, when i tried to submit a file it hangs the machine and fails where as submit direct works fine. Can anybody help me with this one Thanks in advance, -rashmi
-
TeamSite 7
Starting this thread hoping to gather information on TeamSite 7. What are the architectural changes expected to be? Would it be possible to migrate directly from 5.5 to 7? If they are going to be significant it may make sense to skip 6.5 so we only have to recode and QA the customizations once. What is the timeline for…
-
links in data capture template / record
I have a need to have an active, clickable, anchor for each replicating DCR element. When editing the DCR through the interface, the link could be clickable to pre-defined value from the DCR. I hope this made sense. -Jon
-
Creating Duotones?
Hi all. Has anyone tried to create Duotones with a task? If so, how have you done it? Photoshop 7.0 has a "Duotone" image mode, but the MediaBin Color Converter primitive does not have it. Also, in Photoshop you can save a Duotone Options file (.ADO), but I haven't been able to find if and how I can use it in a MediaBin…
-
Removing Edit Wizard
Teamsite 6.1 / Solaris Is there a way of turing off the edit wizard for certain file extensions? Thanks Simon BT Syntegra
-
DAS not deleting records when DCR deleted
Hi there, DAS is not deleting the records when DCRs are getting deleted from workarea and submitted to the Staging Area using Submit Direct. DataDeploy version is 5.6 with SP1 and TeamSite version is 5.5.2 with SP6. EventSubsystem is also enabled to trigger all events except DestroyEditions. Thanks in Advance. Naveen
-
modify the behaviour of the preview button
I need to modify the behaviour of the preview button in the template to call a "custom preview module" for some branches. I saw in TS 5.5.2, this was done in /iw-home/httpd/webapps/webdesk/templating/datacapture_buttonframe.jsp I am trying to do the same in TS 6.1, i did modify…
-
IWNameFactory.setAutoDCRPathGenerator event
Hi, I wanted to Auto Generate DCR name while saving new DCRs. I am using IWNameFactory.setAutoDCRPathGenerator to generate name for the new DCR so that it bypass the Save browser dialog. But it appears that the event is not getting registered. I am using following code snippet in my script.js file -…
-
iwproxy memory consumption
iwserver: 5.5.2 Build 20638 Interwoven 20030604 on Windows 2000. iwproxy has consumed almost 500MB of RAM. Could this be bugs in proxy configuration (which is minimal here), or is this a bug in the proxy itself? I remember some posts in the wayback machine about iwproxy memory leaks, but I thought they had been fixed long…
-
6.1 Upgrade Failure
Hello Moderator..... We have just spent another long weekend in attempt to upgrade our production environment. The errors were plentiful and documentation inadequate. I have been monitoring these forums for months now. Multiple posts in several forums have asked for a list of happily migrated customers. To date this is has…
-
format changes
Hi, I am facing problem with visual format editor. If I copy and paste any content of style 'Times new roman' and don't disturb content (means i don't change anything in VE), i see different font when I preview or generate. I checked the souce by clicking on 'view source', and observed that <p> tag dosen't have font…
-
Permissions corrupted.
Hi, We are facing permission related problem in teamsite 5.5.2 on windows. All of a sudden the user groups that are assigned to directories in teamsite are being displayed as numbers instead of group names. And users are not able to edit any file in the directory as it throws the error 'Not permitted to edit in the…
-
IIS not working
Hi, We have problem in opening a html file in teamsite. The browser hangs. If I browse http://<server>/iw-mount, we are getting error page. We are able to login, navigate into teamsite directory, where as preview and opening any html is failing. We restarted the IIS, but still was of no use. We have clustered env.…
-
To find workflow initiator.
Hi, I want to send a mail to reviewer after the file is submitted. I have administrator as the owner of the mail(external task). I want this mail to be copied to author also. How can I get the workflow initiator's user id? currently i am using dcr.workflowinformation.task[1]@owner to find the owner of current [0] and next…