var fDesc=new Array();
fDesc[0] = "Whether you want to report data from your SD module, your MM module, your FI module, your HR module or any other SAP® module, Kearo can support you.
Kearo offers a quick deployment, a clear user interface and of course a simple way of extracting SAP® information and reporting that information in Excel™.
Kearo is an easy to use and affordable Business Intelligence solution which makes use of existing technologies such as SQL Server and Excel™.
It is the ideal reporting software if you need to report SAP data quickly and easily.
Kearo keeps it simple by combining and automating following 3 core functionalities:
-SAP® data can be easily extracted without heavy deployments or implementations.
-The extracted SAP® data can be analysed in many different ways.
-The results of the analysis can be reported in Excel™.";
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 = '';
}
}