Software Implementation

Slides:



Advertisements
Similar presentations
RightNow 8 -- Adding a new report: New > Report: ORAnalytics > Reports > New Report
Advertisements

MS-Access XP Lesson 1. Introduction to MS-Access Database Management System Software (DBMS) Store data in databases Database is a collection of table.
Creating Forms in Microsoft Word Lunch and Learn: April 2, 2008.
Adding a Crystal Report to M3 This presentation will assist you in adding a custom Crystal report into Millennium 3.
Using Macros and Visual Basic for Applications (VBA) with Excel
Systems Analysis & IT Project Management Pepper. System Life Cycle BirthDeathDevelopmentProduction.
Tutorial 12: Enhancing Excel with Visual Basic for Applications
Macros in Excel Intro to lab 1. Macroinstructions Macro is recorded in VBA module sequence of Excel operations Macros can automate tasks in Excel Macro.
University of Delaware Information Technology User Services.
ME 142 Engineering Computation I Macros. Key Concepts Macro Overview Recording a Macro Running a Macro Editing a Macro Using Controls.
Customizing Microsoft Project
With Microsoft Excel 2007 Comprehensive 1e© 2008 Pearson Prentice Hall1 PowerPoint Presentation to Accompany GO! with Microsoft ® Excel 2007 Comprehensive.
This DBA application features an advance 3 tab form with linked sub forms, multi- dependent dropdown lists along with dependent auto fill fields. It also.
Microsoft Excel 2007 © Wiley Publishing All Rights Reserved. The L Line The Express Line to Learning L Line.
© 2008 The McGraw-Hill Companies, Inc. All rights reserved. WORD 2007 M I C R O S O F T ® THE PROFESSIONAL APPROACH S E R I E S Lesson 22 Macros.
Introduction to Engineering Computing GEEN 1300 Lecture 7 15 June 2010 Review for midterm.
Systems Analysis & Design Data Flow Diagrams. End Home Data Flow Diagrams – Definition  A data flow diagram is a pictorial model that shows the flow.
Lecture Excel: Macros & Pivot Tables. Macros A macro is a series of commands that are stored and can be run whenever you need to perform the task.
The Advantage Series ©2004 The McGraw-Hill Companies, Inc. All rights reserved Chapter 8 Managing Worksheet Lists Microsoft Office Excel 2003.
Chapter 19 Managing Worksheet Lists. Creating Lists ► Microsoft Office Excel 2003 is inarguably the most powerful electronic spreadsheet available. ►
Copyright © 2008 Pearson Prentice Hall. All rights reserved. 11 Committed to Shaping the Next Generation of IT Experts. Chapter 10 Customizing a Database.
Introduction to Video Game Programming (VGP) Mr. Shultz.
1 By: Nour Hilal. Microsoft Access is a database software where data is stored in one or more Tables. A Database is a group of related Tables. Access.
ME 142 Engineering Computation I Macros. Key Concepts Macro Overview Recording a Macro Running a Macro Editing a Macro.
OCC Network Drives  H:\  P:\ 
MS-Word XP Lesson 9. Mail Merge The Mail Merge feature combines a list of data, typically name and address that is contained in one file with a document.
Lesson 1: Exploring Access Learning Objectives After studying this lesson, you will be able to: Start Access and identify elements of the application.
C++ Programming Language Lecture 2 Problem Analysis and Solution Representation By Ghada Al-Mashaqbeh The Hashemite University Computer Engineering Department.
Procurement Query Login Using Mail User & Password.
Database Objective Demonstrate basic database concepts and functions.
Planning & Creating a Database By Ms. Naira Microsoft Access.
Lesson 13 Databases Unit 2—Using the Computer. Computer Concepts BASICS - 22 Objectives Define the purpose and function of database software. Identify.
Introduction to Microsoft Excel Macros COE 201- Computer Proficiency.
Crystal Reports with MDS  Topics  Crystal Reports  Sales Analysis Reports  Export Crystal Report to different formats  Modify and Save New Reports.
Lesson 29: Building a Database. Learning Objectives After studying this lesson, you will be able to:  Identify key database design techniques  Open.
Random Name Picker. Instructions 1.Either enter a list of new names or load a set previously saved names by clicking the load button. 2.Click start. Known.
Chapter 10 Using Macros, Controls and Visual Basic for Applications (VBA) with Excel Microsoft Excel 2013.
Software Engineering Algorithms, Compilers, & Lifecycle.
Dresser Rand Assembly Line MSD I Detailed Design Review Team February 18, 2010.
Tank Testing & Test Report Updated 4/25/14. Where to find the report  Intranet  Choose a Department  Rental Fleet Click on “Test Dates for Tanks” Click.
System Level Design Review MSD P P Meeting Purpose 1. Present design ideas and discuss improvement options. 2. Review project status.
COMPREHENSIVE Excel Tutorial 12 Expanding Excel with Visual Basic for Applications.
Customer Report Manual
IE 8580 Module 4: DIY Monte Carlo Simulation
Excel: Macros & Pivot Tables
Course Summary Organization: A process providing goods and services based on a set of inputs, including raw material, capital, labor and knowledge. The.
SDLC Phase III: Structuring System Requirements
Microsoft Access 2003 Illustrated Complete
Excel VBA Day 3 of 3 Tom Vorves.
“What do I do ?”, “How do I do it ?”, What do I do it with ?
Introduction to the MS Word template for IEEE standards drafts
أ.إسراء الطريقي أ. هاله الشملان , 102 تقن , المعمل الخامس
Ariba Contracts: Working with the Documents Tab
Make good use of the notes fields!
ME 142 Engineering Computation I
Assessed to Sale Ratio Worksheet Instructions
System Design Review MSD P10458
Designing and Writing Control-Break Programs
GROpt.m (1) Copy the 7 files from GRopt.zip into one directory.
Exploring the Power of EPDM Tasks - Working with and Developing Tasks in EPDM By: Marc Young XLM Solutions
ECE 544 Project III Description and Timeline March 23, 2018
In the home page, click on “Reports”
Make good use of the notes fields!
Database Fundamentals
ECARS - INCOMPLETE SERVICE REQUESTS.
Basics of Energy Management
Lesson 1 - Automating Tasks
Systems and Optimization
How to Use templates?.
Customer Needs Specifications Final Design Improvements
Presentation transcript:

Software Implementation Detailed Design Review MSD-1 P10458 Leonardo Gala

Contract Kitting Software Design: Customer Requested Decision Flow MSD Scope

IE-Software Decision Structure

Contract Kitting Visualization: Main Tab Contract Kitting: Main Operations Industrial Engineer PW: ?

Start IE Tab Contract # Complete

Contract Break Down Button Actions: (Click for logic) (Click for logic) -Blank workbook. -Save as ‘Contract #’.xls -DR Macro imports EES data. -Sub-design 1 imports asm station info. -DR macro generates Pick List tab. -Pick list ordered through Optimal Pick file. Back

Sub-Design 1 -Requirement: Assembly Station & Subassembly Destinations in Pick List -Solution: Cross reference Part Number fields in Contract Pick List tab and associated Standard Work file to obtain destination stations (housed in Std Work). -Implementation: Create general VBA macro and standard Std Work file format. ‘Contract #’.xls Pick List Tab Std_Work_Contract.xls Back

Sub-Design 2 -Requirement: An efficient order in which to pick parts from the Stores department. -Solution: Implement an algorithm that routes the picker based on which parts are needed for and order. -Implementation: Compile a distance matrix to all storage locations. Apply the Nearest Insertion Algorithm to find the minimal distance route between product locations. ‘Contract #’.xls Pick List Tab Optimal Pick Order Workbook -Process input data: create distance matrix for pick items. -Sort out Discrete items. -Run algorithm. -Rank Parts in ascending pick order. Back