8 Copyright © 2004, Oracle. All rights reserved. Creating LOVs and Editors.

Slides:



Advertisements
Similar presentations
Project Implementation for COSC 5050 Distributed Database Applications Lab4.
Advertisements

7 Copyright © Oracle Corporation, All rights reserved. Producing Readable Output with i SQL*Plus.
INSERT BOOK COVER 1Copyright © 2013 Pearson Education, Inc. Publishing as Prentice Hall. Exploring Microsoft Access 2010 by Robert Grauer, Keith Mast,
Copyright Ó Oracle Corporation, All rights reserved Sharing Objects and Code.
Guide to Oracle10G1 Introduction To Forms Builder Chapter 5.
6 Copyright © 2004, Oracle. All rights reserved. Working with Data Blocks and Frames.
A Guide to Oracle9i1 Introduction To Forms Builder Chapter 5.
7 Copyright © 2004, Oracle. All rights reserved. Working with Text Items.
9 Copyright © 2004, Oracle. All rights reserved. Creating Additional Input Items.
2 Copyright © 2004, Oracle. All rights reserved. Restricting and Sorting Data.
4 Copyright © 2004, Oracle. All rights reserved. Creating a Basic Form Module.
3 Copyright © 2004, Oracle. All rights reserved. Working in the Forms Developer Environment.
Eyad Alshareef 1 Creating Custom Forms Part A. 2Eyad Alshareef Data Block and Custom Forms Data block form Data block form Based on data blocks that are.
Introduction To Form Builder
Introduction To Form Builder
5 Copyright © 2004, Oracle. All rights reserved. Creating a Master-Detail Form.
1 Chapter 5: Introduction To Form Builder. 2 Forms  Why Do We Use Form Builder?  Why Don’t We Use SQL Only?!
23 Copyright © 2004, Oracle. All rights reserved. Sharing Objects and Code.
8 Copyright © 2004, Oracle. All rights reserved. Creating LOVs and Editors.
Copyright Ó Oracle Corporation, All rights reserved. 55 Working with Data Blocks and Frames.
6 Copyright © 2004, Oracle. All rights reserved. Working with Data Blocks and Frames.
6 Copyright © 2004, Oracle. All rights reserved. Working with Data Blocks and Frames.
I Want My Data © 2008 Infinite Campus. All Rights Reserved. DL1305-1, DL Angel Lindsey Support Specialist K-12 Solutions Group.
Copyright © 2007, Oracle. All rights reserved. Managing Concurrent Requests.
INSERT BOOK COVER 1Copyright © 2011 Pearson Education, Inc. Publishing as Prentice Hall. Exploring Microsoft Access 2010 by Robert Grauer, Keith Mast,
2 Copyright © Oracle Corporation, All rights reserved. Restricting and Sorting Data.
2 Copyright © 2004, Oracle. All rights reserved. Restricting and Sorting Data.
5 Copyright © 2004, Oracle. All rights reserved. Creating a Master-Detail Form.
3 Copyright © 2004, Oracle. All rights reserved. Working in the Forms Developer Environment.
4 Copyright © 2009, Oracle. All rights reserved. Defining Source Metadata.
5 Copyright © 2004, Oracle. All rights reserved. Creating a Master-Detail Form.
© 2007 by Prentice Hall8-1 Introduction to Oracle 10g Chapter 8 Understanding and Using Forms Builder James Perry and Gerald Post.
Copyright Ó Oracle Corporation, All rights reserved Working with Other Canvases.
2 Copyright © 2004, Oracle. All rights reserved. Restricting and Sorting Data.
3 Copyright © 2004, Oracle. All rights reserved. Working in the Forms Developer Environment.
Introduction to Views Stanford Drupal Camp April 6, 2013.
16 Copyright © 2004, Oracle. All rights reserved. Adding Functionality to Items.
15 Copyright © Oracle Corporation, All rights reserved. Using SET Operators.
Copyright © 2004, Oracle. All rights reserved. Using the Set Operators.
3 Copyright © 2009, Oracle. All rights reserved. Using Single-Row Functions to Customize Output.
4 Copyright © 2004, Oracle. All rights reserved. Creating a Basic Form Module.
23 Copyright © 2009, Oracle. All rights reserved. Oracle Business Intelligence Answers: Advanced Features.
1 Copyright © Oracle Corporation, All rights reserved. Writing Basic SQL SELECT Statements.
2 Copyright © 2009, Oracle. All rights reserved. Restricting and Sorting Data.
CPSC 203 Introduction to Computers Lab 66 By Jie Gao.
21 Copyright © 2009, Oracle. All rights reserved. Working with Oracle Business Intelligence Answers.
Chapter 5 Introduction To Form Builder. Lesson C Objectives  Use sequences to automatically generate primary key values in a form  Create lists of values.
10 Copyright © 2004, Oracle. All rights reserved. Building ADF View Components.
22 Copyright © 2009, Oracle. All rights reserved. Filtering Requests in Oracle Business Intelligence Answers.
CHAPTER 7 LESSON C Creating Database Reports. Lesson C Objectives  Display image data in a report  Manually create queries and data links  Create summary.
4 Copyright © 2011, Oracle and/or its affiliates. All rights reserved. Using Data Model Editor to Create Data Models Based on a SQL Query Data Set.
24 Copyright © 2009, Oracle. All rights reserved. Building Views and Charts in Requests.
Copyright Ó Oracle Corporation, All rights reserved. 77 Creating LOVs and Editors.
3 Copyright © 2009, Oracle. All rights reserved. Using Single-Row Functions to Customize Output.
3 Copyright © 2006, Oracle. All rights reserved. Building an Analytic Workspace.
7 Copyright © 2006, Oracle. All rights reserved. Defining a Relational Dimensional Model.
Copyright Ó Oracle Corporation, All rights reserved. 88 Creating Additional Input Items.
1 Chapter 6: Creating Oracle Data Block Forms. 2 Forms  Application with a graphical user interface that looks like a paper form  Used to insert, update,
1 Copyright © 2008, Oracle. All rights reserved. Repository Basics.
1 Copyright © 2009, Oracle. All rights reserved. Retrieving Data Using the SQL SELECT Statement.
16 Copyright © 2004, Oracle. All rights reserved. Building ADF UIX View Components.
2 Copyright © 2008, Oracle. All rights reserved. Building the Physical Layer of a Repository.
CHAPTER 7 LESSON B Creating Database Reports. Lesson B Objectives  Describe the components of a report  Modify report components  Modify the format.
Working with Data Blocks and Frames
Creating Oracle Business Intelligence Interactive Dashboards
Working in the Forms Developer Environment
Creating LOVs and Editors
Creating a Master-Detail Form
Creating Additional Input Items
Presentation transcript:

8 Copyright © 2004, Oracle. All rights reserved. Creating LOVs and Editors

8-2 Copyright © 2004, Oracle. All rights reserved. Objectives After completing this lesson, you should be able to do the following: Describe LOVs and editors Design, create, and associate LOVs with text items in a form module Create editors and associate them with text items in a form module

8-3 Copyright © 2004, Oracle. All rights reserved. Overview of LOVs and Editors Text item Editor Text item LOV Supporting data record group

8-4 Copyright © 2004, Oracle. All rights reserved. Overview of LOVs and Editors LOVs –List of values for text items –Dynamic or static list –Independent of single text items –Flexible and efficient Editors –Override default editor –Used for special requirements such as larger editing window, position, color, and title

8-5 Copyright © 2004, Oracle. All rights reserved.

8-6 Copyright © 2004, Oracle. All rights reserved. LOVs and Record Groups Text item LOV Text item LOV Database Record group based on static data Query-based record group OR SQL

8-7 Copyright © 2004, Oracle. All rights reserved. LOVs and Record Groups EMPLOYEES table SELECT employee_id, first_name || ' '|| last_name NAME, phone_number FROM employees WHERE job_id = 'SA_REP' ORDER BY last_name Employee_idName Sales Rep record group Sales Representatives LOV

8-8 Copyright © 2004, Oracle. All rights reserved. Creating an LOV Manually

8-9 Copyright © 2004, Oracle. All rights reserved. Creating an LOV with the LOV Wizard: SQL Query Page Edit query if needed

8-10 Copyright © 2004, Oracle. All rights reserved. Creating an LOV with the LOV Wizard: Column Selection Page

8-11 Copyright © 2004, Oracle. All rights reserved. Creating an LOV with the LOV Wizard: Column Properties Page

8-12 Copyright © 2004, Oracle. All rights reserved. Creating an LOV with the LOV Wizard: Display Page

8-13 Copyright © 2004, Oracle. All rights reserved. Creating an LOV with the LOV Wizard: Advanced Properties Page

8-14 Copyright © 2004, Oracle. All rights reserved. Creating an LOV with the LOV Wizard: Assign to Item Page

8-15 Copyright © 2004, Oracle. All rights reserved. LOV Properties Filter Before Display ? (X,Y) Automatic Select Automatic Skip Width Height LOV Column Mapping Return Items

8-16 Copyright © 2004, Oracle. All rights reserved. Setting LOV Properties LOV Column Mapping Automatic Position Automatic Column Width Return Items

8-17 Copyright © 2004, Oracle. All rights reserved. LOVs: Column Mapping Employee_id orders.sales_rep_idorders.sales_rep_nameorders.salesrep_phone Hidden column Phone number

8-18 Copyright © 2004, Oracle. All rights reserved.

8-19 Copyright © 2004, Oracle. All rights reserved. Defining an Editor

8-20 Copyright © 2004, Oracle. All rights reserved. Setting Editor Properties

8-21 Copyright © 2004, Oracle. All rights reserved. Associating an Editor with a Text Item Associate one of two types of editors with a text item. Set text item’s Editor property to one of the following: –Null (default Forms Builder editor) –Editor name (customized editor)

8-22 Copyright © 2004, Oracle. All rights reserved. Summary In this lesson, you should have learned that: An LOV is a scrollable pop-up window that enables a user to pick the value of an item from a multicolumn dynamic list The easiest way to design, create, and associate LOVs with text items is to use the LOV Wizard An Editor is a separate window that enables the user to view multiple lines of a text item simultaneously, search and replace text in it, and modify the text You create editors in the Object Navigator and associate them with text items in the item's Property Palette

8-23 Copyright © 2004, Oracle. All rights reserved. Practice 8 Overview This practice covers the following topics: Creating an LOV and attaching the LOV to a text item Creating an Editor and attaching it to a text item

8-24 Copyright © 2004, Oracle. All rights reserved.