SASUnit Examples  Version 1.2
_sasunit_reportpagetophtml.sas
Go to the documentation of this file.
1 
20 /* change log
21  19.08.2008 AM national language support
22 */
23 
24 %MACRO _sasunit_reportPageTopHTML (
25  i_title =
26  ,i_current = 1
27 );
28  %_sasunit_reportHeaderHTML(&i_title)
29 
30  %_sasunit_reportTabsHTML(
31  &g_nls_reportPageTop_001
32  ,"overview.html" "scn_overview.html" "cas_overview.html" "auton_overview.html"
33  ,i_current=&i_current
34  )
35 
36  PUT "<h1>&i_title</h1>";
37 
38 %MEND _sasunit_reportPageTopHTML;