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

Quality Check....

Former Member
0 Likes
995

Hi frnds,

can any one explain about Quality Check in ABAP?

who will do? and what they will do? is there any tool in SAP to do this?

Regards,

Balu

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
899

The quality check in abap is the code review done and extended program syntax check and solving all the errors in the code and giving comments in the code as well as using constants instead of hardcoding .Check sy-subrc for each select statement.avoid using nested loop.avoid select statement within loop.i.e following a standard coding standard.

Hi frnds,

can any one explain about Quality Check in ABAP?

who will do? and what they will do? is there any tool in SAP to do this?

Regards,

Balu

8 REPLIES 8
Read only

Former Member
Read only

Former Member
0 Likes
900

The quality check in abap is the code review done and extended program syntax check and solving all the errors in the code and giving comments in the code as well as using constants instead of hardcoding .Check sy-subrc for each select statement.avoid using nested loop.avoid select statement within loop.i.e following a standard coding standard.

Read only

Former Member
0 Likes
899

hi,

U can do these checks.

<b>In SE38 > Program > Check > Extended program check.</b>

This is one check u can do for the program it will list out the errors u can correct teh same.

Other things u might be having some standards that needs to be followed in ur project, those checks liek PRETTY PRINTER,... etc u have to do.

reward if this helsp.

Read only

Former Member
0 Likes
899

Hi,

U can use the SLIN transaction and also go to se38 enter your program name and select in the toolbar <b>program->check->code inspector</b>

<b>program->check->extended profram check</b>

they are very effective tool

thanks

Read only

Former Member
0 Likes
899

You may use three transactions to check the quality of your program:

1) Program Extended Syntax Check (tcode: <b>SLIN</b>)

2) Runtime Analysis (tcode: <b>se30</b>)

3) Unicode Check (tcode: <b>UCCHECK</b>)

Read only

Former Member
0 Likes
899

Kindly reward if the answers helped you. Thanks.

Read only

Former Member
0 Likes
899

hi,

go to your program -> check -> code inspector..

it is better than extended check as it does extended check first and does security & other checks later.. so go for code inspector instead of extended chck..

hope it helps..

award points and close the thread

Read only

Former Member
0 Likes
899

Hi,

I think there is no tool for that.

The code check is very important.Abap consultants will do the qulatity check.find these steps.

1.check the proper documentation.

2.check all sy-subrc.

3.Avoid nested selects & loops.

4.mention key fields in where condition.

5.Always use select single star.

6.refresh internal tables.

so these are all the some steps for quality check.