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

new line

Former Member
0 Likes
702

Hi gurus,

I am new to ABAP and I have a small qustion, can you please tell me how to insert a new line while displaying, I mean I have to display two items and I want 1st one to be at 1st line and second one to be at 4th.

thanks

Rajeev

1 ACCEPTED SOLUTION
Read only

naimesh_patel
Active Contributor
679
write: 'first line'.
skip 2.

write: 'second line'.

Regards,

Naimesh Patel

write: 'first line'.
skip 2.

write: 'second line'.

Regards,

Naimesh Patel

3 REPLIES 3
Read only

naimesh_patel
Active Contributor
680
write: 'first line'.
skip 2.

write: 'second line'.

Regards,

Naimesh Patel

Read only

Former Member
0 Likes
679

Hi,

I dint undestand clearly your requirement....may be this following code help ful for you...



WRITE :/ 'First LIne'.

SKIP 2.

WRITE :/ 'Second line'.

Read only

Former Member
0 Likes
679

of what are you talking???

displaying in:

- an ALV?

- a Table Control?

- a smartform?

- a SAP-Script?

- interactive list?

- list-control?