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

Interview Questions:

Former Member
0 Likes
465

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?

2 REPLIES 2
Read only

Former Member
0 Likes
393

4. help me in knowing ooalv reprt concepts?

An excellent introduction is the following document:

https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/e8a1d690-0201-0010-b7ad-d97...

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

Read only

Former Member
0 Likes
393

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.

4)

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.

6)

hope this helps u,

Regards,

Arunsri

end-of-selection.

include rpppxm00.