Feb 15, 2022 11:10 AM
Hello all,
I started a base and before I get too far I thought I might ask the community to help me start on the right track. I would like to track the fabrication of a lot of piping assemblies. Here is what I have in mind :
Am I on the right track? is it possible for the assembly number to be unique for the entire base?
Ultimately, before I create my invoice I would like to be able to combine all the attachment together in order to be able to invoice our client based on what was delivered to site. How could I do that?
Here is an example:
I have 50 drawings
10 of them have the “for construction” status and are sent to the fab shop in order to start the fabrication
Then, 5 of the assemblies are completed and are shipped to the paint shop
Then 4 of the completed assemblies are painted and we request to ship them to site to start the installation
4 assemblies are now on site and can now be invoiced
Solved! Go to Solution.
Feb 15, 2022 03:56 PM
I think the best way forward might actually be with a single table for the pipe assemblies themselves, and then have separate tables for things like the job, supplier, client, and possibly invoicing/budgeting.
Here’s why:
Since each pipe assembly record is going through the same journey, if you were to create this database with just one table for the production process, if would save you the effort and hassle of creating a record at each step of production, and it would also save you some database space (you’d only have to create 1 record vs 4).
So, the way you’d set up each individual step is with a single-select field. You’d have options like
And then you would set up 4 views, each with a filter that selects for a particular set of options from that single select field (e.g. Draw, Fab, Paint…)
As for what you’re looking to get out of your database:
Feb 15, 2022 03:56 PM
I think the best way forward might actually be with a single table for the pipe assemblies themselves, and then have separate tables for things like the job, supplier, client, and possibly invoicing/budgeting.
Here’s why:
Since each pipe assembly record is going through the same journey, if you were to create this database with just one table for the production process, if would save you the effort and hassle of creating a record at each step of production, and it would also save you some database space (you’d only have to create 1 record vs 4).
So, the way you’d set up each individual step is with a single-select field. You’d have options like
And then you would set up 4 views, each with a filter that selects for a particular set of options from that single select field (e.g. Draw, Fab, Paint…)
As for what you’re looking to get out of your database:
Feb 25, 2022 05:03 AM
Thank you for the tips, it help me build my base the right way!