cancel
Showing results for 
Search instead for 
Did you mean: 

URL navigate directly to Shopping Cart screen in SRM 7.0 in IE.

Former Member
0 Kudos

Hello guys

Now I develop one application to show shopping cart infomation. when user click SC number, open new window to show SC detail.

I find shopping cart web dynpro component and build url like this

HTTP://xxxxx:8000/sap/bc/webdynpro/sapsrm/wda_l_fpm_oif?sap-wd-configId=/SAPSRM/WDAC_I_FPM_OIF_SC_PR...

I get error "Application was terminated; you can close the window".

Why it happened? I set CONFIGURATION ID and needed application parameters.

Any one colud provide solution?

Thks.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi , Try below code to get the URL for shopping cart

CALL METHOD /sapsrm/cl_url_service=>insert_boid_url_parameter

EXPORTING

iv_boid = lv_guid_str

CHANGING

ct_url_params = lt_params.

CALL METHOD /sapsrm/cl_url_service=>get_url

EXPORTING

iv_bo_type = 'BUS2121'

iv_url_scope = 'INT' "#EC NOTEXT

it_url_params = lt_params

RECEIVING

rv_url = ev_url.

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

I do not know how your application being constructed. This error suggest me that the current application is exited. Is that possible that you have fired a exit plug ?.