cancel
Showing results for 
Search instead for 
Did you mean: 

hyperlink in outlook

Former Member
0 Kudos

Hi All,

I have a hyperlink in my email that will be sent to outlook via workflow. Our SAPconnet has not been configured yet so I am just checking the email in SOST. The hyperlink works in SOST, but I am wondering if this will work in outlook. Will it open a SAP screen and ask for login? Or if I am already logged in, will it automatically open the tcode? I am currently using the code below:

'<A HREF="sap-object://CUST_TRAN ZME55 EBAN-BANFN=20000177">Click here to go to ZME55</A>'

I've come across this thread http://scn.sap.com/message/11075273

It says that ' A hyperlink is used to open SAPGUI for HTML. To open SAPGUI for WINDOWS requires a shortcut attachment because it is not web-based it is based on a client application,i.e. SAP Logon.'

My client's requirement is a hyperlink. Is it still possible to open the hyperlink (SAPGUI for HTML) even if I am not using Extended Notification?

Regards,

Steph

Message was edited by: Steph Quion

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Thread closed. Answered in link below.

http://scn.sap.com/thread/3427843

Answers (2)

Answers (2)

Former Member
0 Kudos
former_member194364
Active Contributor
0 Kudos

Hi Steph,

Is the following WIKI of any help? to pass the parameters to the WEBGUI service.

How to prefill fields and skip first screen with webgui?

Regards,

Oisin

0 Kudos
Former Member
0 Kudos

Hi Srini,

Thank you so much for this very helpful link. One last thing, I am trying to include parameters so when I click the hyperlink, default values will be placed in the tcode. I tried putting values in the GUI Parameters in SICF but it doesn't work. It call the transaction code but the default values were not transferred.

Below is my code:

val = 'BC'.

CALL METHOD cl_http_server=>append_field_url      "Release Code

   EXPORTING

     name  = 'T161F-FRGAB'

     value = val

   CHANGING

     url   = g_url.

Regards,

Steph