This is for an Orders App. Our company creates an order on the submission page, the record is inserted into the Ordering_Table. This record stays on this table until we receive it. Once the order is received, it is copied over to the Ordering_CompletedOrders table, and deleted from the Ordering_Table. So, one table is for Orders we have placed but not yet received, and the other is for orders we have received.
Each order is tied to a Job. On the submission form, the first box is a dropdown to select a Job from the list. This dropdown is populated from a separate Job_Table. So, if I search through orders by job, I should be able to see all of the orders in that table that share the same Job. This is where the problem starts.
I am trying to create a report datapage that shows ALL orders (received and not received) per Job. However, I am trying to avoid having "Ordering_Table_Job" and "Ordering_CompletedOrders_Job" in the search form, and would rather just have one "Job" search criteria that would pull records from both tables.
You can post now and register later.
If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.
Question
kpcollier
I've got a confusing problem here.
This is for an Orders App. Our company creates an order on the submission page, the record is inserted into the Ordering_Table. This record stays on this table until we receive it. Once the order is received, it is copied over to the Ordering_CompletedOrders table, and deleted from the Ordering_Table. So, one table is for Orders we have placed but not yet received, and the other is for orders we have received.
Each order is tied to a Job. On the submission form, the first box is a dropdown to select a Job from the list. This dropdown is populated from a separate Job_Table. So, if I search through orders by job, I should be able to see all of the orders in that table that share the same Job. This is where the problem starts.
I am trying to create a report datapage that shows ALL orders (received and not received) per Job. However, I am trying to avoid having "Ordering_Table_Job" and "Ordering_CompletedOrders_Job" in the search form, and would rather just have one "Job" search criteria that would pull records from both tables.
Any help would be appreciated.
Link to comment
Share on other sites
4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.