473,395 Members | 1,941 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Creating Add/Edit forms for BOMs in Access

I'm working on a BOM in Access 200 from an example downloaded from from
the web. The sample database contains three tables, Assemblies (the
list of items needed to assemble any assembly), Components (the list of
items recognised by the Assemblies Table)and Output (a table used to
display the BOM from a chosen assembly).

It works fine but there are no forms. For a user to edit or create a
BOM, should there be a form for each assembly of the BOM? Can you have
Access automatically generate forms depending on the number of
subcomponents or assemblies, because they will vary depending on the
product?

Any advice would be greatly appreciated.

Nov 13 '05 #1
6 7579
The structure does not sound correct to me. The Output table appears just to
be a rehash of the Assemblies & components.

The normal way is to have a components table and a form to edit those
components, and an Assembly form with the components on a continuous
subform.
Maybe I've got it wrong and you have components to make up assemblies and
assemblies to make up the final product in which case it is much more fun.
If so I have a database for recipes which might help

HTH

Phil
"F-13" <Wa*********@gmail.com> wrote in message
news:11**********************@g47g2000cwa.googlegr oups.com...
I'm working on a BOM in Access 200 from an example downloaded from from
the web. The sample database contains three tables, Assemblies (the
list of items needed to assemble any assembly), Components (the list of
items recognised by the Assemblies Table)and Output (a table used to
display the BOM from a chosen assembly).

It works fine but there are no forms. For a user to edit or create a
BOM, should there be a form for each assembly of the BOM? Can you have
Access automatically generate forms depending on the number of
subcomponents or assemblies, because they will vary depending on the
product?

Any advice would be greatly appreciated.

Nov 13 '05 #2
On 26 May 2005 03:13:55 -0700, "F-13" <Wa*********@gmail.com> wrote:
I'm working on a BOM in Access 200 from an example downloaded from from
the web. The sample database contains three tables, Assemblies (the
list of items needed to assemble any assembly), Components (the list of
items recognised by the Assemblies Table)and Output (a table used to
display the BOM from a chosen assembly).

It works fine but there are no forms. For a user to edit or create a
BOM, should there be a form for each assembly of the BOM? Can you have
Access automatically generate forms depending on the number of
subcomponents or assemblies, because they will vary depending on the
product?

Any advice would be greatly appreciated.

Hi
You might also look at
http://www.mvps.org/access/queries/qry0023.htm
which shows how you could do it using Joe Celko's nested sets
and/or read some of Joe's articles.
David

Nov 13 '05 #3
Hi, thanks for the feedback. David, I did try Joe's nested set and it
works fine, but the left and right labelling of nodes and how this
could be done with code threw me a bit.

I example I am using has been written by Robin Stoddard-Stone and is
available for download from
http://www.mvps.org/access/resources/downloads.htm under "BOM". The
output table is really just included for the sake of the demonstration.
The Components and Assemblies tables are the most important one. The VB
code works recursively. You choose an assembly, it checks the
components to see if any are assemblies themselves, then the components
of the sub assemblies are checked and so on.

I'm including the VB code underneath with the comments to see if it
makes things clearer. I understand how it works. My problem is how to
create forms/subforms which will allow a user amend or add a new
assembly. Phil if your recipe DB was anyway near the same sort of idea,
it would be great to see it.

Thanks
VB code of BOMS
---------------------------

Attribute VB_Name = "Bom1"
Option Compare Database
Option Explicit
'The Bill of materials processor:
' is designed to allow you to decompose an assembly into its component
items.
' operates at multiple levels, where each item at each level can be a
component
' or a sub-assembly. (SubAssemblies are further decomposed by the
breakdown).
' uses 3 tables
' :Table 1, Assemblies contains the list of items needed to assemble
any assembly.
' the items can be subassemblies or components.
' Comprises the following fields.
' : ComponentID, a text field to allow the user to recognise the
item.
' : ParentID, a code field to allow linking.
' : NumberRequired, The number of units required for this level of
this assembly.
' For a given assembly, the items that go into its construction are
entered into the
' ComponentID field, while the parentID contains the code identifying
the given assembly.
'
'Table 2, Components contains the list of items recognised by the
Assemblies Table
' Comprises the following fields
' : ComponentID, a unique key, identifying the component
' : ComponentDescription describes the component
' : AssemblyBoolean to identify whether this is an assembly which
has a breakdown
' entered in the Assemblies Table.

'Table 3, the Output Table is a variable purpose table which, in this
example, identifies the
' the components and the number required to construct any assembly
' Comprises the following fields
' :ComponentID the same format as the Component Table.
' :Number Required. A Count of the number of items required.

'To Start the demonstration, select the assembly of choice from the
input form

To add items to the demonstration,

add the elements to the Components Table, identifying whether they
Assemblies or Components. Note that an assembly is an element which
will have sub components. An Assembly
may be a subcomponent itself of another assembly.

Enter the assembly units into the assemblies table. You only need to
assemble each assembly once. That is,
if an assembly has subcomponents that are in themselves assemblies, you
reference that sub assembly name, not
add all the components again. Note that when entering an assembly, you
do not add the Assembly record for itself.
E.G: if entering the assembly for a wheelHub, you do not add the
wheelhub component itself to the Assembly record
otherwise the program will loop. ( Each wheel hub requires a wheel hub
assembly which requires a wheel hub assembly etc.)
Comments in the code should make its operation clear. Start with the
BOMHost procedure.
Const Qu = """"
Type typBits
Component As String
NumberOF As Integer
End Type

Sub BOMHost(strAssemblyP As String)
Dim db1 As Database
Dim rs1 As Recordset

Dim iArray() As typBits
'Dim strAssembly As String
Dim fDone As Integer ' flag as it is bad practice to
modify loop parameters within loop
Dim iCurrent As Integer ' where you are in the current array
Dim intMultiplier As Integer ' multiplication factor for number
of items

Set db1 = CurrentDb()
ReDim iArray(0)

fDone = False
iCurrent = 0
intMultiplier = 1

DoCmd.RunSQL ("Delete *.* from OutPutTable") ' clear the outputTable

If GetSubAssembly(strAssemblyP, db1, rs1) = 0 Then GoTo BOMHost_End
'Set up the array for the item you wish to decompose.
ParseList iArray(), rs1, UBound(iArray), intMultiplier

Do Until fDone
'Take the next item in the array, (for the first item, the next item is
the
'first unit in the array). Gets the constituent items from the assembly
table referencing
'the parentID. If the item has subcomponents then the item can be
decomposed further.
' if the item is a component (no further decomposition) then it goes to
Output.
'Otherwise it is a subAssembly and you add the parts to the array
using ParseList.

If GetSubAssembly(iArray(iCurrent).Component, db1, rs1) = 0 Then
AddtoOutput db1, iArray, iCurrent
Else
intMultiplier = iArray(iCurrent).NumberOF
ParseList iArray(), rs1, UBound(iArray), intMultiplier
End If

'That has finished the processing for the item in the array, so
increment the pointer to
'your current position and test to see if you have finished.( your
current pointer is now
'equal to the array UBound). ' if not go back and do the next Item,
'if so then Output Table contains the BillOfMaterials list and you are
finished.

iCurrent = iCurrent + 1
If iCurrent = UBound(iArray) Then fDone = True
Loop
MsgBox "Completed"
BOMHost_End:
db1.Close

End Sub
Private Function GetSubAssembly(strParentID As String, db1 As Database,
rs1 As Recordset) As Integer
' returns 0 if no records, else 1 (doesn't move to end of recordset)
Set rs1 = db1.OpenRecordset("select
Assemblies.ComponentID,Assemblies.NumberRequired from Assemblies where
" _
& "(((Assemblies.ParentID)=" & Qu & strParentID & Qu & "))",
DB_OPEN_DYNASET)
GetSubAssembly = rs1.RecordCount
End Function
'Gets the individual records from rs1 (argument recordset) and puts
them into the array
Private Sub ParseList(iArray() As typBits, rs1 As Recordset,
intLastPosition As Integer, intMultiplier As Integer)
Dim intSize As Integer
'iArray() is integer array defined in the host procedure
'rs1 the recordset to get data from
'intLastPosition the last position in the array
' intMultiplier is the multiplying factor based on the number of parent
units required
intSize = intLastPosition + 1
Do Until rs1.EOF

ReDim Preserve iArray(intSize)
iArray(intLastPosition).Component = rs1!ComponentID
iArray(intLastPosition).NumberOF = rs1!NumberRequired *
intMultiplier
rs1.Move 1
intSize = intSize + 1
intLastPosition = intLastPosition + 1
Loop
End Sub

'Components are added to the output table . Modify this module to
modify Output

Private Sub AddtoOutput(db1 As Database, iArray() As typBits, iICurrent
As Integer)

Dim rs1 As Recordset
Dim strAssemblyID As String
Dim intNumberOf As Integer

strAssemblyID = iArray(iICurrent).Component
intNumberOf = iArray(iICurrent).NumberOF
Set rs1 = db1.OpenRecordset("select OutPutTable.* from OutputTable
where " _
& "(( OutPutTable.ComponentID=" & Qu & strAssemblyID & Qu & "))",
DB_OPEN_DYNASET)
If rs1.RecordCount = 0 Then 'the component is new
rs1.AddNew
rs1!ComponentID = strAssemblyID
rs1!NumberRequired = intNumberOf
rs1.Update
Else
rs1.Edit
rs1!NumberRequired = rs1!NumberRequired + intNumberOf
rs1.Update
End If
End Sub

Nov 13 '05 #4
On 26 May 2005 17:08:50 -0700, "F-13" <Wa*********@gmail.com> wrote:
.....
makes things clearer. I understand how it works. My problem is how to
create forms/subforms which will allow a user amend or add a new
assembly. ...

Hi
You need a form/subform, with the main form showing the assemblies and
the subform the components.
See for example
http://www.fgcu.edu/support/office20.../subforms.html
for a tutorial of a similar example using orders.
The order form in northwind.mdb is similar but more complicated as it
has lots of other things in it.

If I were you I would add a one-to-many relation on field componentids
between the tables components (1) and assemblies (many). The database
you refer to has an error in it as LowerArm (I am quoting from memory)
appears in the assemblies table but not in the components table.
David

Nov 13 '05 #5
Thanks David

I actually tried this tutorial before and the the only way I can get a
form/subform situation that i like is if i create a relationship
between ParentID in Assemblies and ComponentID in Components. However,
for an entire Car (using the data as example) I need two subforms, one
for WheelAssembly and another for Hub Unit so that these components can
be modified or added to. And if, for example a Hub Unit component was a
further assembly, then I'd need a subform for that too, etc.

Car (main form)
- WheelAssembly (sub form)
- Upper Arm
- Lower Arm
- Hub Unit (another sub form)
- Wheel Hub
- Studs
- Nuts

Am I going about this the wrong way or is it achievable?

I think the author of the example made a small mistake with "LowerArm"
in the Assemblies table and "Lower Arm" (with a space) in the
Components table.

Nov 13 '05 #6
On 29 May 2005 17:57:02 -0700, "F-13" <Wa*********@gmail.com> wrote:
Thanks David

I actually tried this tutorial before and the the only way I can get a
form/subform situation that i like is if i create a relationship
between ParentID in Assemblies and ComponentID in Components. However,
for an entire Car (using the data as example) I need two subforms, one
for WheelAssembly and another for Hub Unit so that these components can
be modified or added to. And if, for example a Hub Unit component was a
further assembly, then I'd need a subform for that too, etc.

Car (main form)
- WheelAssembly (sub form)
- Upper Arm
- Lower Arm
- Hub Unit (another sub form)
- Wheel Hub
- Studs
- Nuts

Am I going about this the wrong way or is it achievable?

I think the author of the example made a small mistake with "LowerArm"
in the Assemblies table and "Lower Arm" (with a space) in the
Components table.

Hi
I was thinking of only one subform, to let you add or edit the
children of just the current parent node. Eg select any node on the
master form and (using linked parent/child fields) the subform will
show the children. Actually you can do this in just one continuous
form (ie without using a subform) by selecting the parent record in a
combo box in the form header, and changing the form recordsource or
filter.
However, if you are looking for a way of displaying the overall
structure you can use indentation on a report or use a treeview.
Surprisingly, I haven't found a free sample database for this though
there have been discussions earlier in this group.
David

Nov 13 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Ray Lavelle | last post by:
I'm new to VB .NET. In the past when creating an application, if I had an input form I would just call the set and get methods on the object that mapped to my database table in order to store and...
2
by: Iain Miller | last post by:
Now this shouldn't be hard but I've been struggling on the best way as to how to do this one for a day or 3 so I thought I'd ask the assembled company..... I'm writing an application that tracks...
25
by: dixie | last post by:
I have some code that adds new records into a table for each ID in a list box when a button on a form is clicked. This works fine. My problem now is that I wish to be able to edit all the records...
4
by: Jimmer | last post by:
How does one create/change a form on the fly? I have a situation where I would like the user to be able to determine the fields they view and how the data is grouped at runtime. For example,...
1
by: longtim | last post by:
I have been having endless difficulty creating reports/queries that set any relevent parameters from controls in forms. I am creating an application under access 2003 but will target access...
2
by: Dave | last post by:
Our company intranet allows various users to submit address information and contact names and numbers using ASP pages, that save to an Access 2000 database. There are no issues with retrieving,...
2
by: Vish | last post by:
Hi, I amplanning on having a rea-only and edit states for my form. But it do not want my form and its controls to look different or disabled. I am planning on having a edit button that brings...
4
by: sklett | last post by:
I've developed an ERP application that we use internally and works quite well. I receiving more and more requests from users to print various transactions, order forms, search results, etc. I...
4
by: Constantine AI | last post by:
Hi I am trying to input some error messages into my system. I have come across a slight problem with one of them. i have a query which filters and groups data together displaying details on a form. I...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.