Skip to Content
0
Former Member
Sep 07, 2009 at 12:59 PM

Call SAP Transaction iView from WDA

40 Views

Dear All,

**************************************************************************************

I'm using the following Code, but it does not popup the required iView.

data lr_componentcontroller type ref to ig_componentcontroller .

data l_api_componentcontroller type ref to if_wd_component.

data lr_port_manager type ref to if_wd_portal_integration.

lr_componentcontroller = wd_this->get_componentcontroller_ctr( ).

l_api_componentcontroller = lr_componentcontroller->wd_get_api( ).

lr_port_manager = l_api_componentcontroller->get_portal_manager( ).

Data: target type string.

Data: nmode type string.

target = 'pcd:portal_content/RBIW03'.

nmode = 'INPLACE'.

call method lr_port_manager->navigate_absolute

exporting

NAVIGATION_MODE = nmode

navigation_target = target .

*****************************************************************

P.S : This iView calls SAP Transaction RRMXP that opens a BIQuery / Workbook in BeX Analyser using Excel.

Any help would be highly appreciated.

Thankx in advance.

Regds,

Srini