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