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

regarding an internal table

Former Member
0 Likes
880

can any say how to insert an empty line in my internal table

i need one empty line in my internal table

the output format should be

xxxx xxxxxxxxxxx xxxxxx

-


empty line----


xxxxxxxxxxxxxx x x x xxx

x x x x xxxxxxxx x x x x x

-


empty line----


xxxxxxxxxxxxxxxx x x x x

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
831

Depending in the type of the fields this could not be possible.

If you have numeric fields it would be impossible to add an empty line.

I think that to solve your problem the best you can do is to add the empty lines when you are showing the table in the screen, not insertting empty lines.

If you are displaying the internal table in a loop you could add a write sentence inside every time you need it.

can any say how to insert an empty line in my internal table

i need one empty line in my internal table

the output format should be

xxxx xxxxxxxxxxx xxxxxx

-


empty line----


xxxxxxxxxxxxxx x x x xxx

x x x x xxxxxxxx x x x x x

-


empty line----


xxxxxxxxxxxxxxxx x x x x

5 REPLIES 5
Read only

Former Member
0 Likes
831

APPEND INITIAL LINE TO ITAB.

REGARDS

shiba dutta

Read only

Former Member
0 Likes
832

Depending in the type of the fields this could not be possible.

If you have numeric fields it would be impossible to add an empty line.

I think that to solve your problem the best you can do is to add the empty lines when you are showing the table in the screen, not insertting empty lines.

If you are displaying the internal table in a loop you could add a write sentence inside every time you need it.

Read only

Former Member
0 Likes
831

<b>Append initial line to itab.</b>

This will insert an empty line into an internal table.

Pls reward if helpful.

Read only

Former Member
0 Likes
831

APPEND INITIAL LINE TO itab.

If you use INITIAL LINE TO, a line filled with the correct

initial value for the type is added.

<b>Reward if helpful.</b>

Read only

Former Member
0 Likes
831

Thanks for your quick responce