notsoevilgenius
MIS
I have to develop a new commissions database. The data will come from a corporate company each month in xls format.
The user will need to upload the sheet each month - from a simple user gui
a. An automated process will have to strip out the data that doesn't pertain to the client (I'll use only date that matches my client's name from the PaidVendor field),
b. if possible identify and apply where the user has indicated a commissions "split" based on a ProductID already in the table, (that will require auto populating a new field not in the uploaded data set with a value default of null)
c. append the data into the working table (we can call that tbl_fhs)
d. clean up the upload process for the following month.
The user will need
a. a "new" record report to identify ProductIDs that have no prior input so the user can go in via user input form and identify commission splits and tie the commissions to two brokers without a broker id
b. a monthly report of all applicable commissions by broker
c. an end of year report of commission totals by broker identifying those that qualify for a bonus based on amount sold.
Normally I'd build at least 3 tables here. tbl_subscriber, tbl_broker and tbl_commission, but as I said all this data will be coming from single xls sheets each month and can't be input by hand record by record.
Thanks!
The user will need to upload the sheet each month - from a simple user gui
a. An automated process will have to strip out the data that doesn't pertain to the client (I'll use only date that matches my client's name from the PaidVendor field),
b. if possible identify and apply where the user has indicated a commissions "split" based on a ProductID already in the table, (that will require auto populating a new field not in the uploaded data set with a value default of null)
c. append the data into the working table (we can call that tbl_fhs)
d. clean up the upload process for the following month.
The user will need
a. a "new" record report to identify ProductIDs that have no prior input so the user can go in via user input form and identify commission splits and tie the commissions to two brokers without a broker id
b. a monthly report of all applicable commissions by broker
c. an end of year report of commission totals by broker identifying those that qualify for a bonus based on amount sold.
Normally I'd build at least 3 tables here. tbl_subscriber, tbl_broker and tbl_commission, but as I said all this data will be coming from single xls sheets each month and can't be input by hand record by record.
Thanks!