2008 Apr 27 5:40 AM
i want to display the report output like below
1
1 2
1 2 3
1 2 3 4
1 2 3 4 5
what type of report is this ?
plzz give me the answer ?
i want to display the report output like below
1
1 2
1 2 3
1 2 3 4
1 2 3 4 5
what type of report is this ?
plzz give me the answer ?
2008 Apr 27 6:21 AM
Hi,
Akash,
Classical Reports
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.
To do your program, the events mentioned above are enough to do it.
So, it is come under Classcical report.
If it useful, reward points.
Thank you,
Prasad G.V.K.
2008 Apr 29 3:12 PM
2008 Apr 29 3:58 PM
parameters : rep type i default 10.
data : inc type i value 1,
val type i.
do rep times.
val = 1.
write : / .
do inc times.
write : val.
val = val + 1.
enddo.
inc = inc + 1.
enddo.
| User | Count |
|---|---|
| 6 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |