Sales Order/Sale Entry Form

Slides:



Advertisements
Similar presentations
Database Design Using the REA Data Model
Advertisements

Terminology Formal TermCommon TermAlternative Common Term RelationTableFile TupleRowRecord AttributeColumnField.
1 Database SRR PPP Human Resources Fixed Assets Inventory G/L Projects MRP Example of an ERP CRM.
Database ACCESS. Database A series of objects used to enter, manage, and view data.
REA analysis and E-R diagramming 12/8/2011. What are we hoping to achieve? Tool for designing a database system to meet the needs of the organization.
MICROSOFT OFFICE ACCESS 2007.
© 2014 Cengage Learning. All Rights Reserved. Learning Objectives © 2014 Cengage Learning. All Rights Reserved. LO4 Describe accounting procedures used.
General Financial Supply Website & E-Commerce Solutions This presentation will demo the GFS corporate website and On-Line Order Inquiry options available.
Maintenance Modifying the data –Add records –Delete records –Update records Modifying the design –Add fields into tables –Remove fields from a table –Change.
Databases and Processing Modes. Fundamental Data Storage Concepts and Definitions What is an entity? An entity is something about which information is.
Accounting Databases Chapter 2 The Crossroads of Accounting & IT
1 SYSTEMS DESIGN Pertemuan 13 s.d 20 Matakuliah: A0554/Analisa dan Perancangan Sistem Informasi Akuntansi Tahun: 2006.
Chapter 9 THE ACQUISITION CYCLE— PURCHASING AND RECEIVING.
Journalizing INVENTORY-Related Transactions Slideshow 8 B.
Database Design Using the REA Data Model
Database Relationships Objective 5.01 Understand database tables used in business.
Chapter 5 UNDERSTANDING AND DESIGNING ACCOUNTING DATA.
MS Access Tutorial MGMT 683 J. Rees. Introduction MS Access is a relational database management system (RDBMS) Other PC-based RDMBS include: –MS FoxPro.
© 2014 Cengage Learning. All Rights Reserved. Do Now: ●Where do you get new shoes? ●Have you ever had to wait for a size you need to be brought out to.
1 Chapter 1 Introduction to Accounting Information Systems Chapter 4 Database Management Systems.
Accounting Information Systems System Descriptions.
Relational Database Concepts. Let’s start with a simple example of a database application Assume that you want to keep track of your clients’ names, addresses,
REA analysis and E-R diagramming Part I April 10, 2008.
REA analysis and E-R diagramming December 2, 2008.
Clients (and the interface level) Application Server (and the application level) Database Server (and the Database level)
© 2006 Prentice Hall Business Publishing Accounting Information Systems, 10/e Romney/Steinbart1 of 96 C HAPTER 17 Special Topics in REA Modeling for the.
Accounting for Merchandising Businesses
Unit 1.5 Accounting for a Merchandising Operation.
Avoiding Database Anomalies
Technology In Action Chapter 11 1 Databases and… Databases and their uses Database components Types of databases Database management systems Relational.
REA analysis and E-R diagramming 4/27/2011. What are we hoping to achieve? Tool for designing a database system to meet the needs of the organization.
 SAP AG 2007 Goods Receipts and Goods Issues Stock Transfers Contents: Inventory Transactions.
Forms and Subforms 5.02 Understand database queries, forms, and reports used in business.
Order Entry Program Please see speaker notes for additional information!
McGraw-Hill/Irwin ©2009 The McGraw-Hill Companies, All Rights Reserved CHAPTER 6 DATABASES AND DATA WAREHOUSES CHAPTER 6 DATABASES AND DATA WAREHOUSES.
Quiz questions. 1 A data structure that is made up of fields and records? Table.
Access Forms 1. Forms Provide an easy way to Enter data Modify data View data 2.
* Database is a group of related objects * Objects can be Tables, Forms, Queries or Reports * All data reside in Tables * A Row in a Table is a record.
Alighieri: Introduction to MS Access 1 What is a Database? RELATIONAL DATABASE A database is an organized collection of information. A database is designed.
© 2014 Cengage Learning. All Rights Reserved. Learning Objectives © 2014 Cengage Learning. All Rights Reserved. LO4 Describe accounting procedures used.
Database Relationships
Chapter 5 UNDERSTANDING AND DESIGNING ACCOUNTING DATA
View Integration and Implementation Compromises
merchandising operations
Chapter 18 Automatic Account Assignment
Inventory Transactions庫存交易
Database Applications
Database Relationships
CSCI-100 Introduction to Computing
Database Management  .
© 2014 Cengage Learning. All Rights Reserved.
Entity Relationships and Normalization
C 7 Inventories: Cost Measurement and Flow Assumptions hapter
© 2014 Cengage Learning. All Rights Reserved.
5.02 Understand database queries, forms, and reports used in business.
Module 3 Expenditure Cycle Using SAP Individual Assignment
© 2014 Cengage Learning. All Rights Reserved.
Click on Sales Orders.
FLOW OF INVENTORY COSTS
Database Design Chapters 17 and 18.
Database Relationships
© 2014 Cengage Learning. All Rights Reserved.
LESSON 9-2 Accounting for Merchandise Purchases
© 2014 Cengage Learning. All Rights Reserved.
Inventories: Cost Measurement and Flow Assumptions
TRANSACTION CYCLES Third Lecture
G061 - Data Dictionary.
Microsoft Access Date.
Appendix A Data Modeling MANAGEMENT INFORMATION SYSTEMS 8/E
Presentation transcript:

Sales Order/Sale Entry Form Revenue Cycle

Typical Tables in Sale Order/Sale Event Note: This example assumes we are selling inventory & we have a customer table in the Database Customer Table Inventory Table Sales order-Inventory relationship Table SalesOrder-Inventory Relationship Table Sales Rep(employee) Table

Sales Orders When customers decide to buy products or services, they send a purchase order The selling firm records the receipt of this order as a sales order Sales orders contain common components that identify: When the sales order occurred Which customer placed the order Which inventory item(s) the customer wishes to buy

Sales Orders Firms record sales orders in a Sales Order table, which we name tblSalesOrder We use a foreign key link to the CustomerNumber field in the tblCustomer table to identify which customer placed the order We use a relationship table to model the many-to-many link between tblSalesOrder and tblInventory

Sale Order Table

The Sales Order Table Table that will store the basic information about the Sales Order entity. The table in this example requires four fields: A primary key, SalesOrderNumber A date, SalesOrderDate A foreign key link to tblCustomer, CustomerNumber A record of the customer’s purchase order number, CustomerPONumber

The Sales Order-Inventory Table tblSalesOrder-Inventory, is a relationship table that records the many-to-many link between tblSalesOrder and tblInventory The Sales Order-Inventory table in this example needs four fields to store: The primary key of tblSalesOrder The primary key of tblInventory The quantity of each inventory item that appears on each sales order The price of each inventory item that appears on each sales order

SaleOrder-Inventory Table

Sale Order Entry Form

Sale Order Entry Form

Sale Order Table

SaleOrder-Inventory Table

The Sales Order Entry form will used five tables to: Read from tblCustomer tblInventory tblSalesRep Write to tblSalesOrder tblSalesOrder-Inventory

The Sales Table Each sale transaction occurs with only one customer and a sale needs a customer to exist. Therefore, we can build the customer-sales link into the sales table by making the primary key of tblCustomer a foreign key in tblSales The Sales table in this example also includes fields for: A primary key, InvoiceNumber The date the items on the invoice were shipped, InvoiceDate A foreign key, CustomerNumber A field to show the SalesOrderNumber of the Sales Order for which the goods on this sale were shipped

The Sales-Inventory Table This table is very similar to tblSalesOrder-Inventory It provides the many-to-many link between tblSales and tblInventory and stores the quantity and price of each inventory item on each invoice. The fields in tblSales-Inventory include: InvoiceNumber InventoryItemNumber SInvQuantity SInvPrice

The Sales Entry Form The Sales Entry form resembles the Sales Order Entry form The Sales Order Entry form let users enter the items that customers order, Sales Entry form lets users enter the items actually shipped to customers

Sale Entry Form

Sale Entry Form

The Sales Entry Form This form must read from write to tblCustomer and tblInventory tbl SalesRep write to tblSales and tblSales-Inventory.

Individual Invoices and Invoice Reports Based on a query that extracts the needed information from the following tables: tblSales tblCustomer tblInventory tblSales-Inventory