Hi Guys,
I am calling a transaction in portal from WebDynpro.
Here is my code.
MOVE 'OkCode' TO param-key.
MOVE '/00' TO param-value.
APPEND param TO lparams.
MOVE 'TCode' TO param-key.
MOVE 'MIR4' TO param-value.
APPEND param TO lparams.
MOVE 'RBKP-BELNR' TO param-key.
MOVE stru_invoice-belnr TO param-value.
APPEND param TO bparams.
MOVE 'RBKP-GJAHR' TO param-key.
MOVE stru_invoice-gjahr TO param-value.
APPEND param TO bparams.
CALL METHOD l_portal_manager->navigate_absolute
EXPORTING
navigation_target = 'pcd:portal_content/com.cso.Prototype/com.cso.Page/SAPWebGUI/sap_transaction_html_gui'
navigation_mode = if_wd_portal_integration=>co_show_external
WINDOW_FEATURES = 'TOOLBAR=FALSE,LOCATION=FALSE,RESIZABLE'
business_parameters = bparams
launcher_parameters = lparams.
I seen in the forum that it need to create a transactional iView to acheive this.
In that case, do I still have to provide launcher_parameters in the FM. If not whats the use of launcher_parameters.
Thanks