%STPbegin;%STPEND;

ERROR: No logical assign for filename _WEBOUT.
WARNING: No body file. HTML output will not be created.

unable to fix it.plz help

Answers were Sorted based on User's Feedback



%STPbegin;%STPEND; ERROR: No logical assign for filename _WEBOUT. WARNING: No body file. HTML o..

Answer / ravi ayachitam

Before executing your code ,Go to options list --->go to
stored process

Please uncheck Force Streaming to Transient

Then again execute your program. You can able to execute
the stp.

Is This Answer Correct ?    8 Yes 2 No

%STPbegin;%STPEND; ERROR: No logical assign for filename _WEBOUT. WARNING: No body file. HTML o..

Answer / rajesh

%Stpbegin;
*processbody;
%Stpend;

This is basically for creating the stored process; by using
this on the web portal we can give the client to see his
data in streaming maner. for this we have to write the code
in macros. so here _webout means it is not connected with
the webserver, so give the portal number of the web service
and start the Tamcat and xythos.

Is This Answer Correct ?    0 Yes 5 No

Post New Answer

More SAS Interview Questions

Describe a time when you were really stuck on a problem and how you solved it?

0 Answers   Oracle,


What are the differences between sum function and using “+” operator?

0 Answers  


data data1; input dt account; format dt date9.; cards; 1745 1230 1756 1120 1788 1130 1767 1240 ; data data2; input startdt enddt total; format startdt date9. enddt date9.; cards; 1657 1834 12300 1557 1758 16800 1789 1789 12300 1788 1345 12383 1899 1899 13250 ; proc sql; create table data3 as select * from data1 as x left join data2 as y on x.dt>=y.startdt and x.dt<=y.enddt; quit; Here, we are getting cartision product. But,I want left join report consisting of this program. It should not get duplicate values. you can modify the program also.

0 Answers  


How would you generate 1000 observations from a normal distribution with a mean of 50 and standard deviation of 20. How would you use PROC CHART to look at the distribution? Describe the shape of the distribution.

1 Answers  


6) Explain about below automatic variables a) _N_ b) _ERROR_ c) _CHAR_ d) _NUMERIC_ e) _ALL_ f) FIRST.BY VARIABLE g) LAST.BY VARIABLE h) _NAME_ i) _TYPE_ j) _FREQ_ k) _STAT_ l) _BREAK

1 Answers   IBM, SAS,






for whom is sas data integration studio designed? : Sas-di

0 Answers  


What is the difference between reading data from an external file and reading data from an existing data set?

0 Answers  


Are you sensitive to code walk-throughs peer review or QC review?

0 Answers   Quintiles,


What is slibref?

0 Answers  


/* This is example of age caluculate wihtout to display perfect days and years in output window */ data age; retain dob "12jun2003"d now "24may2011"d; age1=now-dob; age=(now-dob)/365.25; years=int(age); days1=round((age-years)*365.25); months=month(now)-1; if days1 gt 30 and months in(12,10,8,6,4,2)then do; month1=days1/30.4375; month=int(days1/30.4375); if day(now)=1 then days=1; else days=round((month1-month)*30.4375)+1; drop days1 month1 month; end; else if days1 gt 30 and months in (1,3,5,7,9,11)then do; month1=days1/30.4375; month=int(days1/30.4375); if day(now)=1 then days=1; else days=round((month1-month) *30.4375); drop days1 month1 month; end; drop age age1; proc print data=age; format dob now date.; run;

1 Answers   Emerio,


where will go the observations that were deleted by delete statement?

2 Answers  


what do the sas log messages "numeric values have been converted to character" mean? : Sas programming

0 Answers  


Categories