cancel
Showing results for 
Search instead for 
Did you mean: 

Change URL in rejection notification email

Former Member
0 Kudos

Hi Experts,

My requirement is then when a shopping cart is rejected, i want to change the URL in the rejection email so that the requisitioner can directly open the shopping cart in Change mode after login.

I tried using the BBP_ALERTING and I am able to change the URL.

The issue here is i am not able to generate the URL that will open the Shopping cart directly in change mode.(BBPSC13)

I have also tried using FM BBP_PDH_GET_SERVICE_LINK for generating the URL, but dint work.

Any inputs???

BR,

Aarvi.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Aarvi,

Try with the following

Fill the parameters table with parname = '~OkCode' and parvalue = 'SC_EDIT' or '=SC_EDIT', try both

CALL FUNCTION 'BBP_PDH_GET_SERVICE_LINK'

EXPORTING

iv_object_type = 'BUS2121'

iv_header_guid = SC_HEADER_GUID

iv_scenario = ''

iv_service = 'BBPSC14'

iv_call_from_external = 'X'

IMPORTING

ev_url = e_url

TABLES

IT_PARAMETERS = it_parameters

The parameters change depending on the SRM version, check it.

Also you can use the funcion BBP_PDEXT_GET_URL instead of this one.

Hope this helps!

Regards,

Nicolás.-

Answers (0)