SASUnit Examples  Version 1.2.1
_sasunit_reportframehtml.sas
Go to the documentation of this file.
1 
20 %MACRO _sasunit_reportFrameHTML (
21  i_repdata =
22  ,o_html =
23 );
24 
25 /* change log
26  18.08.2008 AM added national language support
27 */
28 
29 DATA _null_;
30  SET &i_repdata;
31  FILE "&o_html";
32 
33  IF _n_=1 THEN DO;
34 
35  %_sasunit_reportHeaderHTML(%str(&g_project - &g_nls_reportFrame_001))
36 
37  PUT '<frameset cols="250,*">';
38  PUT ' <frame src="tree.html" name="treefrm">';
39  PUT ' <frame src="overview.html" name="basefrm">';
40  PUT ' <noframes>';
41  PUT ' <a href="home.html">' "&g_nls_reportFrame_002" '</a>';
42  PUT ' </noframes>';
43  PUT '</frameset>';
44 
45  PUT '</body>';
46  PUT '</html>';
47 
48  STOP;
49  END;
50 
51 RUN;
52 
53 %MEND _sasunit_reportFrameHTML;