cancel
Showing results for 
Search instead for 
Did you mean: 

Calling a transaction in Portal

Former Member
0 Kudos

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

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Refer the SAP Online help :

http://help.sap.com/saphelp_nw70/helpdata/EN/a5/b8fa41c915da6fe10000000a1550b0/frameset.htm

I hope it helps you.

Thanx.

Saurav.

Answers (0)