Week 7! Any Questions?. Homework Work on Lab 5, Lab 6 and Lab 7.

Slides:



Advertisements
Similar presentations
ORDER VERIFICATION ORDER ENTRY DAILY PROCESS ORDER VERFICATION - Order Sort Browse - Enter Order # - F-8 OK.
Advertisements

HT650 Product Introduction 2013/8/26. Main menu, with options Worker Settings Worker-menu with 2 sub options and application buttons.
ValvKeep® via VK-Viewer
Databases Using Information. What is a Database? A database package allows the user to organise and store information. This information can be sorted,
Advanced RPG Chapter 8 Interactive Applicatons. Interactive Applications  Batch Processing: Program is run without human intervention or control.  Interactive.
CL Programming with Database Files Updated Fall 2010.
Data Dictionary What does “Backordered item” mean? What does “New Customer info.” contain? How does the “account receivable report” look like?
WELL-DESIGNED DATABASES Process faster Easy to develop and maintain Easy to read and write code.
Chapter 8: I/O Streams and Data Files. In this chapter, you will learn about: – I/O file stream objects and functions – Reading and writing character-based.
Computers & Logic An Overview. Hardware Hardware is the equipment, or the devices, associated with a computer. For a computer to be useful, however, it.
Chapter 8 Printing 1. In COBOL you send data to the printer by writing data to a file. In COBOL, the printer is defined as a file, and it is opened, closed,
DCT 1123 Problem Solving & Algorithms
Any Questions!. Agenda Fun with Functions –how to get the system date Condition Names INDARA and SI Iteration Logical Files Positioning the file pointer.
Information Processing
4-1 Coding Complete COBOL Programs: The PROCEDURE DIVISION Chapter 4.
4-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)
IBC233 Week 1 Updated Fall 2010 Homework? Finish Lab 1 – hand in compile listings of the two programs at the beginning of next week’s Lab Period!
Programming Logic and Design Seventh Edition
4-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)
1 Chapter 4. To familiarize you with methods used to 1. Access input and output files 2. Read data from an input file 3. Perform simple move operations.
Chapter 13 Sequential File Processing. Master Files Set of files used to store companies data in areas like payroll, inventory Usually processed by batch.
®® Microsoft Windows 7 for Power Users Tutorial 13 Using the Command-Line Environment.
Mid-West Tri State Users Group Meeting Agenda l Overview of Event, Condition, Action (ECA) l What’s new in release 7.0 l Designing effective workflows.
Presentation © Copyright 2002, Bryan Meyers Externally Described Files Chapter 6.
Database A database program is a piece of software to organize and sort information. It creates an electronic list of information that can be sorted very.
Agenda Reporting Work on Assignment 4! Printing on power systems.
Relational Databases (MS Access)
Printing on power systems Program/ Command Data Report Layout (Printer File) Job Output Queue *FILE Spooled File.
Analyzing Data Using Access. Creating a new database To create a new database 1.Start Access. In the Task Pane, click Blank Database. 2.The File New Database.
Set path vs current schema. Set Current Schema ‘The CURRENT SCHEMA special register specifies a VARCHAR(128) value that identifies the schema name used.
Database Management Systems.  Database management system (DBMS)  Store large collections of data  Organize the data  Becomes a data storage system.
INFO1408 Database Design Concepts Week 15: Introduction to Database Management Systems.
An Introduction to Programming with C++ Sixth Edition Chapter 14 Sequential Access Files.
Welcome to RPG544. Bit about Cindy Administrative Stuff Standards Due Dates Web Page.
Computers in the Library A database application. Input and Output Devices Input Keyboard Mouse Scanner / light pen Output VDU / screen / monitor Printer.
IBC233 Lecture 2 Updated Winter 2008 Agenda Test next Week – Jan 23 ISeries Architecture CL (Control Language) Library Lists Operations Navigator.
Any Questions!. Agenda Fun with Functions –how to get the system date –How to get the next service date INDARA and SI Condition Names Iteration Logical.
Chapter 4 PROCEDURE DIVISION. Paragraphs PROCEDURE DIVISION divided into paragraphs Each is independent module or routine Made up of series of instructions.
Any Questions!. Agenda Fun with Functions Externally Described Files Condition Names Iteration Logical Files Random Reads.
Week 2/3 - 2nd Lecture Intro to COBOL Programming Defining Files and Processing Data.
IBC233 Week 2 Updated Fall 2011 Homework? Finish Lab 1 – Due Today! Send me an with your userid when you are done! Download and install software.
Be “GUI ready” developing in RPG by Robert Arce from PrismaTech. Be “GUI ready” developing in RPG-ILE Presented by: Robert Arce.
LO: We’re learning to outline a program using Pseudo Code.
Welcome to IBC233 Cindy Laurin And Russ Pangborn.
The mailroom receives customer orders from customers, where clerks sort orders from the rest of the mail, group them into batches, prepare a transmittal.
CL Programming with Database Files Updated Summer 2007.
Mohammed I DAABO COURSE CODE: CSC 355 COURSE TITLE: Data Structures.
How’s assignment 1 coming? Winter 2007
Databases.
RPG Programming with Printer Files
IBC233 Week 6.
IBC233 Week 2 Updated Winter 2011
Deployment Diagram.
IBM AS 400 online Training in Hyderabad
RPG Programming with Printer Files
Programming Logic and Design Eighth Edition
Any Questions?.
Chapter 3 The DATA DIVISION.
Agenda Test next Week! SI or no SI? File Update Techniques – Review.
The mailroom receives customer orders from customers, where clerks sort orders from the rest of the mail, group them into batches, prepare a transmittal.
Data Groupings: File File: a group of related records
Database Design Hacettepe University
IBC233 Week 2 Updated Fall 2011.
Analyzing Data Using Access
G061 - Data Dictionary.
Footwear Planning and Production Process
IBC233 Week 5.
Display Files Week 4.
IBC233 Lecture 3 Updated Fall 2011
Presentation transcript:

Week 7! Any Questions?

Homework Work on Lab 5, Lab 6 and Lab 7

Agenda Logical File Review CL Notation System Configuration Sorting Data RPG programming with Database files

MONMSG – Keyword Notation

MONMSG – Positional Notation

MONMSG – mixed notation

Subsystems enter/iseries/v5r4/topic/experience/ sbsconfig.pdf

Jobs Interactive vs Batch

Job Desc

Object Types

Sorting Data

RPG Programming with Database Objects

FSPEC Review File name – name of file File Type – C for a Display file I, U, or O for Database Objects O, for Printer Files (reports) File Format – E for Externally Described Record Address Type – K if the object has a sort Device – Disk for Database Object Workstn for display files Printer for reports

RPG Verbs and Functions Read filename; – reads a record from a database object %EOF(filename) – Checks for End of File

Programming tasks Create a display file that uses all of the fields from the Item file. All of the fields should be output only. In Stock Quantity should have the attribute Reverse Image (RI) conditioned by an indicator Write an RPG program that displays each record in the Item file using the above display file. In Stock Quantity should be displayed in Reverse Image if the value is less than 10.

Pseudo Code Initialize variables Receive information Do while not end of file Display the screen Receive information End of file: exit program