2007 Mar 03 3:59 PM
tell me plzz types of alv reports?
2007 Mar 03 4:10 PM
2007 Apr 26 2:07 PM
hi,
*the alv is a functionality provided within abap which can enchance reports in r/3 system.
(or) simple way to display the reports in orderly manner.
*it is a in built function.
*alv is a set of functional module which are added to the abap program code.
<u>advantages:</u>
*saves time that is spent in enchancing reports.
*provides uniform user interface
1.header of the column.
2.colors which correspond to indented 'key' info.
<u>steps in alv:</u>
1.declare data areas for list viewer(type-pools:slis)
2.declare internal table to store selected data.
3.select data into int table.
4.build fieldcatalog.
5.build sortcatlog.
6.build eventcatalog.
7.start abap list viewer (ctrl+f6)
8.call back events.
the report output can contain upto 90 columns in the display with the wide array of display options.
common alv functions used are
reuse_alv_list_display
reuse_alv_grid_display
reuse_alv_variant_default_get
reuse_alv_variant_f4
reuse_alv_commentary_write
reuse_alv_variant_existence
reuse_alv_fieldcatalog_merge
reuse_alv_popup_to_select
reuse_alv_events_get.
if u have any doubts further about alv.just mail me.
thanks
abby
2007 Apr 26 2:11 PM
2007 Apr 26 2:12 PM
hi,
list display,
grid display
hierarchial sequential list display
block list display
rgds,
bharat.
2007 Apr 26 6:17 PM
hi,
ALV reports means Abap list viewer.
they r three types of ALV reports.
1. Simple ALV: displays only single output by taking the fields from a single table.
2. Complex ALV : gets the data from different tables but displays it in a single output list.
3. Interactive ALv: gets the data from different tables n displays in different output lists.
The function modules tht r there in ALV r
> list display,
> grid display
> hierarchial sequential list display
> block list display
we use grid display to get a aperfect layout where as in report we cannot use grip display.
if u feel its a worthy answer n has solved ur prblm then dont forget to reward with points.
with regards,
madhuri.
2007 Apr 26 7:01 PM
2007 May 17 11:23 AM
How many types of reports are there in ABAP and what is the difference between them?
HERE IS YOUR ANSWERS.(MARK IT ANSWERS IF UR QUESTION IS ANSWERED)
There are 2 type of reports. They are:
Interactive report
Classic reports
In classic reports,we can see the output in single list where as in interactive reports we can see the output in multiple list.
AnswerEdit section
In ABAP, there are a total of 7 types of reports. They are:
Classical
Interactive
Logical Database
ABAP query
ALV Reports (ALV stands for ABAP List Viewer)
Report Writer/Report Painter
Views (There are different types of views also)
Classical ReportsEdit section
These are the most simple reports. Programmers learn this one first. It is just an output of data using the Write statement inside a loop.
Classical reports are normal reports. These reports are not having any sub reports. IT IS HAVING ONLY ONE SCREEN/LIST FOR OUTPUT.
Events In Classical Reports.
INTIALIZATION: This event triggers before selection screen display.
AT-SELECTION-SCREEN: This event triggers after proccesing user input still selection screen is in active mode.
START OF SELECTION: Start of selection screen triggers after proceesing selection screen.
END-OF-SELECTION : It is for Logical Database Reporting.
Interactive ReportsEdit section
As the name suggests, the user can Interact with the report. We can have a drill down into the report data. For example, Column one of the report displays the material numbers, and the user feels that he needs some more specific data about the vendor for that material, he can HIDE that data under those material numbers.
And when the user clicks the material number, another report (actually sub report/secondary list) which displays the vendor details will be displayed.
We can have a basic list (number starts from 0) and 20 secondary lists (1 to 21).
Events associated with Interactive Reports are:
AT LINE-SELECTION
AT USER-COMMAND
AT PF<key>
TOP-OF-PAGE DURING LINE-SELECTION.
HIDE statement holds the data to be displayed in the secondary list.
sy-lisel : contains data of the selected line.
sy-lsind : contains the level of report (from 0 to 21)
Interactive Report Events:
AT LINE-SELECTION : This Event triggers when we double click a line on the list, when the event is triggered a new sublist is going to be generated. Under this event what ever the statements that are been return will be displayed on newly generated sublist.
AT PFn: For predefined function keys...
AT USER-COMMAND : It provides user functions keys.
TOP-OF-PAGE DURING LINE-SELECTION :top of page event for secondary list.
Logical Database ReportsEdit section
Logical database is another tool for ABAP reports. Using LDB we can provide extra features for ABAP reports.
While using LDB there is no need for us to declare Parameters.
Selection-screen as they will be generated automatically.
We have to use the statement NODES in ABAP report.
If there are many tables the Performance will be slow as all the table data will be read from top node to bottom node .
ABAP Query ReportsEdit section
ABAP query is another tool for ABAP. It provides efficency for ABAP reports. These reports are very accurate.
Transaction Code : SQ01
Report WriterEdit section
Key Concept :
Super users and end users can use Report Painter/Report Writer tools to write their own reports.
Giving them the ability to report on additional fields at their discretion shifts the report maintenance burden to them, saving SAP support groups time and effort normally spent creating and maintaining the reports.
Instead of using ABAP code to write a report in FI and CO, many users build a Report Painter/ Report Writer library using transaction MC27.
However, this workaround has some drawbacks. Little known transaction GRCT solves these problems in most cases, and eliminates the need to use transaction MC27.
ABAP Report TypesEdit section
ABAP report types are those ones available in some report's attributes screen, i.e. :
Executable program
Function group (containing function modules)
Include
Interface pool
Class pool
Module pool
Subroutine pool
Also ALV means ABAP List Viewer. Most convenient way to use it is through reuse library (cf. transaction se83) available from release 4.6 of SAP R/3.
ALV is available in two modes: list and grid. List mode is good old list processing with standard functionnalities, and grid mode is using a new OCX object displaying grids.
AWARD PIONT FOR HELPFUL ANSWERS
ANUJ
Message was edited by:
anuj anuj
2007 May 17 11:49 AM
ALV stands for ABAP List Viewer
ALV can be used for viewing both single level list and multilevel sequential list.
1 Single level list contains any number of lines that have no Hierarchical relationship to each other.
2 Multilevel sequential list consists of any number of lines that have two hierarchical level.
a) Header rows.
b) Item rows.
There are Three types of ALV Reports.
1) Simple
2) Blocked
3) Hierarchical Sequential Report
1. <b>SIMPLE REPORT.</b>
The important function modules are
a. Reuse_alv_list_display
b. Reuse_alv_fieldcatalog_merge
c. Reuse_alv_events_get
d. Reuse_alv_commentary_write
e. Reuse_alv_grid_display
A. REUSE_ALV_LIST_DISPLAY : This is the function module which prints the data.
B. REUSE_ALV_FIELDCATALOG_MERGE : This function module is used to populate a fieldcatalog which is essential to display the data in ALV. If the output data is from a single dictionary table and all the columns are selected, then we need not exclusively create the field catalog. Its enough to mention the table name as a parameter(I_structure name) in the REUSE_ALV_LIST_DISPLAY. But in other cases we need to create it.
C. REUSE_ALV_EVENTS_GET : Returns table of possible events for a list type
D. REUSE_ALV_COMMENTARY_WRITE : This is used in the Top-of-page event to print the headings and other comments for the list.
E. REUSE_ALV_GRID_DISPLAY : A new function in 4.6 version, to display the results in grid rather than as a preview.
2. <b>BLOCK REPORT</b>
This looks like a simple report but this report has the features of sorting and filtering only.
The important functions used in this report are:
A. REUSE_ALV_BLOCK_LIST_INIT
B. REUSE_ALV_BLOCK_LIST_APPEND
C. REUSE_ALV_BLOCK_LIST_DISPLAY
A. REUSE_ALV_BLOCK_LIST_INIT
This function module is used to set the default gui status etc.
B. REUSE_ALV_BLOCK_LIST_APPEND
This function module adds the data to the block.
C. REUSE_ALV_BLOCK_LIST_DISPLAY
This function module display the list with data appended by the above function.
Here the functions REUSE_ALV_FIELDCATALOG_MERGE, REUSE_ALV_EVENTS_GET, REUSE_ALV_COMMENTARY_WRITE can be used.
3. <b>Hierarchical reports :</b>
Hierarchical sequential list output.
The function module is
A. REUSE_ALV_HIERSEQ_LIST_DISPLAY
2007 May 17 11:52 AM
Hi X-Captain.
Give me your mail id,
so that i can send some documents
regarding ALV.
Thanks.
2007 May 17 12:51 PM
hi,
they r three types of ALV Reports n they r simple ALV report, Classical ALV Report and Interactive ALV report. The function modules that can be used here are:
reuse_alv_list_display
reuse_alv_grid_display
reuse_alv_variant_default_get
reuse_alv_variant_f4
reuse_alv_commentary_write
reuse_alv_variant_existence
reuse_alv_fieldcatalog_merge
reuse_alv_popup_to_select
reuse_alv_events_get.
2008 May 01 9:06 AM
Hi,
Type Of alv reports are:
1: Simple Alv : It Displays alv data in simple i.e list report
2: Blocked Alv : In One report it shows number of ALv
in Blocks.
3: Hierarchial ALv : it Shows an Historial Form i.e In Hierarchial Form
Reward Points If Usefull
Regards
Fareedas
2008 May 01 2:54 PM
Hi,
This is the link for ABAP material
http://www.sapbrainsonline.com/TUTORIALS/TECHNICAL/ABAP_tutorial.html
Help for ABAP certification.
http://www.sapdomain.com/braincheck.php
ABAP Material
BOOKS
http://www.is-edu.hcmuns.edu.vn/WebLib/Books/Database/0-672-31217-4/index.htm
ABAP in 21 days
http://www.is-edu.hcmuns.edu.vn/WebLib/Books/Database/0-672-31217-4/index.htm
http://cma.zdnet.com/book/abap/ch03/ch03.htm
http://www.sapbrainsonline.com/TUTORIALS/TECHNICAL/ABAP_tutorial.html
ABAP FAQs
https://www.sdn.sap.com/irj/sdn/abap?rid=/library/uuid/840ad679-0601-0010-cd8e-9989fd650822
Pool and cluster tables
http://help.sap.com/saphelp_erp2004/helpdata/en/81/415d363640933fe10000009b38f839/frameset.htm
ABAP FAQs
http://www.techinterviews.com/?p=198
SAP SD information site
http://sapsdlive.blogspot.com/2007/11/sap-standard-book-bench-mark.html
SAP User Exits
http://sapass.metro.client.jp/UserExit/
SMARTFORMS
https://www.sdn.sap.com/irj/sdn/wiki?path=/display/abap/smartforms&;
Reward,if useful.
Thanks,
Chandu
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |