Chapter 6: Creating Custom Forms. Guide to Oracle 10g

Size: px
Start display at page:

Download "Chapter 6: Creating Custom Forms. Guide to Oracle 10g"

Transcription

1 Chapter 6: Creating Custom Forms Guide to Oracle 10g

2 Lesson B Objectives After completing this lesson, you should be able to: Suppress default system messages Create alerts and messages to provide system feedback to users Create applications that avoid user errors Trap common runtime errors Guide to Oracle 10g 2

3 Controlling System Messages Forms Services message line Displays FRM- and ORA- messages Classified according to Severity Whether or not they require user intervention Suppress default system messages Replace with custom messages Set :SYSTEM.MESSAGE_LEVEL variable In PRE-FORM trigger :SYSTEM.MESSAGE_LEVEL := message_level; :SYSTEM.MESSAGE_LEVEL := 25; 3

4 Providing System Feedback Important application design principle Provide users with feedback about what is happening in application. caution users when they are about to make a change that could potentially cause harm Make applications forgiving Allow users to undo unintended operations To provide feedback in forms, you create custom messages and alerts. Guide to Oracle 10g 4

5 Custom Messages A custom message is a short text string that displayed on form message line Up to 200 characters Syntax: MESSAGE('message_string'); Guide to Oracle 10g 5

6 6

7 To add custom messages to the Projects form: 1. Open the Layout Editor, right-click the Save New button, and then click PL/SQL Editor to open the button trigger. 2. To display a custom message when the user saves a new record, add the following command as the last command in the trigger: MESSAGE('Record inserted.'); 3. Compile the trigger, correct any syntax errors, and then close the PL/SQL Editor. 4. To display a custom message when the user updates an existing record, right-click the Update button, click PL/SQL Editor, and then add the following command as the last command in the trigger: MESSAGE('Record updated.'); 5. Compile the trigger, correct any syntax errors, close the PL/SQL Editor, and then save the form. 7

8 Alerts Alert is a dialog box Display text message longer than 200 characters Displays one or more buttons Allow user to select between alternatives that execute associated program statements It is needed when: The feedback requires a longer message than will fit on the message line. The user needs to select between alternate ways to proceed. For important messages that the user needs to acknowledge. 8

9 Alerts (continued) An alert is a top-level form object. To create a new alert, select the Alerts node in the Object Navigator, and then click the Create button. Then, specify the alert properties. The Title property determines the title that appears in the alert window title bar. The Message property defines the text that appears in the alert. The Style property value specifies the icon that appears on the alert. 9

10 Guide to Oracle 10g 10

11 Styles: Alerts (continued) Note displays an i for information, conveys information to the user Such as confirming that the form has inserted a record. Caution displays an exclamation point (!), inform the user that he or she is about to make a choice that cannot be undone and could lead to a potentially damaging situation, such as deleting a record Stop display a red "X" or a red stoplight inform the user that he or she has instructed the system to perform an action that is not possible such as trying to delete a record that is referenced as a foreign key in another table. 11

12 Alerts (continued) Button Label property determines: How many buttons appear on alert Labels on buttons Maximum 3 buttons Button 1 Label, Button 2 Label, and Button 3 Label. If you delete the label for a given button, then that button no longer appears on the alert. 12

13 To create the alert: 1. Open the 6BProjects.fmb form in the Chapter6\Tutorials folder on your Solution Disk, and save the form as 6BProjects_ALERT.fmb in the Chapter6\Tutorials folder on your Solution Disk. (If you did not create the 6BProjects.fmb form earlier in the lesson, a copy of this file is in the Chapter6 folder on your Data Disk.) 2. Make sure that the Object Navigator window is open in Ownership View, then select the Alerts node under the PROJECT_FORM node. 3. Click the Create button on the Object Navigator toolbar to create a new alert object. 4. Double-click the Alert icon beside the new alert to open its Property Palette, and then change its properties as follows: 5. Close the Property Palette, and then save the form. 13

14 Alerts (continued) To declare/display alert: DECLARE alert_button NUMBER; BEGIN alert_button:= END; SHOW_ALERT('alert_name'); Guide to Oracle 10g 14

15 Example Alert Guide to Oracle 10g 15

16 Syntax to Display an Alert and Execute Alternate Commands Depending on the Button the User Clicked To execute alternate program commands depending on the alert button that the user clicks, you create an IF/ELSIF decision control structure 16

17 To create the program unit to display the alert: 1. In the Object Navigator window, select the Program Units node, and then click the Create button to create a new program unit. 2. Type DISPLAY_ALERT for the new program unit name, make sure that the Procedure option button is selected, and then click OK. 3. Modify the procedure so it appears as shown in Figure Then compile the code, correct any syntax errors if necessary, close the PL/SQL Editor, and save the form. Guide to Oracle 10g 17

18 Next, you need to modify the trigger for the Update button so that it calls the DISPLAY_ALERT program unit instead of committing the transaction to the database. Then you run the form, select and update a record, and display the alert. Guide to Oracle 10g 18

19 To modify the Update button trigger, then run the form: 1. Open the Layout Editor, right-click the Update button, and then click PL/SQL Editor. 2. Delete the COMMIT; command, and replace it with the following command that calls the DISPLAY_ALERT program unit: DISPLAY_ALERT; 3. Compile the trigger, correct any syntax errors, close the PL/SQL Editor, and save the form. 4. Run the form, make sure that the insertion point is in the Project ID field, open the LOV display, select the record for Project ID 1, and then click OK. The data values for the project appear in the form text items. 5. Place the insertion point in the Manager ID field, open the LOV display, select the record for consultant ID 102 (Brian Zhang), click OK, and then click Update. UPDATE_ALERT appears, as shown in Figure

20 6. Click OK. The confirmation message "Record updated." appears on the message line. 7. Make sure that the insertion point is in the Project ID field, open the LOV display, select the record for Project ID 1 again, and then click OK. The data values for the project appear in the form text items, showing the updated project manager value. 8. Place the insertion point in the Manager ID field, open the LOV display, select the record for consultant ID 103 (Sarah Carlson), click OK, and then click Update. The alert appears again. This time, you cancel your changes. 9. Click Cancel. The "Record not updated." message appears, and the form fields are cleared. 10. Close the browser window, and then close the form in Forms Builder. 20

21 Avoiding User Errors Forms help users avoid errors(such as entering an incorrect data value, or clicking a button at the wrong time) by: Configure forms that validate input values Programmatically disable form command buttons Disable navigation for form text items containing values that users should not change Guide to Oracle 10g 21

22 Validating Form Input Values Validate input values Ensure that values meet specific preset requirements Use Text item validation properties Form validation triggers Guide to Oracle 10g 22

23 Text Item Validation Properties A form can validate a text item's value using specific text item validation properties. 23

24 Validating Form Input Values (continued) You can perform complex validation operations by using validation triggers. Item validation trigger Item-level trigger Associate with item s WHEN-VALIDATE-ITEM event Fires when item is validated As determined by form validation unit The trigger code tests the current item value to determine if it satisfies the validation condition or conditions. If not valid Raises built-in exception named FORM_TRIGGER_FAILURE 24

25 To create and test an item validation trigger: 1. In the Layout Editor, select the Class text item, right-click, point to SmartTriggers, and then click WHEN-VALIDATE-ITEM. The PL/SQL Editor opens. 2. Type the following command in the PL/SQL Editor to create the validation trigger: IF NOT :student.s_class IN ("FR", 'SO', 'JR', 'SR') THEN MESSAGE('Legal values are FR, SO, JR, SR'); RAISE FORM_TRIGGER_FAILURE; END IF; 3. Compile the trigger, correct any syntax errors, close the PL/SQL Editor, and save the form. 4. Run the form, and click Create. A new Student ID value appears. 5. Place the insertion point in the Class field, type AA, and then press Tab. The message "Legal values are FR, SO,JR, SR" appears on the message line, indicating that the item validation trigger fired correctly. 6. Close the browser window. 25

26 Disabling Form Command Buttons to Avoid User Errors when a user clicks the Create button on the Students form, a new Student ID value appears on the form. The user must enter values into the other form text items, and then click the Save New button, to save the new record. If the user clicks the Save New button without clicking the Create button, then the form does not retrieve the Student ID value from the sequence, and risks having a duplicate primary key. Therefore, when the form first opens, the Save New button should be disabled (grayed-out). The Save New button should not be enabled until after the user has clicked the Create button. 26

27 Disabling Form Command Buttons to Avoid User Errors To disable a command button when a form first opens, you open the command button's Property Palette and set the Enabled property to No. Enable or disable button while form running: SET_ITEM_PROPERTY('item_name', property_name, property_value); SET_ITEM_PROPERTY('UPDATE_BUTTON', ENABLED, PROPERTY FALSE); Guide to Oracle 10g 27

28 To change and test the button properties: 1. In the Layout Editor, right-click the Save New button, and then click Property Palette. To disable the button when the form first opens, change the Enabled property value to No, and then close the Property Palette. 2. Right-click the Create button, and then click PL/SQL Editor. The button trigger code appears. To enable the Save New button, add the following command as the last command in the trigger: SET_ITEM_PROPERTY('SAVE_BUTTON', ENABLED, PROPERTY_TRUE); 3. Compile the trigger, and debug it if necessary, then close the PL/SQL Editor. 4. Save the form, and then run the form. The Save New button appears disabled when the form first opens. 5. Click Create. A new value appears in the Student ID text item, and the Save New button is now enabled. 6. Close the browser window. 28

29 Disabling Text Item Navigation Nonnavigable: not allowing users to directly update text items that contain primary key values is to make these text items nonnavigable. User cannot press Tab key to place insertion point in text item Set item s Keyboard Navigable property to No User can still click mouse pointer in text item to enter value Create trigger that moves insertion point to another form item WHEN-MOUSE-UP event 29

30 To make the text item nonnavigable and switch the form focus when the user clicks the mouse in the text item, then run the form: 1. In the Layout Editor, double-click the S_ID text item to open its Property Palette. Scroll down to the Navigation node, select the Keyboard Navigable property, open the list, select No, and then close the Property Palette. 2. To create the trigger to change the form focus to the Create button when the user clicks the mouse pointer in the S_ID text item, right-click the S_ID text item, and then click PL/SQL Editor. Select WHEN-MOUSE-UP from the list, and then click OK. Guide to Oracle 10g 30

31 3. Type the following command in the Source code pane, compile the trigger, correct any syntax errors, and then close the PL/SQL Editor and save the form. GO_ITEM('STUDENT.CREATE_BUTTON'); 4. Run the form. Note that because the Student ID text item is now nonnavigable, the insertion point initially appears in the Last Name text item instead of in the Student ID text item. 5. Click the insertion point in the Student ID text item. Note that the form focus switches to the Create button. 6. Press Tab 3 times. Note that the insertion point does not appear in the Student ID text item, but moves directly to the Last Name text item. 7. Close the browser window, and then close the form in Forms Builder. 31

32 TRAPPING COMMON RUNTIME ERRORS It is a good practice to trap these errors, which means to intercept the default system error message and replace it with a custom error message. The custom error message gives more detailed information to the user about how to correct the error. Guide to Oracle 10g 32

33 Generating Runtime Errors Deliberately generate errors while updating and deleting records View error messages 33

34 Trapping Form Runtime Errors ON-ERROR event occurs Whenever ORA- or FRM- error occurs while form running Create form-level trigger that corresponds to ON- ERROR event Use decision control structure to handle different errors Guide to Oracle 10g 34

35 Forms Builder Built-in Procedures for Handling Errors Guide to Oracle 10g 35

36 If an FRM- error occurs, the ERROR_CODE procedure returns the corresponding FRM- error code. If an ORA- error occurs, the DBMS_ERROR_CODE procedure returns the corresponding ORA- error code. You can create an IF/ELSIF decision structure in the ON-ERROR trigger that traps errors based on the values of ERROR_CODE and DBMS_ERROR_CODE, and then displays custom messages or alerts to provide users with informative messages and alternatives. 36

37 General Syntax for an ON-ERROR Trigger Guide to Oracle 10g 37

38 To create and test the ON-ERROR trigger: 1. In Forms Builder, make sure that the Object Navigator window is open. To create a form-level trigger, select the Triggers node directly below the form module, then click the Create button. 2. In the INVENTORY_FORM: Triggers dialog box, select ON-ERROR in the list, and then click OK. The PL/SQL Editor opens. 3. Type the commands in Figure 6-28, compile the code, correct any syntax errors, and then close the PL/SQL Editor. 4. Save the form and then run the form. Make sure that the insertion point is in the Item ID field, open the LOV display, select Item ID 2 (3-Season Tent), click OK, and then click Delete in the Items frame. The event handler message for the ORA error ("This record is referenced by other database tables.") appears.. 38

39 5. Place the insertion point in the Inventory ID field, open the LOV display, select ID 2, and then click OK. Change the QOH value to the letter a, and then click Update in the Inventory Items frame. The event handler message for the FRM error ("Please enter a value that is a number.") appears. 6. Change the QOH value to 200, and then click Clear in the Inventory Items frame to clear the frame items. 7. To test the general error handler, change the Category ID field value in the Items frame to 10, then click Update. Because 10 is not a valid category ID value in the CATEGORY table, the ORA error code and message appears in the message line. 8. Close the browser window, close the form in Forms Builder, and then close Forms Builder, the OC4J Instance, and SQL* Plus 39

40 Guide to Oracle 10g 40

41 Guide to Oracle 10g 41

42 Lesson B Summary Create custom messages and alerts Provide feedback to users Validate user inputs using Text item validation properties Form validation trigger Guide to Oracle 10g 42

Oracle Fusion Middleware 11g: Build Applications with Oracle Forms

Oracle Fusion Middleware 11g: Build Applications with Oracle Forms Oracle University Contact Us: +381 11 2016811 Oracle Fusion Middleware 11g: Build Applications with Oracle Forms Duration: 5 Days What you will learn This course teaches students how to use Oracle Forms

More information

Oracle Fusion Middleware 11g: Build Applications with Oracle Forms

Oracle Fusion Middleware 11g: Build Applications with Oracle Forms Oracle University Contact Us: Local: 0845 777 7 711 Intl: +44 845 777 7 711 Oracle Fusion Middleware 11g: Build Applications with Oracle Forms Duration: 5 Days What you will learn This course is also suitable

More information

Oracle Fusion Middleware 11g: Build Applications with Oracle Forms

Oracle Fusion Middleware 11g: Build Applications with Oracle Forms Oracle University Contact Us: 00 9714 390 9050 Oracle Fusion Middleware 11g: Build Applications with Oracle Forms Duration: 5 Days What you will learn This course is also suitable for customers using Forms

More information

Oracle Forms Developer 10g: Build Internet Applications

Oracle Forms Developer 10g: Build Internet Applications Oracle University Contact Us: +966 1 1 2739 894 Oracle Forms Developer 10g: Build Internet Applications Duration: 5 Days What you will learn Oracle Forms Developer 10g is used to build high performance

More information

Visual Basic Program Coding STEP 2

Visual Basic Program Coding STEP 2 Visual Basic Program Coding 129 STEP 2 Click the Start Debugging button on the Standard toolbar. The program is compiled and saved, and then is run on the computer. When the program runs, the Hotel Room

More information

Forms 10g. Section Title Page

Forms 10g. Section Title Page One Introduction to Forms 2 Two Running Forms in 10g 4 Starting OC4J Instance 5 Run a Form on the Web 9 Run Form Parameters 11 Three Using in a Browser 18 Browser Interface 19 Browser Menu Bar 20 Menu

More information

Proje D2K. CMM (Capability Maturity Model) level Project Standard:- Corporate Trainer s Profile

Proje D2K. CMM (Capability Maturity Model) level Project Standard:- Corporate Trainer s Profile D2K Corporate Trainer s Profile Corporate Trainers are having the experience of 4 to 12 years in development, working with TOP CMM level 5 comapnies (Project Leader /Project Manager ) qualified from NIT/IIT/IIM

More information

To complete this project, you will need the following folder:

To complete this project, you will need the following folder: = CHAPTER 1 Windows 7 More Skills 12 Use Libraries to Organize Files A library is a collection of files and folders stored in different locations on your computer that can be viewed as a single folder.

More information

COURSE DETAILS & CURRICULUM

COURSE DETAILS & CURRICULUM COURSE DETAILS & CURRICULUM INTRODUCTION What is Oracle Forms? Oracle Form Builder Components Application Code Partitioning Exercise: Preparing to Work with Oracle Forms GETTING STARTED Creating an Oracle

More information

Oracle PLSQL. Course Summary. Duration. Objectives

Oracle PLSQL. Course Summary. Duration. Objectives Oracle PLSQL Course Summary Use conditional compilation to customize the functionality in a PL/SQL application without removing any source code Design PL/SQL packages to group related constructs Create

More information

CANVASES AND WINDOWS

CANVASES AND WINDOWS CHAPTER 8 CANVASES AND WINDOWS CHAPTER OBJECTIVES In this Chapter, you will learn about: Canvas and Window Concepts Page 262 Content Canvases and Windows Page 277 Stacked Canvases Page 287 Toolbar Canvases

More information

itexamdump 최고이자최신인 IT 인증시험덤프 일년무료업데이트서비스제공

itexamdump 최고이자최신인 IT 인증시험덤프  일년무료업데이트서비스제공 itexamdump 최고이자최신인 IT 인증시험덤프 http://www.itexamdump.com 일년무료업데이트서비스제공 Exam : 1Z0-151 Title : Oracle Fusion Middleware 11g: Build Applications with Oracle Forms Vendors : Oracle Version : DEMO 1 / 9 Get

More information

11G ORACLE DEVELOPERS Training Program

11G ORACLE DEVELOPERS Training Program 11G ORACLE DEVELOPERS Training Program Complete OCP Track Training Developers manage the industry's most advanced information systems and command some of the highest salaries. This credential is your first

More information

Oracle General Navigation Overview

Oracle General Navigation Overview Oracle 11.5.9 General Navigation Overview 1 Logging On to Oracle Applications You may access Oracle, by logging onto the ATC Applications Login System Status page located at www.atc.caltech.edu/support/index.php

More information

Oracle EXAM - 1Z Oracle Fusion Middleware 11g: Build Applications with Oracle Forms. Buy Full Product.

Oracle EXAM - 1Z Oracle Fusion Middleware 11g: Build Applications with Oracle Forms. Buy Full Product. Oracle EXAM - 1Z0-151 Oracle Fusion Middleware 11g: Build Applications with Oracle Forms Buy Full Product http://www.examskey.com/1z0-151.html Examskey Oracle 1Z0-151 exam demo product is here for you

More information

Oracle Education Partner, Oracle Testing Center Oracle Consultants

Oracle Education Partner, Oracle Testing Center Oracle Consultants Oracle Reports Developer 10g: Build Reports (40 hrs) What you will learn: In this course, students learn how to design and build a variety of standard and custom Web and paper reports using Oracle Reports

More information

NiceForm User Guide. English Edition. Rev Euro Plus d.o.o. & Niceware International LLC All rights reserved.

NiceForm User Guide. English Edition. Rev Euro Plus d.o.o. & Niceware International LLC All rights reserved. www.nicelabel.com, info@nicelabel.com English Edition Rev-0910 2009 Euro Plus d.o.o. & Niceware International LLC All rights reserved. www.nicelabel.com Head Office Euro Plus d.o.o. Ulica Lojzeta Hrovata

More information

You can make certain sections of the text clickable by creating hyperlinks. Once clicked, these links navigate users to different

You can make certain sections of the text clickable by creating hyperlinks. Once clicked, these links navigate users to different You can make certain sections of the text clickable by creating hyperlinks. Once clicked, these links navigate users to different pages or, as described in working with anchors, to different sections of

More information

The following instructions cover how to edit an existing report in IBM Cognos Analytics.

The following instructions cover how to edit an existing report in IBM Cognos Analytics. IBM Cognos Analytics Edit a Report The following instructions cover how to edit an existing report in IBM Cognos Analytics. Navigate to Cognos Cognos Analytics supports all browsers with the exception

More information

Using SQL Developer. Oracle University and Egabi Solutions use only

Using SQL Developer. Oracle University and Egabi Solutions use only Using SQL Developer Objectives After completing this appendix, you should be able to do the following: List the key features of Oracle SQL Developer Identify menu items of Oracle SQL Developer Create a

More information

Oracle SQL. murach s. and PL/SQL TRAINING & REFERENCE. (Chapter 2)

Oracle SQL. murach s. and PL/SQL TRAINING & REFERENCE. (Chapter 2) TRAINING & REFERENCE murach s Oracle SQL and PL/SQL (Chapter 2) works with all versions through 11g Thanks for reviewing this chapter from Murach s Oracle SQL and PL/SQL. To see the expanded table of contents

More information

Dreamweaver is a full-featured Web application

Dreamweaver is a full-featured Web application Create a Dreamweaver Site Dreamweaver is a full-featured Web application development tool. Dreamweaver s features not only assist you with creating and editing Web pages, but also with managing and maintaining

More information

Oracle 1Z Oracle9i Forms Developer: New Features.

Oracle 1Z Oracle9i Forms Developer: New Features. Oracle 1Z0-140 Oracle9i Forms Developer: New Features http://killexams.com/exam-detail/1z0-140 F. Leave the form as it is because key triggers function as they did in Forms 6i. Answer: B, E QUESTION: 93

More information

The Practice web site has a hierarchical structure. This is viewed in the Navigation view of FrontPage. 1. Open the Practice web site.

The Practice web site has a hierarchical structure. This is viewed in the Navigation view of FrontPage. 1. Open the Practice web site. FrontPage 2003 Lesson 14 Navigation & Link Bars Navigation After adding pages to a site, it is important to add them to the navigational structure. The link bars are updated automatically, allowing visitors

More information

Java Client Certification for OmegaPS 10g

Java Client Certification for OmegaPS 10g Java Client Certification for OmegaPS 10g OmegaPS 10g is NOT compatible with Java 8, Java 7 Update 21 or Java 6 Update 45 Applies to: OmegaPS R16 (10g Web Variant) to OmegaPS R18.2.02 OmegaPS 10g is certified

More information

Oracle Reports Developer 10g: Build Reports

Oracle Reports Developer 10g: Build Reports Oracle University Contact Us: +386 15888820 Oracle Reports Developer 10g: Build Reports Duration: 5 Days What you will learn In this course, students learn how to design and build a variety of standard

More information

Reports 9i. Section Title Page

Reports 9i. Section Title Page One Introduction to 2 What is? 3 Destinations 5 Report Extensions in 6 Running Reports 7 Creating Dynamic Reports 8 Two Builder 9 Starting 10 Object Navigator 13 Object Navigator (Reports) 15 Object Navigator

More information

Managing Automation for SAP BOBJ Enterprise Processes

Managing Automation for SAP BOBJ Enterprise Processes CHAPTER 4 Managing Automation for SAP BOBJ Enterprise Processes This chapter provides information on using the product, specific to the Automation for SAP BOBJ Enterprise automation pack. It includes information

More information

Introduction. Creating a New Publication. Publisher 2010 Creating a New Publication. To Create a New Publication from a Template: Page 1

Introduction. Creating a New Publication. Publisher 2010 Creating a New Publication. To Create a New Publication from a Template: Page 1 Publisher 2010 Creating a New Publication Introduction Page 1 In the previous lesson, you learned about planning and designing a publication. With that knowledge, you're now ready to create a new publication.

More information

Oracle 1Z Oracle Fusion Middleware 11g- Build Applications with Oracle Forms.

Oracle 1Z Oracle Fusion Middleware 11g- Build Applications with Oracle Forms. Oracle 1Z0-151 Oracle Fusion Middleware 11g- Build Applications with Oracle Forms http://killexams.com/exam-detail/1z0-151 C. MENU3, ITEM4, ITEM5, ITEM5_MENU, and ITEMG D. ITEM4, ITEM5, and ITEM6 only

More information

Upgrade Developer Forms 4.5 to Oracle Forms 6. An Oracle Technical White Paper March 2000

Upgrade Developer Forms 4.5 to Oracle Forms 6. An Oracle Technical White Paper March 2000 Upgrade Developer Forms 4.5 to Oracle Forms 6 An Oracle Technical White Paper WHY UPGRADE? Upgrade Developer Forms 4.5 to Oracle Forms 6 ORACLE APPLICATIONS MANUFACTURING AND FINANCIALS FORMS UPGRADE 2

More information

Degenio. MouliForms. Migration Oracle forms 6-10g

Degenio. MouliForms. Migration Oracle forms 6-10g Degenio MouliForms Migration Oracle forms 6-10g Introduction Phases during forms conversion Options and Tools for conversion Mouliforms Presentation Conversion process with MouliForms Messages during conversion

More information

SOFTWARE SKILLS BUILDERS

SOFTWARE SKILLS BUILDERS CREATING AN ALL Hyperstudio is an easy to use but powerful multimedia authoring tool that lets you and your students create a series of linked cards, called a stack. Each card can contain text, graphics,

More information

To complete this database, you will need the following file:

To complete this database, you will need the following file: = CHAPTER 3 Access More Skills 14 Create Macros A macro is a set of saved actions that you can use to automate tasks. For example, a macro can open several database objects with a single click, or display

More information

MASTER-DETAIL FORMS. In this Chapter, you will learn about: Master-Detail Forms Page 108

MASTER-DETAIL FORMS. In this Chapter, you will learn about: Master-Detail Forms Page 108 CHAPTER 4 MASTER-DETAIL FORMS CHAPTER OBJECTIVES In this Chapter, you will learn about: Master-Detail Forms Page 108 In the previous Chapters, you created and worked with forms that had only one base-table

More information

Dreamweaver is a full-featured Web application

Dreamweaver is a full-featured Web application Create a Dreamweaver Site Dreamweaver is a full-featured Web application development tool. Dreamweaver s features not only assist you with creating and editing Web pages, but also with managing and maintaining

More information

Managing Your Database Using Oracle SQL Developer

Managing Your Database Using Oracle SQL Developer Page 1 of 54 Managing Your Database Using Oracle SQL Developer Purpose This tutorial introduces Oracle SQL Developer and shows you how to manage your database objects. Time to Complete Approximately 50

More information

182 Introduction to Microsoft Visual InterDev 6 Chapter 7

182 Introduction to Microsoft Visual InterDev 6 Chapter 7 iw3htp_07.fm Page 182 Thursday, April 13, 2000 12:29 PM 182 Introduction to Microsoft Visual InterDev 6 Chapter 7 7 Introduction to Microsoft Visual InterDev 6 New tab Other tabs for opening existing projects

More information

Getting Started. Getting Started

Getting Started. Getting Started 10 Before beginning to edit a program, you need to open DirectSOFT32. Click on Start in the lower left hand corner of the computer monitor. Now go to Programs, place the pointer on DirectSOFT4 then click

More information

Oracle Reports Developer 10g: Build Reports

Oracle Reports Developer 10g: Build Reports Oracle University Contact Us: +603 2299 3600, 1 800 80 6277 Oracle Reports Developer 10g: Build Reports Duration: 5 Days What you will learn In this course, participants learn how to design and build a

More information

U001: Navigating in COMPASS

U001: Navigating in COMPASS U001: Navigating in COMPASS Page 1 of 32 U001 NAVIGATING IN COMPASS SUBJECTS COVERED IN THIS UNIT Introduction... 3 Logging In... 7 Changing your Password... 9 COMPASS Navigator Screen... 10 Tool Bar Functions...

More information

Dive Into Visual C# 2008 Express

Dive Into Visual C# 2008 Express 1 2 2 Dive Into Visual C# 2008 Express OBJECTIVES In this chapter you will learn: The basics of the Visual Studio Integrated Development Environment (IDE) that assists you in writing, running and debugging

More information

Microsoft Word 2010 Part 1: Introduction to Word

Microsoft Word 2010 Part 1: Introduction to Word CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Word 2010 Part 1: Introduction to Word Summer 2011, Version 1.0 Table of Contents Introduction...3 Starting the Program...3

More information

PeopleSoft Fluid Messages Standard

PeopleSoft Fluid Messages Standard ORACLE CORPORATION PeopleSoft Fluid Messages Standard Fluid User Experience November 2015 PeopleSoft Fluid Messages Standards Copyright 2015, Oracle and/or its affiliates. All rights reserved. This software

More information

Macros in Excel: Recording, Running, and Editing

Macros in Excel: Recording, Running, and Editing Macros in Excel: Recording, Running, and Editing This document provides instructions for creating, using, and revising macros in Microsoft Excel. Simple, powerful, and easy to customize, Excel macros can

More information

If this is the first time you have run SSMS, I recommend setting up the startup options so that the environment is set up the way you want it.

If this is the first time you have run SSMS, I recommend setting up the startup options so that the environment is set up the way you want it. Page 1 of 5 Working with SQL Server Management Studio SQL Server Management Studio (SSMS) is the client tool you use to both develop T-SQL code and manage SQL Server. The purpose of this section is not

More information

Customization Manager

Customization Manager Customization Manager Release 2015 Disclaimer This document is provided as-is. Information and views expressed in this document, including URL and other Internet Web site references, may change without

More information

Unit 8. Lesson 8.1. Microsoft FrontPage. Introduction. Microsoft FrontPage-1. Microsoft FrontPage

Unit 8. Lesson 8.1. Microsoft FrontPage. Introduction. Microsoft FrontPage-1. Microsoft FrontPage Microsoft FrontPage Unit 8 Microsoft FrontPage Introduction Lesson 8.1 Microsoft FrontPage-1 A number of Software Packages are available in market for creating a website. Among popular software s are Dreamweaver,

More information

Introducing Gupta Report Builder

Introducing Gupta Report Builder Business Reporting Chapter 1 Introducing Gupta Report Builder You can use Report Builder to design reports. This chapter describes: Our approach to building reports. Some of the reports you can build.

More information

GENERIC PROGRAMMING IN ORACLE FORMS Rune Mørk, NNE A/S

GENERIC PROGRAMMING IN ORACLE FORMS Rune Mørk, NNE A/S GENERIC PROGRAMMING IN ORACLE FORMS Rune, NNE A/S Introduction As J-developer finally seems to be taking off, now is even more the time to brush up your Oracle Forms skills, as Oracle says in its SOD of

More information

CHAPTER 14 PALCO/ REALSOFT 1 CHAPTER 14

CHAPTER 14 PALCO/ REALSOFT 1 CHAPTER 14 CHAPTER 14 PALCO/ REALSOFT 1 CHAPTER 14 What is The Object Library? The object library became part of Oracle Forms Builder starting with FORMS V5.0. It appears in the navigator as a module by itself. In

More information

PROJECT MENTOR / MICROSOFT PROJECT INTEGRATION

PROJECT MENTOR / MICROSOFT PROJECT INTEGRATION Integrating Project Mentor Lite within Microsoft Project The following instructions will integrate Project Mentor Lite within the Microsoft Project Standard or Microsoft Project Professional interface.

More information

Introduction to the Visual Studio.NET Integrated Development Environment IDE. CSC 211 Intermediate Programming

Introduction to the Visual Studio.NET Integrated Development Environment IDE. CSC 211 Intermediate Programming Introduction to the Visual Studio.NET Integrated Development Environment IDE CSC 211 Intermediate Programming Visual Studio.NET Integrated Development Environment (IDE) The Start Page(Fig. 1) Helpful links

More information

PL/SQL Developer 10.0 User s Guide. February 2013

PL/SQL Developer 10.0 User s Guide. February 2013 PL/SQL Developer 10.0 User s Guide February 2013 PL/SQL Developer 10.0 User s Guide 3 Contents CONTENTS... 3 1. INTRODUCTION... 9 2. INSTALLATION... 13 2.1 SYSTEM REQUIREMENTS... 13 2.2 WORKSTATION INSTALLATION...

More information

Portrait Editor. to Portrait Flow

Portrait Editor. to Portrait Flow Portrait Editor to Portrait Flow Portrait Editor is a Walsworth program that allows you to view and edit your portrait images, names and grades based on the photo DVD supplied by your photographer. The

More information

Introduction to IBM Rational HATS For IBM System z (3270)

Introduction to IBM Rational HATS For IBM System z (3270) Introduction to IBM Rational HATS For IBM System z (3270) Introduction to IBM Rational HATS 1 Lab instructions This lab teaches you how to use IBM Rational HATS to create a Web application capable of transforming

More information

Fairfield University Using Xythos for File Storage

Fairfield University Using Xythos for File Storage Fairfield University Using Xythos for File Storage Version 7.0 Table of Contents I: Accessing your Account...2 II: Uploading Files via the Web...2 III: Manage your Folders and Files via the Web...4 IV:

More information

Microsoft Office Outlook 2007: Intermediate Course 01 Customizing Outlook

Microsoft Office Outlook 2007: Intermediate Course 01 Customizing Outlook Microsoft Office Outlook 2007: Intermediate Course 01 Customizing Outlook Slide 1 Customizing Outlook Course objectives Create a custom toolbar and customize the menu bar; customize the Quick Access toolbar,

More information

Configuration Manager

Configuration Manager Tivoli Management Solution for Microsoft SQL Configuration Manager Version 1.1 Tivoli Management Solution for Microsoft SQL Configuration Manager Version 1.1 Tivoli Management Solution for Microsoft SQL

More information

Lexis for Microsoft Office User Guide

Lexis for Microsoft Office User Guide Lexis for Microsoft Office User Guide Created 12-2017 Copyright 2017 LexisNexis. All rights reserved. Contents Lexis for Microsoft Office About Lexis for Microsoft Office... 1 About Lexis for Microsoft

More information

More Skills 12 Create Indexes and Establish a One-to-One Relationship. To complete this database, you will need the following file:

More Skills 12 Create Indexes and Establish a One-to-One Relationship. To complete this database, you will need the following file: CHAPTER 2 Access More Skills 12 Create Indexes and Establish a One-to-One Relationship An index stores the location of records based on the values in a field. An index improves performance when the field

More information

Windows Me Navigating

Windows Me Navigating LAB PROCEDURE 11 Windows Me Navigating OBJECTIVES 1. Explore the Start menu. 2. Start an application. 3. Multi-task between applications. 4. Moving folders and files around. 5. Use Control Panel settings.

More information

A Guide to Quark Author Web Edition 2015

A Guide to Quark Author Web Edition 2015 A Guide to Quark Author Web Edition 2015 CONTENTS Contents Getting Started...4 About Quark Author - Web Edition...4 Smart documents...4 Introduction to the Quark Author - Web Edition User Guide...4 Quark

More information

integrated translation environment How to translate in memoqwebtrans

integrated translation environment How to translate in memoqwebtrans integrated translation environment How to translate in memoqwebtrans 2004-2013 Kilgray Translation Technologies. All rights reserved. Contents Contents... 2 1 Logging in to memoqwebtrans... 3 2. Translating

More information

Using the JSON Iterator

Using the JSON Iterator Using the JSON Iterator This topic describes how to process a JSON document, which contains multiple records. A JSON document will be split into sub-documents using the JSON Iterator, and then each sub-document

More information

Word 2007 Tables Objectives

Word 2007 Tables Objectives Word 2007 Tables In this lesson you will learn how to create, modify and format tables. You will also learn to use the AutoFormat table option and to sort table rows. Objectives Create a table Modify a

More information

ADF Hands-On. Understanding Task Flow Activities / 2011 ADF Internal Enterprise 2.0 Training. Abstract:

ADF Hands-On. Understanding Task Flow Activities / 2011 ADF Internal Enterprise 2.0 Training. Abstract: ADF Hands-On Understanding Task Flow Activities Abstract: In this hands-on you create a bounded task flows to run as an ADF Region in an ADF Faces page. Within this hands-on you create and use the following

More information

Setting Up a Paper in APA Style Using Microsoft Word 2007

Setting Up a Paper in APA Style Using Microsoft Word 2007 Setting Up a Paper in APA Style Using Microsoft Word 007 Open Microsoft Word 007. By default Word opens a new blank document. It is easiest if you create all of these settings before you begin your paper.

More information

1. AUTO CORRECT. To auto correct a text in MS Word the text manipulation includes following step.

1. AUTO CORRECT. To auto correct a text in MS Word the text manipulation includes following step. 1. AUTO CORRECT - To auto correct a text in MS Word the text manipulation includes following step. - STEP 1: Click on office button STEP 2:- Select the word option button in the list. STEP 3:- In the word

More information

Oracle Application Express 5.1

Oracle Application Express 5.1 Oracle Application Express 5.1 New Features [Name] [Title] December 2016 2 Agenda 1 2 3 4 5 6 7 Oracle Application Express Overview Interactive Grid Oracle JET Charts Universal Theme Productivity Improvements

More information

Introduction to Microsoft Word

Introduction to Microsoft Word Chapter Microsoft Word is a powerful word processing program that allows you to enter text, make changes to it, format it, record and print it. You can use it to produce professional business letters,

More information

A Guide to Automation Services 8.5.1

A Guide to Automation Services 8.5.1 A Guide to Automation Services 8.5.1 CONTENTS Contents Introduction...4 Where we're coming from...4 Conventions in this book...4 Understanding Automation Services...6 What is Automation Services?...6 Process

More information

2016 Jones & Bartlett Learning, LLC, An Ascend Learning Company

2016 Jones & Bartlett Learning, LLC, An Ascend Learning Company & 2016 Jones & Bartlett Learning, LLC, An Ascend Learning Company Contents _Toc499561954 What are the browser and system requirements for running Navigate 2?... 1 Why does Navigate 2 run a System Check?...

More information

Antipassback, Parking and Access Areas. Technical Support Engineering Rosslare Security NA For more information please see

Antipassback, Parking and Access Areas. Technical Support Engineering Rosslare Security NA For more information please see Antipassback, Parking and Access Areas Technical Support Engineering Rosslare Security NA For more information please see www.axtraxng.com Antipassback prevents a user from using the same credential multiple

More information

PL/SQL Developer 7.0 New Features. December 2005

PL/SQL Developer 7.0 New Features. December 2005 PL/SQL Developer 7.0 New Features December 2005 L/SQL Developer 7.0 New Features 3 Contents CONTENTS... 3 1. INTRODUCTION... 5 2. DIAGRAM WINDOW... 6 2.1 CREATING A DIAGRAM...6 2.2 SAVING AND OPENING

More information

Sage Estimating (SQL) v17.13

Sage Estimating (SQL) v17.13 Sage Estimating (SQL) v17.13 Sage 100 Contractor (SQL) Integration Guide December 2017 This is a publication of Sage Software, Inc. 2017 The Sage Group plc or its licensors. All rights reserved. Sage,

More information

SWITS User Manual. Accessing SWITS. This document focuses on the elements required to Access SWITS. Total Pages: 5

SWITS User Manual. Accessing SWITS. This document focuses on the elements required to Access SWITS. Total Pages: 5 SWITS User Manual This document focuses on the elements required to Access SWITS Total Pages: 5 Accessing SWITS Using Your Browser to Access SWITS Identity Management Context Creating a shortcut California

More information

SharePoint 2013 Power User EVALUATION COPY. (SHP version 1.0.1) Copyright Information. Copyright 2013 Webucator. All rights reserved.

SharePoint 2013 Power User EVALUATION COPY. (SHP version 1.0.1) Copyright Information. Copyright 2013 Webucator. All rights reserved. SharePoint 2013 Power User (SHP2013.2 version 1.0.1) Copyright Information Copyright 2013 Webucator. All rights reserved. The Authors Bruce Gordon Bruce Gordon has been a Microsoft Certified Trainer since

More information

Excel 2016 Basics for Windows

Excel 2016 Basics for Windows Excel 2016 Basics for Windows Excel 2016 Basics for Windows Training Objective To learn the tools and features to get started using Excel 2016 more efficiently and effectively. What you can expect to learn

More information

1. Move your mouse to the location you wish text to appear in the document. 2. Click the mouse. The insertion point appears.

1. Move your mouse to the location you wish text to appear in the document. 2. Click the mouse. The insertion point appears. Word 2010 Text Basics Introduction Page 1 It is important to know how to perform basic tasks with text when working in a word processing application. In this lesson you will learn the basics of working

More information

Display Systems International Software Demo Instructions

Display Systems International Software Demo Instructions Display Systems International Software Demo Instructions This demo guide has been re-written to better reflect the common features that people learning to use the DSI software are concerned with. This

More information

Define a situation that checks for a missing process on Windows:

Define a situation that checks for a missing process on Windows: Creating a policy with SNMP activity Version 2 November 11, 2009 This document shows how to create a policy that waits on a situation and then sends an SNMP event to another server when the situation fires.

More information

Using the VMware vrealize Orchestrator Client

Using the VMware vrealize Orchestrator Client Using the VMware vrealize Orchestrator Client vrealize Orchestrator 7.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by

More information

Getting Help in Microsoft Office

Getting Help in Microsoft Office LESSON 3 Getting Help in Microsoft Office In this lesson, you learn how to access and use the Help system in Microsoft Office. HELP: WHAT S AVAILABLE? Microsoft Office supplies a Help system that makes

More information

PM4 + Partners Knowledge Articles

PM4 + Partners Knowledge Articles PM4 + Partners Knowledge Articles Customizing your PM4+ user experience r 1 November 30, 2108 PM4+ Partners Workspace - customize your experience Page 2 Contents Customizing Your Workspace... 1 Customizing

More information

Creating a new CDC policy using the Database Administration Console

Creating a new CDC policy using the Database Administration Console Creating a new CDC policy using the Database Administration Console When you start Progress Developer Studio for OpenEdge for the first time, you need to specify a workspace location. A workspace is a

More information

Unit 12. Electronic Spreadsheets - Microsoft Excel. Desired Outcomes

Unit 12. Electronic Spreadsheets - Microsoft Excel. Desired Outcomes Unit 12 Electronic Spreadsheets - Microsoft Excel Desired Outcomes Student understands Excel workbooks and worksheets Student can navigate in an Excel workbook and worksheet Student can use toolbars and

More information

FrontPage Student IT Essentials. October 2005 This leaflet is available in other formats on request. Saving your work

FrontPage Student IT Essentials. October 2005 This leaflet is available in other formats on request. Saving your work Saving your work All students have access to a personal file storage space known as the U: Drive. This is your own personal secure area on the network. Each user has 60mb of space (40 bigger than a floppy

More information

Getting Acquainted with Office 2007 Table of Contents

Getting Acquainted with Office 2007 Table of Contents Table of Contents Using the New Interface... 1 The Office Button... 1 The Ribbon... 2 Galleries... 2 Microsoft Help with Changes... 2 Viewing Familiar Dialog Boxes... 2 Download Get Started Tabs from Microsoft...

More information

BCM 4.0 Personal Call Manager User Guide. BCM 4.0 Business Communications Manager

BCM 4.0 Personal Call Manager User Guide. BCM 4.0 Business Communications Manager BCM 4.0 Personal Call Manager User Guide BCM 4.0 Business Communications Manager Document Status: Beta Document Version: 02 Part Code: N0027256 Date: January 2006 Copyright Nortel Networks Limited 2006

More information

EUSurvey 1.4 Editor Guide

EUSurvey 1.4 Editor Guide EUSurvey 1.4 Editor Guide What is the editor? The editor is used to create a You can use it to add questions and other elements to your Overview The editor consists of five main areas: Figure 1 General

More information

Oracle Exam 1z0-151 Oracle Fusion Middleware 11g: Build Applications with Oracle Forms Version: 7.0 [ Total Questions: 90 ]

Oracle Exam 1z0-151 Oracle Fusion Middleware 11g: Build Applications with Oracle Forms Version: 7.0 [ Total Questions: 90 ] s@lm@n Oracle Exam 1z0-151 Oracle Fusion Middleware 11g: Build Applications with Oracle Forms Version: 7.0 [ Total Questions: 90 ] Question No : 1 View the Exhibit. The Summit menu is attached to the Orders

More information

Access Review. 4. Save the table by clicking the Save icon in the Quick Access Toolbar or by pulling

Access Review. 4. Save the table by clicking the Save icon in the Quick Access Toolbar or by pulling Access Review Relational Databases Different tables can have the same field in common. This feature is used to explicitly specify a relationship between two tables. Values appearing in field A in one table

More information

Getting Started with. Microsoft Office 2010

Getting Started with. Microsoft Office 2010 Getting Started with Microsoft Office 2010 Microsoft Office 2010 Objectives Explore the programs in Microsoft Office Start programs and switch between them Explore common window elements Minimize, maximize,

More information

Fiery X3eTY2 65_55C-KM Color Server. Utilities

Fiery X3eTY2 65_55C-KM Color Server. Utilities Fiery X3eTY2 65_55C-KM Color Server Utilities 2008 Electronics for Imaging, Inc. The information in this publication is covered under Legal Notices for this product. 45072888 14 March 2008 CONTENTS 3 CONTENTS

More information

What's New in QuarkXPress 10.1

What's New in QuarkXPress 10.1 What's New in QuarkXPress 10.1 CONTENTS Contents What's New in QuarkXPress 10.1...3 New features...4 Dynamic guides...4 Notes...4 Books...4 Redline...5 Other new features...5 Legal notices...6 ii WHAT'S

More information

Lexis for Microsoft Office User Guide

Lexis for Microsoft Office User Guide Lexis for Microsoft Office User Guide Created 01-2018 Copyright 2018 LexisNexis. All rights reserved. Contents About Lexis for Microsoft Office...1 What is Lexis for Microsoft Office?... 1 What's New in

More information

Upside Approvers Job Aid

Upside Approvers Job Aid Upside Approvers Job Aid Approving Contract Documents a. In the Toolbar, click on the Print Preview icon. The Print Preview dialog box opens. b. Click the Prepare Document button. Before you approve a

More information

DATABASE AUTOMATION USING VBA (ADVANCED MICROSOFT ACCESS, X405.6)

DATABASE AUTOMATION USING VBA (ADVANCED MICROSOFT ACCESS, X405.6) Technology & Information Management Instructor: Michael Kremer, Ph.D. Database Program: Microsoft Access Series DATABASE AUTOMATION USING VBA (ADVANCED MICROSOFT ACCESS, X405.6) Section 5 AGENDA 8. Events

More information

bs^ir^qfkd=obcib`qflk= prfqb=clo=u

bs^ir^qfkd=obcib`qflk= prfqb=clo=u bs^ir^qfkd=obcib`qflk= prfqb=clo=u cçê=u=táåççïë=póëíéãë cçê=lééåsjp=eçëíë cçê=f_j=eçëíë 14.1 bî~äì~íáåö=oéñäéåíáçå=u This guide provides a quick overview of features in Reflection X. This evaluation guide

More information