Skip to Content
0
Former Member
May 09, 2008 at 11:01 AM

alv report (record counter)

26 Views

hiii

dear all i written below code for record count but not getting no of records beyond 9 , it gives * ..

data : wa_listheader1 type slis_listheader.

data : Lin type i,

LINCHAR type c.

DESCRIBE TABLE ITab LINES LIN.

LINCHAR = LIN.

CLEAR wa_listheader1.

wa_listheader1-TYP = 'A'.

  • LS_LINE-KEY = ' '.

CONCATENATE 'NO. OF RECORDS :' LINCHAR INTO wa_listheader1-INFO SEPARATED BY SPACE .

APPEND wa_listheader1 TO it_listheader.

suggest any required change....