cancel
Showing results for 
Search instead for 
Did you mean: 

To get the value from ON_CLICK Event in ALV

Former Member
0 Kudos

Hi Experts,

In ON_CLICK event of ALV, I need to get the value of the cell clicked.

The Parameter R_PARAM has a attribute of type DATA (ABAP Predefined Type). I need to use this value in an function module to extract data. Because its of DATA type I cant compare with table fields.

Is there any way I cant do this.

Your suggestions will be appreciated.

Thanks...

Accepted Solutions (1)

Accepted Solutions (1)

Yashpal
Active Contributor
0 Kudos

Hi ,

declare a field symbol of type any

data : <fs> type any .

assign r_param->value->* to <fs> .

now using <fs> u can compare with fields .

Regards

Yash

Former Member
0 Kudos

Thanks Yash, I got that working.....

Answers (0)