cancel
Showing results for 
Search instead for 
Did you mean: 

URL for Message

Former Member
0 Kudos

Hi,

can someone help me to find out the url, which is generated by mail sending in outlook via crm_dno_monitor.

It is an BSP Application.

Example url:

http://muster.net:8000/sap/bc/bsp/sap/dswp_bsp/dsmop.html?sap-client=002&ISBSP=X&CMD=NOMI&NCMD=CRMVW...

Regards

Beserithan

Accepted Solutions (1)

Accepted Solutions (1)

Paul_Babier
Product and Topic Expert
Product and Topic Expert
0 Kudos

Hello,

Have you checked crm_bsp_max - Web Application: Send Screen (E-Mail and Fax)

/default_host/sap/bc/bsp/sap/crm_bsp_max

Hope this helps.

Regards,

Paul

Former Member
0 Kudos

Hello Paul,

thanks for your help. Your suggestion is a good alternative. But I solved it using coding below in BADI

COMPLETE_PROC_PPF

Regards

Beserithan

LOOP AT lt_mail_recipient_tab INTO ls_mail_recipient.

  • ------------call processing method----------------------------

TRY.

CALL METHOD (lv_proc_class)=>(lv_proc_meth)

EXPORTING

  • is_archive_index = archive_index

is_archive_parameters = ls_archive_parameters

is_control_parameters = ls_control_parameters

is_output_options = ls_output_options

io_appl_object = lref_appl

ip_smart_form = lv_smart_form

io_partner = lref_partner

ip_user_settings = lv_user_settings

is_mail_recipient = ls_mail_recipient-recipient

is_mail_sender = ls_mail_sender

ip_application_log = IP_PROTOCOL

IMPORTING es_document_output_info = ls_document_output_info

es_job_output_info = ls_job_output_info

es_job_output_options = ls_job_output_options

et_error_tab = lt_error_tab

CHANGING ct_archive_index_tab = lt_archive_index

Answers (1)

Answers (1)

Former Member
0 Kudos

solved by myself.