cancel
Showing results for 
Search instead for 
Did you mean: 

How can I check the time in EP?

Former Member
0 Kudos

Hi all!

How can I check the time in EP?

CU

Peter

Accepted Solutions (1)

Accepted Solutions (1)

junwu
Active Contributor
0 Kudos

can you be more detailed??

what's the version of your ep?

at least for mine(7.31), it shows the date/time in nwa landing page.

Answers (2)

Answers (2)

saar_dagan
Employee
Employee
0 Kudos

Hi,

When you enter the NWA on the top you will find:

10/22/2015 09:41 AM MESZ


BR,

Saar

former_member193577
Active Contributor
0 Kudos

Hi,

You can write a portal component with code that displays the date and time.

for example in the method doContent put the following to return in response the time:

  doContent(..){

    DateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
    Date date = new Date();
    response.write(dateFormat.format(date));
  }

Deploying the portal application and executing it will provide you the time in server.

Best Regards,

Tal

Former Member
0 Kudos

Hi Tal!

Thanks for your answer...

But there is no possibility without writing a Portal component?

CU

Peter

former_member193577
Active Contributor
0 Kudos

Hi,

I do not know such a standard service.

But its very easy creating such component -

http://help.sap.com/saphelp_nw73/helpdata/en/49/4ef4b58e366a50e10000000a42189c/frameset.htm

You can also write a simple J2EE servlet.

Best Regards,

Tal