<div dir="ltr">This is probably a pretty obscure area of CUCM, but here goes...<div><br></div><div>I want to take a list of ELINs, and run them through the multiple analyzer in DNA, to see if they all get prefixed with 913 appropriately.</div><div><br></div><div>However, the version of DNA I am doing this on, is 11.5 and has the following defect (typos are not my own):</div><div><br></div><blockquote style="margin:0 0 0 40px;border:none;padding:0px"><div><b>Do analysis shows viewfile contents in MUltiple Analyzer of DNA Analysis</b></div><div><br></div><div><b>Symptom:</b></div><div>Go t DNA -> Analysis -> Multiple Analyzer.</div><div>Upload the csv file (downloaded from the template and converted to csv format)</div><div>Select a csv file and do view file contents.</div><div>We see the output of the file contents.</div><div><br></div><div>Then "DO NALYSIS". But we don't see any dna analysis output. Rather we see the same view file contents again. The URL is also of view file contents.</div><div><br></div><div>Source: <a href="https://bst.cloudapps.cisco.com/bugsearch/bug/CSCuy89525">https://bst.cloudapps.cisco.com/bugsearch/bug/CSCuy89525</a></div></blockquote><div><br></div><div>It's still open too, so I would assume anything new is also affected.</div><div><br></div><div>When I look at the source code for what is supposed to happen when I click the Do Analysis button, it executes the JS function called doAnalysisForMultiple.</div><div><br></div><div><div><img src="cid:ii_k1ax7z5m0" alt="image.png" style="margin-right: 0px;"><br></div></div><div><br></div><div>That function in the source looks like this (cleaned up a bit):</div><div><br></div><blockquote style="margin:0 0 0 40px;border:none;padding:0px"><div><font face="monospace">function <font color="#cc0000">doAnalysisForMultiple</font>() {</font></div><div><font face="monospace">    if (validateFileSelected()) </font><span style="font-family:monospace">{</span></div><div><font face="monospace">        if (document.forms[0].learnProgress.value == "true") </font><span style="font-family:monospace">{</span></div><div><font face="monospace">            alert("Adding of learned patterns in progress. Please refresh the page and try again after sometime"); //CCD SAF Changes</font></div><div><font face="monospace">        } </font><span style="font-family:monospace">else </span><span style="font-family:monospace">{</span></div><div><font face="monospace">            <span style="background-color:rgb(255,242,204)">window.open("/dna/viewfilecontents.do?fileName="+document.forms[0].sourceFile.value</span>,"","toolbar=no,menubar=no,scrollbars=yes,resizable=yes,location=no,status=no,width=800,heigth=600");</font></div><div><font face="monospace">        }</font></div><div><font face="monospace">    }</font></div><div><span style="font-family:monospace">}</span></div></blockquote><div><br></div><div>As you can see, the reason the file contents are displayed, is because that's how it's coded: <span style="background-color:rgb(255,242,204)">viewfilecontents.do</span>.</div><div><br></div><div>Just like the function to view the file contents (cleaned up a bit):</div><div><br></div><blockquote style="margin:0 0 0 40px;border:none;padding:0px"><div><font face="monospace">function <font color="#cc0000">viewSelectedFileContents</font>() {</font></div><div><font face="monospace">    if (validateFileSelected()) </font><span style="font-family:monospace">{</span></div><div><font face="monospace">        <span style="background-color:rgb(255,242,204)">window.open("/dna/viewfilecontents.do?fileName="+document.forms[0].sourceFile.value</span>, "", "toolbar=no,menubar=no,scrollbars=yes,resizable=yes,location=no,status=no,width=800,heigth=600");</font></div><div><font face="monospace">    }</font></div><div><font face="monospace">}</font></div></blockquote><div><br></div><div>Perhaps this is a copy and paste error?  If so, I'm wondering if you could look at your various versions for me and post if you have something different in your <font color="#cc0000">doAnalysisForMultiple</font> function.  Something other than the window.open for the viewfilecontents.do page.</div><div><br></div><div>To do so, access the following URL on your CUCM, and then login, followed by right clicking the page and selecting View Source and then search for the string: <i>function doAnalysisForMultiple</i></div><div><span style="background-color:rgb(207,226,243)"><br></span></div><div><font size="4"><a href="https://your-cucm-pub.company.com/dna/multipleanalyzer.do">https://your-cucm-pub.company.com/dna/multipleanalyzer.do</a></font><span style="background-color:rgb(207,226,243)"><br></span></div><div><br></div><div>I'd like to look at what it might be doing in a different version.</div><div><br></div><div>Also, if any Cisco folks could inquire within about the status of this defect, that would be nice.  I'm kind of surprised to see that it's still open and not resolved in 12.5.</div><div><br></div><div><br></div></div>