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

hi...

Former Member
0 Likes
360

hi abap gurus...

1.What happens if I use control break statement in between select & endselect?

2.What is lock Object?

3.What is stack?

2 REPLIES 2
Read only

Former Member
0 Likes
343

1) short dump occurs

3) stack: in debigging mode a parameter which gives all the events upto the current break-point..

Read only

ferry_lianto
Active Contributor
0 Likes
343

Hi,

1.What happens if I use control break statement in between select & endselect?

You will get system dump. You can use control break with LOOP statement.

2.What is lock Object?

Lock objects are used to lock the database table while making the modifications on the database table.

You can create your own lock objects using SE11.

If you create lock objects on any table system will create two function modules.

1. ENQUEUE ... (Lock table)

2. DEQUEUE .... (Unlock table)

3.What is stack?

What are you referring to? ABAP stack?

Regards,

Ferry Lianto