cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

ABAP code checking Tool

Former Member
0 Likes
8,825

I just want to inquire if you have any suggestion regarding ABAP code checking tool. Hope you could help me. Thanks!!

View Entire Topic
Former Member
0 Likes

Hi!

You have several possibilities to handle ABAP code checking. Here it is test roadmap:

1. Static compilation - for syntax errors check.

2. Extended program check (transaction SLIN) - to analyze the errors, warnings and potential sources of runtime errors and others severe problems that may exist in your code.

3. Code Inspector (transaction SCI) - to perform more sophisticated static checks.

4. ABAP Unit testing - to ensure all modularization units of your program are actually doing what they are supposed to do.

5. Integration tests with eCATT, the extented Computer Aided Test Tool (transaction SECATT) - to verify that the modularization units and application screens work together correctly in a complex application scenario.

6. Coverage analysis (transaction SCOV) - to verify that all relevant parts of your program have been executed and tested before you release it for use in your production system.

More info you can find in Erik Sodtke article "An Integrated Approach to Troubleshooting Your ABAP Programs:

Using Standard SAP “Check” Tools During Development and Testing".

Regards,

Maxim.