cancel
Showing results for 
Search instead for 
Did you mean: 

sap transaction iview in web dynpro

Former Member
0 Kudos

hi,

can u plzz tell me how to call a sap transaction iveiw in web dynpro abap?

thanks,

krishna

Accepted Solutions (0)

Answers (2)

Answers (2)

arjun_thakur
Active Contributor
0 Kudos

hi,

create a sap transaction iview with transaction SMEN.

Former Member
0 Kudos

Hi Rama,

To call any iView from Web Dynpro,

Call method navigate_absolute of IF_WD_PORTAL_INTEGRATION.

You can use wizard to do this: In wizard select the radio button Portal Integration and select method navigate_absolute.

In navigation_target parameter provide the pcd location of transaction iView:

eg 'ROLES://portal_content/ABC.HR.ESS/ABC.HR.IViews/ABC.HR.transaction'



  CALL METHOD l_portal_manager->navigate_absolute
    EXPORTING
      navigation_target   = 'ROLES://portal_content/ABC.HR.ESS/ABC.HR.IViews/ABC.HR.tran_iview'
*     navigation_mode  = if_wd_portal_integration=>co_show_external_portal
      navigation_mode   = if_wd_portal_integration=>co_show_external
      window_features   = 'toolbar=no,resizable=yes,top=0,left=0,width=1000,height=1000'
*     window_name      =
*     history_mode      = if_wd_portal_integration=>co_no_duplicates
*     target_title        =
*     context_url         =
*     post_parameters     = abap_false
*     use_sap_launcher    = abap_true
      business_parameters = lt_business_parameters
*     launcher_parameters =
      .