Hi,When i am submitting a DCR file to staging a workflow is initiated.This workflow calls an IPL file through external task.I want to read the content of that DCR on IPL file.How can i do that?Please give me the sugeestions to do that.ThanxNidhi....
There are many options available to you... some of them are mentioned below... 1. You can pass the path of DCR as a parameter to IPL. In IPL, you can go to that path and read the DCR. 2. You can read the DCR in workflow itself and pass the data you need in IPL as parameter.I hope this works for you...
My problem is that how can i read the values of DCR on workflow.Is there any command or package defined to read the DCR on IPL.Like on tpl we have iw-load-dcr.Nidhi..
use TeamSite::XMLparser;open(DCR, "$dcrPath") or die("$! - Cannot open DCR (r)...get helpfrom the teamsite admin");local $/=undef;my $xml = ;close DCR;select STDOUT;my $parser = TeamSite::XMLparser->new();my $rootnode = $parser->parse($xml);