I'm using PNP LDB in my report and I'd like to display how many records I have so I wrote this code
If i_tab is not initial.
DESCRIBE TABLE i_tab LINES counter.
WRITE counter .
Endif.
but I'm getting wrong result. Can anybody help please.