Hi,
I'm new to ocognos can anyone explain how to create a prompt button which prints the report or create a print preview of the report as in word.
Thanks
Prathyu
u can use this code in the HTML item to print current window's content.
<html>
<form>
<button name="Print" value="Print" type="button" onClick = "javascript:window.print();">Click Me</button>
</form>
</html>
thank you...