1 of 16 Microsoft ® Business Solutions–Navision ® Development I – C/SIDE Introduction.

Slides:



Advertisements
Similar presentations
JavaScript FaaDoOEngineers.com FaaDoOEngineers.com.
Advertisements

1.
JavaScript Part for Repetition Statement for statement Cpecifies each of the items needed for counter-controlled repetition with a control variable.
PHP Introduction.
Guide to Oracle10G1 Introduction To Forms Builder Chapter 5.
Chapter 4B: More Advanced PL/SQL Programming
Basic Elements of Programming A VB program is built from statements, statements from expressions, expressions from operators and operands, and operands.
Program Design and Development
1 Chapter 4 The Fundamentals of VBA, Macros, and Command Bars.
JavaScript, Fourth Edition
Introduction to PL/SQL
ASP.NET Programming with C# and SQL Server First Edition
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 Access 2010 Chapter 7 Using SQL.
1 of 6 Microsoft ® Business Solutions–Navision ® Development I – C/SIDE Introduction Day 4.
1 of 29 Microsoft ® Business Solutions–Navision ® Development I – C/SIDE Introduction – Day 1.
Chapter Four The Selection Structure
Chapter 4: The Selection Structure
1 Chapter 9 Writing, Testing, and Debugging Access Applications.
CSCI 6962: Server-side Design and Programming Support Classes and Shopping Carts.
10 May Microsoft Access 2010 Relational databases’ program Part of the Microsoft Office package Administer relational database Update database through.
Automating Database Processing Chapter 6. Chapter Introduction Design and implement user-friendly menu – Called navigation form Macros – Automate repetitive.
Using the selection structure (Unit 7) Visual Basic for Applications.
© 2008 The McGraw-Hill Companies, Inc. All rights reserved. ACCESS 2007 M I C R O S O F T ® THE PROFESSIONAL APPROACH S E R I E S Lesson 6 – Designing.
Visual Basic.NET Comprehensive Concepts and Techniques Chapter 5 Decision Making.
ASP.NET Programming with C# and SQL Server First Edition Chapter 3 Using Functions, Methods, and Control Structures.
Lecture Set 5 Control Structures Part A - Decisions Structures.
CMPS 211 JavaScript Topic 1 JavaScript Syntax. 2Outline Goals and Objectives Goals and Objectives Chapter Headlines Chapter Headlines Introduction Introduction.
1 Session 3: Flow Control & Functions iNET Academy Open Source Web Programming.
1 Relational Expressions Relational expressions: –Expressions that compare operands –Sometimes called conditions –Evaluated to yield a result –Typically.
Introduction to Computer Programming Using C Session 23 - Review.
Introduction to PHP A user navigates in her browser to a page that ends with a.php extension The request is sent to a web server, which directs the request.
Microsoft ® Business Solutions–Navision ® 4.0 Development II - C/SIDE Solution Development Day 5.
Chapter 17 Creating a Database.
Press Esc to Exit ©2011 Cengage Learning. All Rights Reserved. May not be scanned, copied or duplicated, or posted to a publicly accessible website, in.
CPS120: Introduction to Computer Science Decision Making in Programs.
VBScript Language. What is VBScript Based on the Visual Basic family of languages Supports object oriented features Interpreted Loosely Typed Implicitly.
Microsoft Dynamics NAV 2009 and Architecture Overview Name Title Microsoft Corporation.
7 1 User-Defined Functions CGI/Perl Programming By Diane Zak.
Guide to Oracle 10g ITBIS373 Database Development Lecture 4a - Chapter 4: Using SQL Queries to Insert, Update, Delete, and View Data.
CONTENTS Processing structures and commands Control structures – Sequence Sequence – Selection Selection – Iteration Iteration Naming conventions – File.
Chapter 3 Functions, Events, and Control Structures JavaScript, Third Edition.
1 of 20 Microsoft ® Business Solutions–Navision ® Development I – C/SIDE Introduction Day 2.
XP Tutorial 8 Adding Interactivity with ActionScript.
JavaScript, Fourth Edition
Copyright © 2003 ProsoftTraining. All rights reserved. Perl Fundamentals.
Chapter Four The Selection Structure Programming with Microsoft Visual Basic th Edition.
1 of 6 Microsoft ® Business Solutions–Navision ® Development I – C/SIDE Introduction Day 3.
Programming Perl in UNIX Course Number : CIT 370 Week 3 Prof. Daniel Chen.
Review for Final Exam. Contents 5 questions (20 points each) + 1 bonus question (20 points) – Basic concepts in Chapters 1-4 – Chapters 5-9 – Bonus: Chapter.
XP Tutorial 2 New Perspectives on JavaScript, Comprehensive1 Working with Operators and Expressions Creating a New Year’s Day Countdown Clock.
Introduction to touchdevelop values … and types Disclaimer: This document is provided “as-is”. Information and views expressed in this document, including.
Microsoft Office 2013 Try It! Chapter 4 Storing Data in Access.
Visual Basic Review LBS 126. VB programming Project Form 1Form 2Form 3 Text boxButton Picture box Objects Text box Button Objects.
Chapter 7: The Repetition Structure Introduction to Programming with C++ Fourth Edition.
Microsoft ® Business Solutions–Navision ® 4.0 Development II – C/SIDE Solution Development Day 3.
 CONACT UC:  Magnific training   
 2001 Prentice Hall, Inc. All rights reserved. Outline 1 JavaScript.
Practical Office 2007 Chapter 10
Chapter 4: The Selection Structure
Microsoft Access Illustrated
Chapter 5 Repetition.
Review for Final Exam.
Chapter 8: More on the Repetition Structure
Microsoft Visual Basic 2005: Reloaded Second Edition
Review for Final Exam.
Contents Preface I Introduction Lesson Objectives I-2
Data Types and Expressions
The Selection Structure
Presentation transcript:

1 of 16 Microsoft ® Business Solutions–Navision ® Development I – C/SIDE Introduction

2 of 16 Course Summary Tables –Definition –Table and Field Properties –Creating Tables –Keys –Relationships between Tables –Special Table Properties –Modifying Properties –Table Types and Characteristics

3 of 16 Course Summary Forms –Definition –Form Types and Characteristics –Form Properties –Creating Forms –Form Wizard –Useful Controls –Creating Buttons –Creating Subforms –Standard Navigation

4 of 16 Course Summary C/AL Programming –Intrinsic Data Types Numeric Data Types String Data Types Boolean Date, Time, and DateTime Complex Data Types

5 of 16 Course Summary C/AL Programming –Identifiers and Variables Identifier Syntax (nomenclature) Global Variables Local Variables System Defined Variables Displaying Variables

6 of 16 Course Summary C/AL Programming –The Assignment Statement Assigning Values to a Variable Automatic Type Conversions Assignment Statements The Symbol Menu –Simple Expressions, Terms and Operators Definitions The String Operator Function Calls within an Expression

7 of 16 Course Summary C/AL Programming –Numeric Expressions Types of Arithmetic Operators Operator Precedence –Logical and Relational Expressions Relational Operators Logical Operators Relational Expressions for Comparison Set Inclusion Using NOT, OR, AND, & XOR Logical Operator Precedence

8 of 16 Course Summary C/AL Programming –The IF and EXIT Statements IF-THEN Syntax IF-THEN-ELSE Syntax Functions of the EXIT Statement –Compound Statements and Comments Compound Statement Syntax with BEGIN and END Compound Statements with Nested IF Statements Adding Comments to Code

9 of 16 Course Summary C/AL Programming –Arrays Definition Array Syntax Strings as Arrays of Characters Using Arrays

10 of 16 Course Summary C/AL Programming –Repetitive Statements The FOR Statement The FOR … DOWNTO Statement The WHILE … DO Statement The REPEAT … UNTIL Statement –Other Statements The WITH Statement CASE Statements

11 of 16 Course Summary C/AL Programming –Functions Built-In Functions The Symbol Menu –Using Intrinsic Functions Essential C/AL Functions Communication Functions String Functions System Functions Date Functions Number Functions Other Functions

12 of 16 Course Summary C/AL Programming –Creating Your Own Functions Local Functions Local Variables More on the EXIT Statement Parameters – Passed by Value or Passed by Reference The Return Value

13 of 16 Course Summary Data Manipulation Reports –Three Types of Reports –Information Reports –Documents –Non-Printing (or Update) Reports Types of Printed Reports –List Reports –Test Reports –Posting Reports –Transaction Reports –Document Reports

14 of 16 Course Summary Data Manipulation –Reports –The Report Designer –Data Items –Linking Items –Sections –Request Form –Properties –Grouping –Totals

15 of 16 Course Summary Data Manipulation –Dataports –XMLports –CodeUnits –MenuSuites

16 of 16 Course Summary Integration –NODBC –C/FRONT –OCX Controls –Automation Server