Hello - this is my first post here. I have been working with InfoPath and slowly getting frustrated and (wasting a lot of time...). I know there is a way to accomplish what I am trying to do, I just cannot figure out how to do it.
Version: 2003
I have an Access DB, with the following structure:
tbl_Users
-User_ID (PK)
-User
tbl_Contracts
-Contract_ID (PK)
-User_ID (FK - tblUsers)
ContractName
tbl_Reports
-Report_ID (PK)
-Contract_ID (FK - tbl_Contracts)
-ReportDate
tbl_ReportData
-ReportData_ID (PK)
-Report_ID (FK - tbl_Reports No Repeat: 1to1 relationship)
-ReportData
tbl_Escalation
-Escalation_ID (PK)
-Report_ID (FK - tbl_Reports this can repeat)
-EscalationTicketNumber (Text)
-EscalationNotes (Text)
The structure is designed so that each user can have many contracts assigned to them, and each contract can have many reports (idea is for one report per day). Each report will have one section of daily notes and a repeating section of all tickets that were escalated.
I am trying (desperately) to provide a drop-down that lists all the users, that when a user is selected a repeating section of all contracts is populated. From there the user would create a NEW report, add the data, all escalations and hit submit. That data gets saved to my database.
Right now, all I can seem to do is query a user and view ALL past reports and then add a new one... this is way too much info and I do not want my users to have the ability to edit past reports once submitted. If the ability to publish to my sharepoint page AND retrieve/post data into a lan based database exists that would be ideal!!