473,465 Members | 1,964 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Stored Procedure for Access

I am new to Access, so bear with me. I think this is possible, but I
am not sure how to get this going.

I am trying to develop a database that will allow me to create a
manufacturing schedule based on our customer demand and our capacity in
minutes. I have created a table (Demand) that will take our customer
demand, blow through our Bill of Materials and will leave me with a set
of demand that gives me a production work center, the item that I need
to produce, the quantity, and the per unit time to produce the product.

Essentially the table looks like this:

Work_Center
Order
Line
Seq
Item
Due_Date
Qty
Unit_Prod_Time (in minutes)

I have another table (Capacity) that will show the available production
time per day for each work center. The table looks like this:

Production_Date
Work_Center
Capacity (in minutes)

I want to be able to create a new table (I am guessing that I need to
do this through code) that will loop through each line of my demand
data, calculate the total time needed to produce, and compare that to
the capacity for that work center and for the next day available. If
there is enough capacity available in the day to do that order, I want
a line written into that new table that will assign the given
production date to the line of demand. I need to keep a running total
of scheduled capacity vs. the actual capacity so when a line does not
fit, I can assign it to the next date.

To add a little more complexity to it, if I have already scheduled 100
of 400 available minutes of capacity and my next demand line requires
350 minutes for 35 pieces, I want to be able to split the demand line
to assign 30 pieces due today and the remaining 5 to be due the next
day.

I can do this using Excel fairly easily, but I would like to keep the
application within Access if at all possible.

I am guessing that I need to use a module and create a new table, but
am not real sure how to get started. Thanks in advance for any help.

Nov 20 '06 #1
1 1623
This seems a quite straightforward though possibly time consuming task.
However, I dont know why you would want to create a new table for the
results.
I get the impression you want to make many tables with different names for
each SET of results.
Many new Access users think they will do it like Excel, where you have a
workesheet called
results121106.xls, results131106.xls, etc

Generally, the best solution is to have a blank table with all the fields
required for the calculations, do the calculation, and put the results in a
new record.

To flag what day the results are for, have a field called DateCalculated, or
BatchNumber or any other type of dimension description, so you can extract
data for reports based on when the results were calculated or when they are
to be used. You can even erase all the records afterwards if you want.

The procedure to do this can be as simple as an append query or as flexible
as a VB procedure that opens all the tables and writes the new records. My
bet is you will need either a number of queries, but I think a VB function
or procedure would give you more flexibility.

Do a search in this group on opening tables with code.

A rough example of code is included below -

dim DAOWork_Center as dao.recordset
dim cdb as dao.database
set cdb = currentdb
set DAOWork_Center = cbd.openrecordset("select * from Work_Center where
Due_Date >= '1/12/2006',dbopensnaphot)
do while not DAOWork_Center.eof

' Look up other tables, calculate values, put them in the results table
here

cdb.execute "insert into Resultstable fields ......... etc"

DAOWork_Center.movenext
loop
I hope this gives you some ideas

Cheers


<KR*****@gmail.comwrote in message
news:11**********************@j44g2000cwa.googlegr oups.com...
I am new to Access, so bear with me. I think this is possible, but I
am not sure how to get this going.

I am trying to develop a database that will allow me to create a
manufacturing schedule based on our customer demand and our capacity in
minutes. I have created a table (Demand) that will take our customer
demand, blow through our Bill of Materials and will leave me with a set
of demand that gives me a production work center, the item that I need
to produce, the quantity, and the per unit time to produce the product.

Essentially the table looks like this:

Work_Center
Order
Line
Seq
Item
Due_Date
Qty
Unit_Prod_Time (in minutes)

I have another table (Capacity) that will show the available production
time per day for each work center. The table looks like this:

Production_Date
Work_Center
Capacity (in minutes)

I want to be able to create a new table (I am guessing that I need to
do this through code) that will loop through each line of my demand
data, calculate the total time needed to produce, and compare that to
the capacity for that work center and for the next day available. If
there is enough capacity available in the day to do that order, I want
a line written into that new table that will assign the given
production date to the line of demand. I need to keep a running total
of scheduled capacity vs. the actual capacity so when a line does not
fit, I can assign it to the next date.

To add a little more complexity to it, if I have already scheduled 100
of 400 available minutes of capacity and my next demand line requires
350 minutes for 35 pieces, I want to be able to split the demand line
to assign 30 pieces due today and the remaining 5 to be due the next
day.

I can do this using Excel fairly easily, but I would like to keep the
application within Access if at all possible.

I am guessing that I need to use a module and create a new table, but
am not real sure how to get started. Thanks in advance for any help.

Nov 22 '06 #2

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

Similar topics

3
by: 8leggeddj | last post by:
Hello, I am having a problem when using access xp as a frontend for sql server 2000. I have been trying to update a number of stored procedures (Just simple adding fields etc) which results in...
2
by: Josh Strickland | last post by:
I am attempting to create an Access database which uses forms to enter data. The issue I am having is returning the query results from the Stored Procedure back in to the Access Form. ...
8
by: Mark Flippin | last post by:
This is for a reporting problem using: Access 2000 SQL Server 2000 Both at SP3 I've a stored procedure in SQL Server 2000 which builds a result set from a disparate set of tables, utilizing...
0
by: billmiami2 | last post by:
Perhaps many of you MS Access fanatics already know this, but it seems that stored procedures and views are possible in Jet. I thought I would leave this message just in case it would help anyone....
5
by: Tim Marshall | last post by:
I was following the thread "Re: Access Treeview - Is it Safe Yet?" with interest and on reading the post describing Lauren Quantrell's SmartTree, I've run into something I don't understand: Stored...
2
by: Dino L. | last post by:
How can I run stored procedure (MSSQL) ?
6
by: Peter Neumaier | last post by:
Hi, I am trying to select some data through a stored procedure and would like to store the result in a local access table. Is that possible? Can somebody provide an example? Thanks&regards!...
2
by: jed | last post by:
I have created this example in sqlexpress ALTER PROCEDURE . @annualtax FLOAT AS BEGIN SELECT begin1,end1,deductedamount,pecentageextra FROM tax
14
by: jehugaleahsa | last post by:
Hello: I am working with Oracle .NET Stored Procedures. I would like to know how to return the results of a SELECT statement. I have tried returning a OracleRefCursor and a DataTable, but...
2
by: acw | last post by:
On a SQL Server 2000 db I would like to setup a stored procedure that accesses couple tables and runs the extended stored procedure xp..cmdshell. The goal is to grant users with limited privileges...
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
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
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,...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
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,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...

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.