I am designing a db to maintain grant related budget and expenses.
tblGrants and tblGrantBudget include data such as grant title, grant revenue amount etc.
Each grant has an authorized amount from the Fed. Each time we submit an expense report, we get reimbursed - this is called Echo draw. We need to keep track of these draws. So basically if a grant has a total of $100 and we submit $20 expense the remaining balance will be $80.
To record these draws I have 3 separate tables (tblAP, tblPayroll and tblAllocation). These give me reports on each Echo Draw for each category etc.
This is rather simplistic way of putting it. What happened is that there are expenses incurred prior to my taking up on this DB. Now my questions are:
1. To keep track of these draws, do I need a separate table like tblEchoDraw or tblGrantExpense (it does not matter what we call it)?
2. How do I tie tblEcho, tblAP, tblPayroll, tblAllocation (these are expenses) with tblGrantBudget? With a new table called tblEchoDraw and show a balance?
3. Since there are expenses from prior year do I hard code these amounts somewhere and add to on going expenses. If yes, where do I hard code this data?
Can someone please help me with some directions? Many thanks.
tblGrants and tblGrantBudget include data such as grant title, grant revenue amount etc.
Each grant has an authorized amount from the Fed. Each time we submit an expense report, we get reimbursed - this is called Echo draw. We need to keep track of these draws. So basically if a grant has a total of $100 and we submit $20 expense the remaining balance will be $80.
To record these draws I have 3 separate tables (tblAP, tblPayroll and tblAllocation). These give me reports on each Echo Draw for each category etc.
This is rather simplistic way of putting it. What happened is that there are expenses incurred prior to my taking up on this DB. Now my questions are:
1. To keep track of these draws, do I need a separate table like tblEchoDraw or tblGrantExpense (it does not matter what we call it)?
2. How do I tie tblEcho, tblAP, tblPayroll, tblAllocation (these are expenses) with tblGrantBudget? With a new table called tblEchoDraw and show a balance?
3. Since there are expenses from prior year do I hard code these amounts somewhere and add to on going expenses. If yes, where do I hard code this data?
Can someone please help me with some directions? Many thanks.
Comment