@ssaha wrote:
Using ODS CSV, when I am running from a stored process program the data is not getting populated in the csv file. It is showing blank.
For your reference, I used this ods csv code. I ran the stored process program from SAS 9.3
ods _all_ close;
ods csv file="/trnapp/sas/dev/projects/so/sho/num_as_char28.csv" options(Prepend_Equals='Yes' quote_by_type="Yes" );
proc print data=adw_mwh_to;
run;
ods csv close;
Is there any LOG entry related to this? If so show the relevant part. Paste into a code box on the forum opened using the {I} icon to preserve formatting.
From the path you show for the output it is not possible to tell if you path starts at a drive map point or not. If "trnapp" is not a mount point then the output may have been directed to the default SAS executing directory and assumed that you wanted the location subordinate to that location.