var fDesc=new Array();
fDesc[0] = "JDETrace is a Debug Log tracing utility for XE through E90. Use this to analyze SQL, ER events and BSFN calls in a jdedebug.log. The data is broken out by process/thread and displayed in a tree control.
-Follow the flow of a session and find BSFN errors/warnings.
-Paste business function parameters to the clipboard for use with JDE Object Browser
-Dynamically control trace status (jdedebug.log) for any process
-Truncate jdedebug.log files with one click
-Delete global tables, dddict and ddtext spec files
-Date conversion tool
-SQL Analysis Pane shows the activity on all referenced tables
-Cache Analysis Pane shows all cache activity
-BSFN Analysis Pane shows each function reference with time statistics
-Includes support for JAS debug files.
-Details show the execution time of a BSFN or SQL statement
-Long Tasks pane lists BSFN calls or SQL statements with a long execution time
-Errors/Warnings pane lists instances of BFSN warning/errors and GBR Errors";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}