2007 Jul 03 1:17 PM
2007 Jul 03 1:20 PM
Hi
Clear ITAB.
Append ITAB.
it will append a single blank line
or
pass spaces to all fields of ITAB and use APPEND ITAB.
Reward points for useful Answers
Regards
Anji
Hi
Clear ITAB.
Append ITAB.
it will append a single blank line
or
pass spaces to all fields of ITAB and use APPEND ITAB.
Reward points for useful Answers
Regards
Anji
2007 Jul 03 1:19 PM
2007 Jul 03 1:20 PM
Hi,
Sravan,
Just write appen <internal table Name>
Reward if useful!
2007 Jul 03 1:20 PM
Hi
Clear ITAB.
Append ITAB.
it will append a single blank line
or
pass spaces to all fields of ITAB and use APPEND ITAB.
Reward points for useful Answers
Regards
Anji
2007 Jul 03 1:21 PM
2007 Jul 03 1:33 PM
HI,
READ TABLE ITAB WITH KEY VBELN = ' ' VBELP = ' '.
IF sy-subrc = 0.
INSERT [wa INTO|INITIAL LINE INTO] itab [INDEX idx].
ENDIF.
Regards,
Nandha
Reward if it helps
2007 Jul 03 1:49 PM
hi,
try like this.
give APPEND keyword with internal table as
APPEND ITAB // itab is internal table with header line.
or add INITIAL keyword to it.
APPEND INITIAL LINE TO itab.
or
ITAB-fld1 = ' '.
.............
...........
.......
APPEND ITAB.
if helpful reward some points.
with regards,
Suresh.A
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |