Application Development 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: 

break-pint

Former Member
0 Kudos
193

hi experts,

what is hard break-point.

1 ACCEPTED SOLUTION

Former Member
0 Kudos
129

in Earlier ver the only way to go to debugger mode was to start the prog in debugger mode or .. place a hard coded break-point (very rarely used or not recommended).. but now a day we have a soft break which we place just by pressing RED STOP Button on the application tool bar...

Difference bet both breakpoints

Soft break point are user specific.. that means break points place by you is not valid / visiable to others.

Soft break point are Session specific.. i.e once place they will be active will the time u r log on. they are invalidated or removed as soon as u log off..

just disadvantages u can remove by using hardcoded breakpoint.. but remember they are also transported as a part of code. so be aware..

also go through tcode SAAB.. to enable u to break at hard coded break point

No rewards Plz..

4 REPLIES 4

Former Member
0 Kudos
129

Hi,

If you write "BREAK-POINT" in your prog or set break-point in prog this is called hard brack point.

Former Member
0 Kudos
129

Hi Hemanth,

There are two types of break-points. Soft & Hard.

Soft break points can be set on a particular line of code by keeping cursor on that line and pressing the STOP push button on the toolbar. This break point is active only for that screen.

Hard break point is created by putting a statement BREAK-POINT in the code. because of this, every time u execute the program, when ever the control comes to this break point it goes to dubugging mode.

Hope this info is helpful to u

Reward if usefull..

gokul.

Former Member
0 Kudos
130

in Earlier ver the only way to go to debugger mode was to start the prog in debugger mode or .. place a hard coded break-point (very rarely used or not recommended).. but now a day we have a soft break which we place just by pressing RED STOP Button on the application tool bar...

Difference bet both breakpoints

Soft break point are user specific.. that means break points place by you is not valid / visiable to others.

Soft break point are Session specific.. i.e once place they will be active will the time u r log on. they are invalidated or removed as soon as u log off..

just disadvantages u can remove by using hardcoded breakpoint.. but remember they are also transported as a part of code. so be aware..

also go through tcode SAAB.. to enable u to break at hard coded break point

No rewards Plz..

0 Kudos
129

hi,

There are two types of break-points. Soft & Hard.

Soft break points can be set on a particular line of code by keeping cursor on that line and pressing the STOP push button on the toolbar. This break point is active only for that screen.

Hard break point is created by putting a statement BREAK-POINT in the code. because of this, every time u execute the program, when ever the control comes to this break point it goes to dubugging mode.

Senthil kumar