SlideShare una empresa de Scribd logo
1 de 2
Purpose
To generate Airline Booking Report for Business Customers from Philadelphia,
USA. Report display customer’s id, name, city, customer type,the discount rate
and number of airline booking each customer receives.

Integration
     N/a

Prerequisites
‘scustom’ and ‘sbook’ tables stored in database

Features
 Use of Structure for database table scustom and sbook
 Custom structure of user defined data types used in total, average discount
  rate calculations created.
 Use of appropriate system variables to output when the list was created (date
  and time) and by whom


Selection
 Main Select statement loop used to fetch customer’s id, name, city, customer
  type and the discount rate from table: scustom.
 Inner Select statement will retrieve the bookings from table: SBOOK for each
  current customer fetch from table: scustom.

Standard Variants
     N/a
Activities
 Calculating number of airline bookings for individual business customer
 Calculating Discount Rate Summary assuming only four discount levels (No
  discount, 1% - 8%, 9% - 16%, 17% or higher).
 Calculating    Discount Rate Average for all Business customers listed in
  report.




1
Example

Más contenido relacionado

Similar a Abap documentation

Lesson objectives unit 6 advanced databases
Lesson objectives unit 6 advanced databasesLesson objectives unit 6 advanced databases
Lesson objectives unit 6 advanced databases
Gavin McIntyre
 
Assignment 2 specificationThe assignment must be submitted e.docx
Assignment 2 specificationThe assignment must be submitted e.docxAssignment 2 specificationThe assignment must be submitted e.docx
Assignment 2 specificationThe assignment must be submitted e.docx
steviesellars
 
Business Intelligence Portfolio
Business Intelligence PortfolioBusiness Intelligence Portfolio
Business Intelligence Portfolio
Chris Seebacher
 
Sahil Dhungel & Het Unadkat Data Mining.pdf
Sahil Dhungel & Het Unadkat Data Mining.pdfSahil Dhungel & Het Unadkat Data Mining.pdf
Sahil Dhungel & Het Unadkat Data Mining.pdf
HetUnadkat
 
Hyerion Public Sector Planning-Issam Hejazin
Hyerion Public Sector Planning-Issam HejazinHyerion Public Sector Planning-Issam Hejazin
Hyerion Public Sector Planning-Issam Hejazin
Issam Hejazin
 
Samples of Database and Website Design
Samples of Database and Website DesignSamples of Database and Website Design
Samples of Database and Website Design
Sherri Orwick Ogden
 
Porfolio of Setfocus work
Porfolio of Setfocus workPorfolio of Setfocus work
Porfolio of Setfocus work
KevinPSF
 

Similar a Abap documentation (20)

Lesson objectives unit 6 advanced databases
Lesson objectives unit 6 advanced databasesLesson objectives unit 6 advanced databases
Lesson objectives unit 6 advanced databases
 
Assignment 2 specificationThe assignment must be submitted e.docx
Assignment 2 specificationThe assignment must be submitted e.docxAssignment 2 specificationThe assignment must be submitted e.docx
Assignment 2 specificationThe assignment must be submitted e.docx
 
Business Intelligence Portfolio
Business Intelligence PortfolioBusiness Intelligence Portfolio
Business Intelligence Portfolio
 
What is copa master data
What is copa master dataWhat is copa master data
What is copa master data
 
CostingNet specific manual
CostingNet specific manualCostingNet specific manual
CostingNet specific manual
 
RFP Database User Manual for Sales
RFP Database User Manual for SalesRFP Database User Manual for Sales
RFP Database User Manual for Sales
 
Administration
AdministrationAdministration
Administration
 
Recalculate DIFAL
Recalculate DIFALRecalculate DIFAL
Recalculate DIFAL
 
Flight booking-engine-features
Flight booking-engine-featuresFlight booking-engine-features
Flight booking-engine-features
 
Airlineppt 160621085220 (1)
Airlineppt 160621085220 (1)Airlineppt 160621085220 (1)
Airlineppt 160621085220 (1)
 
Airline Reservation System - Software Engineering
Airline Reservation System - Software EngineeringAirline Reservation System - Software Engineering
Airline Reservation System - Software Engineering
 
Check printing in_r12
Check printing in_r12Check printing in_r12
Check printing in_r12
 
Hotel Scienz Revenue Management Dashboard 2017
Hotel Scienz Revenue Management Dashboard 2017Hotel Scienz Revenue Management Dashboard 2017
Hotel Scienz Revenue Management Dashboard 2017
 
171846965 projects
171846965 projects171846965 projects
171846965 projects
 
Pega poc | Pega projects
Pega poc | Pega projectsPega poc | Pega projects
Pega poc | Pega projects
 
Data Warehouse Project
Data Warehouse ProjectData Warehouse Project
Data Warehouse Project
 
Sahil Dhungel & Het Unadkat Data Mining.pdf
Sahil Dhungel & Het Unadkat Data Mining.pdfSahil Dhungel & Het Unadkat Data Mining.pdf
Sahil Dhungel & Het Unadkat Data Mining.pdf
 
Hyerion Public Sector Planning-Issam Hejazin
Hyerion Public Sector Planning-Issam HejazinHyerion Public Sector Planning-Issam Hejazin
Hyerion Public Sector Planning-Issam Hejazin
 
Samples of Database and Website Design
Samples of Database and Website DesignSamples of Database and Website Design
Samples of Database and Website Design
 
Porfolio of Setfocus work
Porfolio of Setfocus workPorfolio of Setfocus work
Porfolio of Setfocus work
 

Abap documentation

  • 1. Purpose To generate Airline Booking Report for Business Customers from Philadelphia, USA. Report display customer’s id, name, city, customer type,the discount rate and number of airline booking each customer receives. Integration N/a Prerequisites ‘scustom’ and ‘sbook’ tables stored in database Features  Use of Structure for database table scustom and sbook  Custom structure of user defined data types used in total, average discount rate calculations created.  Use of appropriate system variables to output when the list was created (date and time) and by whom Selection  Main Select statement loop used to fetch customer’s id, name, city, customer type and the discount rate from table: scustom.  Inner Select statement will retrieve the bookings from table: SBOOK for each current customer fetch from table: scustom. Standard Variants N/a Activities  Calculating number of airline bookings for individual business customer  Calculating Discount Rate Summary assuming only four discount levels (No discount, 1% - 8%, 9% - 16%, 17% or higher).  Calculating Discount Rate Average for all Business customers listed in report. 1