Create Setup to Display Records In an Order Calendar - Part 28

Tech Mining
23 Nov 202204:21

Summary

TLDRThis Tech mining video tutorial showcases how to create and utilize a calendar in Oracle Apex for displaying and managing orders. The calendar allows users to navigate between months, view orders on specific dates, and click to access order details on page 29. It also initiates a new order entry process when clicking on empty cells. The tutorial guides through setting up the calendar page, configuring SQL queries, and creating links for order details and new order entries. The video concludes with a test run of the application, demonstrating the calendar's functionality in month and list views.

Takeaways

  • πŸ“… Oracle Apex features a built-in wizard for creating a calendar to display and report orders.
  • πŸ”„ Users can navigate between months using the provided buttons at the top left of the calendar.
  • πŸ” Clicking an order in a date cell directs users to page 29 to view the order's details.
  • πŸ“ Clicking a blank date cell initiates the order wizard for new order entry.
  • πŸ”„ The 'Today' button resets the view to the current system date.
  • πŸ“Š The calendar offers two views for orders: month and list views.
  • πŸ› οΈ A calendar page can be created instead of starting with a blank page, using the provided SQL query.
  • πŸ”‘ The 'Display Column' specifies which column's data is shown on the calendar.
  • πŸ“… The 'Start Date Column' attribute determines the date used for placing calendar entries.
  • πŸ•’ The 'Showtime' attribute controls whether the time portion of the date is displayed.
  • πŸ”— Creating links allows users to drill down to order details or enter new orders from the calendar.
  • πŸ“ The 'Save Page' button is essential for saving progress in the application.

Q & A

  • What is the main topic of the 'Tech mining' video?

    -The main topic is learning how to display and report orders in a calendar using Oracle Apex.

  • How can users switch between different months in the calendar?

    -Users can switch between months using the two buttons provided at the top left of the calendar.

  • What happens when an order is clicked in a date cell?

    -Clicking an order in a date cell takes the user to page 29 to see the order's detail.

  • What action is initiated by clicking a blank date cell?

    -Clicking a blank date cell starts the order wizard for new order entry.

  • What does the 'today' button in the calendar do?

    -The 'today' button brings the calendar back to the current system date.

  • What are the two view options available to view orders in the calendar?

    -The two view options are month view and list view.

  • How can an individual test the provided SQL query?

    -An individual can test the SQL query using SQL commands to see its output.

  • What does the 'display column' specify in the calendar configuration?

    -The 'display column' specifies which column's data to be displayed on the calendar.

  • What is the purpose of the 'start date column' attribute in the calendar?

    -The 'start date column' attribute specifies which column is used as the date for placing an entry on the calendar.

  • What does the 'Showtime' attribute determine in the calendar display?

    -The 'Showtime' attribute determines whether the time portion of the date should be displayed, affecting the week and day views on the calendar.

  • How can a link be created to drill down to the order details page when an existing order is clicked?

    -A link can be created by setting properties in the 'view edit link' attribute, which will drill down to page 29 to show the order details when clicked.

  • What is the purpose of the 'create link' property mentioned in the script?

    -The 'create link' property is used to create a link that calls Page 11 to enter a new order when a user clicks an empty calendar cell.

  • How can users ensure their progress is saved while working with the calendar page?

    -Users can save their progress by clicking the 'save page' button.

  • What should users do if they do not see orders in the calendar when they open the reports page?

    -If orders are not visible, users should use the previous and next buttons to switch back and forth between months.

  • How can users view the current month's orders in list view?

    -Users can click the 'list view' option to see the current month's orders in a list format.

Outlines

00:00

πŸ“… Introduction to Calendar in Oracle Apex

This paragraph introduces the viewers to the Oracle Apex feature for displaying and reporting orders in a calendar format. It explains the use of two buttons for navigating between months and how orders are displayed in date cells. Clicking an order leads to page 29 for detailed views. Blank date cells initiate the order wizard for new entries. The 'today' button is highlighted for quick navigation to the current system date, and the calendar offers different views for order display: month and list views. The paragraph also mentions creating a calendar page and provides a link to an SQL query file for further exploration.

πŸ› οΈ Setting Up the Calendar Page in Oracle Apex

This section details the process of creating a calendar page in Oracle Apex. It describes setting the display column for the calendar and the start date column for placing entries. The paragraph explains the use of the 'end date' attribute for duration-based events and the 'Showtime' attribute for time display. The creation of a page is finalized with the 'create page' button, and the attributes tab is used to set up links for order details on page 29 and for initiating new orders on page 11 through clicking empty calendar cells. The importance of saving progress is emphasized.

πŸ” Testing the Order Calendar Functionality

The final paragraph focuses on testing the newly created order calendar functionality. It guides the user to run the application and navigate to the reports page to interact with the order calendar card. The paragraph instructs on using the previous and next buttons to switch months and clicking name links to drill down into order details on page 29. It also explains how clicking a blank date cell starts the order wizard for new entries, noting that the new order's date is set to the current system date regardless of the clicked cell. The paragraph concludes with instructions on viewing orders in list view and thanks the viewers for watching.

Mindmap

Keywords

πŸ’‘Tech mining

Tech mining refers to the process of extracting valuable insights from technological data, often using software tools and techniques. In the context of the video, it likely refers to the educational channel or series that focuses on teaching technical skills, such as using Oracle Apex to create calendar applications.

πŸ’‘Oracle Apex

Oracle Apex is a low-code development platform that enables developers to build scalable and secure enterprise apps. It's integral to the video's theme as it is the platform used to create a calendar for displaying and reporting orders.

πŸ’‘Calendar Wizard

The Calendar Wizard in Oracle Apex is a feature that assists users in generating a calendar interface. In the video, it is used to create a calendar page that displays orders on specific dates.

πŸ’‘Order

An order in this context refers to a request or instruction for goods or services. The video explains how to display and manage these orders within a calendar view in Oracle Apex.

πŸ’‘Date Cells

Date cells are individual units within a calendar grid that represent specific dates. In the video, placed orders are shown in their respective date cells, and clicking on these cells allows users to view order details.

πŸ’‘Page 29

Page 29 is a specific page within the Oracle Apex application that is mentioned in the script. It is the destination page for detailed views of orders when a user clicks on an order in a date cell.

πŸ’‘Order Wizard

The Order Wizard is a tool or process within Oracle Apex that guides users through the steps of creating a new order. In the video, clicking a blank date cell initiates the Order Wizard for new order entry.

πŸ’‘Today Button

The 'Today' button is a feature in the calendar that allows users to quickly navigate back to the current system date. It is used in the video to demonstrate how to reset the view to the present day.

πŸ’‘List View

List View is one of the options to view orders in the calendar, presenting them in a list format rather than a calendar layout. The video mentions this as an alternative view to the month view.

πŸ’‘SQL Query

An SQL query is a statement used to manipulate or retrieve data from a database. In the video, a specific SQL query is used to concatenate order values to customer names and present them in a specified format.

πŸ’‘Showtime Attribute

The Showtime attribute in Oracle Apex determines whether the time portion of the date should be displayed. In the context of the calendar, setting this attribute to 'yes' allows for week and day views to be shown.

πŸ’‘Create Page Button

The 'Create Page' button in Oracle Apex is used to finalize the creation of a new page in the application. In the video, it is clicked to complete the wizard for creating the order calendar page.

πŸ’‘Link Properties

Link properties in Oracle Apex are used to define how links behave within the application. The video describes setting these properties to create links that either drill down to order details or initiate new order entries.

Highlights

Introduction to displaying and reporting orders in a calendar using Oracle Apex.

Oracle Apex has a built-in wizard for generating a calendar.

Calendar navigation with buttons to switch between months.

Orders are displayed in respective date cells on the calendar.

Clicking an order in a cell leads to page 29 for order details.

Blank date cells initiate the order wizard for new order entries.

The 'today' button resets the calendar to the current system date.

Calendar offers two views: month and list views for order display.

Creating a calendar page instead of a blank page in Oracle Apex.

SQL query file provided for testing in SQL commands.

Order value is concatenated to each customer's name in the SQL query.

Specifying the display column for the calendar.

Defining the start date column attribute for calendar entry placement.

End date attribute for displaying duration-based events.

Showtime attribute to display the time portion of the date.

Creating a link to drill down to the order details page.

Creating another link to call Page 11 for new order entry.

Testing the application and navigating the order calendar.

Using the list view option to see orders in a list format.

Transcripts

play00:00

a very warm welcome to Tech mining

play00:02

in this video we'll learn how to display

play00:04

report orders in a calendar Oracle Apex

play00:07

includes a built-in wizard for

play00:09

generating a calendar

play00:10

using these two buttons provided at top

play00:13

left we can switch between months

play00:16

the placed orders are displayed in

play00:18

respective date cells clicking an order

play00:20

in a cell takes us to page 29 to see its

play00:23

detail

play00:24

[Music]

play00:28

foreign

play00:31

clicking any blank date cell will start

play00:34

the order wizard to take new order entry

play00:38

foreign

play00:40

this today button brings us back to the

play00:43

current system date

play00:44

this calendar also offers two options to

play00:47

view orders in different views month and

play00:49

list views

play00:51

let's create this segment

play00:53

this time we are creating a calendar

play00:55

page instead of a blank page

play00:57

[Music]

play01:10

foreign

play01:20

is provided in description of this video

play01:23

by opening part 8 folder you'll get the

play01:25

SQL query file used

play01:27

in this query order value is

play01:30

concatenated to each customer's name and

play01:32

is presented in specified format U is an

play01:35

individual can test this query in SQL

play01:37

commands to see its output

play01:41

foreign

play01:47

[Music]

play01:50

this display column specifies the column

play01:53

to be displayed on the calendar while

play01:55

the start date column attribute

play01:57

specifies which column is to be used as

play01:59

the date to place an entry on the

play02:00

calendar

play02:01

if this end date attribute is specified

play02:04

the calendar displays duration-based

play02:06

events this Showtime attribute specifies

play02:09

whether the time portion of the date

play02:11

should be displayed the week and day

play02:13

views will be displayed on the calendar

play02:15

only when Showtime is set to yes

play02:17

click the create page button to finish

play02:19

the wizard

play02:24

click the order calendar region in the

play02:27

attributes tab

play02:30

click this view edit link attribute and

play02:34

set the following properties to create a

play02:36

link

play02:36

this link will drill down to the order

play02:38

Details page page 29 to show the details

play02:42

when the user clicks an existing order

play02:44

[Music]

play02:48

foreign

play02:52

[Music]

play02:57

click this create link property and set

play03:00

the following properties to create

play03:02

another link this property is used to

play03:04

create a link to call Page 11 to enter a

play03:06

new order when the user clicks an empty

play03:08

calendar cell

play03:10

save your progress by clicking the save

play03:12

page button

play03:13

that's it let's test our work

play03:18

run the application

play03:23

open this reports page click this order

play03:26

calendar card

play03:28

if you don't see orders in the calendar

play03:31

use these previous and next buttons to

play03:33

switch back and forth switch to any

play03:35

month for example May

play03:38

click any name Link in the calendar

play03:40

report to drill down to browse order

play03:42

details in page 29.

play03:46

[Music]

play03:51

click any blank date cell this will

play03:53

start the order wizard to take new order

play03:55

entry note that a new order is created

play03:57

in the current date irrespective of the

play04:00

month and view or the date cell you

play04:01

clicked by clicking this today button it

play04:04

brings us back to the current system

play04:06

date

play04:08

by clicking this list view option we'll

play04:10

see the current month order in list View

play04:17

thanks for watching

play04:18

[Music]

Rate This
β˜…
β˜…
β˜…
β˜…
β˜…

5.0 / 5 (0 votes)

Related Tags
Oracle ApexCalendar WizardOrder ManagementDate NavigationOrder DetailsNew Order EntrySystem DateList ViewMonth ViewSQL QueryUser Interface