Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Report output ?

Former Member
0 Likes
465

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 ?

3 REPLIES 3
Read only

Former Member
0 Likes
447

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.

Read only

0 Likes
447

I want logic to display the report ?

Read only

Former Member
0 Likes
447

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.