Hi
We have JSP pages created and deployed to the web sphere server everytime the user generates pages for preview.
My workflow involves the following things:
1)DCR is selected and upon trying to submit it WF is initiated.
2)Now, the WFT will use the dcr name and create a link to the JSP (already generated and deployed to the web sphere server)
3)Approver will get only the links to the JSPs and not the DCR in his task , he will click on the link and review the JSP , for approval or rejection.
Now I can use iw_file in the wft file to process dcr name and create link to the JSP in the websphere. Lets save the link created to a variable
@array_link2JSP.
my
@selected_file = (__ELEM__('iw_file') ? sort __VALUE__('iw_file') : ());
foreach my $file (
@selected_file){
$link2JSP = sub_createlink2JSP($file);
push (
@array_link2JSP, $link2JSP);
}
My doubt is how do I send this
@array_link2JSP to the approval task(user task) so that the Approver can click on any link (available in the task details window)and review the JSP ?