Hi,
I got the long text in ITAB1.
ITAB2 having other details which match this long text.
when iam displaying the two Internal tables,this long text is displaying one step down.How to move UP?
OBJNR LONGTEXT 200000123 <b>{getting gap here }</b> AAAAAAAAAAAAAAAAAAAAAAAA BBBBBBBBBBBBBBBBBBBBBBBB CCCCCCCCCCCCCCCCCCCCCCCC
I want to display like this
OBJNR LONGTEXT 200000123 AAAAAAAAAAAAAAAAAAAAAAAA BBBBBBBBBBBBBBBBBBBBBBBB CCCCCCCCCCCCCCCCCCCCCCCC
My code is something like this
loop at itab1. write:objnr loop at itab2 where objnr = itab1-objnr. write:/ itab2-longtext. endloop endloop.
points guaranteed
cheers
kaki