Skip to Content
0
Former Member
May 25, 2009 at 06:12 AM

Calling Transactional IVIEW

29 Views

Hi ,

Created a Transactional Iview for Custom Tcode.In portal as well i was able to look into the preview of the transaction code.

I used the follwing code to navigate this Transactional IView in the ABAP WEBDYNP which is been linked to an action button .There is no view or dump comming up when i hit the button .

The code is as below for navigation :

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.

target = 'pcd:portal_content/com.rc.folder.support_development/com.rc.folder.service_requests/com.rc.iview.empl_certificate'.

call method lr_port_manager->navigate_absolute

exporting

navigation_target = target .

I am getting Wait Message if I give as sepcified above, and if add 'Roles://' to the starting of target String (PCD Path) its not showing me anything.

Just wondering what else i was missing ..any suggestion would be helpfull..

Regards,

Manohar