cancel
Showing results for 
Search instead for 
Did you mean: 

Dynmic Table With POPIN Feature

Former Member
0 Kudos

Hi All,

I had a requirement like details of lab data in a dynamic table with pop in feature . if we click the values in the table the Graph will be displayed in that POP IN for the clicked Row Data.

I have created the dynamic table. But Form here i am not able to continue. Please Guide me to continue furthur.

Created the Table with below Code.

CL_WD_DYNAMIC_TOOL=>CREATE_TABLE_FROM_NODE(

     UI_PARENT = L_ROOT

     TABLE_ID   = 'MY_TABLE'

     NODE         = L_NODE

     ).

Regards,

Venkatesh

Accepted Solutions (1)

Accepted Solutions (1)

former_member185241
Active Participant
0 Kudos

Go through link

http://scn.sap.com/thread/334102

Thanks

abhishek

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi All,

After Creating the Dynamic Table in WDMODIFYVIEW  Method how can i add Toggle Cell and POP IN Functionality to that Table..

     L_ROOT ?= VIEW->GET_ROOT_ELEMENT( ).

     L_NODE = WD_CONTEXT->GET_CHILD_NODE( 'MY_NODE' ).

     L_TABLE = CL_WD_DYNAMIC_TOOL=>CREATE_TABLE_FROM_NODE(

                                   UI_PARENT = L_ROOT

                                   TABLE_ID  = 'MY_TABLE'

                                   NODE      = L_NODE ).

Using the Above code I have created the Dynamic Table. After that I am trying to add Toggle cell and POP IN Functionality. But i am unable to complete. Please suggest.

Regards,

Venkatesh