cancel
Showing results for 
Search instead for 
Did you mean: 

Caption on logon screen in SRM 5.0!!

Former Member
0 Kudos

Hi,

We want to display a caption on the SRM 5.0 screen in the header area. The caption will be "Welcome, USER-NAME". We are trying to change the HTML Template to get this output. However, since I do not know HTML codes, I dont know how to dynamically get the current user name on the screen.

Please help with your suggestions.

Regards

Rajeev

Accepted Solutions (0)

Answers (1)

Answers (1)

athavanraja
Active Contributor
0 Kudos
Former Member
0 Kudos

Hi Durairaj,

How do I use the parameter? Do I have to just activate it or have to use it somewhere? If I have to use it then just the inclusion in the ITS template enough? Please advise.

I am new to Integrated ITS hence dont know much.

Regards

Rajeev

thorsten_domsalla
Active Participant
0 Kudos

Hello Rajeev,

if you want to make an output to your HTML document, simply add

write(something);

to your template. In your particular case you can use

write("Hello " & ~login);

Please take the ` (backticks) into account. At start the template is in HTML Business mode. But with a backtick you can switch to HTML (and back to HTML Business).

Example:

`<html><body><p>`write("Hello world!");`</p></body></html>`

Best regards,

TJ