cancel
Showing results for 
Search instead for 
Did you mean: 

Making a field in ALV as display only in FPM

Former Member
0 Kudos

Hi ,

I have a requirement where in I need to make a field(which is a dropdown) in ALV as read-only field in one of the webdynpro application(WDC_WSGM_GR) called in FPM_OIF_COMPONENT.

Can somebody help me find the place/method where we can make this change as i am new to FPM concept.

Thank you.

Regards,

Soumya

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

This is related to WebDynpro ABAP, you would have got more response if you have posted this in WebDynpro ABAP forum.

See in WDC_WSGM_GR, if there is any method called Configure_ALV or something like that to initialize the ALV.

Follow this blog [/people/steffen.weber/blog/2009/01/15/dropdown-boxes-in-alv-in-webdynpro-for-abap|/people/steffen.weber/blog/2009/01/15/dropdown-boxes-in-alv-in-webdynpro-for-abap]

There may be something like this in your coding

lt_columns = lr_column_settings->get_columns( ).
LOOP AT lt_columns ASSIGNING .
IF -id = 'PLANETYPE'.
CREATE OBJECT lr_dropdown_key
EXPORTING
selected_key_fieldname = 'PLANETYPE'.

"Introduce here 

 lr_dropdown_key->set_read_only( abap_false ).

r_column->set_cell_editor( lr_dropdown_key ).