March 30, 201510 yr Newbies I started building a very straightforward project with 3 entities/tables: Clients, Projects and Invoices. Clients have a 1-to-many relation to Projects Projects have a 1-to-many relation to Invoices I started entering some dummy data in the 3 tables. I populate the Products table through a pop-up menu, that selects client names (e.g. K A, K B, K C etc.)Â from a dynamically generated value list (showing the name field of the Clients table. So far, so good, it all works. But to my surprise, the pop-up menu additionally starts showing index fields from the serial index of the Clients table (IDp_Client). I really can not see how entries from the index field (e.g. KLA00000004) can move to the name field. Â Anybody understands what could be wrong? Â Thanks!
March 30, 201510 yr You lost me here, "I populate the Products table through a pop-up menu, that selects client names (e.g. K A, K B, K C etc.) from a dynamically generated value list (showing the name field of the Clients table." Why would you populate Products from the context of a Client? -Barbara
March 30, 201510 yr But to my surprise, the pop-up menu additionally starts showing index fields from the serial index of the Clients table (IDp_Client). I really can not see how entries from the index field (e.g. KLA00000004) can move to the name field. Anybody understands what could be wrong? How exactly did you define the value list you are using here? Unrelated to your question, but important: your value list should be using values from the ClientID field. The client's name should the "second field" in this value list. Otherwise your relationship will break if you so much as correct a typo in the client's name. Why would you populate Products from the context of a Client I believe that's Projects, not Products. No Products table was mentioned in the description.
March 30, 201510 yr Actually, it was. "my data in the 3 tables. I populate the Products table through a pop-up menu, that selects..."
March 30, 201510 yr Actually, it was. "my data in the 3 tables. I populate the Products table through a pop-up menu, that selects..." Yes, I've seen that - but I meant the description of the file's structure here: I started building a very straightforward project with 3 entities/tables: Clients, Projects and Invoices. Clients have a 1-to-many relation to Projects Projects have a 1-to-many relation to Invoices Add to this the fact that Projects are related to Clients, and in a way that makes selecting a client for a project a reasonable requirement, and the conclusion that "Products" in your quote was actually meant to be "Projects" becomes inevitable.
March 30, 201510 yr you never know. I know one thing for certain: devoting 5.25 posts out of total 7 to this sub-issue is way excessive...
March 30, 201510 yr Author Newbies He guys, thanks for all your feedback. Indeed "Products" was a typo, sorry for that. I think I resolved the issue by defining new TO's for this purpose. It seems to work now. One thing for sure: this forum includes some very nice people, ready to help out. I promise not to overwhelm you with issues, but I'm glad you're out there somewhere. Thanks again!
Create an account or sign in to comment