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

AT LINE SELECTION FOR STANDARD CLASSES

Former Member
0 Likes
451

hi...im developing a report in which i used CL_DOPR_WRITER class to create a table..how can i write AT LINE SELECTION EVENT for this class.

hi...im developing a report in which i used CL_DOPR_WRITER class to create a table..how can i write AT LINE SELECTION EVENT for this class.

2 REPLIES 2
Read only

Former Member
0 Likes
415

HI BRO....

'at line-selection' is meant to be written as a part of report .

so you can create a reference to this class

data: r_ref type ref to CL_DOPR_WRITER.

and if you have to use it for this class only if when user go for double click then go for it in 'AT LINE-SELECTION' event.

Read only

0 Likes
415

follow this in your code:

AT LINE-SELECTION.

PERFORM F1.

<<<<f1

form f1.

if you want to call any static attribute or method just do

CL_DOPR_WRITER=>method or parameter

but if you want to access pubic method or att

ref type refrence of CL_DOPR_WRITER

call method ref->your method

endform.