‎2008 Feb 29 6:07 AM
1. example of cluster table how you implement in your prg?
2. how to 1/5,2/5,3/5 ..... in report prg?
3. can we update database table in your report prg ? how?
4. help me in knowing ooalv reprt concepts?
5.when we use "STOP" event in Start of selection events if ... stop... endif. ?
6. desc hash table?
‎2008 Feb 29 6:20 AM
4. help me in knowing ooalv reprt concepts?
An excellent introduction is the following document:
You will find plenty of sample reports in the reuse library (transaction SE83) and in the Development Workbench Demos (transaction DWDM).
check out any example program starting with BCALV*
You can refer these documents also.
http://esnips.com/doc/b708766f-a934-42a1-8064-c4de75b48fc4/Sample-Program-of-alv-using-oops.ppt
http://esnips.com/doc/a2e42503-cf0f-4418-94ee-580f5900a81f/alv-with-oop.doc
http://esnips.com/doc/2d953590-e8c5-490c-a607-d1ab7cf517d7/ALV.pdf
Regards
‎2008 Feb 29 6:21 AM
hi,
1)report z_cluster_15379.
include rpc1tx00.
include rpppxd00.
data: begin of common part buffer.
include rpppxd10.
data: end of common part buffer.
tables: pernr, pcl1, pcl2.
infotypes: 0016.
get pernr.
rp_provide_from_last p0016 space pn-begda pn-endda.
move-corresponding p0016 to tx-key.
rp-imp-c1-tx.
write: / pernr-pernr.
if sy-subrc = 0.
loop at ptext.
write: / ptext-line.
endloop.
endif.
5)STOP
Exits a reporting event.
Syntax
STOP.
Can only occur in event blocks for reporting events. Leaves the block and jumps to END-OF-SELECTION.
hope this helps u,
Regards,
Arunsri
end-of-selection.
include rpppxm00.