MICS4 Data Processing Workshop Multiple Indicator Cluster Surveys Data Processing Workshop Revisiting Data Path and Error Messages in a Data Entry Application.

Slides:



Advertisements
Similar presentations
Review of Data Processing Steps MICS3 Data Analysis and Report Writing Workshop.
Advertisements

MICS4 Data Processing Workshop Multiple Indicator Cluster Surveys Data Processing Workshop Creating Analysis Files: Description of Preparation Steps.
MICS4 Data Processing Workshop Multiple Indicator Cluster Surveys Data Processing Workshop CSPro Overview.
MICS4 Data Processing Workshop Multiple Indicator Cluster Surveys Data Processing Workshop Data Entry Editing.
MICS Data Processing Workshop Supervisors Menu. Purpose of the Supervisors Menu Executes supervisors applications –...and displays results Transfers and.
MICS4 Data Processing Workshop Multiple Indicator Cluster Surveys Data Processing Workshop Supervisors Menu.
MICS4 Data Processing Workshop Multiple Indicator Cluster Surveys Data Processing Workshop Data Entry Applications with Logic.
MICS Data Processing Workshop
MICS4 Data Processing Workshop Multiple Indicator Cluster Surveys Data Processing Workshop Overview of Data Processing System.
MICS Data Processing Workshop
MICS Data Processing Workshop Data Entry Application.
MICS4 Data Processing Workshop Multiple Indicator Cluster Surveys Data Processing Workshop MICS Dictionary and Forms.
MICS4 Data Processing Workshop Multiple Indicator Cluster Surveys Data Processing Workshop Simple Data Entry Applications.
MICS4 Data Processing Workshop Multiple Indicator Cluster Surveys Data Processing Workshop Secondary Editing.
MICS4 Data Processing Workshop Multiple Indicator Cluster Surveys Data Processing Workshop GPS.
MICS4 Survey Design Workshop Multiple Indicator Cluster Surveys Survey Design Workshop How to Customize MICS4 Questionnaires to Countries.
Multiple Indicator Cluster Surveys Data Processing Workshop Data Entry Applications with Logic MICS Data Processing Workshop.
Chapter 3: Editing and Debugging SAS Programs. Some useful tips of using Program Editor Add line number: In the Command Box, type num, enter. Save SAS.
Developing an Excel Application
Tutorial 8: Developing an Excel Application
Multiple Indicator Cluster Surveys Data Processing Workshop Simple Data Entry Applications MICS Data Processing Workshop.
Programming Logic and Design, Third Edition Comprehensive
Multiple Indicator Cluster Surveys Data Processing Workshop
© Copyright 1992–2005 by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. Tutorial 14 – Student Grades Application: Introducing.
Tutorial 6 & 7 Symbol Table
SUNY Morrisville-Norwich Campus-Week 12 CITA 130 Advanced Computer Applications II Spring 2005 Prof. Tom Smith.
A Guide to Oracle9i1 Advanced SQL And PL/SQL Topics Chapter 9.
Testing a program Remove syntax and link errors: Look at compiler comments where errors occurred and check program around these lines Run time errors:
Microsoft Office Word 2013 Expert Microsoft Office Word 2013 Expert Courseware # 3251 Lesson 4: Working with Forms.
Microsoft Office 2003: Advanced 1 ADVANCED MICROSOFT ACCESS Lesson 7 – Modifying Table Design.
XP New Perspectives on Microsoft Office Access 2003 Tutorial 11 1 Microsoft Office Access 2003 Tutorial 11 – Using and Writing Visual Basic for Applications.
1 Chapter 9 Writing, Testing, and Debugging Access Applications.
Multiple Indicator Cluster Surveys Data Processing Workshop Secondary Editing MICS Data Processing Workshop.
Multiple Indicator Cluster Surveys Data Processing Workshop Supervisor’s Menu MICS Data Processing Workshop.
CNG 140 C Programming Lecture Notes 2 Processing and Interactive Input Spring 2007.
A First Book of ANSI C Fourth Edition Chapter 3 Processing and Interactive Input.
In the next step you will enter some data records into the table. This can be done easily using the ‘Data Browser’. The data browser can be accessed via.
 Whether using paper forms or forms on the web, forms are used for gathering information. User enter information into designated areas, or fields. Forms.
Introduction to ABAP Selection Screens. Slide 2 Screens (Types) There are three types of screens Selection screens get parameter input for reports List.
1 Compiler Construction (CS-636) Muhammad Bilal Bashir UIIT, Rawalpindi.
Programming Logic and Design Sixth Edition Chapter 5 Looping.
6 Chapter 61 Looping Programming Logic and Design, Second Edition, Comprehensive 6.
NFIRS Data Entry Browser Interface (DEBI)
Microsoft Visual Basic 2005: Reloaded Second Edition Chapter 3 Variables, Constants, Methods, and Calculations.
MICS Survey Design Workshop Multiple Indicator Cluster Surveys Survey Design Workshop Data Entry Using Tablets / Laptops.
3 Copyright © 2004, Oracle. All rights reserved. Working in the Forms Developer Environment.
1.  Introduction  The Benefits of the Report Writer Module ◦ For Detail and Summary Printing ◦ For Control Break Processing ◦ For Printing Headings.
1 11 Exploring Microsoft Office Access 2007 Chapter 6 Data Protection.
MICS Data Processing Workshop Multiple Indicator Cluster Surveys Data Processing Workshop Creating Analysis Files: Description of Preparation Steps.
Agenda Perform Quiz #1 (20 minutes) Loops –Introduction / Purpose –while loops Structure / Examples involving a while loop –do/while loops Structure /
Programming with Visual C++: Concepts and Projects Chapter 4B: Selection (Tutorial)
1 Work Orders. 2 Generating a Work Order There are two methods to generating a Work Order in the WYNNE STSTEM. First method: Option 11 – 12 – 13 * Open.
Sequential Processing to Update a File Please use speaker notes for additional information!
Multiple Indicator Cluster Surveys Data Processing Workshop Overview of SPSS structural check programs and frequencies MICS Data Processing Workshop.
ENTER To view the PS Form 3546 tutorial slide show, press the F5 key or click on Slide Show at the top of this window. In the dropdown window, click View.
FILES AND EXCEPTIONS Topics Introduction to File Input and Output Using Loops to Process Files Processing Records Exceptions.
NFIRS Data Entry Browser Interface (DEBI) nfirs. fema
Introduction to Triggers
Data Validation and Protecting Workbook
Designing and Debugging Batch and Interactive COBOL Programs
Topics Introduction to File Input and Output
Conditions and Ifs BIS1523 – Lecture 8.
NFIRS Data Entry Browser Interface (DEBI) nfirs. fema
A First Book of ANSI C Fourth Edition
AGILENT TECHNOLOGIES RESTRICTED
NFIRS Data Entry Browser Interface (DEBI) nfirs. fema
NFIRS Data Entry Browser Interface (DEBI) nfirs. fema
NFIRS Data Entry Browser Interface (DEBI) nfirs. fema
Topics Introduction to File Input and Output
NFIRS Data Entry Browser Interface (DEBI) nfirs. fema
Presentation transcript:

MICS4 Data Processing Workshop Multiple Indicator Cluster Surveys Data Processing Workshop Revisiting Data Path and Error Messages in a Data Entry Application

Moving Through a Field There are two ways to move through a field (i.e., pass through without allowing input) within CSPro: –Making the field protected if a field on a form is protected, the data entry operator cant enter it; this property must be set during the design of the data entry application –Using the noinput command the command must be placed in the fields preproc the field must be assigned a value for the command to work going forward, the data entry operator cant enter the field going backward, the field can be entered; therefore, need a check in the postproc that the value has not been changed MICS4 Data Processing Workshop

Questionnaire Filters Filters have a questionnaire number but generally do not appear in the dictionary Filters usually refer to previously-entered data (e.g., WB6) These filters are implemented in either –the postproc of the variable that precedes them –the preproc of the variable that follows them WB6 is implemented in the postproc of WB5 (but could have also been implemented in the preproc of WB7) MICS4 Data Processing Workshop

Controlling the Number of Individual Questionnaires CSPro will add level-two questionnaires until it is forced to stop by an endlevel command Logic ensuring that the correct number of level two questionnaires are entered is located in –the postproc of FormWM –the preproc and postproc of WMCH This code does not need to be modified MICS4 Data Processing Workshop

Customizing your application Once you have customized your dictionary and forms, you should review it to: –Remove obsolete logic –Fix any compilation errors –Correct any erroneous skips –Check data entry path –Add checks for new variables/modules MICS4 Data Processing Workshop

Common Compile Error Messages Problem: Forgot to declare a variable Error: is not a declared variable or is a misspelled dictionary entry To correct this, either: –Declare it in the PROC GLOBAL section (preferred method) –use set implicit ' in PROC GLOBAL Problem: Forgot ; at the end of a line ERROR: Expecting ';' or operator near line in procedure MICS4 Data Processing Workshop

Common Compile Error Messages Problem: Deleted a module/variable in dictionary that had logic ERROR: PROC invalid - 'HL6' does not exist To correct this, either: –Reinstate the dictionary item, if you deleted the item by mistake –Delete the obsolete logic from this module/ variable (Warning: Be positive this code does not belong elsewhere due to a variable name change, etc.) MICS4 Data Processing Workshop