SlideShare a Scribd company logo
WELCOME TO DUCAT INDIA
Language | Industrial Training | Digital Marketing | Web Technology | Testing+ | Database |
Networking | Mobile Application | ERP | Graphic | Big Data | Cloud Computing
7070905090
info@ducatindia.com
Interactive
Reports
Development
Interactive Reports Development
Develop an interactive report to display material basic details in basic list,
material plant details in secondary list for a material type input and display
header and footer for primary and secondary list.
Requirement Analysis:
In the above requirement, we have to get material details for a material type
input (Parameter input for MTART field), whenever the user double clicks on
any record of basic list, it will go to the second screen and display list plants
for that material, display page header and footer for the report.
SAP Tables to be used are:
MARA(Material Master), MARC(Material Plants).
Step1:Define report heading.
Go to SE38, create a program ZSAPN_INTERACTIVE_REPORT.In order to display
footer information we have to provide some space for the footer, it can be
defined in the report definition(First line of the report), to provide space for
footer we use below syntax.
REPORT ZSAPN_INTERACTIVE_REPORT LINE-COUNT 34(2) NO STANDARD PAGE
HEADING. “Leave some pages for footer and hide standard heading
In the above deceleration we have provided 34 lines for report and 2 lines for
footer i:e 34(2), we don`t need a standard page heading so we used NO
STANDARD PAGE HEADING.
Step2:Data decelerations and Selection screen.
Declare the required internal tables, work areas, variables etc. and add selection
screen element parameter for material type input.
DATA: IT_MARA TYPE TABLE OF MARA, "mara internal table
WA_MARA TYPE MARA, "mara work area
IT_MARC TYPE TABLE OF MARC, "marc internal table
WA_MARC TYPE MARC. "marc work area
PARAMETERS P_MTART TYPE MARA-MTART. “Selection screen element input field
Step3:Add code to get material basic details.
Add logic to get materials for the material type input under START-OF-SELECTION
event.
START-OF-SELECTION.
SELECT * FROM MARA
INTO TABLE IT_MARA
WHERE MTART = P_MTART.
THANK YOU
7070905090
info@ducatindia.com
Interactive
Reports
Development

More Related Content

PPTX
Interactive report using hide technique
PDF
Pentaho BootCamp : Using the Pentaho Reporting Tools
PPTX
Intellex Online Dynamic Research Manager - Options and Pricing
PPT
Crystal tr///SAP Design Studio online training by design studio Export-24/7//...
PPTX
MS Access Ch 3 PPT
PPTX
Data mining process powerpoint presentation templates
PDF
Analysis edition for olap
PPTX
Dot net training institute
Interactive report using hide technique
Pentaho BootCamp : Using the Pentaho Reporting Tools
Intellex Online Dynamic Research Manager - Options and Pricing
Crystal tr///SAP Design Studio online training by design studio Export-24/7//...
MS Access Ch 3 PPT
Data mining process powerpoint presentation templates
Analysis edition for olap
Dot net training institute

More from Ducat (20)

PPTX
Mis certification
PDF
Devops certification
PDF
Best ethical hacking course online
PPTX
React js training course in noida
PPTX
Java for beginners
PPTX
Benfits of python
PPTX
Abap report
PPTX
Sap abap database table
PPTX
Sap s4 hana saps next generation business suite
PPTX
Connect dashboard designer
PPTX
Major components of sap hana
PPTX
Schema in sap hana
PPTX
Sap hana attribute view
PPTX
Sap hana studio administration console
PPTX
What is ebs
PPTX
Introduction to mern
PPTX
Selenium tutorials
PPTX
Waits alerts and switch windows
PPTX
Web driver interface
PPTX
C strings
Mis certification
Devops certification
Best ethical hacking course online
React js training course in noida
Java for beginners
Benfits of python
Abap report
Sap abap database table
Sap s4 hana saps next generation business suite
Connect dashboard designer
Major components of sap hana
Schema in sap hana
Sap hana attribute view
Sap hana studio administration console
What is ebs
Introduction to mern
Selenium tutorials
Waits alerts and switch windows
Web driver interface
C strings
Ad

Recently uploaded (20)

PPTX
Microbial diseases, their pathogenesis and prophylaxis
PPTX
GDM (1) (1).pptx small presentation for students
PDF
2.FourierTransform-ShortQuestionswithAnswers.pdf
PDF
Computing-Curriculum for Schools in Ghana
PDF
Basic Mud Logging Guide for educational purpose
PDF
TR - Agricultural Crops Production NC III.pdf
PDF
FourierSeries-QuestionsWithAnswers(Part-A).pdf
PPTX
PPH.pptx obstetrics and gynecology in nursing
PPTX
Institutional Correction lecture only . . .
PDF
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
PDF
Classroom Observation Tools for Teachers
PDF
RMMM.pdf make it easy to upload and study
PPTX
Cell Types and Its function , kingdom of life
PPTX
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
PDF
Insiders guide to clinical Medicine.pdf
PPTX
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
PDF
O5-L3 Freight Transport Ops (International) V1.pdf
PPTX
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
PDF
Pre independence Education in Inndia.pdf
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
Microbial diseases, their pathogenesis and prophylaxis
GDM (1) (1).pptx small presentation for students
2.FourierTransform-ShortQuestionswithAnswers.pdf
Computing-Curriculum for Schools in Ghana
Basic Mud Logging Guide for educational purpose
TR - Agricultural Crops Production NC III.pdf
FourierSeries-QuestionsWithAnswers(Part-A).pdf
PPH.pptx obstetrics and gynecology in nursing
Institutional Correction lecture only . . .
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
Classroom Observation Tools for Teachers
RMMM.pdf make it easy to upload and study
Cell Types and Its function , kingdom of life
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
Insiders guide to clinical Medicine.pdf
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
O5-L3 Freight Transport Ops (International) V1.pdf
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
Pre independence Education in Inndia.pdf
Pharmacology of Heart Failure /Pharmacotherapy of CHF
Ad

Interactive reports development

  • 1. WELCOME TO DUCAT INDIA Language | Industrial Training | Digital Marketing | Web Technology | Testing+ | Database | Networking | Mobile Application | ERP | Graphic | Big Data | Cloud Computing 7070905090 info@ducatindia.com Interactive Reports Development
  • 2. Interactive Reports Development Develop an interactive report to display material basic details in basic list, material plant details in secondary list for a material type input and display header and footer for primary and secondary list. Requirement Analysis: In the above requirement, we have to get material details for a material type input (Parameter input for MTART field), whenever the user double clicks on any record of basic list, it will go to the second screen and display list plants for that material, display page header and footer for the report.
  • 3. SAP Tables to be used are: MARA(Material Master), MARC(Material Plants). Step1:Define report heading. Go to SE38, create a program ZSAPN_INTERACTIVE_REPORT.In order to display footer information we have to provide some space for the footer, it can be defined in the report definition(First line of the report), to provide space for footer we use below syntax. REPORT ZSAPN_INTERACTIVE_REPORT LINE-COUNT 34(2) NO STANDARD PAGE HEADING. “Leave some pages for footer and hide standard heading In the above deceleration we have provided 34 lines for report and 2 lines for footer i:e 34(2), we don`t need a standard page heading so we used NO STANDARD PAGE HEADING.
  • 4. Step2:Data decelerations and Selection screen. Declare the required internal tables, work areas, variables etc. and add selection screen element parameter for material type input. DATA: IT_MARA TYPE TABLE OF MARA, "mara internal table WA_MARA TYPE MARA, "mara work area IT_MARC TYPE TABLE OF MARC, "marc internal table WA_MARC TYPE MARC. "marc work area PARAMETERS P_MTART TYPE MARA-MTART. “Selection screen element input field Step3:Add code to get material basic details. Add logic to get materials for the material type input under START-OF-SELECTION event. START-OF-SELECTION. SELECT * FROM MARA INTO TABLE IT_MARA WHERE MTART = P_MTART.