Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Hyper link

Former Member
0 Likes
828

Hello ,

Can i have a Hyperlink in Login Screen?

I understand i can maintain my own text at SAP GUI login screen.

I would like to give a link , when clicked on it can it take it to corresponding link ?

8 REPLIES 8
Read only

Former Member
0 Likes
784

You can use a webdynpro for that. If you point it to an random www-address you will get an new window with an error but the content of the URL. OK, not formatted but the content.

Matthias Kabel

Read only

athavanraja
Active Contributor
0 Likes
784

its basically a standard text. as far as i know you cannot have HTTP links. we explored to do this but couldnt come up with a solution so far.

<i><b>I understand i can maintain my own text at SAP GUI login screen</b></i>

you are right, you can do this. there is a OSS note available explaining how to do this. dont remeber the number right now. if youwant i can search for the number.

Regards

Raja

Read only

0 Likes
784

Hi,

I am able to maintain text it is not an issue, my concern is to have link so taht one can click and go the respective pages.

Rgds,

Mano sri

Read only

0 Likes
784

work around

create a program with a following code

report y_test .
CALL FUNCTION 'CALL_BROWSER'
 EXPORTING
   URL                          = 'http://www.google.com '
*   WINDOW_NAME                  = ' '
*   NEW_WINDOW                   = ' '
*   BROWSER_TYPE                 = BROWSER_TYPE
*   CONTEXTSTRING                = CONTEXTSTRING
* EXCEPTIONS
*   FRONTEND_NOT_SUPPORTED       = 1
*   FRONTEND_ERROR               = 2
*   PROG_NOT_FOUND               = 3
*   NO_BATCH                     = 4
*   UNSPECIFIED_ERROR            = 5
*   OTHERS                       = 6
          .
IF sy-subrc <> 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.

assign a transaction code to this program for example YTCODE.

now in the text editor go to insert link->

choose document class Transaction Link and in the next field end the transaction code and in the Name in document field enter the text for the link.

Regards

Raja

Read only

0 Likes
784

Hello Raja,

Did the same, but at the login screen it is showing the text

ex: <DS:TRAN.YTCODE>LINK</>.

Read only

0 Likes
784

there should be something wrong. because the format of the link should be

<DS:TRAN.YTCODE>LINK and not with

<DS:TRAN.YTCODE>LINK</> and i guess that the reason that the system is not able to intepret it. to confirm this try just adding a link as explained to the program documentation and see whether you get the same problem.

Regards

Raja

Read only

0 Likes
784

Hello Raja,

Editor itself throws an error if we dont give the end of link ie </>, id id try that too but no luck!

One more intresting thing is i choose Document Class

as Link to transaction and skip first screen and give the same link.

it looks like this <DS:TRAS.ZCODE>code</> and try to see the Preview (Screen Output) It works fine and navigates me to the desired link.

However when i try open login login screen shows only

<DS:TRAS.ZCODE>code</> this as text, do i need to change any settinsg to get the login screen as different screen output (Like a web or something?)

Rgds,

Mano Sri

Read only

Former Member
0 Likes
784

Hi,

did someone finally succeed in creating links on the logon screen page ?

I am facing the same issue as Mano...

Thanks in advance,