cancel
Showing results for 
Search instead for 
Did you mean: 

WDR_TEST_DYN_ALV_USAGE

Former Member
0 Kudos

The code below, which displays the salv_table refers to a

source plug "TO_ALV". I don't see that outbound plug

in the main view. Where is it?

l_api->do_dynamic_navigation(

source_window_name = 'WDR_TEST_DYNAMIC_ALV'

source_vusage_name = 'MAIN_USAGE_0'

source_plug_name = 'TO_ALV'

target_component_name = 'SALV_WD_TABLE'

target_component_usage = 'ALV_USAGE'

target_view_name = 'TABLE'

target_plug_name = 'DEFAULT'

target_embedding_position = 'MAIN/CONTAINER1' ).

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

hi ,

check out this useful LInkk: [Using ALV with a Dynamic Context Node |http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/4c70444a-0801-0010-7688-9e4bd844b783;jsessionid=(J2EE3417500)ID0760433950DB01834415776278035436End]

regarding the dynamic context node and map to alv.

u dont see tht outbound plug , because the method is creating it dynamically

this is useful when u wish to fire to a set of views at runtime , u r creating the outbound plug for the same dynamically

check out the link , It wud solve ur query.

also refer Link:/people/roger.sainsbury/blog/2008/02/01/practical-tips-for-developing-with-abap-webdynpro , for further illustration

regards,

amit

Answers (1)

Answers (1)

Former Member
0 Kudos

The method l_api->do_dynamic_navigation creates the ALV usage and the navigation links dynamically. You can try to make a copy and change the plug name 'TO_ALV' to 'TO_ALV123'. It should work fine too.