North East Fasteners ERP V1.0

Slides:



Advertisements
Similar presentations
What is New in Inventory & Purchasing? Presented by: Derek Kratz.
Advertisements

 SAP AG 2003 Applications for document editing in SAP Business One Contents: Document Editing.
©2008 TTW Where “Lean” principles are considered common sense and are implemented with a passion! Product Training Purchase Orders.
Counter Billing is a software to prepare invoices at retail counter very fast and quick. By using this software user can prepare the invoices for more.
Access Lesson 2 Creating a Database
Introduction to ADO.Net, VB.Net Database Tools and Data Binding ISYS 512.
VB.NET Database Access ISYS 812. Microsoft Universal Data Access ODBC: Open Database Connectivity –A driver manager –Used for relational databases OLE.
Introduction to ADO.Net and Visual Studio Database Tools ISYS 512.
FIS 318/618: Financial Systems & Databases Forms and Reports Oakland University School of Business Administration Accounting and Finance Joe Callaghan.
Accounting Interface:
Introduction to ADO.Net, VB.Net Database Tools and Data Binding ISYS 512.
Build a database IV: Create queries for a new Access database Overview: Ask your data — create queries It’s time to create queries, one of the most powerful.
INF2070 Database 2. What Will You Do? Using skills learned in the last Database module, you will yet again make more tables This time we are going to.
Order Management System Gregory Barrett Ken Browning Hiroshige Matsuno.
CHAPTER 9 DATABASE MANAGEMENT © Prepared By: Razif Razali.
Food Recall System Pre Code System Design Layout Version 1.0.
Introduction to ADO.Net and Visual Studio Database Tools ISYS 512.
10-1 aslkjdhfalskhjfgalsdkfhalskdhjfglaskdhjflaskdhjfglaksjdhflakshflaksdhjfglaksjhflaksjhf.
Navigating database with windows forms.. Tiered applications  Provide a means to develop many presentations of the same app  Makes changes to the back.
1 OPOL Training (OrderPro Online) Prepared by Christina Van Metre Independent Educational Consultant CTO, Business Development Team © Training Version.
1 Project 7: Northwind Traders Order Entry. 2 Northwind Order Entry Extend the Select Customer program from Project 6 to permit the user to enter orders.
Using Adapter Wizard ISYS 512. Data Adapter Wizard – 2 nd Level of Using ADO.Net Configure Data Adapter and generating a dataset: –From the Data tab of.
Access Forms and Queries. Entering Data in Your Table  You can add data to your table in Datasheet view, by typing in the columns and rows.  This.
1/62 Introduction to and Using MS Access Database Management and Analysis Yunho Song.
©2008 TTW Where “Lean” principles are considered common sense and are implemented with a passion! Product Training Sales Orders.
Introduction to ADO.Net and VS Database Tools and Data Binding ISYS 350.
Task #1 Create a relational database on computers in computer classroom 308, using MySQL server and any client. Create the same database, using MS Access.
Introduction to ADO.Net and Visual Studio Database Tools ISYS 350.
Access Queries and Forms. Adding a New Field  To insert a field after you have saved your table, open Access, and open the table  It is easier to add.
Forms. Forms provide a more convenient user interface for such things as adding new records or editing or deleting existing records in a table. They can.
Microsoft Access 2016 Simplify Data Entry with Forms
MRP: Material Resource Planning
Boeing 787 SCMP Training June 2016
GST-Compliant GOODS and SERVICES SALES Software
CIS C Project Presentation 4
ICP Kit HHC Data Validation and Aggregation Module
A Software for Weighing Systems
Inventory Transactions庫存交易
Access Creating a Database
Product Training Supplier Review
Access Creating a Database
Simplify Data Entry with Forms Chapter 3
test slide
Database Applications – Microsoft Access
Display Item Information
When You Can See It, You Can Believe It.
Microsoft Office Access 2003
Microsoft Office Access 2003
Brief description on how to navigate within this presentation (ppt)
FTS 2 Failure Tracking System 2 User‘s Guide Process Flow
MAX Warranty Tracking Vince Stefanetti, Exact MAX Americas Trainer.
MS Dynamics NAV – nothing simpler
Data Types and Field Properties
Access Chapter 6- Custom Forms.
Introduction to Database Programs
Creating Noninput Items
Product Training Purchase Invoices
Access: Queries II Participation Project
Product Training Jobs Where “Lean” principles are considered common sense and are implemented with a passion! ©2008 TTW.
Database Applications
Advanced Database Concepts: Reports & Views
Product Training RMA Where “Lean” principles are considered common sense and are implemented with a passion! ©2008 TTW.
Clinic Management System(CMS)
Introduction to Database Programs
Topic 12 Lesson 2 – Retrieving Data with Queries
.NET Framework Data Providers
Unit J: Creating a Database
Assignment 3 Querying and Maintaining a Database
Introduction to ADO.Net and Visual Studio Database Tools.
Presentation transcript:

North East Fasteners ERP V1.0 - developed in C#.net/SQL Server 2000

Selective Customer Filter This filter is the main filter on the Purchase Order Based on the customer selected on this filter the records pertaining to the customer are shown on the main tab as well as on all other tabs of the purchase order The Select PO lets select the PO from multiple PO’s of the same customer selected on the customer Combo

Building Part Number on PO In the current implementation of Merlin, the NEF Part #, a unique Identity of every part made by NEF is built by concatenation of different fields: 4-40 x 1/8 Philips Pan M/S Steel The part # for this part can be written like the following 4400108PPMSST   440 = code for size tip 0108 = code for 1/8 P = Phillips P = Pan MS = Machine Screw ST = Steel

Issues with PO Number For each new PO ,this Purchase order shows a filter along as the user types in text in the textbox with a listbox below it,and shows existing numbers given to other purchase orders ,if any This number is given by the customer and for any particular quotation there may or may not exist multiple purchase order numbers

Quote Information Issues According to the Quote for any particular customer information on the Quote field the system retrieves and displays Quote numbers and comments for that Quotation Delivery field calculates the order delivery due date and the ticket print date for any order placed at any day of time

Order Shipped Date According to the Order Status,for all complete or shipped goods ,the system gets and refreshes the date on which the order was shipped according to the invoice information on that record

Pending Order Quantity The actual quantity on any order is a calculation on the basis of Shipped Quantity and Due Quantity,the system refreshes and displays Actual Quantity on all orders according to these calculations

Stock and Shipment History According to the months entered by the user,the system calculates the total number of shipments and the quantity of those shipments done so far for any order placed by the customer The system also calculates the stock available and number of quantity for each stock and displays the information on each order in Parts and Records fields

Major Functionalities Data Binding with the help of SqlConnection,with the help of DataSet, DataReader, DataTable as per various requirements of the module on all tabs on the purchase order module Relative to each Order for a customer, Events ie. Threading, slotting, etc.. ,Comments, Charge, Invoice Details, Job tickets associated, Outsource associated, Credits, tools and wires used for fulfilling the order Costs incurred for manufacturing and shipping the goods

Technical Functionalities In order to retrieve data,the following controls have been given the respective functionalities: Panel I have bound the controls with a generalized method,in which I put all the controls on one panel and pass this panel to the method. This method recursively call each control and binds them with the help of properties set to each control. Combo Box I fetched the table name with the help of the datatable,sql connection and command strings,and added the items of the combo with the help of this data table rows Data Grid All the datagrid are bound at runtime to the database with specific filter with the queries,as the base tables have stored only id’s of specific fields ,I fetched all the specific records from the child tables with nested queries

Technical Functionalities If by mistake the user navigates to another tab without saving information after edit,the system promts for save Else it reverts back

Technical Functionalities On the main tab the primary bound field for all the tabs is Purchase Order Id,so the system restricts to allow navigation on all the child tabs without the commit on any modifications of the main tab in the master table

Technical Functionalities The load time on all tabs is reduced by managing the text change events on all the bound textboxes and the selection commit of all the combos I have also reduced the load time of the form, I have put most of the code on the tabs selection change

Conclusion