cancel
Showing results for 
Search instead for 
Did you mean: 

open a quotation via url

Former Member
0 Kudos

hi expert,

i'm working on SRM 4.0 and i'm handling with electronic bid invitation.

The system send automatically an email to the buyer when a bidder send his own bid.

i'm trying to insert in the email body a direct link to the specified bid.

Is it possible for you ?

i was trying to compose the url link: https://..../sap/bc/gui/sap/its/bbp_quot?sap-language=EN&sap-accessibility=X&;okcode=SEL_YOUR_DISPLAY&target=_top&sap-client=810&gs_global-quot_sel_guid=-----

but i didn't have success yet !!

Help!!

Regards

Fabrizio Gemma

Accepted Solutions (0)

Answers (1)

Answers (1)

robin_janke
Contributor
0 Kudos

Hi Fabrizio,

I don't have access to a SRM 4.0 system, but I guess you could try the following, using the below parameters:

https://..../sap/bc/gui/sap/its/bbp_quot?sap-language=EN&sap-accessibility=X&~target=_top&sap-client...;

Or you could use the BID_GUID one.

All URL parameters for bbp_quot are in LBBP_QUOT_UI_ITSF33 (in SRM 5.0)


* Get URL parameter from ITS
* ... Quotation ID (for SUS scenario)
  field-get 'QUOT_ID'     1 lt_quot_id     lv_datalength.

* ... Quotation GUID (for SUS scenario)
  field-get 'QUOT_GUID'   1 lt_quot_guid   lv_datalength.

* ... Return URL (for SUS scenario)
  field-get 'RETURN_URL'  1 lt_return_url  lv_datalength.

* ... Return button text (for SUS scenario)
  field-get 'RETURN_TEXT' 1 lt_return_text lv_datalength.

*... Bid Guid (e-mail scenario)
  field-get 'BID_GUID'    1 lt_bid_guid    lv_datalength.

*... Auction Guid (e-mail scenario)
  field-get 'AUC_GUID'    1 lt_auc_guid    lv_datalength.
*{   INSERT         LSRK000145                                        2
*... Bidder ID (bid on behalf)
  field-get 'BIDDER_ID'    1 lt_bidder_id  lv_datalength.

*... Contact ID (bid on behalf)
  field-get 'CONTACT_ID'   1 lt_contact_id lv_datalength.

*... OKCode
  field-get 'OkCode'       1 lt_okcode lv_datalength.

Regards,

Robin