2007 Jul 19 1:18 PM
2007 Jul 19 1:19 PM
2007 Jul 19 1:20 PM
hi
For Materials:
1) http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCABA/BCABA.pdf -- Page no: 1291
2) http://esnips.com/doc/5c65b0dd-eddf-4512-8e32-ecd26735f0f2/prefinalppt.ppt
3) http://esnips.com/doc/2c76dc57-e74a-4539-a20e-29383317e804/OO-abap.pdf
4) http://esnips.com/doc/0ef39d4b-586a-4637-abbb-e4f69d2d9307/SAP-CONTROLS-WORKSHOP.pdf
5) http://esnips.com/doc/92be4457-1b6e-4061-92e5-8e4b3a6e3239/Object-Oriented-ABAP.ppt
6) http://esnips.com/doc/448e8302-68b1-4046-9fef-8fa8808caee0/abap-objects-by-helen.pdf
7) http://esnips.com/doc/39fdc647-1aed-4b40-a476-4d3042b6ec28/class_builder.ppt
😎 http://www.amazon.com/gp/explorer/0201750805/2/ref=pd_lpo_ase/102-9378020-8749710?ie=UTF8
1) http://www.erpgenie.com/sap/abap/OO/index.htm
2) http://help.sap.com/saphelp_nw04/helpdata/en/ce/b518b6513611d194a50000e8353423/frameset.htm
regards
ravish
<b>reward if useful</b>
2007 Jul 19 1:34 PM
Hi,
Hi,
LOOP: looop will read each and evry record in the inetrnal table.
Loop doesnt return Sy-subrc value.
READ : statement will read only single record at at time and not more than that.
Read statement will return Sy-subrc value.
if we want to compare 2 internal tables (itab1 & itab2) then we will loop one internal table and read another internal table.
ex: loop at itab1 into w_itab1.
read table itab2 into e_iatb2 with key f1 = w_itab1-f1.
If sy-subrc = 0.
....
....logic...
endif.
endloop.
Regards