Hi,I have a working workflow to generate HTML after we select finish button in the data entered DCT.then I have to deploy that creating html to the one of server.currently I have a working workflow to deploy the html by selecting that html ->submit and by selecting deploy workflow.but what I have to do the this two steps in together.currently I have to do it from two steps.1. generate html from dct2. select html and use deploy workflowif i able to select the html from workflow i can do these two from one step right?is there a way to select html from work flow?Thanks for ur time.
On clicking the finish button of DCT, are you using customised script being called to generate the HTML page? If yes then within the same script you have to attach that particular generated file to the workflow.Once the file got attached to the workflow... you can very well manage the same to get deployed in your concurrent task of your workflow.
I'm not sure that this makes sense. If you are editing a DCT and click Finish then presumably you haven't got as far as instantiating a workflow by submitting a generated file, therefore you have nothing to attach the file to.I am guessing that what the original poster is trying to achieve is to have an HTML file automatically deployed after generation.If this is the case then I would suggest that there isn't probably a great deal of point in instantiating a workflow.I'd say the that simplest approach to the problem is probably to use an AT trigger to catch the generation. The trigger could then write a filelist and trigger on OD filelist deployment.
I know how to get the attached files from workflow.@iw_files = $task->GetFiles();we can get like this right?in one workflow im calling 2 external tasks. is there a way to set files in one external task ( in perl script) and retrieving that from other external tasks ipl.if so pls tel me how to set.