cancel
Showing results for 
Search instead for 
Did you mean: 

Webdynpro ALV with input ready fields

Former Member
0 Kudos

Hello folks,

having some years experience as ABAP developer I currently try a little bit around with WebDynpro for ABAP. Definatly nice but completly new to me.

I try to figure out what this stuff can actually do in comparision to the old Dynpro technology.

Maybe its not the easiest way to get started but I tried to create a ALV which is enabled for input. At least two particular columns should be ready for input, one with selection help and one for free text (80 characters), so the user can enter some data and save later on.

Is this (ready for input ALV) supported by Webdynpro? I somehow did not found a way to develop some kind of stuff like this. I only managed to display a "normal" ALV without the option to enter data.

Would be great if you can give me some hint

Regards, henrik

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hope the code snipet below help.

Basically what you need would be the class cl_salv_wd_uie_input_field....and the rest could be figured out.

Data: lr_input_1 TYPE REF TO cl_salv_wd_uie_input_field,

CREATE OBJECT lr_input_1 EXPORTING value_fieldname = 'ZZFROM'.

  • lr_header->set_text( 'Flight From' ).

lr_header->set_text( 'Fr' ).

lr_column->set_position( 1 ).

lr_column->set_cell_editor( lr_input_1 ).

Let me know you need more help on this..i'm working something like this at the moment.

Thanks,

Vinodman Nair

Answers (0)