SAP Analysis Results - Code Coverage

I am trying to extract the results from the analysis of Coverage code from my own abap program from a database in SAP.

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

In the COVRES table, I see one row in which my program is listed, but there is no additional information about statistics, for example, about branch coverage, etc.

Can someone give me a hint where I can find the results of the code coverage analyzer, so I can extract them for further processing?

Regards Bernhard

+6
source share
1 answer

Copied from the comments above:

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

Interfaces IF_SCV * in SE24

0
source

Source: https://habr.com/ru/post/951872/


All Articles