Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

regarding resb table

Former Member
0 Likes
317

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.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
275

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

1 REPLY 1
Read only

Former Member
0 Likes
276

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