cancel
Showing results for 
Search instead for 
Did you mean: 

Problem With ALV component. at WDP

Former Member
0 Kudos

HI Expert,

I need some help regarding ALV component. I have create an WDP component which is dynamically creating node and from that node, i am populating the data into a the ALV component.

But this component is coming as Display mode. I want to change the data of ALV display and want to save it. I also want to use the in-build functions of the ALV's. Could anyone please help me out with some of the examples.

Thanks in advance.

Regards

Satrajit

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

HI All,

With addition to that, Can any one provide a detail list of ALV function group, or any link regarding this.

Thanks in Advance

Regards

Satrajit

Former Member
0 Kudos

HI Experts,

I have done this following coding. But the problem i am facing is, the ALV is coming as Disable & read-only more. So it is not allowing me to insert data over here. Can any one tell me the some idea regarding this.

thanks in advance.

Regards

Satrajit.


   DATA: l_ref_interfacecontroller TYPE REF TO iwci_salv_wd_table .

    l_ref_interfacecontroller = wd_this->wd_cpifc_alv( ).

    DATA: l_value TYPE REF TO cl_salv_wd_config_table.
    l_value = l_ref_interfacecontroller->get_model( ).

    DATA: lr_table_settings TYPE REF TO if_salv_wd_table_settings.
    lr_table_settings ?= l_value.
    lr_table_settings->set_read_only( abap_false ).

Former Member
0 Kudos

Hi,

Your ALV is coming as read only as basic cell editor that is set by default for ALV cell is TextView.

You need to change it to input field.

Follow the following article on how to do this:

http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/d0155eb5-b6ce-2b10-3195-d9704982d...

Regards

Manas Dua

Former Member
0 Kudos

Many many thanks Thanks For the link what you have provided . I hope now i can manage myself.

Thanks a lot.

Regards

Satrajit