Bernhard Eischer
Bernhard Eischer

Reputation: 75

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

Upvotes: 6

Views: 873

Answers (1)

Esti
Esti

Reputation: 3687

Copied from the comments above:

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

Interfaces IF_SCV* in SE24

Upvotes: 1

Related Questions