Hi Experts,
I created 1 Dynamic Table in WDA, it is working fine.
Now my requirement is I need to make columns of this dynamic table editable.
Please guide me how I can achieve this.
my WDDOMODIFYVIEW code as follows
data : l_root TYPE REF TO cl_wd_uielement_container,
l_node TYPE REF TO if_wd_context_node,
l_table TYPE REF TO cl_wd_table.
if first_time = abap_true.
l_root ?= view->get_root_element( ).
l_node = wd_context->get_child_node( 'MY_NODE' ).
cl_wd_dynamic_tool=>create_table_from_node(
EXPORTING
ui_parent = l_root " UI Container in which Table Is to Be Located
table_id = 'MY_TABLE' " Table ID
node = l_node " Reference to the context node
).
endif.
-Regards
Rohit