<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Macro Loop Over fail in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Macro-Loop-Over-fail/m-p/412393#M100867</link>
    <description>&lt;P&gt;Turn on the MPRINT option so you can see the SAS code that your macro generated.&lt;/P&gt;
&lt;P&gt;Most likely right before the error you overwrote your FILENAMES dataset with something different.&lt;/P&gt;</description>
    <pubDate>Fri, 10 Nov 2017 15:48:36 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2017-11-10T15:48:36Z</dc:date>
    <item>
      <title>Macro Loop Over fail</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-Loop-Over-fail/m-p/412376#M100859</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I'm trying to work through a macro that continually fails.&amp;nbsp; This is a macro that should continue to loop and provide multiple output in the results. The error states that I am missing the variable 'Opco' but I have it listed in all my of data step codes.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Here is the Error Log (Most of it, it is long error message).&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname weather2 meta library="weather2" metaout=data;
options symbolgen threads cpucount=actual cleanup;

   
%macro get_filenames(location);
filename _dir_ "%bquote(&amp;amp;location.)";
DATA filenames(keep=memname);
  handle=dopen( '_dir_' );
  if handle &amp;gt; 0 then DO;
    count=dnum(handle);
    DO i=1 to count;
      memname=dread(handle,i);
      output filenames;
    end;
  end;
  rc=dclose(handle);
run;
filename _dir_ clear;
%mend;


%get_filenames(/sas/data/imports);
 


data filenames (keep=memname opco);
   set filenames;
   if (substr(memname,1,6)="wbank_");
   opco = substr(memname,7,3);    *** created variable from positions 7-9: ace dpl pep*;
run;

proc sort data=filenames;
   by opco descending memname;
run;



data filenames;
   set filenames;
   by opco descending memname;
   if first.opco;
run;




 %macro LoopOverDatasets();
 %local datasetCount iter fullname;

 /***********************************************************************/;
 /*  Get number of datasets by counting the records in work.filenames   */;
 /***********************************************************************/;



proc sql noprint;
  select count(*)
  into :datasetCount
  from WORK.filenames;
quit;
  



/*initiate do-loop */;

%let iter=1;   ************ set to 3 to limit procedures;

%do	%while (&amp;amp;iter.&amp;lt;= &amp;amp;datasetCount. );

Proc sort data=filenames (keep=memname opco);  										
   by opco descending memname;  

    /* create variable fullname to retrieve weather data  */;

data work.dataset_list;
   set filenames (firstobs=&amp;amp;iter. obs=&amp;amp;iter.); *only read 1 record;
   by opco descending memname;
   Length passname $41.;
   locname = "'/sas/data/imports/";
   passname = catt(locname,memname);
   fullname = catt(passname,"'");
   output;
run;



Proc sql;
   select fullname
   into :fullname
   from work.dataset_list;
 
filename in_dat &amp;amp;fullname. lrecl=160;

proc import datafile= in_dat 
  dbms=dlm
  out=weath_updt
  replace;
  delimiter='09'x;
  getnames=no;
run; 

data weath_updt(drop=var3 var14 var15 pt yr mo da);
  set weath_updt;
  if var1 = 'CODE' THEN DELETE;
  rename var1 = CODE
         var2 = STATUS
		 var4 = TMP
		 var5 = DPT
		 var6 = HUM 
		 var7 = HID 
		 var8 = WCL 
		 var9 = WDR
		 var10 = WSP 
		 var11 = WET 
		 var12 = CC 
		 var13 = SSM;
  pt=index(var3," ");
  yr = substr(var3,1,4);
  mo = substr(var3,6,2);
  da = substr(var3,9,2);
  /*  HR = sum(substr(var3,pt+1),1);  */
  HOUR = sum(substr(var3,pt+1),1);
  DATE = mdy(mo,da,yr);
  format DATE date7.;
run;

data updt_data 
     updt_forecast;
   set weath_updt;  

   

 tmp_new=input(TMP,best8.); 										
 dpt_new=input(DPT,best8.); 
 hum_new=input(HUM,best8.);
 hid_new=input(HID,best8.); 
 wcl_new=input(WCL,best8.);
 wdr_new=input(WCL,best8.);
 wsp_new=input(WCL,best8.);
 wet_new=input(WCL,best8.);
 cc_new=input(WCL,best8.);
 ssm_new=input(WCL,best8.);


   if status = "O" then output updt_data;
     else output updt_forecast;	 

drop TMP;	 	
drop DPT;			
drop HUM; 			
drop HID; 	
drop WCL;			
drop WDR;			
drop WSP;			
drop WET;	
drop CC ;		
drop SSM;	

rename tmp_new=TMP;
rename dpt_new=DPT;
rename hum_new=HUM;
rename hid_new=HID;
rename wcl_new=WCL;
rename wdr_new=WDR;
rename wsp_new=WSP;
rename wet_new=WET;
rename cc_new=CC;	
rename ssm_new=SSM;

run;



data Weather_data_2;
   /*Set Weather2.Weather_data2; */					
Set Weather2.Weather_ACTUAL;


proc sort data=Weather_data_2;
   by DATE HOUR/*HR*/;
run;


proc sort data=updt_data;
   by DATE HOUR/*HR*/;
run;


data weather2.Weather_data_2b;
   merge Weather_data_2(in=w) updt_data(in=u);
   by DATE HOUR/*HR*/;
   if (w) or (u and not w);
run;


data Weather_Frcast;
   Set Weather2.Weather_Forecast;



 tmp_new=input(TMP,best8.); 
 dpt_new=input(DPT,best8.); 
 hum_new=input(HUM,best8.);
 hid_new=input(HID,best8.); 
 wcl_new=input(WCL,best8.);
 wdr_new=input(WCL,best8.);
 wsp_new=input(WCL,best8.);
 wet_new=input(WCL,best8.);
 cc_new=input(WCL,best8.);
 ssm_new=input(WCL,best8.);

drop TMP;	 	
drop DPT;			
drop HUM; 			
drop HID; 	
drop WCL;			
drop WDR;			
drop WSP;			
drop WET;	
drop CC ;		
drop SSM;	

rename tmp_new=TMP;
rename dpt_new=DPT;
rename hum_new=HUM;
rename hid_new=HID;
rename wcl_new=WCL;
rename wdr_new=WDR;
rename wsp_new=WSP;
rename wet_new=WET;
rename cc_new=CC;	
rename ssm_new=SSM;

/***********************************************************************************/


proc sort data=Weather_Frcast;
   by DATE /*HOUR*/ HR;
run;

proc sort data=updt_forecast;
   by DATE HOUR;
  run;


  		
data updt_forecast;
set updt_forecast;
HR=Hour;
drop hour;
run;
	


data Weather_Frcast;
   merge Weather_Frcast(in=w) updt_forecast(in=u);
   by DATE HR;
   if (w) or (u and not w);
run;

proc sort data=Weather_Frcast;
   by DATE /*HOUR*/ HR;


data Weather2.WForecast;
   set Weather_Frcast;
run;

	

    /*increment the iterator of the loop*/;

%let iter=%eval(&amp;amp;iter.+1);

%end;  *end of do-loop;
%MEND LoopOverDatasets; 




/* Recreate file list to prove the update files have been removed. ;   */
 
%macro get_filenames(location);
filename _dir_ "%bquote(&amp;amp;location.)";
data filenames(keep=memname opco); 																 
  handle=dopen( '_dir_' );
  if handle &amp;gt; 0 then do;
    count=dnum(handle);
    do i=1 to count;
      memname=dread(handle,i);
      output filenames;
    end;
  end;
  rc=dclose(handle);
run;
filename _dir_ clear;
%mend;

%get_filenames(/sas/data/imports);

 

 
data filenames;
   set filenames;
   by opco descending memname;
  if first.opco; 

data filenames;
   set filenames;
   proc print;
   title "list most recent" ;
run;


/*
%mend;

/*call the macro for next pass through list of filenames*/



%LoopOverDatasets()
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: There were 307 observations read from the data set WORK.WEATHER_FRCAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WEATHER2.WFORECAST has 307 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable ITER resolves to 149&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable ITER resolves to 150&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable DATASETCOUNT resolves to 157&lt;/P&gt;&lt;P&gt;ERROR: The variable opco in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable ITER resolves to 150&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable ITER resolves to 150&lt;/P&gt;&lt;P&gt;ERROR: BY variable opco is not on input data set WORK.FILENAMES.&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;WARNING: The data set WORK.DATASET_LIST may be incomplete. When this step was stopped there were 0 observations and 4 variables.&lt;/P&gt;&lt;P&gt;WARNING: Data set WORK.DATASET_LIST was not replaced because this step was stopped.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.02 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: No rows were selected.&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable FULLNAME resolves to&lt;/P&gt;&lt;P&gt;ERROR: Invalid physical name.&lt;/P&gt;&lt;P&gt;ERROR: Error in the FILENAME statement.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SQL used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: Unable to open parameter catalog: SASUSER.PARMS.PARMS.SLIST in update mode. Temporary parameter values will be saved to&lt;/P&gt;&lt;P&gt;WORK.PARMS.PARMS.SLIST.&lt;/P&gt;&lt;P&gt;ERROR: Physical file does not exist, /sas/config/Lev1/SASApp/IN_DAT.&lt;/P&gt;&lt;P&gt;ERROR: Import unsuccessful. See SAS Log for details.&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE IMPORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.02 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.02 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;ERROR: File WORK.WEATH_UPDT.DATA does not exist.&lt;/P&gt;&lt;P&gt;NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column).&lt;/P&gt;&lt;P&gt;353:153 353:178 353:203 353:228 353:9&lt;/P&gt;&lt;P&gt;NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column).&lt;/P&gt;&lt;P&gt;479 The SAS System 08:40 Friday, November 10, 2017&lt;/P&gt;&lt;P&gt;353:2 353:37 353:40 353:43&lt;/P&gt;&lt;P&gt;WARNING: The variable var14 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var15 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var2 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var4 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var5 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var6 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var7 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var8 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var9 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var10 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var11 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var12 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var13 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;WARNING: The data set WORK.WEATH_UPDT may be incomplete. When this step was stopped there were 0 observations and 3 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column).&lt;/P&gt;&lt;P&gt;35189:154 35189:193 35189:222 35189:250 353:27 353:55 353:83 353:111 353:138 353:166&lt;/P&gt;&lt;P&gt;NOTE: Variable TMP is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable DPT is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable HUM is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable HID is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable WCL is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable status is uninitialized.&lt;/P&gt;&lt;P&gt;WARNING: The variable WDR in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable WSP in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable WET in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable CC in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable SSM in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable WDR in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable WSP in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable WET in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable CC in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable SSM in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;NOTE: There were 0 observations read from the data set WORK.WEATH_UPDT.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.UPDT_DATA has 0 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.UPDT_FORECAST has 0 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: There were 948656 observations read from the data set WEATHER2.WEATHER_ACTUAL.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_DATA_2 has 948656 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.38 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.38 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: There were 948656 observations read from the data set WORK.WEATHER_DATA_2.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_DATA_2 has 948656 observations and 14 variables.&lt;/P&gt;&lt;P&gt;480 The SAS System 08:40 Friday, November 10, 2017&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.33 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.73 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: Input data set is empty.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.UPDT_DATA has 0 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: There were 948656 observations read from the data set WORK.WEATHER_DATA_2.&lt;/P&gt;&lt;P&gt;NOTE: There were 0 observations read from the data set WORK.UPDT_DATA.&lt;/P&gt;&lt;P&gt;NOTE: The data set WEATHER2.WEATHER_DATA_2B has 948656 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.41 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.41 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: There were 307 observations read from the data set WEATHER2.WEATHER_FORECAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_FRCAST has 307 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: There were 307 observations read from the data set WORK.WEATHER_FRCAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_FRCAST has 307 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: Input data set is empty.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.UPDT_FORECAST has 0 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: There were 0 observations read from the data set WORK.UPDT_FORECAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.UPDT_FORECAST has 0 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: There were 307 observations read from the data set WORK.WEATHER_FRCAST.&lt;/P&gt;&lt;P&gt;NOTE: There were 0 observations read from the data set WORK.UPDT_FORECAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_FRCAST has 307 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;481 The SAS System 08:40 Friday, November 10, 2017&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: There were 307 observations read from the data set WORK.WEATHER_FRCAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_FRCAST has 307 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: There were 307 observations read from the data set WORK.WEATHER_FRCAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WEATHER2.WFORECAST has 307 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable ITER resolves to 150&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable ITER resolves to 151&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable DATASETCOUNT resolves to 157&lt;/P&gt;&lt;P&gt;ERROR: The variable opco in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable ITER resolves to 151&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable ITER resolves to 151&lt;/P&gt;&lt;P&gt;ERROR: BY variable opco is not on input data set WORK.FILENAMES.&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;WARNING: The data set WORK.DATASET_LIST may be incomplete. When this step was stopped there were 0 observations and 4 variables.&lt;/P&gt;&lt;P&gt;WARNING: Data set WORK.DATASET_LIST was not replaced because this step was stopped.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: No rows were selected.&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable FULLNAME resolves to&lt;/P&gt;&lt;P&gt;ERROR: Invalid physical name.&lt;/P&gt;&lt;P&gt;ERROR: Error in the FILENAME statement.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SQL used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: Unable to open parameter catalog: SASUSER.PARMS.PARMS.SLIST in update mode. Temporary parameter values will be saved to&lt;/P&gt;&lt;P&gt;WORK.PARMS.PARMS.SLIST.&lt;/P&gt;&lt;P&gt;ERROR: Physical file does not exist, /sas/config/Lev1/SASApp/IN_DAT.&lt;/P&gt;&lt;P&gt;ERROR: Import unsuccessful. See SAS Log for details.&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE IMPORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.02 seconds&lt;/P&gt;&lt;P&gt;482 The SAS System 08:40 Friday, November 10, 2017&lt;/P&gt;&lt;P&gt;cpu time 0.02 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;ERROR: File WORK.WEATH_UPDT.DATA does not exist.&lt;/P&gt;&lt;P&gt;NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column).&lt;/P&gt;&lt;P&gt;353:153 353:178 353:203 353:228 353:9&lt;/P&gt;&lt;P&gt;NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column).&lt;/P&gt;&lt;P&gt;353:2 353:37 353:40 353:43&lt;/P&gt;&lt;P&gt;WARNING: The variable var14 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var15 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var2 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var4 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var5 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var6 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var7 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var8 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var9 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var10 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var11 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var12 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var13 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;WARNING: The data set WORK.WEATH_UPDT may be incomplete. When this step was stopped there were 0 observations and 3 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column).&lt;/P&gt;&lt;P&gt;35228:154 35228:193 35228:222 35228:250 353:27 353:55 353:83 353:111 353:138 353:166&lt;/P&gt;&lt;P&gt;NOTE: Variable TMP is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable DPT is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable HUM is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable HID is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable WCL is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable status is uninitialized.&lt;/P&gt;&lt;P&gt;WARNING: The variable WDR in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable WSP in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable WET in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable CC in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable SSM in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable WDR in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable WSP in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable WET in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable CC in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable SSM in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;NOTE: There were 0 observations read from the data set WORK.WEATH_UPDT.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.UPDT_DATA has 0 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.UPDT_FORECAST has 0 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.02 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: There were 948656 observations read from the data set WEATHER2.WEATHER_ACTUAL.&lt;/P&gt;&lt;P&gt;483 The SAS System 08:40 Friday, November 10, 2017&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_DATA_2 has 948656 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.38 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.39 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: There were 948656 observations read from the data set WORK.WEATHER_DATA_2.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_DATA_2 has 948656 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.32 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.70 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: Input data set is empty.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.UPDT_DATA has 0 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: There were 948656 observations read from the data set WORK.WEATHER_DATA_2.&lt;/P&gt;&lt;P&gt;NOTE: There were 0 observations read from the data set WORK.UPDT_DATA.&lt;/P&gt;&lt;P&gt;NOTE: The data set WEATHER2.WEATHER_DATA_2B has 948656 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.41 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.42 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: There were 307 observations read from the data set WEATHER2.WEATHER_FORECAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_FRCAST has 307 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: There were 307 observations read from the data set WORK.WEATHER_FRCAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_FRCAST has 307 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: Input data set is empty.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.UPDT_FORECAST has 0 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: There were 0 observations read from the data set WORK.UPDT_FORECAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.UPDT_FORECAST has 0 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;484 The SAS System 08:40 Friday, November 10, 2017&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: There were 307 observations read from the data set WORK.WEATHER_FRCAST.&lt;/P&gt;&lt;P&gt;NOTE: There were 0 observations read from the data set WORK.UPDT_FORECAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_FRCAST has 307 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: There were 307 observations read from the data set WORK.WEATHER_FRCAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_FRCAST has 307 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: There were 307 observations read from the data set WORK.WEATHER_FRCAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WEATHER2.WFORECAST has 307 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable ITER resolves to 151&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable ITER resolves to 152&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable DATASETCOUNT resolves to 157&lt;/P&gt;&lt;P&gt;ERROR: The variable opco in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable ITER resolves to 152&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable ITER resolves to 152&lt;/P&gt;&lt;P&gt;ERROR: BY variable opco is not on input data set WORK.FILENAMES.&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;WARNING: The data set WORK.DATASET_LIST may be incomplete. When this step was stopped there were 0 observations and 4 variables.&lt;/P&gt;&lt;P&gt;WARNING: Data set WORK.DATASET_LIST was not replaced because this step was stopped.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: No rows were selected.&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable FULLNAME resolves to&lt;/P&gt;&lt;P&gt;ERROR: Invalid physical name.&lt;/P&gt;&lt;P&gt;ERROR: Error in the FILENAME statement.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SQL used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;485 The SAS System 08:40 Friday, November 10, 2017&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: Unable to open parameter catalog: SASUSER.PARMS.PARMS.SLIST in update mode. Temporary parameter values will be saved to&lt;/P&gt;&lt;P&gt;WORK.PARMS.PARMS.SLIST.&lt;/P&gt;&lt;P&gt;ERROR: Physical file does not exist, /sas/config/Lev1/SASApp/IN_DAT.&lt;/P&gt;&lt;P&gt;ERROR: Import unsuccessful. See SAS Log for details.&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE IMPORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.02 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.03 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;ERROR: File WORK.WEATH_UPDT.DATA does not exist.&lt;/P&gt;&lt;P&gt;NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column).&lt;/P&gt;&lt;P&gt;353:153 353:178 353:203 353:228 353:9&lt;/P&gt;&lt;P&gt;NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column).&lt;/P&gt;&lt;P&gt;353:2 353:37 353:40 353:43&lt;/P&gt;&lt;P&gt;WARNING: The variable var14 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var15 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var2 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var4 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var5 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var6 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var7 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var8 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var9 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var10 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var11 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var12 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var13 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;WARNING: The data set WORK.WEATH_UPDT may be incomplete. When this step was stopped there were 0 observations and 3 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column).&lt;/P&gt;&lt;P&gt;35267:154 35267:193 35267:222 35267:250 353:27 353:55 353:83 353:111 353:138 353:166&lt;/P&gt;&lt;P&gt;NOTE: Variable TMP is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable DPT is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable HUM is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable HID is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable WCL is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable status is uninitialized.&lt;/P&gt;&lt;P&gt;WARNING: The variable WDR in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable WSP in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable WET in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable CC in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable SSM in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable WDR in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable WSP in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable WET in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable CC in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable SSM in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;486 The SAS System 08:40 Friday, November 10, 2017&lt;/P&gt;&lt;P&gt;NOTE: There were 0 observations read from the data set WORK.WEATH_UPDT.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.UPDT_DATA has 0 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.UPDT_FORECAST has 0 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: There were 948656 observations read from the data set WEATHER2.WEATHER_ACTUAL.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_DATA_2 has 948656 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.41 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.39 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: There were 948656 observations read from the data set WORK.WEATHER_DATA_2.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_DATA_2 has 948656 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.33 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.72 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: Input data set is empty.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.UPDT_DATA has 0 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: There were 948656 observations read from the data set WORK.WEATHER_DATA_2.&lt;/P&gt;&lt;P&gt;NOTE: There were 0 observations read from the data set WORK.UPDT_DATA.&lt;/P&gt;&lt;P&gt;NOTE: The data set WEATHER2.WEATHER_DATA_2B has 948656 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.41 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.41 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: There were 307 observations read from the data set WEATHER2.WEATHER_FORECAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_FRCAST has 307 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: There were 307 observations read from the data set WORK.WEATHER_FRCAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_FRCAST has 307 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: Input data set is empty.&lt;/P&gt;&lt;P&gt;487 The SAS System 08:40 Friday, November 10, 2017&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.UPDT_FORECAST has 0 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: There were 0 observations read from the data set WORK.UPDT_FORECAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.UPDT_FORECAST has 0 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: There were 307 observations read from the data set WORK.WEATHER_FRCAST.&lt;/P&gt;&lt;P&gt;NOTE: There were 0 observations read from the data set WORK.UPDT_FORECAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_FRCAST has 307 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: There were 307 observations read from the data set WORK.WEATHER_FRCAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_FRCAST has 307 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: There were 307 observations read from the data set WORK.WEATHER_FRCAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WEATHER2.WFORECAST has 307 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.02 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable ITER resolves to 152&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable ITER resolves to 153&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable DATASETCOUNT resolves to 157&lt;/P&gt;&lt;P&gt;ERROR: The variable opco in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable ITER resolves to 153&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable ITER resolves to 153&lt;/P&gt;&lt;P&gt;ERROR: BY variable opco is not on input data set WORK.FILENAMES.&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;WARNING: The data set WORK.DATASET_LIST may be incomplete. When this step was stopped there were 0 observations and 4 variables.&lt;/P&gt;&lt;P&gt;WARNING: Data set WORK.DATASET_LIST was not replaced because this step was stopped.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;488 The SAS System 08:40 Friday, November 10, 2017&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: No rows were selected.&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable FULLNAME resolves to&lt;/P&gt;&lt;P&gt;ERROR: Invalid physical name.&lt;/P&gt;&lt;P&gt;ERROR: Error in the FILENAME statement.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SQL used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: Unable to open parameter catalog: SASUSER.PARMS.PARMS.SLIST in update mode. Temporary parameter values will be saved to&lt;/P&gt;&lt;P&gt;WORK.PARMS.PARMS.SLIST.&lt;/P&gt;&lt;P&gt;ERROR: Physical file does not exist, /sas/config/Lev1/SASApp/IN_DAT.&lt;/P&gt;&lt;P&gt;ERROR: Import unsuccessful. See SAS Log for details.&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE IMPORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.02 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.02 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;ERROR: File WORK.WEATH_UPDT.DATA does not exist.&lt;/P&gt;&lt;P&gt;NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column).&lt;/P&gt;&lt;P&gt;353:153 353:178 353:203 353:228 353:9&lt;/P&gt;&lt;P&gt;NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column).&lt;/P&gt;&lt;P&gt;353:2 353:37 353:40 353:43&lt;/P&gt;&lt;P&gt;WARNING: The variable var14 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var15 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var2 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var4 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var5 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var6 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var7 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var8 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var9 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var10 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var11 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var12 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var13 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;WARNING: The data set WORK.WEATH_UPDT may be incomplete. When this step was stopped there were 0 observations and 3 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column).&lt;/P&gt;&lt;P&gt;35306:154 35306:193 35306:222 35306:250 353:27 353:55 353:83 353:111 353:138 353:166&lt;/P&gt;&lt;P&gt;NOTE: Variable TMP is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable DPT is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable HUM is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable HID is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable WCL is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable status is uninitialized.&lt;/P&gt;&lt;P&gt;WARNING: The variable WDR in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;489 The SAS System 08:40 Friday, November 10, 2017&lt;/P&gt;&lt;P&gt;WARNING: The variable WSP in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable WET in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable CC in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable SSM in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable WDR in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable WSP in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable WET in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable CC in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable SSM in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;NOTE: There were 0 observations read from the data set WORK.WEATH_UPDT.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.UPDT_DATA has 0 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.UPDT_FORECAST has 0 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: There were 948656 observations read from the data set WEATHER2.WEATHER_ACTUAL.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_DATA_2 has 948656 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.38 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.39 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: There were 948656 observations read from the data set WORK.WEATHER_DATA_2.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_DATA_2 has 948656 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.34 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.74 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: Input data set is empty.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.UPDT_DATA has 0 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: There were 948656 observations read from the data set WORK.WEATHER_DATA_2.&lt;/P&gt;&lt;P&gt;NOTE: There were 0 observations read from the data set WORK.UPDT_DATA.&lt;/P&gt;&lt;P&gt;NOTE: The data set WEATHER2.WEATHER_DATA_2B has 948656 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.44 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.43 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: There were 307 observations read from the data set WEATHER2.WEATHER_FORECAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_FRCAST has 307 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;490 The SAS System 08:40 Friday, November 10, 2017&lt;/P&gt;&lt;P&gt;NOTE: There were 307 observations read from the data set WORK.WEATHER_FRCAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_FRCAST has 307 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: Input data set is empty.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.UPDT_FORECAST has 0 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: There were 0 observations read from the data set WORK.UPDT_FORECAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.UPDT_FORECAST has 0 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: There were 307 observations read from the data set WORK.WEATHER_FRCAST.&lt;/P&gt;&lt;P&gt;NOTE: There were 0 observations read from the data set WORK.UPDT_FORECAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_FRCAST has 307 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: There were 307 observations read from the data set WORK.WEATHER_FRCAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_FRCAST has 307 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: There were 307 observations read from the data set WORK.WEATHER_FRCAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WEATHER2.WFORECAST has 307 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable ITER resolves to 153&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable ITER resolves to 154&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable DATASETCOUNT resolves to 157&lt;/P&gt;&lt;P&gt;ERROR: The variable opco in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable ITER resolves to 154&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable ITER resolves to 154&lt;/P&gt;&lt;P&gt;491 The SAS System 08:40 Friday, November 10, 2017&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;ERROR: BY variable opco is not on input data set WORK.FILENAMES.&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;WARNING: The data set WORK.DATASET_LIST may be incomplete. When this step was stopped there were 0 observations and 4 variables.&lt;/P&gt;&lt;P&gt;WARNING: Data set WORK.DATASET_LIST was not replaced because this step was stopped.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: No rows were selected.&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable FULLNAME resolves to&lt;/P&gt;&lt;P&gt;ERROR: Invalid physical name.&lt;/P&gt;&lt;P&gt;ERROR: Error in the FILENAME statement.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SQL used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: Unable to open parameter catalog: SASUSER.PARMS.PARMS.SLIST in update mode. Temporary parameter values will be saved to&lt;/P&gt;&lt;P&gt;WORK.PARMS.PARMS.SLIST.&lt;/P&gt;&lt;P&gt;ERROR: Physical file does not exist, /sas/config/Lev1/SASApp/IN_DAT.&lt;/P&gt;&lt;P&gt;ERROR: Import unsuccessful. See SAS Log for details.&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE IMPORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.02 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.03 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;ERROR: File WORK.WEATH_UPDT.DATA does not exist.&lt;/P&gt;&lt;P&gt;NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column).&lt;/P&gt;&lt;P&gt;353:153 353:178 353:203 353:228 353:9&lt;/P&gt;&lt;P&gt;NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column).&lt;/P&gt;&lt;P&gt;353:2 353:37 353:40 353:43&lt;/P&gt;&lt;P&gt;WARNING: The variable var14 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var15 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var2 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var4 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var5 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var6 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var7 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var8 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var9 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var10 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var11 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var12 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var13 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;WARNING: The data set WORK.WEATH_UPDT may be incomplete. When this step was stopped there were 0 observations and 3 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;492 The SAS System 08:40 Friday, November 10, 2017&lt;/P&gt;&lt;P&gt;NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column).&lt;/P&gt;&lt;P&gt;35345:154 35345:193 35345:222 35345:250 353:27 353:55 353:83 353:111 353:138 353:166&lt;/P&gt;&lt;P&gt;NOTE: Variable TMP is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable DPT is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable HUM is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable HID is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable WCL is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable status is uninitialized.&lt;/P&gt;&lt;P&gt;WARNING: The variable WDR in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable WSP in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable WET in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable CC in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable SSM in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable WDR in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable WSP in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable WET in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable CC in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable SSM in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;NOTE: There were 0 observations read from the data set WORK.WEATH_UPDT.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.UPDT_DATA has 0 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.UPDT_FORECAST has 0 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: There were 948656 observations read from the data set WEATHER2.WEATHER_ACTUAL.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_DATA_2 has 948656 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.39 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.40 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: There were 948656 observations read from the data set WORK.WEATHER_DATA_2.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_DATA_2 has 948656 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.34 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.72 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: Input data set is empty.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.UPDT_DATA has 0 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: There were 948656 observations read from the data set WORK.WEATHER_DATA_2.&lt;/P&gt;&lt;P&gt;NOTE: There were 0 observations read from the data set WORK.UPDT_DATA.&lt;/P&gt;&lt;P&gt;NOTE: The data set WEATHER2.WEATHER_DATA_2B has 948656 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.41 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.40 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;493 The SAS System 08:40 Friday, November 10, 2017&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: There were 307 observations read from the data set WEATHER2.WEATHER_FORECAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_FRCAST has 307 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.02 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: There were 307 observations read from the data set WORK.WEATHER_FRCAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_FRCAST has 307 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: Input data set is empty.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.UPDT_FORECAST has 0 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: There were 0 observations read from the data set WORK.UPDT_FORECAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.UPDT_FORECAST has 0 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: There were 307 observations read from the data set WORK.WEATHER_FRCAST.&lt;/P&gt;&lt;P&gt;NOTE: There were 0 observations read from the data set WORK.UPDT_FORECAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_FRCAST has 307 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: There were 307 observations read from the data set WORK.WEATHER_FRCAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_FRCAST has 307 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: There were 307 observations read from the data set WORK.WEATHER_FRCAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WEATHER2.WFORECAST has 307 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable ITER resolves to 154&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable ITER resolves to 155&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable DATASETCOUNT resolves to 157&lt;/P&gt;&lt;P&gt;ERROR: The variable opco in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;494 The SAS System 08:40 Friday, November 10, 2017&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable ITER resolves to 155&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable ITER resolves to 155&lt;/P&gt;&lt;P&gt;ERROR: BY variable opco is not on input data set WORK.FILENAMES.&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;WARNING: The data set WORK.DATASET_LIST may be incomplete. When this step was stopped there were 0 observations and 4 variables.&lt;/P&gt;&lt;P&gt;WARNING: Data set WORK.DATASET_LIST was not replaced because this step was stopped.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: No rows were selected.&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable FULLNAME resolves to&lt;/P&gt;&lt;P&gt;ERROR: Invalid physical name.&lt;/P&gt;&lt;P&gt;ERROR: Error in the FILENAME statement.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SQL used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.02 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: Unable to open parameter catalog: SASUSER.PARMS.PARMS.SLIST in update mode. Temporary parameter values will be saved to&lt;/P&gt;&lt;P&gt;WORK.PARMS.PARMS.SLIST.&lt;/P&gt;&lt;P&gt;ERROR: Physical file does not exist, /sas/config/Lev1/SASApp/IN_DAT.&lt;/P&gt;&lt;P&gt;ERROR: Import unsuccessful. See SAS Log for details.&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE IMPORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.02 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.02 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;ERROR: File WORK.WEATH_UPDT.DATA does not exist.&lt;/P&gt;&lt;P&gt;NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column).&lt;/P&gt;&lt;P&gt;353:153 353:178 353:203 353:228 353:9&lt;/P&gt;&lt;P&gt;NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column).&lt;/P&gt;&lt;P&gt;353:2 353:37 353:40 353:43&lt;/P&gt;&lt;P&gt;WARNING: The variable var14 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var15 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var2 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var4 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var5 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var6 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var7 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var8 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var9 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var10 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var11 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var12 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;495 The SAS System 08:40 Friday, November 10, 2017&lt;/P&gt;&lt;P&gt;WARNING: The variable var13 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;WARNING: The data set WORK.WEATH_UPDT may be incomplete. When this step was stopped there were 0 observations and 3 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column).&lt;/P&gt;&lt;P&gt;35384:154 35384:193 35384:222 35384:250 353:27 353:55 353:83 353:111 353:138 353:166&lt;/P&gt;&lt;P&gt;NOTE: Variable TMP is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable DPT is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable HUM is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable HID is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable WCL is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable status is uninitialized.&lt;/P&gt;&lt;P&gt;WARNING: The variable WDR in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable WSP in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable WET in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable CC in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable SSM in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable WDR in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable WSP in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable WET in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable CC in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable SSM in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;NOTE: There were 0 observations read from the data set WORK.WEATH_UPDT.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.UPDT_DATA has 0 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.UPDT_FORECAST has 0 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: There were 948656 observations read from the data set WEATHER2.WEATHER_ACTUAL.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_DATA_2 has 948656 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.39 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.40 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: There were 948656 observations read from the data set WORK.WEATHER_DATA_2.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_DATA_2 has 948656 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.33 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.72 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: Input data set is empty.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.UPDT_DATA has 0 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;496 The SAS System 08:40 Friday, November 10, 2017&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: There were 948656 observations read from the data set WORK.WEATHER_DATA_2.&lt;/P&gt;&lt;P&gt;NOTE: There were 0 observations read from the data set WORK.UPDT_DATA.&lt;/P&gt;&lt;P&gt;NOTE: The data set WEATHER2.WEATHER_DATA_2B has 948656 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.41 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.42 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: There were 307 observations read from the data set WEATHER2.WEATHER_FORECAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_FRCAST has 307 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: There were 307 observations read from the data set WORK.WEATHER_FRCAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_FRCAST has 307 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: Input data set is empty.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.UPDT_FORECAST has 0 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: There were 0 observations read from the data set WORK.UPDT_FORECAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.UPDT_FORECAST has 0 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: There were 307 observations read from the data set WORK.WEATHER_FRCAST.&lt;/P&gt;&lt;P&gt;NOTE: There were 0 observations read from the data set WORK.UPDT_FORECAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_FRCAST has 307 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: There were 307 observations read from the data set WORK.WEATHER_FRCAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_FRCAST has 307 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: There were 307 observations read from the data set WORK.WEATHER_FRCAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WEATHER2.WFORECAST has 307 observations and 14 variables.&lt;/P&gt;&lt;P&gt;497 The SAS System 08:40 Friday, November 10, 2017&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable ITER resolves to 155&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable ITER resolves to 156&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable DATASETCOUNT resolves to 157&lt;/P&gt;&lt;P&gt;ERROR: The variable opco in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable ITER resolves to 156&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable ITER resolves to 156&lt;/P&gt;&lt;P&gt;ERROR: BY variable opco is not on input data set WORK.FILENAMES.&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;WARNING: The data set WORK.DATASET_LIST may be incomplete. When this step was stopped there were 0 observations and 4 variables.&lt;/P&gt;&lt;P&gt;WARNING: Data set WORK.DATASET_LIST was not replaced because this step was stopped.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: No rows were selected.&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable FULLNAME resolves to&lt;/P&gt;&lt;P&gt;ERROR: Invalid physical name.&lt;/P&gt;&lt;P&gt;ERROR: Error in the FILENAME statement.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SQL used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: Unable to open parameter catalog: SASUSER.PARMS.PARMS.SLIST in update mode. Temporary parameter values will be saved to&lt;/P&gt;&lt;P&gt;WORK.PARMS.PARMS.SLIST.&lt;/P&gt;&lt;P&gt;ERROR: Physical file does not exist, /sas/config/Lev1/SASApp/IN_DAT.&lt;/P&gt;&lt;P&gt;ERROR: Import unsuccessful. See SAS Log for details.&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE IMPORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.02 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.02 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;ERROR: File WORK.WEATH_UPDT.DATA does not exist.&lt;/P&gt;&lt;P&gt;NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column).&lt;/P&gt;&lt;P&gt;353:153 353:178 353:203 353:228 353:9&lt;/P&gt;&lt;P&gt;NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column).&lt;/P&gt;&lt;P&gt;353:2 353:37 353:40 353:43&lt;/P&gt;&lt;P&gt;WARNING: The variable var14 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var15 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var2 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;498 The SAS System 08:40 Friday, November 10, 2017&lt;/P&gt;&lt;P&gt;WARNING: The variable var4 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var5 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var6 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var7 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var8 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var9 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var10 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var11 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var12 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var13 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;WARNING: The data set WORK.WEATH_UPDT may be incomplete. When this step was stopped there were 0 observations and 3 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column).&lt;/P&gt;&lt;P&gt;35423:154 35423:193 35423:222 35423:250 353:27 353:55 353:83 353:111 353:138 353:166&lt;/P&gt;&lt;P&gt;NOTE: Variable TMP is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable DPT is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable HUM is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable HID is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable WCL is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable status is uninitialized.&lt;/P&gt;&lt;P&gt;WARNING: The variable WDR in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable WSP in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable WET in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable CC in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable SSM in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable WDR in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable WSP in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable WET in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable CC in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable SSM in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;NOTE: There were 0 observations read from the data set WORK.WEATH_UPDT.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.UPDT_DATA has 0 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.UPDT_FORECAST has 0 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: There were 948656 observations read from the data set WEATHER2.WEATHER_ACTUAL.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_DATA_2 has 948656 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.38 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.38 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: There were 948656 observations read from the data set WORK.WEATHER_DATA_2.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_DATA_2 has 948656 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.34 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.74 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;499 The SAS System 08:40 Friday, November 10, 2017&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: Input data set is empty.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.UPDT_DATA has 0 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: There were 948656 observations read from the data set WORK.WEATHER_DATA_2.&lt;/P&gt;&lt;P&gt;NOTE: There were 0 observations read from the data set WORK.UPDT_DATA.&lt;/P&gt;&lt;P&gt;NOTE: The data set WEATHER2.WEATHER_DATA_2B has 948656 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.41 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.42 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: There were 307 observations read from the data set WEATHER2.WEATHER_FORECAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_FRCAST has 307 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: There were 307 observations read from the data set WORK.WEATHER_FRCAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_FRCAST has 307 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: Input data set is empty.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.UPDT_FORECAST has 0 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: There were 0 observations read from the data set WORK.UPDT_FORECAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.UPDT_FORECAST has 0 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: There were 307 observations read from the data set WORK.WEATHER_FRCAST.&lt;/P&gt;&lt;P&gt;NOTE: There were 0 observations read from the data set WORK.UPDT_FORECAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_FRCAST has 307 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;500 The SAS System 08:40 Friday, November 10, 2017&lt;/P&gt;&lt;P&gt;NOTE: There were 307 observations read from the data set WORK.WEATHER_FRCAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_FRCAST has 307 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: There were 307 observations read from the data set WORK.WEATHER_FRCAST.&lt;/P&gt;&lt;P&gt;NOTE: The data set WEATHER2.WFORECAST has 307 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable ITER resolves to 156&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable ITER resolves to 157&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable DATASETCOUNT resolves to 157&lt;/P&gt;&lt;P&gt;ERROR: The variable opco in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable ITER resolves to 157&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable ITER resolves to 157&lt;/P&gt;&lt;P&gt;ERROR: BY variable opco is not on input data set WORK.FILENAMES.&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;WARNING: The data set WORK.DATASET_LIST may be incomplete. When this step was stopped there were 0 observations and 4 variables.&lt;/P&gt;&lt;P&gt;WARNING: Data set WORK.DATASET_LIST was not replaced because this step was stopped.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.01 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: No rows were selected.&lt;/P&gt;&lt;P&gt;SYMBOLGEN: Macro variable FULLNAME resolves to&lt;/P&gt;&lt;P&gt;ERROR: Invalid physical name.&lt;/P&gt;&lt;P&gt;ERROR: Error in the FILENAME statement.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE SQL used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: Unable to open parameter catalog: SASUSER.PARMS.PARMS.SLIST in update mode. Temporary parameter values will be saved to&lt;/P&gt;&lt;P&gt;WORK.PARMS.PARMS.SLIST.&lt;/P&gt;&lt;P&gt;ERROR: Physical file does not exist, /sas/config/Lev1/SASApp/IN_DAT.&lt;/P&gt;&lt;P&gt;ERROR: Import unsuccessful. See SAS Log for details.&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;NOTE: PROCEDURE IMPORT used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.02 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.02 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;501 The SAS System 08:40 Friday, November 10, 2017&lt;/P&gt;&lt;P&gt;ERROR: File WORK.WEATH_UPDT.DATA does not exist.&lt;/P&gt;&lt;P&gt;NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column).&lt;/P&gt;&lt;P&gt;353:153 353:178 353:203 353:228 353:9&lt;/P&gt;&lt;P&gt;NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column).&lt;/P&gt;&lt;P&gt;353:2 353:37 353:40 353:43&lt;/P&gt;&lt;P&gt;WARNING: The variable var14 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var15 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var2 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var4 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var5 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var6 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var7 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var8 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var9 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var10 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var11 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var12 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable var13 in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;WARNING: The data set WORK.WEATH_UPDT may be incomplete. When this step was stopped there were 0 observations and 3 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;　&lt;/P&gt;&lt;P&gt;NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column).&lt;/P&gt;&lt;P&gt;35462:154 35462:193 35462:222 35462:250 353:27 353:55 353:83 353:111 353:138 353:166&lt;/P&gt;&lt;P&gt;NOTE: Variable TMP is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable DPT is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable HUM is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable HID is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable WCL is uninitialized.&lt;/P&gt;&lt;P&gt;NOTE: Variable status is uninitialized.&lt;/P&gt;&lt;P&gt;WARNING: The variable WDR in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable WSP in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable WET in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable CC in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable SSM in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable WDR in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable WSP in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable WET in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable CC in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;WARNING: The variable SSM in the DROP, KEEP, or RENAME list has never been referenced.&lt;/P&gt;&lt;P&gt;NOTE: There were 0 observations read from the data set WORK.WEATH_UPDT.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.UPDT_DATA has 0 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.UPDT_FORECAST has 0 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.00 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.00 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: There were 948656 observations read from the data set WEATHER2.WEATHER_ACTUAL.&lt;/P&gt;&lt;P&gt;NOTE: The data set WORK.WEATHER_DATA_2 has 948656 observations and 14 variables.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 0.39 seconds&lt;/P&gt;&lt;P&gt;cpu time 0.39 seconds&lt;/P&gt;&lt;P&gt;502&lt;/P&gt;</description>
      <pubDate>Fri, 10 Nov 2017 15:11:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-Loop-Over-fail/m-p/412376#M100859</guid>
      <dc:creator>tobyfarms</dc:creator>
      <dc:date>2017-11-10T15:11:40Z</dc:date>
    </item>
    <item>
      <title>Re: Macro Loop Over fail</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-Loop-Over-fail/m-p/412387#M100866</link>
      <description>&lt;P&gt;Sorry, that is just one big wall of text.&amp;nbsp; Maybe start with what you are actually trying to do as you have a load of loops and reads and renames and such like, most of which can be got rid of very simply.&amp;nbsp; For instance, you use proc import to read in a tab delimited file.&amp;nbsp; Drop that, write a datastep import (you can get the code directly from the log) and put that in your code.&amp;nbsp; In this way you will read in the file correctly, assign labels and names in the one step.&amp;nbsp; Secondly, rather than taking directory listings, then creating loops and such like, simplify your code:&lt;/P&gt;
&lt;PRE&gt;%macro Do_Something (fname=);
...
%mend Do_Something;

filename xyz pipe...;

data _null_;
  infile xyz;
  input;
  call execute(cats('%Do_Something (',_input_,');'));
run;&lt;/PRE&gt;
&lt;P&gt;This code will create a %Do_Something() call for each line returned by the pipe - a dataset is a loop, so you can use that to yuor advantage.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Nov 2017 15:36:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-Loop-Over-fail/m-p/412387#M100866</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-11-10T15:36:37Z</dc:date>
    </item>
    <item>
      <title>Re: Macro Loop Over fail</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Macro-Loop-Over-fail/m-p/412393#M100867</link>
      <description>&lt;P&gt;Turn on the MPRINT option so you can see the SAS code that your macro generated.&lt;/P&gt;
&lt;P&gt;Most likely right before the error you overwrote your FILENAMES dataset with something different.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Nov 2017 15:48:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Macro-Loop-Over-fail/m-p/412393#M100867</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2017-11-10T15:48:36Z</dc:date>
    </item>
  </channel>
</rss>

