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

list

Former Member
0 Likes
1,075

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..

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,036

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

10 REPLIES 10
Read only

Former Member
0 Likes
1,036

HI, The following will create a list in ABAP program.

ULINE

WRITE

SKIP

Regards,

Swaroop

Read only

Former Member
0 Likes
1,036

Hello Rao,

Correct answer are 1,2,4

Vasanth

Read only

Former Member
0 Likes
1,036

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

Read only

Former Member
0 Likes
1,036

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

Read only

Former Member
0 Likes
1,036

Hi

it is

_ _ 4) WRITE

_ _ 5) REPORT

Read only

Former Member
0 Likes
1,036

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

Read only

Former Member
0 Likes
1,037

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

Read only

0 Likes
1,036

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

Read only

Former Member
0 Likes
1,036

The answer can be

2) skip

4)write

1)uline.

Read only

Former Member
0 Likes
1,036

hai rao,

<b>WRITE.

SKIP .

ULINE.</b>

we use this in <b>classical reporting</b>.try it.