‎2008 Jul 22 10:33 PM
hai,
is it possible to count the no of records by year wise in resb table and in that table 16 millions records are present.if it is possible means, tell me the solution as soon as possible.
with regards,
r.dhinesh raj.
‎2008 Jul 22 11:19 PM
hi,
write a query like,
data: ws_cnt type i,
ws_gjahr type gjahr.
select count(*) gjahr into (ws_cnt, ws_gjahr)
from bkpf GROUP BY gjahr.
write: ws_cnt, ws_gjahr.
endselect.
regards,
Subramanian
‎2008 Jul 22 11:19 PM
hi,
write a query like,
data: ws_cnt type i,
ws_gjahr type gjahr.
select count(*) gjahr into (ws_cnt, ws_gjahr)
from bkpf GROUP BY gjahr.
write: ws_cnt, ws_gjahr.
endselect.
regards,
Subramanian