‎2007 May 31 12:11 PM
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?
‎2007 May 31 6:57 PM
1) short dump occurs
3) stack: in debigging mode a parameter which gives all the events upto the current break-point..
‎2007 May 31 7:07 PM
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