Now, we have called a webdynpro application as a URL. Now in the 2nd application, we can read the parameters that we have passed from first application.
Just code below 2 lines and then proceed further in 2nd window.
DATA: lv_param type string.
* Get the value of Order send from the Order screen
lv_param = wdr_task=>client_window->get_parameter( 'Name of the attribute' ).
CONDENSE lv_param.
Here, just pass the same name that you have passed while constructing the URL. You have to create similar node/attribute in both webdynpro component with same type.
0 comments:
Post a Comment