SAS PROC Document - Giving Requested function is not supported when creating HTML page -


created test using proc document below:

ods listing ; ods document name=test(write); proc report data=sashelp.prdsal3 contents=' country wise product , actual sale';   columns country product actual ;  define country / display; define product / display ; run;  ods proctitle=on; title 'this simple proc tabulate procedure';  proc tabulate data=sashelp.prdsal3 ; class country product  ;  var actual; table country * product , actual / contents='sale actuals'; run; ods document close;  ods listing;  proc document name=test; list / levels=all; run; ods listing close;  here listing:  ods listing;  proc document name=test; list / levels=all; run; ods listing close;   listing of: \work.test\ order by: insertion number of levels: 

obs type

1 dir
2 \report#1 dir
3 \report#1report#\report#1 table
4 dir
5 \tabulate#1report#1 dir
6 \tabulate#1\report#1table#1 table

getting error code:

ods html file='c:\documents , settings\ana\output\ods_contents_test.html'; proc document name=test;  replay ; run; ods html close;  note: procedure document used (total process time):       real time           24.64 seconds       cpu time            0.06 seconds   432  proc document name=test; 433   replay ; 434  run;  error: requested function not supported. 435  ods html close; note: remote submit windows complete. 

what problem


Comments

Popular posts from this blog

python - No exponential form of the z-axis in matplotlib-3D-plots -

php - Best Light server (Linux + Web server + Database) for Raspberry Pi -

c# - "Newtonsoft.Json.JsonSerializationException unable to find constructor to use for types" error when deserializing class -