As featured in: Data Management Solutions Using SAS Hash Table Operations: A Business Intelligence Case Study , and built from this github repository.
Chapter 5 GenerateDataDriver.sas
1 /* "Chapter 5 GenerateDataDriver.sas" from the SAS Press book
2  Data Management Solutions Using SAS Hash Table Operations:
3  A Business Intelligence Case Study
4 */
5 
6 options nomprint nosource; /* turn on/off as needed */
7 
8 %inc "&root/Programs/Chapter 5 GenerateTeams.sas";
9 
10 %inc "&root/Programs/Chapter 5 GeneratePositionsDimensionTable.sas";
11 
12 %inc "&root/Programs/Chapter 5 GeneratePlayerCandidates.sas";
13 
14 %inc "&root/Programs/Chapter 5 AssignPlayersToTeams.sas";
15 
16 %inc "&root/Programs/Chapter 5 GenerateSchedule.sas";
17 
18 %inc "&root/Programs/Chapter 5 GeneratePitchDistribution.sas";
19 
20 %generateLineUps(from=&seasonStartDate,nWeeks=&nWeeksSeason)
21 
22 %generatePitchAndPAData(from=&seasonStartDate,nWeeks=&nWeeksSeason)