cancel
Showing results for 
Search instead for 
Did you mean: 

Unable to selelct a Row in ABAP Webdynpro ALV table

nagendran_r2
Explorer
0 Kudos

Hi,

I have a ALV Table in webdynpro and I need to choose a Row in that table. But the table is not allowing me to choose the row.

Row_selectable is at 'X'.

Row selection type is at 8.

Still.. the grid looks like it is in display mode..

pls help

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi

You explicitly need to make the table editable.

DATA lo_table_setings TYPE REF TO if_salv_wd_table_settings.

lo_table = lo_interfacecontroller->get_model( ).

lo_field_settings ?= lo_table.

lo_table_setings->set_cell_action_event_enabled( value = abap_true ).

lo_table_setings->set_read_only( value = abap_false ).

lo_table_setings->set_enabled( value = abap_true ).

have u written thse lines in ur code??

Regards,

Arvind

Answers (3)

Answers (3)

nagendran_r2
Explorer
0 Kudos

Hi

Thnaks for all, also poi nts rearded.

I have a code for alv table in wddomodify.

this was preventing me from choosong a row.

Its working fine now..

Thnaks

Nags

Closed...

Former Member
0 Kudos

Hi,

maybe stupid question, but do you have any data in your table?

Regards Jiri

Former Member
0 Kudos

Hi,

Are you using used component SALV_WD_TABLE ??

Becasue when you use this and display the table it should automatically

let you select the row of the table.

If not this may i know what is the exact requirement.

Regards and Best wishes.