473,666 Members | 2,386 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Import, Update, Add

2 New Member
Hello folks,

I am new here and really need some help as this is totally “new” to me. I have been asked to design a program for a biomedical company to track their work orders and testing at various locations. I have been able to accomplish taking the file that is transmitted from the testing equipment and import the information into a table (equiphold) and have it available for updating the rest of the database.

What I now need to do, and don’t know how is to take that table (equiphold) and generate a new work order for each piece of equipment tested and Update the existing database (create new work order for that piece of equipment and have it’s test results within the history) along with the information provided for existing equipment and if there are new pieces of equipment have the user be able to add it to the database along with the test equipment’s readings.

This program is for biomedical testing of medical equipment. It has all the regular stuff like inventory, parts, work orders…etc… Work orders can be created one by one…but, when the “testing equipment” goes to the field, each piece of equipment tested has its’ own readings and needs its’ own Work Order when it gets put into the database.

The testing information would go into the W/O Task listing for a particular piece of equipment and if a new piece needs to be added, the user can add the new piece tested and then have the associated results along with it.

The following are some of the tables from the database that would be used.

1). Equiphold – { the table that holds the uploaded/imported information for new/tested equipment).

2). Equip – (Table that hold the equipment information)

3). WOHead – (Table that holds the Work Order Heading Information)

4). WOTask – (Table that holds the “testing” results).

5). WOHistory – (Table that holds the work order history for all equipment)

I hope this all makes sense to you all. If not, please let me know and I will try and clarify.

Any and all help would be greatly appreciated or if anyone has a “similar” program, please respond.

Thanks in advance.

Jrenter2
Jun 25 '07 #1
2 1311
hyperpau
184 Recognized Expert New Member
Hello folks,

I am new here and really need some help as this is totally “new” to me. I have been asked to design a program for a biomedical company to track their work orders and testing at various locations. I have been able to accomplish taking the file that is transmitted from the testing equipment and import the information into a table (equiphold) and have it available for updating the rest of the database.

What I now need to do, and don’t know how is to take that table (equiphold) and generate a new work order for each piece of equipment tested and Update the existing database (create new work order for that piece of equipment and have it’s test results within the history) along with the information provided for existing equipment and if there are new pieces of equipment have the user be able to add it to the database along with the test equipment’s readings.

This program is for biomedical testing of medical equipment. It has all the regular stuff like inventory, parts, work orders…etc… Work orders can be created one by one…but, when the “testing equipment” goes to the field, each piece of equipment tested has its’ own readings and needs its’ own Work Order when it gets put into the database.

The testing information would go into the W/O Task listing for a particular piece of equipment and if a new piece needs to be added, the user can add the new piece tested and then have the associated results along with it.

The following are some of the tables from the database that would be used.

1). Equiphold – { the table that holds the uploaded/imported information for new/tested equipment).

2). Equip – (Table that hold the equipment information)

3). WOHead – (Table that holds the Work Order Heading Information)

4). WOTask – (Table that holds the “testing” results).

5). WOHistory – (Table that holds the work order history for all equipment)

I hope this all makes sense to you all. If not, please let me know and I will try and clarify.

Any and all help would be greatly appreciated or if anyone has a “similar” program, please respond.

Thanks in advance.

Jrenter2
I can't understand you. You have like a one whole paragraph fitted into just one sentence. Please use periods to separate each sentence.

To better assist you, give me a picture of what the form would look
like.
Example: there is a combo box that contains what?
Regarding creating Work order, I think what you want to do is to make
an incrementing number for each tested equipment?
Jun 25 '07 #2
Jrenter2
2 New Member
Hi Hyperpau. Sorry for the long sentences. Yes, I want to have incremental Work Orders created from the imported information that is sitting in a seperate table.

In one screen (Browse Work Orders), there would be a control box that has 6 columns in it. The columns are labeled as follows:

W/O Number.....Cont rol Number... Device....Date Opened....Date Closed....Tech
....000187..... .......GAL100.. ..........Pump. ....... 6/7/07........... 6/8/07........... JR
....000186..... .......GAL101.. ..........Defib ......... 6/7/07........... 6/10/07.......... JR

On the Equipment Screen....there is another control box that has that has 4 or more colmns. They are labeled..

W/O Number....Date Opened...... Date Closed.....Tech
...000187...... ...... 6/7/07............. .... 6/8/07...........JR

At the bottom of the screen, there is a command button labeled "View Work Order Details" which would allow the user to highlight one of the WO's and open it up and look at it for that particular piece of equipment.

What I want to do is take the information sitting in the imported table and transfer the information over to the table that has the Work Orders in it and have it create the next Work Order Number automatically and delete the row from the imported table.

Also, if there is a new piece of equipment (based upon the Control Number) that has been tested, it needs to be able to be added to the equipment table first and then create a work order for the testing just like the other equipment.

I am not sure how to go about doing that through a "Update Database" comman button.

I have screen shots of all of this if anyone wants to see "EXACTLY" what I am talking about wanting done. I am not familiar with posting an image on here to do it now or even if it's allowed.

Hope this reply helps clear things up a little bit.
Jun 26 '07 #3

Sign in to post your reply or Sign up for a free account.

Similar topics

2
1950
by: Fritz Bosch | last post by:
Hi experts Is is possible to import/manipulate a module such that I can supply its __dict__? I want to supply my own dict subclass object to be filled by the import, e.g. a class like: >>> class MyModuleDict(dict): .... def __setitem__(self,name,val):
1
8657
by: Vishu | last post by:
Hi, I have a series of DEL data files in a directory. Is there a way I can import with update option the files directly from the directory into a database? Thanks
4
3017
by: Steve Jorgensen | last post by:
I'm restarting this thread with a different focus. The project I'm working on now id coming along and will be made to work, and it's too late to start over with a new strategy. Still, I'm not coming to a firm conclusion over whether it was the better approach, and wonder if I should do it differently the next time I'm faced with a similar issue. I needed an app to automatically import from spreadsheets with a semi-dynamic structure,...
10
2555
by: shumaker | last post by:
I don't need a detailed description of a solution(although I wouldn't mind), but I am hoping someone could tell me in general the best path to go about accomplishing a task, since I don't know all the capabilities of what I have available. I can learn the details myself I think. I am trying to set this up to be as simple to use as possible since others will be importing data on a weekly or daily basis. I need to import some text files,...
3
2181
by: John Salerno | last post by:
I understand that after you import something once, you can reload it to pick up new changes. But does reload work with from statements? I tried this: from X import * and then did my testing. I changed X and tried to reload it, but that didn't seem to work. I figure the reason is because the module itself doesn't exist as an object, only its names do. But I couldn't figure out how to pick up my new changes at this point. I think...
5
2588
by: MN | last post by:
Hello, I have a customer table and another table that I need to prepopulate with special customer IDs, unique and not sequential. Is there a way to configure Access to assign the customer ID to every record each time that a record is either created for the first time or imported for the first time? I would be importing into a temp table and then running an update query to copy the data to the customer table. Another confusing issue is...
11
2438
by: kaisersose1995 | last post by:
Hi, I've got an import procedure working, using a standard import specification to import a .csv file into a temporary table. The problem i'm having is that i have 4 different sets of borrower details on the same line e.g. B1-Title, B1-Initials, B1-Surname, B2-Title, B2-Initials, B2-Surname, etc. all linked to my main borrower table via an unique account number. My 1st append query matches which account numbers are new to the main...
1
1146
by: RichART | last post by:
Hello everybody, In one of the replies on my previous question somebody said that I have to update my .NET to import a new namespace. (Available from version 2.0). I updated te version under "Help >Check for Updates..." After the update process I checked my version under " Help >About MS Development Environment". It said: Microsoft .NET Framework 1.0; version 1.0.3705. Microsoft Development Environment 2002; version 7.0.9955
12
2008
by: joaotsetsemoita | last post by:
Hello everyone, im completly new to vb.net and I was assigned to do a simple piece of software that just had to select from um db in a MS access data base and insert into a SQL server Database. The structure tables are exactly the same so there's no need in data conversation. My idea was to fill a datatable with the results from my oledbdataadapter and then use that dataset to update on my sqldataadapterm, however I cant find the way...
5
2902
by: Bill Schanks | last post by:
I have a winform app (VB 2005) that allows users to export data to excel, make updates to the excel file and import the data from that Excel file and update the database. My question is: Is it best to do it this way, calling the update stored procedure for every update? Or should I be loading this data into a staging table, and if all goes well do the 'Real' Update. Or put this into a data adapter and update from that? The application...
0
8440
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8355
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8866
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8781
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8638
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6191
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5662
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4193
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4365
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?

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.