‎2006 Dec 12 8:59 AM
Hello ABAP gurus,
What is the exact answer for the following query?
Which of following statements will produce a list in an ABAP program ? "
(More that one correct answer)
TRUE FALSE
_ _ 1) ULINE
_ _ 2) SKIP
_ _ 3) PROGRAM
_ _ 4) WRITE
_ _ 5) REPORT
I think it is 1 and 4..
‎2006 Dec 12 9:06 AM
Hi,
The answer is report and Uline.
With out report statement you cant activate and with uline statement u can write a line.
Reagrds,
Kiran I
‎2006 Dec 12 9:01 AM
HI, The following will create a list in ABAP program.
ULINE
WRITE
SKIP
Regards,
Swaroop
‎2006 Dec 12 9:01 AM
‎2006 Dec 12 9:03 AM
Hi ,
The ans is REPORT AND WRITE , this is the minimum and all except PROGRAM can be used for the same
Regards
Arun
Message was edited by:
Arun Ramachandran
‎2006 Dec 12 9:05 AM
I think it is 3,4 and 5
using PROGRAM we can generate a list
using WRITE statement we can generate a list
using REPORT we can generate a list
‎2006 Dec 12 9:05 AM
‎2006 Dec 12 9:05 AM
hi rao,
The correct answers are..
skip
uline
report
reasons
report by default is needed for crweating a report.
only skip and uline can display a list can display a list without any additions..
write can also display but with some additions like
write : 'hi'.
hence the answers are 1 and 2
regards,
Rajkumar.G.
Message was edited by:
RAJKUMAR GAUTHAMAN
Message was edited by:
RAJKUMAR GAUTHAMAN
‎2006 Dec 12 9:06 AM
Hi,
The answer is report and Uline.
With out report statement you cant activate and with uline statement u can write a line.
Reagrds,
Kiran I
‎2006 Dec 12 9:15 AM
Hi Rao
First, the program should be an executable program with either REPORT <programname> or PROGRAM <programname> at the top.
All the three statements SKIP, ULINE and WRITE will generate a list.
Thanks
‎2006 Dec 12 9:14 AM
‎2006 Dec 12 11:55 AM
hai rao,
<b>WRITE.
SKIP .
ULINE.</b>
we use this in <b>classical reporting</b>.try it.