Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SAP - Code Coverage Analyzer Results

I'm trying to extract the results from my Code Coverage analysis from my own abap program from the database in SAP.

At the following website Coverage Analyzer: Technology I find this information: Initially, RSCVR_COLLECT transfers data to the 'staging area' of table COVRES0. Finally, the new data is aggregated with the statistics in tables COVRES and COVREF, among others.

In the table COVRES i can see one row where my program is listed but there are no further information about statistics like branch coverage, etc.

Can anybody give me a hint, where I can find the results of the Code Coverage Analyzer, so I am able to extract them for further processing?

Best regards Bernhard

like image 238
Bernhard Eischer Avatar asked Aug 16 '13 10:08

Bernhard Eischer


1 Answers

Copied from the comments above:

Instead of using the code for Code Coverage Analyzer (scov), use the Coverage API.

Interfaces IF_SCV* in SE24

like image 79
Esti Avatar answered Sep 19 '22 19:09

Esti