Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

ABOUT CODE CHECK

Former Member
0 Likes
595

what is the diffrence between code inspector and EPC(Extended programe check)

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
466

Hi,

EPC will perform static checks, which are too time consuming for the normal syntax check. The extended program check returns both errors and warnings and it is possible to run either individual specialized tests or one whole standard check.

check more herehttp://help.sap.com/saphelp_nw2004s/helpdata/en/d1/801afd454211d189710000e8322d00/frameset.htm

The Code Inspector is a tool for checking Repository objects regarding performance, security, syntax, and adherence to name conventions

Check more here http://help.sap.com/saphelp_nw04/helpdata/en/56/fd3b87d203064aa925256ff88d931b/frameset.htm

Regards

Sudheer

2 REPLIES 2
Read only

Former Member
0 Likes
467

Hi,

EPC will perform static checks, which are too time consuming for the normal syntax check. The extended program check returns both errors and warnings and it is possible to run either individual specialized tests or one whole standard check.

check more herehttp://help.sap.com/saphelp_nw2004s/helpdata/en/d1/801afd454211d189710000e8322d00/frameset.htm

The Code Inspector is a tool for checking Repository objects regarding performance, security, syntax, and adherence to name conventions

Check more here http://help.sap.com/saphelp_nw04/helpdata/en/56/fd3b87d203064aa925256ff88d931b/frameset.htm

Regards

Sudheer

Read only

Former Member
0 Likes
466

Hi,

Extended Program Check


Use
You use this function to perform static checks, which are too time consuming for the normal syntax check. The extended program check returns both errors and warnings and it is possible to run either individual specialized tests or one whole standard check.

Procedure
1. You access the extended program check by means of transaction SLIN. You can also choose Program ® Check ® Extended program check.

The system displays a list of possible check options. By default, all of them are selected. For detailed information about a particular option, position the cursor on it and choose F1.
The extended program check takes considerably longer time than other checks but it uses a buffer and the process speeds up after the first run.

2. Select any options you need.

For each option you have selected, the system displays an overview of the number of errors, warnings, and messages.



Only the especially critical warnings are displayed before the standard check.

3. Choose an entry to display the corresponding detail screen.

From that screen you can jump to the appropriate point in the program and correct the error.


Code Inspector

The Code Inspector is a tool for checking Repository objects regarding performance, security, syntax, and adherence to name conventions.

Use

Using the Code Inspector (transaction code SCI), you can check individual objects or sets of objects for performance, security, syntax, and adherence to name conventions. You can also determine statistical information or search for certain ABAP words (tokens). In the Code Inspector, you can define inspections that, with the help of check variants, examine certain sets of objects. As the result of an inspection, you receive information messages, warning messages, or error messages on different properties of the examined objects.

Integration

You can call the Code Inspector using transaction code SCI or through the menu path SAP Menu à Tools à ABAP Workbench à Test à Code Inspector. Also, you can call the Code Inspector from the following transactions:

· ABAP Dictionary (SE11) for DDIC tables

· Class Builder (SE24) for classes and interfaces

· Function Builder (SE37) for function groups

· ABAP Editor (SE38) for programs or reports

· ABAP Workbench (SE80)

Features

The range of functions in the Code Inspector is limited to checking static object definitions and can therefore only point out certain problems.

It cannot, for example, give a precise statement as to how the overall performance of a program is. To be able to do this, you need to analyze program execution yourself at runtime – for example, using the Runtime Analysis Tool (transaction code SE30), the Performance Trace (ST05), or the Global Performance Analysis Function (ST30).

Activities

If you have not yet worked with the Code Inspector, you need to do the following:

1. Create a set of objects to determine the objects to be checked.

2. Define a check variant (or use a predefined one) in order to define the extent of objects to be checked.

3. Create and execute an inspection in order to execute the object check.

Jogdand M B