cancel
Showing results for 
Search instead for 
Did you mean: 

Is our WD Application opens from email?

Former Member
0 Kudos

Hi All,

I have one application, this application should also be able to be opened from a hyperlink in an email. Client should be able to send an email to employees with a link so that by clicking the embedded link the employee (recipient) should be able to open this application for him / her. Is our wd application(URL) link opens from mail? how to link this to email? is it possible? how to do this? help please..

Thanks and Regards,

kris.

Accepted Solutions (0)

Answers (2)

Answers (2)

Madhu2004
Active Contributor
0 Kudos

HI,

When you embed a WD URL in the mail It will work only if the recipient tries to open the link form the same network backbone in which the system exists.

Madhu

ChrisPaine
Active Contributor
0 Kudos

Class cl_wd_utilities method construct_wd_url

e.g.



 call method cl_wd_utilities=>construct_wd_url
      exporting
        application_name = c_employee_quals
      importing
        out_absolute_url = l_url.

    concatenate l_url '?sap-client=' sy-mandt
                      '&sap-language=' sy-langu
                      '&PERNR=' ls_data-pernr
                   into l_url.

NB there are better and safer methods for adding parameters to URL.