Chapter 13 Sequential File Processing. Master Files Set of files used to store companies data in areas like payroll, inventory Usually processed by batch.

Slides:



Advertisements
Similar presentations
Week 1b.
Advertisements

Overview of Transaction Processing and Enterprise Resource Planning Systems Chapter 2.
Learning Objectives LO1 Explain the key risks of misstatement in production and payroll processes. LO2 Outline the production process: typical transactions,
Chapter 15 Indexed Sequential Files. Disk File Organization File is collection of records Three major ways records stored or organized on disk - Sequential.
Chapter 10: Auditing the Expenditure Cycle
Data Model Examples: DFD’s and System Flowcharts
Databases and Processing Modes. Fundamental Data Storage Concepts and Definitions What is an entity? An entity is something about which information is.
Chapter 9 THE ACQUISITION CYCLE— PURCHASING AND RECEIVING
1 of 19 VAT on Core / DA0483-w1 Last updated: VAT on Core.
Overview of Transaction Processing and Enterprise Resource Planning Systems Chapter 2.
Chapter Lead Black Slide © 2001 Business & Information Systems 2/e.
Processing Integrity and Availability Controls
TRANSACTION PROCESSING SYSTEM (TPS)
CHAPTER 6 ELECTRONIC DATA PROCESSING SYSTEMS
Today’s Lecture application controls audit methodology.
Topics Covered: Data preparation Data preparation Data capturing Data capturing Data verification and validation Data verification and validation Data.
Microsoft Access 2000 Creating Tables and Relationships.
Lead Black Slide Powered by DeSiaMore1. 2 Chapter 10 Business Operations.
Programming Logic and Design Seventh Edition
Overview of Transaction Processing and Enterprise Resource Planning Systems Chapter 2.
Management Information Systems MS Access MS Access is an application software that facilitates us to create Database Management Systems (DBMS)
DAY 12: DATABASE CONCEPT Tazin Afrin September 26,
System Analysis and Design
Printing on power systems Program/ Command Data Report Layout (Printer File) Job Output Queue *FILE Spooled File.
1 California State University, Fullerton Chapter 10 Business Operations.
MS Access 2007 Management Information Systems 1. Overview 2  What is MS Access?  Access Terminology  Access Window  Database Window  Create New Database.
Indexed and Relative File Processing
Page 5: Job Costing System Gerald Katherine Armineh.
 2001 Prentice Hall Business Publishing, Accounting Information Systems, 8/E, Bodnar/Hopwood Chapter 10 Electronic Data Processing Systems.
13-1 COBOL for the 21 st Century Nancy Stern Hofstra University Robert A. Stern Nassau Community College James P. Ley University of Wisconsin-Stout (Emeritus)
Sequential Files Chapter 13. Master Files Set of files used to store companies data in areas like payroll, inventory Set of files used to store companies.
General Algorithms for Common Business Problems Simple Program Design Third Edition A Step-by-Step Approach 10.
SUPPLEMENTAL B An Overview of The General Ledger Architecture.
Structured COBOL Programming Nancy Stern Hofstra University Robert A. Stern Nassau Community College James P. Ley University of Wisconsin-Stout.
Auditing the Revenue Cycle. Learning Objectives After studying this chapter, you should: Understand the operational tasks associated with the revenue.
An Overview of The General Ledger Architecture.  Files are used to store data and processing instruction. The two types of files computer users use most.
File and Database Design Class 22. File and database design: 1. Choosing the storage format for each attribute from the logical data model. 2. Grouping.
CHAPTER 2 TYPES OF BUSINESS INFORMATION SYSTEM. INTRODUCTION Information System support business operations by processing data related to business operation.
 2013 Pearson Education, Inc. Publishing as Prentice Hall, AIS, 11/e, by Bodnar/Hopwood Chapter 7 7 – 1 Electronic Data Processing Systems.
Types of Processing of Data www. ICT-Teacher.com.
Verification & Validation. Batch processing In a batch processing system, documents such as sales orders are collected into batches of typically 50 documents.
13-1 Sequential File Processing Chapter Chapter Contents Overview of Sequential File Processing Sequential File Updating - Creating a New Master.
13- 1 Chapter 13.  Overview of Sequential File Processing  Sequential File Updating - Creating a New Master File  Validity Checking in Update Procedures.
PowerPoint Presentation: Richard H. Baum, Ph.D. DeVry Institute of Technology 9th Edition Structured COBOL Programming Nancy Stern Hofstra University Robert.
Copyright © 2009 Pearson Education, Inc. Publishing as Prentice Hall Chapter 9 Designing Databases 9.1.
The aim of producing a backup strategy is to make sure that a computer system can be returned to its original state if data has been lost or corrupted.
Chapter 11: Sequential File Merging, Matching, and Updating Programming Logic and Design, Third Edition Comprehensive.
Slide#: 1© GPS Financial Services 2008Revised 05/14/2009 cms 2 PR Rep-MasterEmployee ™ Cougar Mountain Software Professional Version.
Presentation on Database management Submitted To: Prof: Rutvi Sarang Submitted By: Dharmishtha A. Baria Roll:No:1(sem-3)
Sequential Processing to Update a File Please use speaker notes for additional information!
Computer Studies Today Chapter 2 1 » Payroll system » Mailing list system » Ticketing system » Point-of-sale system » Electronic funds transfer system.
Topics Covered: File Components of file Components of file Terms used Terms used Types of business file Types of business file Operations on file Operations.
( ) 1 Chapter # 8 How Data is stored DATABASE.
The mailroom receives customer orders from customers, where clerks sort orders from the rest of the mail, group them into batches, prepare a transmittal.
 At the end of the class students should:  distinguish between data and information.  explain the characteristics and forms of Information Processing.
Overview of Transaction Processing and Enterprise Resource Planning Systems Chapter 2.
Electronic Data Processing Systems Chapter 6.
Programming Logic and Design Eighth Edition
Designing and Debugging Batch and Interactive COBOL Programs
Chapter 3 The DATA DIVISION.
Please use speaker notes for additional information!
Programming Logic and Design Fourth Edition, Comprehensive
Overview of Transaction Processing and Enterprise Resource Planning Systems Chapter 2.
Chapter 10: Auditing the Expenditure Cycle
The mailroom receives customer orders from customers, where clerks sort orders from the rest of the mail, group them into batches, prepare a transmittal.
Process Exchange Transactions Activity
CHAPTER 6 ELECTRONIC DATA PROCESSING SYSTEMS
Footwear Planning and Production Process
2.8 – Payroll applications
Presentation transcript:

Chapter 13 Sequential File Processing

Master Files Set of files used to store companies data in areas like payroll, inventory Usually processed by batch processing Typically stored on magnetic disk –Disks can store billions of characters –Disk drives read, write data quickly –Disk records can be any size

Sequential Files Records always read in sequence Read first record, process it, then read second record, process it and so on –Payroll records in order by employee number may be processed in sequence for updating or printing reports

Sequential Files May be sorted into any sequence using any field in record –To distribute checks more easily, records may be sorted by department Sequential processing then used to print checks, reading first record, then second, etc.

Master File Procedures Typical procedures for sequential processing in batch mode are: Designing Master File Creating Master File Creating Transaction File Updating Master File Reporting from Master File

Designing a Master File Place key fields that uniquely identify record at beginning of record If possible, choose numeric key fields Secondary fields after primary key fields Remaining fields appear in order of importance Group common fields together (i.e., address)

Designing a Master File Choose field size large enough to accommodate data stored in it Use coded fields where possible to save space Be sure all date fields include four-digit year

Creating a Master File Original master file data entered interactively, stored on disk file Ensure data integrity by using data validation techniques to minimize risk or errors Control listing or audit trail produced to show data stored in new master file and control totals

Creating a Transaction File Changes to master file made with separate procedure Change records stored in file called transaction file

Updating a Master File Updating is process of making master file current Update master file by incorporating changes from transaction records

Reporting from a Master File Scheduled reports prepared on regular basis from data stored in master file –Sales reports, customer bills, checks, etc. –Use detail, exception and group printing techniques On demand reports produced as need arises –May be in report form or displayed on screen

Creating Master, Transaction Files Data may be read in from another file or entered interactively from keyboard If data entered is valid, move it to master or transaction record fields WRITE new record to file

Sequential File Updating Two input files Input Master File (Old-Master) –Current through previous updating period –Does not contain changes since previous update Input Transaction File (Trans-File) –Contains changes since previous update to be applied to Old-Master

Sequential File Updating Two output files Output Master File (New-Master) –Integrates data from Old-Master with all of changes from Trans-File –Will become Old-Master for next update Control Listing or Audit Trail –Print file showing changes made to master file, errors during processing and control totals

Ordering of Records Records in Old-Master and Trans-File must be in order by same key field Compare key fields to determine if given master record is to be updated

Master/Transaction Processing Records in both files must be sorted (sequenced) on the same key Records from each file are “matched”