I want to create a table that will be used in creating a "SnapShot" view of reports during a nightly update process and store them on the server. I want to do this so that users can have access to the reports without distributing paper copies. Also, I do not want everyone that needs the reports to have access to the program.
The first table I want to create is table that contains the reports to be created. I want this table so that Production Control people can add reports without the involvement of programming.
Table 1 - tblReportDetails
Num rptName Desc Location
1 rptPastDue Past Due Product m:\dir1\reports
2 rptOpenOrd Open Orders m:\customerservice\
3 rptNewJobs New Jobs m:\dir1\reports
4 .....
5 ..
6 ...
Next I want to be able to attach and email select reports indicated by a second table.
Table 2 - tblReportEmail
email Report
user1@domain.com 1,3,4,etc
The real crux of my problem is how do I design and link these tables. If user1 gets reports 1,3,4,7. I really don't want to enter the info multiple times like:
user1@domain.com 1
user1@domain.com 3
user1@domain.com 4
user1@domain.com 7
user2@domain.com 1
Now user2 may get reports 1,4,9 and so forth.
Can someone give me some hints or help as how to design and link these tables?
Thanks in advance!
The first table I want to create is table that contains the reports to be created. I want this table so that Production Control people can add reports without the involvement of programming.
Table 1 - tblReportDetails
Num rptName Desc Location
1 rptPastDue Past Due Product m:\dir1\reports
2 rptOpenOrd Open Orders m:\customerservice\
3 rptNewJobs New Jobs m:\dir1\reports
4 .....
5 ..
6 ...
Next I want to be able to attach and email select reports indicated by a second table.
Table 2 - tblReportEmail
email Report
user1@domain.com 1,3,4,etc
The real crux of my problem is how do I design and link these tables. If user1 gets reports 1,3,4,7. I really don't want to enter the info multiple times like:
user1@domain.com 1
user1@domain.com 3
user1@domain.com 4
user1@domain.com 7
user2@domain.com 1
Now user2 may get reports 1,4,9 and so forth.
Can someone give me some hints or help as how to design and link these tables?
Thanks in advance!