10 Copyright © 2004, Oracle. All rights reserved. Creating Noninput Items.

Slides:



Advertisements
Similar presentations
Copyright  Oracle Corporation, All rights reserved. 4 Aggregating Data Using Group Functions.
Advertisements

 SAP AG 2003 Applications for document editing in SAP Business One Contents: Document Editing.
4 Copyright © 2004, Oracle. All rights reserved. Reporting Aggregated Data Using the Group Functions.
5 Copyright © Oracle Corporation, All rights reserved. Aggregating Data Using Group Functions.
Copyright  Oracle Corporation, All rights reserved. 5 Aggregating Data Using Group Functions.
5 Copyright © 2007, Oracle. All rights reserved. Reporting Aggregated Data Using the Group Functions.
5 Copyright © Oracle Corporation, All rights reserved. Aggregating Data Using Group Functions.
Chapter 11 Group Functions
Guide to Oracle10G1 Introduction To Forms Builder Chapter 5.
13 Copyright © 2004, Oracle. All rights reserved. Introduction to Triggers.
A Guide to Oracle9i1 Advanced Forms Builder Topics Chapter 10.
6 Copyright © 2004, Oracle. All rights reserved. Working with Data Blocks and Frames.
7 Copyright © 2004, Oracle. All rights reserved. Working with Text Items.
10 Copyright © 2004, Oracle. All rights reserved. Creating Noninput Items.
9 Copyright © 2004, Oracle. All rights reserved. Creating Additional Input Items.
8 Copyright © 2004, Oracle. All rights reserved. Creating LOVs and Editors.
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.
5 Copyright © 2004, Oracle. All rights reserved. Creating a Master-Detail Form.
14 Copyright © 2004, Oracle. All rights reserved. Producing Triggers.
2 Copyright © 2004, Oracle. All rights reserved. Creating Stored Functions.
Copyright  Oracle Corporation, All rights reserved. 4 Creating Functions.
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.
Copyright Ó Oracle Corporation, All rights reserved. 22 Running a Form Builder Application.
5 Copyright © 2004, Oracle. All rights reserved. Creating a Master-Detail Form.
PL/SQLPL/SQL Oracle10g Developer: PL/SQL Programming Chapter 6 Functions.
4 Copyright © 2004, Oracle. All rights reserved. Reporting Aggregated Data Using the Group Functions.
PL/SQLPL/SQL Oracle11g : PL/SQL Programming Chapter 6 Functions.
3 Copyright © 2004, Oracle. All rights reserved. Working in the Forms Developer Environment.
Concepts of Database Management Seventh Edition
Copyright س Oracle Corporation, All rights reserved. 5 Aggregating Data Using Group Functions.
Lecture 8 Creating Stored Functions. Objectives  After completing this lesson, you should be able to do the following:  What is Function?  Types of.
4 Copyright © 2004, Oracle. All rights reserved. Creating a Basic Form Module.
5 Copyright © 2004, Oracle. All rights reserved. Creating a Master-Detail Form.
Creating Graphical User Interfaces (GUI’s) with MATLAB By Jeffrey A. Webb OSU Gateway Coalition Member.
A Skills Approach Access 2010 Working with Tables © 2012 The McGraw-Hill Companies, Inc. All rights reserved Chapter 2.
DB Implementation: MS Access Forms. MS Access Forms  Purpose Data entry, editing, & viewing data in tables Forms are user-friendlier to end-users than.
Derek Snow 6/13/2009.  What is Form?  Creating Forms  Form Views  Calculated Controls.
Concepts of Database Management Eighth Edition Chapter 3 The Relational Model 2: SQL.
Copyright Ó Oracle Corporation, All rights reserved. 99 Creating Noninput Items.
Copyright © 2008 Pearson Prentice Hall. All rights reserved. 1 1 Committed to Shaping the Next Generation of IT Experts. Chapter 3: Customize, Analyze,
1 Chapter 3: Customize, Analyze, and Summarize Query Data Exploring Microsoft Office Access 2007.
Copyright Ó Oracle Corporation, All rights reserved Working with Other Canvases.
3 Copyright © 2004, Oracle. All rights reserved. Working in the Forms Developer Environment.
Copyright Ó Oracle Corporation, All rights reserved Query Triggers.
Introduction to Functions – Single Row Functions.
DAY 21: MICROSOFT ACCESS – CHAPTER 5 MICROSOFT ACCESS – CHAPTER 6 MICROSOFT ACCESS – CHAPTER 7 Aliya Farheen October 29,2015.
Copyright © 2008 Pearson Prentice Hall. All rights reserved. 1 Create a one-variable data table What-if analysis enables you to see how changes in variables.
4 Copyright © 2004, Oracle. All rights reserved. Creating a Basic Form Module.
21 Copyright © 2009, Oracle. All rights reserved. Working with Oracle Business Intelligence Answers.
Copyright Ó Oracle Corporation, All rights reserved Debugging Triggers.
Oracle Business Intelligence Foundation - Commonly Used Features in Repository.
10 Copyright © 2004, Oracle. All rights reserved. Building ADF View Components.
CHAPTER 7 LESSON C Creating Database Reports. Lesson C Objectives  Display image data in a report  Manually create queries and data links  Create summary.
Forms 5.02 Understand database queries, forms, and reports.
Copyright Ó Oracle Corporation, All rights reserved. 77 Creating LOVs and Editors.
1 Copyright © 2007, Oracle. All rights reserved. Retrieving Data Using the SQL SELECT Statement.
Copyright Ó Oracle Corporation, All rights reserved. 88 Creating Additional Input Items.
Concepts of Database Management, Fifth Edition Chapter 3: The Relational Model 2: SQL.
DAY 20: ACCESS CHAPTERS 5, 6, 7 Larry Reaves October 28,
11 Copyright © 2009, Oracle. All rights reserved. Enhancing ETL Performance.
Creating Stored Functions
Working in the Forms Developer Environment
Creating Noninput Items
Prof. Arfaoui. COM390 Chapter 6
Creating Additional Input Items
Presentation transcript:

10 Copyright © 2004, Oracle. All rights reserved. Creating Noninput Items

10-2 Copyright © 2004, Oracle. All rights reserved. Objectives After completing this lesson, you should be able to do the following: Identify item types that do not allow input Create a display item Create a calculated item

10-3 Copyright © 2004, Oracle. All rights reserved. Noninput Items Overview Item types that do not accept direct user input include: Display items Calculated items

10-4 Copyright © 2004, Oracle. All rights reserved. Display Items Display items: Are similar to text items. Cannot: –Be edited –Be queried –Be navigated to –Accept user input Can display: –Nonbase table information –Derived values

10-5 Copyright © 2004, Oracle. All rights reserved. Creating a Display Item

10-6 Copyright © 2004, Oracle. All rights reserved. Calculated Items What are calculated items? They accept item values that are based on calculations. They are read-only. They can be expressed as: –Formula –Summary

10-7 Copyright © 2004, Oracle. All rights reserved. Creating a Calculated Item by Setting Properties Formula –A calculated item value is the result of a horizontal calculation. –It involves bind variables. Summary –A calculated item value is a vertical calculation. –A summary is performed on values of a single item over all rows in a block.

10-8 Copyright © 2004, Oracle. All rights reserved. Setting Item Properties for the Calculated Item Formula –Calculation Mode –Formula Summary –Calculation Mode –Summary Function –Summarized Block –Summarized Item

10-9 Copyright © 2004, Oracle. All rights reserved. Summary Functions AVG COUNT MAX MIN STDDEV SUM VARIANCE

10-10 Copyright © 2004, Oracle. All rights reserved. Calculated Item Based on a Formula ORDERS Item# Prod Id Unit Price Quantity Item Total , NVL((:order_items.unit_price * :order_items.quantity),0) Formula item Orders Items Description

10-11 Copyright © 2004, Oracle. All rights reserved. Rules for Calculated Item Formulas Create calculated item formulas according to the following rules: A formula item must not invoke restricted built- ins. A formula item cannot execute any DML statements. Do not terminate a PL/SQL expression with a semicolon. Do not enter a complete PL/SQL statement in assignment expressions.

10-12 Copyright © 2004, Oracle. All rights reserved. Calculated Item Based on a Summary ORDERS , ,005 Order Total Summarized item Summary item Item# Prod Id Unit Price Quantity Item Total Description Orders Items

10-13 Copyright © 2004, Oracle. All rights reserved. Rules for Summary Items Summary item must reside in: –The same block as the summarized item –A control block with Single Record property set to Yes Summarized item must reside in: –A data block with Query All Records property or Precompute Summaries property set to Yes –A control block Datatype of summary item must be Number, unless using MAX or MIN

10-14 Copyright © 2004, Oracle. All rights reserved. Summary In this lesson, you should have learned that: The following item types do not allow input: –Display items –Calculated items You create noninput items by: –Changing the type of an existing item and setting certain properties –Using the appropriate tool in the Layout Editor

10-15 Copyright © 2004, Oracle. All rights reserved. Summary You can use: –A display item to show nonbase table information –A calculated item to display the results of a formula or a summary function of another item