a98dsu98sad8sua
Technical User
Hi all,
I am trying to create a data entry form based on a call accreditation session, this involves listening to a telephone conversation and marking off certain criteria when it is fulfilled.
This is for a large enterprise (approx 600 users) so the call accreditation questions are slightly different for each staff member depending on what campaign (department) they are on!
What I need to know is, how do I present the data operator with a list of all of the questions for that particular member of staff so that they can fill out a call accreditation session? I have a table with questions, links to a table of campaigns, and a staff table with a campaign id in, and also a section id (certain criteria is under a certain section, for example, "Listens to Customer" might come under the accreditation section "Compliance").
I can't figure out how to actually construct the data entry form, and I was just wondering if someone would be kind enough to give me some help with this please in laymans terms (As I'm still pretty new, however have been told my database is in NF3 so I am quite proud!)
So the tables are:
Sorry is this is a lot to take in! Thanks very much for any help you may be able to give me so I can get this data entry form up and running!
Regards,
David
I am trying to create a data entry form based on a call accreditation session, this involves listening to a telephone conversation and marking off certain criteria when it is fulfilled.
This is for a large enterprise (approx 600 users) so the call accreditation questions are slightly different for each staff member depending on what campaign (department) they are on!
What I need to know is, how do I present the data operator with a list of all of the questions for that particular member of staff so that they can fill out a call accreditation session? I have a table with questions, links to a table of campaigns, and a staff table with a campaign id in, and also a section id (certain criteria is under a certain section, for example, "Listens to Customer" might come under the accreditation section "Compliance").
I can't figure out how to actually construct the data entry form, and I was just wondering if someone would be kind enough to give me some help with this please in laymans terms (As I'm still pretty new, however have been told my database is in NF3 so I am quite proud!)
So the tables are:
Code:
Sessions (Where call accred. data goes)
PK - ANSWERID
FK - CALLID - (Linked to the PK CALLID in Calls)
FK - QUESTIONID - (Linked to the PK QUESTIONID in Questions)
YES/NO - RESPONSE
Questions (Where questions are stored)
PK - QUESTIONID
QUESTIONCRITERIA (Memo)
FK - SECTIONID (The section the question belongs to)
FK - CAMPAIGNID (The department the question belongs to)
Calls
PK - CALLID
CALLTIME (Time of call)
CALLDATE (Date of call)
FK - CUSTOMERID (Customer the agent is calling)
Staff
PK - STAFFID
STAFFNAME
FK - CAMPAIGNID - (Campaign Worked on)
FK - MANAGERID - (Employee's Manager)
FK - CONTRACT - (Employment Service - Not useful here!)
Campaigns
PK - CAMPAIGNID
CAMPAIGNNAME
Sorry is this is a lot to take in! Thanks very much for any help you may be able to give me so I can get this data entry form up and running!
Regards,
David