Hi
We are using TeamSite5.5.2 SP3 on Solaris. I would like to create new workflow and add multiple file to the workflow using Menu item.
I am able to create a new workflow from menu item. After invoking the new workflow, no files are attached. Anybody knows, what i can do?
I have defined
#=====================================================================
# Define the file list
#=====================================================================
my
@submit_file = (); # files sorted in unencoded
if (__ELEM__('iw_file')) # form, then html-encoded
{ # by hand via CGI_lite
@submit_file = map { TeamSite::CGI_lite::escape_html_data($_);
} sort __VALUE__('iw_file');
}
and I am adding files using
foreach my $mv_file (
@files) {
push (@{$wft->{tag}{'iw_file'}{value}}, $mv_file);
}
I have files in the
@files like
My
@files = (“dir1/test1.htm”, “dir1/test2.html”); and my areapath is /default/main/test/WORKAREA/content
Thanks
Srini