/* C07S3D02.sas */ options DATASTMTCHK = COREKEYWORDS; data Schedule set ia.schedule; run; options DATASTMTCHK = ALLKEYWORDS; filename newroute 'newroutes.dat'; data ia.RouteChanges infile newroute; input @1 RouteID $7. @8 RouteStart $3. @11 RouteDestination $3. @14 RouteDistance 8.; run;