Hello all,
I created a small program to give me a total record count for my huge table and ran it in the background. It ran for hours and finally did finish but i dont know where to retrieve the information of how many records were counted in total. So i created another program to read a very small table of 2000 records and scheduled it in the background. This one ran almost instantly but i couldnt get any record count from this one either. What do I need to do to actually see my record count.
Heres my program: Please tell me what am I missing , should i store it somewhere and can someone please actually give me the code if mine needs to be adjusted or added.
DATA: count LIKE sy-tabix.
SELECT COUNT(*) FROM table INTO count.
WRITE: /001 'Number of records in table:', count.
Best regards,
Krrish