‎2005 Sep 27 9:54 PM
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 ?
‎2005 Sep 27 10:30 PM
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
‎2005 Sep 28 8:07 AM
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
‎2005 Sep 28 8:44 AM
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
‎2005 Sep 28 10:08 AM
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
‎2005 Sep 29 8:06 AM
Hello Raja,
Did the same, but at the login screen it is showing the text
ex: <DS:TRAN.YTCODE>LINK</>.
‎2005 Oct 01 6:05 AM
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
‎2005 Oct 04 6:57 AM
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
‎2009 Jan 28 9:04 AM
Hi,
did someone finally succeed in creating links on the logon screen page ?
I am facing the same issue as Mano...
Thanks in advance,