cancel
Showing results for 
Search instead for 
Did you mean: 

hyper link to intranet from within SAPScript text via se61

Former Member
0 Kudos

Hello,

Does anyone know how to integrate a link to external website or intranet site from within the text maintained via t-code se61

I want to use document class general text.

I also want to see if we can create a link via standard text.

Thanks in advance

Vivek

Accepted Solutions (0)

Answers (3)

Answers (3)

former_member954801
Participant
0 Kudos

No , Can you please help in this, even iam in need of the same.

Former Member
0 Kudos

is this question answered or not?

Former Member
0 Kudos

Hi Vivek,

links like this already exist in the ABAP keyword documentation by Horst Keller. You probably know his ABAP books. Take, for example, transaction ABAPHELP, type in XML and choose glossary entry and enter. In the glossary entry you can find an external link.

This is the form of the link:

<DS:REPO.WWW_XML><SE><a href="www.w3.org/XML/" TARGET="test_blank">www.w3.org/XML/</a></></>.

To do this sort of link, you need a workaround. You need to create a program like this for each link:

REPORT  WWW_XML.

CALL FUNCTION 'CALL_BROWSER'
  EXPORTING
    URL                          = 'http://www.w3.org/XML/' "#EC NOTEXT
 EXCEPTIONS
   FRONTEND_NOT_SUPPORTED       = 1
   FRONTEND_ERROR               = 2
   PROG_NOT_FOUND               = 3
   NO_BATCH                     = 4
   UNSPECIFIED_ERROR            = 5
   OTHERS                       = 6.

IF sy-subrc <> 0.
  return.
ENDIF.

Regards, Heidi

Former Member
0 Kudos

Thanks Heidi,

I tried similar thing. I used the SAP delivered function module 'RSDEMO_HTML_VIEWER' and cerated a t-code for it and used url as PID.

I have a requirement where I would need to refer to QAP on our intranet and is by material.

So creating so many reports is not feasible.

Do you know of anyway to pass the 'PID' to link.

Once again thanks a lot for your reply.

Regards

Vivek