Displaying Server time in portal

Hi All,
I would like to display server time in portal i have followed below document link to display it but i am unable to get it
http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/00cfee3a-5369-2c10-a2a3-dbadc322065c?QuickLink=index&overridelayout=true
Please provide your inputs....
Thanks,
Rahul.

Hi Rahul,
As you already know about the masthead.jsp file, the java part is compiled and executed on the server side.
So you can just use the "new Date()" in the java part (inside <%).
Then you can easily retrieve the date and some other like year, month, etc from that.
If you only need milliseconds and want to calculate yourself, you can use System.currentTimeMillis().
Regards,
Vijay.

Similar Messages

  • Incorrect Display of Time by Portal Report

    Any assistance would be much appreciated:
    Portal report display of a date field using MM-DD-
    YYYY:HH24:SS:MI is off by 12 hours. Select of same field and
    mask via SQL*Plus looks okay.
    Thanks in advance,
    - LTG

    Chetan,
    Thanks for responding... I'm not sure I follow your suggestion...
    Here is some more info about the problem.
    I used the Portal "Reports From Query Wizard" to create a
    tabular report from a pretty simple db table containing an
    Oracle date field. In the Column Formatting window I entered MM-
    DD-YYYY:HH24:MI:SS for the format mask for the Oracle date
    field. When I run the report, the Oracle date field is
    displayed with an incorrect time (18:52:20 is displayed as
    06:52:20). An Sql*Plus query using to_char(timestamp,'MM-DD-
    YYYYY HH24:MI:SS') displays the correct time.
    I attempted to put to_char(timestamp,'MM-DD-YYYYY HH24:MI:SS')
    into the format mask for the Oracle date field in the Column
    Formatting screen (instead of MM-DD-YYYY HH24:MI:SS). No
    apparent effect.
    Did I follow your suggestion correctly? Is there something more
    to do? Please advise?
    Thanks,
    Len Greenberg

  • Display Server status Web Portal

    Hi,
    I have a CMC portal on which I can see the status of the BO services (Enabled/Disabled). The authentication is done from our SAP BW server and the CMC portal is on SSO with the BW server. Similarly I have a web portal where I want to display the Services Status (Enabled/Disabled) of the BOXI(3.1) enterprise. Is it possible to achieve the same using SDK?
    A quick help is appreciated.
    Regards,
    Leo Davis

    You can get this from IServer.getCurrentDisabledState() which will return a boolean.
    If you are unsure of how to get started with dealing with the servers in the sdk I would suggest looking at our server management samples [here|http://wiki.sdn.sap.com/wiki/display/BOBJ/JavaBusinessObjectsEnterpriseSDKSamples#JavaBusinessObjectsEnterpriseSDKSamples-ServerManagement]

  • Show system time in Portal Header

    Hi,
    We have a requirement to display current system time/clock at the Netweaver Portal screen (preferably at the header) all time.
    How we can do that ?
    Thank you for your help in adavnce..
    Satya.

    Hi satya,
    For displaying the time in Portal header go through this document . Do some code changes based on your requirement
    [Implementing Digital World Clock on SAP Portal|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/509f3468-2e96-2c10-11b7-f15c42924272?QuickLink=index&overridelayout=true]
    hope this will helpful
    Regards
    Mahesh

  • HP EVA 8100 - HSV210 - Windows Server 2012 disk display three times

    Hi together
    I have a problem with a HP EVA 8100 and the Windows Server 2012. When im presenting the disks in the HP Command View to the Server, the harddisk is display three times in the disk management.
    Here the view in the HP Command View:
    And here on the Server:
    On the server i had install all the drivers etc.
    It would be great if u could help me.
    Thanks alot and kind regards
    Lars

    Hi Vijay MC,
    When we meet the disk id conflict we can try to changed the disk ID of the disk id, you can use uniqueid to generate the new disk.
    Uniqueid
    http://technet.microsoft.com/en-us/library/cc730793.aspx
    The similar thread:
    "The disk is offline because it has a signature collision with another disk that is online" .... What can I do to change a hdd signature?____
    http://answers.microsoft.com/en-us/windows/forum/windows_7-hardware/the-disk-is-offline-because-it-has-a-signature/2e1f20c0-8fbb-4952-a789-a0f1578f1616
    I’m glad to be of help to you!

  • Display application server time and date on GUI screen.

    Hi experts,
       My client's requirenment is to display the application server time and date on the on GUI screen
       pls give the step by step procedure.
    Thanks in advance.
    Abhishek

    Hi,
    For TIME purpose,
    Fixed Length  6
    Format  u2018HHMMSSu2019
    DATA  times  TYPE  T.
    times  =  sy-uzeit.
    WRITE  times.
    For DATE purpose
    Fixed Length  8
    Include Representation  u2018YYYYMMDDu2019
    DATA  today  TYPE  D.
    today  =  sy-datum.
    WRITE  today.
    today  =  u201819991231u2019.
    WRITE  today.
    Regards,
    Anki Reddy

  • Is TRex required to display content from Content Server in the Portal?

    Hi all gurus!
    A short question: do you have to have TRex (or any other search/index engine) when you want to display content from a SAP Content Server in the portal? Or does the content server has its own search/index engine?
    Best regards
    Benny Lange

    Hi,
    Sap content server can be added in the portal as an KM repository. So configuration is needed. But when finished you can open and look at the content server like they are normal KM folders. TREX on the other hand is advisable in order to have the means to quickly find something in your content server. Otherwise it is like any other stupid file structure. lots of files and lots of folders.
    Depending on you portal version you need to install a bussiness pack for document managment to get the content server visable in KM
    Greetz

  • JSP page display wrong time when compared to the server time

    Hi,
    This problem seems to weird but it is happening
    I have web application running where time is displayed in the page. In this application time is very critical. Currently, time is an hour behind the orginal time.
    I checked the server it is displaying proper time.
    As a matter of troubleshooting, I wrote a java program and run the program in the same server, where the application is running. The java program returns me proper time , but JSP is still displaying time an hour behind. To trouble shoot further, I created a test jsp page to just display the time and accessed the time and the jsp displayed wrong time as well, an hour behind.
    I am running[ tomcat 4.0.3 and j2sdk1.4.3 in suse linux enterprise server 9.0
    My Java program
    import java.util.*;
    import java.text.*;
    public class TestDate
    public static void main(String s[])
         try{
              DateFormat DF = new SimpleDateFormat( "dd/MM/yyyy");
    DateFormat DT = new SimpleDateFormat("hh:mm aa");
              SimpleDateFormat fmt=new SimpleDateFormat("HH.mm");
              Calendar cal= Calendar.getInstance();
              java.util.Date dt=cal.getTime();
              String curdt=DT.format(dt);
              System.out.println("Server Time" + curdt + "\n");
              int hh = cal.get(Calendar.HOUR);
              int mm = cal.get(Calendar.MINUTE);
              int aa = cal.get(Calendar.AM_PM);
              System.out.println("Time" + hh +":"+mm+":"+aa+"\n");
         }catch(Exception e) {
         e.printStackTrace();
    This display Time3:30:1
    My JSP Page
    <%@ page import="java.util.*,java.text.*"%>
    <%
    Calendar calen;
    calen = Calendar.getInstance();
    int hh=calen.get(Calendar.HOUR);
         int mm=calen.get(Calendar.MINUTE);
         int aa=calen.get(Calendar.AM_PM);
    %>
    <%=hh%> <%=mm%> <%=aa%>
    This display 2 30 1
    When I run Date in linux server it gives 3:30 PM EST 2004
    I am really confused, why this is happening, If you have any solutions or idea please post the solution.

    My guess is that the weirdness is caused by Daylight savings time.
    I will presume that you and the server are in the same timezone :-)
    Alternatively it could be caused by getting a different Locale.
    Try the following
    Print out "date.getTime()" value (ie long representing number of millis)
    They should be the same (or close) in both the app and in JSP
    Try simple date format in your JSP as well - what does that result in?
    Print the calendar object, and look for the difference.
    It might be in Locale, Timezone, or whether DST is set or not.
    Hope this helps,
    evnafets

  • I need to display my server time...

    All that I need is just to display my server time... I could
    achieve once using php, but then I am stucked.... ! how ? well....
    cache memory is harder than I believed before... please all your
    help will be so helpful !
    thanks in advance,

    yes, that is what I've done.... but then it displays the time
    correctly ONCE, it does not update itself... then, if I navigate
    the website and the come back to the same page where the"clock" is,
    time is the same than before, because of the cacché memory
    that keeps the value and does not let me request server again.... I
    needto find the way to request, not every second, because it would
    require a lot or resources, but every minute at least.... or make a
    code form a timer in flash that will start with the time
    requested... in this case, it will anyway be necessary to request
    the PHP everytime I come back to this page... but ... How do I
    achieve it ? I have used many "cache-killers" methods, but
    nothing... !
    I will appreciate your comments, thanks in advance,
    Sw. Jiten

  • Displaying server downtime or any notificatiopn on portal logon screen?

    Hi Experts,
    My client has a requirement, he wants to display next server downtime or display any notifications on portal logo screen beneath Username and Password of portal Logon screen
    How to achive this? i am new to portal and have no idea on it, please help me out!
    Regards,
    Siva

    Hi Siva,
    You can refer to my blog
    A Generic approach to reading file from KM Part 1- Nuts and Bolts
    I am in the process of writing the 2nd part of it, but you can easily implement your requirement by storing the file in KM and adding an extra line in your logon jsp page.
    Thanks
    Prashant

  • Displaying Live Server time

    I have a JSP page that i want to display a live display of the servers date and time (hours minute seconds)
    what would be the best way about doing this?
    thanks kindly
    Tom

    A quick google for javascript clock comes up with something:
    http://www.google.com/search?hl=en&q=javascript+clock&meta=
    http://www.javascript-page.com/clock.html
    The only thing that would have to change is to set the date as the server date, rather than the client date.
    var tDate = new Date(<%= System.currentTimeMillis() %>);This would be set to the server time at the time of serving the page. It would probably take a few seconds to transmit/render on the client machine.
    How accurate do you need this clock to be?

  • Error in report RSPOR_SETUP : "Different Server Times"

    Hi,
    I installed BI 7 and I have configured the communication between BI and EP.
    When I execute report RSPOR_SETUP to verify the configuration, I am getting the following error message at step 12 (Maintain User Assignment in Portal):
    2. Compare SAP BI and EP Server Time
    Different Server Times could be a reason for retrieving always an invalid SAP Logon Ticket.
       SAP BI Server Time:             09:08:16   2007/03/23
       SAP EP Server Time:            Fri Mar 23 09:08:16 EDT 2007
    The time is identical, but it seems that the format I causing me problem.
    How can I configure the date format in EP and BI ?
    Best regards,

    check the Note: 816761 and pasted it for you. May be this will help you.
    There are new options to define how certain date formats (date, timestamp and time properties) will be formatted.
    The following keys can be configured in:
    EP6:
    Configuration / Global Services / Property Metadata / Properties: Column "Additional Metadata"
    NW04/NW04S:
    Configuration / Global Services / Property Metadata / Properties: Select "Mode: Advanced". See column "Additional Metadata".
    -Format
    Use DateFormat defined patterns, DateFormat.SHORT, DateFormat.MEDIUM, DateFormat.LONG.
    Documentation: http://java.sun.com/j2se/1.4.2/docs/api/java/text/DateFormat.html
    as values: long/medium/short.
    Example: format=long results in
    Date type -> 17 January 2005
    Timestamp -> 17 January 2005 16:09:23
    Time -> 16:09:23
    -customFormat
    To set a customer pattern according to documentation: http://java.sun.com/j2se/1.4.2/docs/api/java/text/SimpleDateFormat.html
    If the pattern is not correct, the default date format will be used.
    Example: customFormat=dd.MM.yyyy hh:mm:ss -> 17.01.2005 04:09:23
    Regards.
    PS: assign points is the way to say thanks

  • Error in displaying date time value in Thai Windows OS browser.

    Hi,
    I have a problem displaying date time in the browser which is installed with Thai Windows OS. The time portion (the subset of datetime) does seemed to show correctly. Initially i am suspecting the virtual machine problem but i tried on bith java and microsoft vm, the result seemed the same. I tried to look in the source of the page and the character is just the same as the incorrect character displayed in the browser. The html source is -->
    <tr class="TableData">
         <td width="76">14/01/04 12:17:06 H-@5H"</td>
    the time is displaying incorrectly. I am not sure its due to any setting in the BEA weblogic server. FYI i am now using WLS6.1(SP2) version. Hope and appreaciate a prompt reply. Thanks a zillion in advance.
    Regards,
    Sunny

    https://www.sdn.sap.com/irj/sdn/advancedsearch?cat=sdn_all&query=noclassdeffounderrorIWDAbstractTableColumn&adv=false&sortby=cm_rnd_rankvalue
    java.lang.NoClassDefFoundError
    Error while binding node attribute to a  UI  element (table)
    Problem with NWDS 7
    class def error?

  • Ftp displays wrong time in Win7 explorer - other computers on XP or previous see the correct time

    NO ANSWER TO THIS QUESTION IN OVER A YEAR? Shame on Microsoft
    Windows7,
    Explorer is showing a -6 hour difference in time from my actualfile
    date. This is NOT simply the time difference between my computer
    (in Central time zone) and the server (on Eastern time). Explorer is ignoring the server's time stamp and subtracting exactly 6 hours from the time of the what the server should say. I know this because I'm also looking at the exact same folder and files using
    XP and the time stamps are exactly as they should be. I modified a file locally (on Windows 7) and copied it up to the server. The time stamp local is 9:36a. The time stamp on the server should be 10:36a, but instead it says 4:36a. So, I copied a file from
    the server back to here and it reports locally 6 hours later (10:38a) than what is on the server (4:38a). Looking at the exact same files through explorer on XP shows that the time should have been 10:38a.
    If it wasn't for time showing correctly on XP, I'd assume it was a problem at the server, but there seems to be something in either the display of time, or in the way it sends thefile'stime-stamp.
    And now I'm testing it on another ftpserver,
    which I think has their time set to UTC (my 10:00a is their 4:00p). Using XP, I create a brand new file locally, and transmit it to this server. It initially appears with the same timestamp as the original file (10:16a). I then do a refresh of the server list
    (in XP) and it jumps forward 6 hours (4:16p). I look at this server with Windows 7 and it shows that the file has a timestamp of 10:16a. So Icopy
    that file (using Windows 7) to its local drive and it tells me that the timestamp is 4:16p (later today).
    I've triple-checked my PC's time settings (set to UTC-06:00 Central Time). I've verified with the first server's techies that the PC is in Eastern time (I've not reached the other server's people yet). In both cases, however, Windows 7 is showing the time of
    the files on the ftp servers to be 6 hours earlier than their actual time-stamp.

    I have had the same problem with WIN7 explorer, viewing file timestamps with FTP on a remote web server. If you copy the remote URL address and use IE9 to view the same folder, you will see the correct file timestamps.  Also if you temporarily change
    the time zone on your local machine to "Coordinated Universal Time" UTC-0 then you will see the correct file timestamps of when the files were actually created on the remote server. I guess that Microsoft chose to make this change in Windows 7 so that
    we would be aware that FTP on servers actually use UTC-0 time for a timestamp when they create a new file.  Just remember to change your local machine time zone back to normal when you are done.

  • Facing Problem in SLD(getting 500 INTERNAL SERVER ERROR IN PORTAL)

    Dear All,
    we had ESS application just few days back it went to Go live , very frequently we are facing the issue
    Regards JCO 's , we are getting "500 Internal Server Error" in production Portal
    After getting the error ,the " Maintained JCO's" and "Created JCO'S " are both are disabled
    uder contenten administraton->webdynpro.
    But the SDL is in active , we can able to open SLD url every thing is also fine
    Technical system and every thing coming fine
    we checked SLD User also in SLD User Administration , the SLD user is also there it is not unlocked
    The problem is : if the problem is happend after restarting the server again it is coming properly
    Again after some time it is getting same error ,whith out doing any thing also some times the problem is resolving automatically
    we are not getting Root cause of this behaviour
    In our client side SLD is centralized ,they are not maintain locally
    If the SLD is Proble , the error has to come in Quality and Production also why bcz it is centralized
    But Some times 500 ERROR IN Prodution and some times in Quality.
    And some times the Portal is very slowly opening especially ESS application ,after restart happening it is some better
    again it is getting down after some time
    If it is NETWORK Iuuse or any firewall ect...in which way we can can with them and where
    Guru's share your knowledge it's a very critical for me what are he possible ways...
    Regards,
    Giri

    Here I am giving the LOG details which is available in SLD (J2EE) server
    #2.0 #2012 03 03 14:24:57:513#+0530#Error#com.sap.aii.af.service.sld.SLDRegistrationJob#
    #BC-XI-CON-AFW#com.sap.aii.af.lib#005056BB552201A70000000000000DF0#151402750000001894##com.sap.aii.af.service.sld.SLDRegistrationJob.SLDRegistrationJob.invoke()#Guest#0##1014F5C2650011E1B811005056BB5522#1014f5c2650011e1b811005056bb5522#1014f5c2650011e1b811005056bb5522#0#Application [17]#Plain##
    SLD Registration Job: No access to SLD. Waiting for next retry. Error: com.sap.aii.af.lib.sld.SLDException: Failed to initialize ExchangeProfile properties. Reason: Unable to read configuration data (ExchangeProfile/aii.properties)#
    #2.0 #2012 03 03 14:26:06:739#+0530#Error#com.sap.nw.lm.aci.engine.base.sld.connection.AccSldConnector#
    #BC-AC-7XX#sap.com/tc~lm~aci~engine~baselib~05#005056BB552201AB0000000100000DF0#151402750000008310#sap.com/tc~lm~aci~monitor~app#com.sap.nw.lm.aci.engine.base.sld.connection.AccSldConnector.getSldComputerSystemsForMonitoring(String)#Administrator#0#SAP J2EE Engine JTA Transaction : [9638fffffffe00fffffff85]#1014F5C2650011E1B811005056BB5522#1014f5c2650011e1b811005056bb5522#1014f5c2650011e1b811005056bb5522#0#Thread[Managed_Application_Thread_29,5,Managed_Application_Thread]#Java##
    Unable to obtain Computer Systems, associated to NW Admin NWA_FOR_FirstLandScpSrvcName, from SLD. CIM_ERR_FAILED: No such instance: SAP_NWAdministrator.CreationClassName="SAP_NWAdministrator",Name="NWA_FOR_FirstLandScpSrvcName" [this message was repeated 9 times]
    [EXCEPTION]
    {0}#1#com.sap.sld.api.wbem.exception.CIMException: CIM_ERR_FAILED: No such instance: SAP_NWAdministrator.CreationClassName="SAP_NWAdministrator",Name="NWA_FOR_FirstLandScpSrvcName"
         at com.sap.sld.api.wbem.client.WBEMRequestSender.convertErrorResponse(WBEMRequestSender.java:127)
         at com.sap.sld.api.wbem.client.WBEMRequestSender.convertErrorResponse(WBEMRequestSender.java:48)
         at com.sap.sld.api.wbem.client.WBEMRequestSender.send(WBEMRequestSender.java:272)
         at com.sap.sld.api.wbem.client.WBEMRemoteClient.sendAndCast(WBEMRemoteClient.java:936)
         at com.sap.sld.api.wbem.client.WBEMRemoteClient.associatorNamesImpl(WBEMRemoteClient.java:507)
         at com.sap.sld.api.wbem.client.WBEMAbstractClient.associatorNames(WBEMAbstractClient.java:544)
         at com.sap.nw.lm.aci.engine.base.sld.connection.AccSldConnector.getSldComputerSystemsForMonitoring(AccSldConnector.java:3731)
         at com.sap.nw.lm.aci.monitor.fetch.util.MonitoringSldAdapter.getAllHostnames(MonitoringSldAdapter.java:277)
         at com.sap.nw.lm.aci.monitor.fetch.manager.PrefetchPackageUtil.repackageCs(PrefetchPackageUtil.java:71)
         at com.sap.nw.lm.aci.monitor.fetch.manager.PrefetchPackageUtil.repackageAll(PrefetchPackageUtil.java:58)
         at com.sap.nw.lm.aci.monitor.fetch.manager.FetchManager.repackageIfRequired(FetchManager.java:1046)
         at com.sap.nw.lm.aci.monitor.fetch.manager.FetchManager.run(FetchManager.java:435)
         at com.sap.nw.lm.aci.monitor.fetch.job.FetchJobBean.onJob(FetchJobBean.java:67)
         at com.sap.engine.services.scheduler.runtime.mdb.MDBJobDelegateImpl$2.run(MDBJobDelegateImpl.java:233)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAs(Subject.java:396)
         at com.sap.engine.services.scheduler.runtime.mdb.MDBJobDelegateImpl.onMessage(MDBJobDelegateImpl.java:267)
         at com.sap.scheduler.runtime.mdb.MDBJobImplementation.onMessage(MDBJobImplementation.java:60)
         at sun.reflect.GeneratedMethodAccessor284.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.sap.engine.services.ejb3.runtime.impl.RequestInvocationContext.proceedFinal(RequestInvocationContext.java:46)
         at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:166)
         at com.sap.engine.services.ejb3.runtime.impl.Interceptors_StatesTransition.invoke(Interceptors_StatesTransition.java:19)
         at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
         at com.sap.engine.services.ejb3.runtime.impl.Interceptors_Resource.invoke(Interceptors_Resource.java:71)
         at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
         at com.sap.engine.services.ejb3.runtime.impl.Interceptors_MessageListenerType.invoke(Interceptors_MessageListenerType.java:110)
         at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
         at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:189)
         at com.sap.engine.services.ejb3.runtime.impl.Interceptors_StatelessInstanceGetter.invoke(Interceptors_StatelessInstanceGetter.java:16)
         at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
         at com.sap.engine.services.ejb3.runtime.impl.Interceptors_SecurityCheck.invoke(Interceptors_SecurityCheck.java:21)
         at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
         at com.sap.engine.services.ejb3.runtime.impl.Interceptors_ExceptionTracer.invoke(Interceptors_ExceptionTracer.java:16)
         at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
         at com.sap.engine.services.ejb3.runtime.impl.Interceptors_Lock.invoke(Interceptors_Lock.java:21)
         at com.sap.engine.services.ejb3.runtime.impl.AbstractInvocationContext.proceed(AbstractInvocationContext.java:177)
         at com.sap.engine.services.ejb3.runtime.impl.DefaultInvocationChainsManager.startChain(DefaultInvocationChainsManager.java:133)
         at com.sap.engine.services.ejb3.runtime.impl.DefaultEJBProxyInvocationHandler.invoke(DefaultEJBProxyInvocationHandler.java:164)
         at com.sap.engine.services.ejb3.runtime.impl.MDBProxyInvocationHandler.invoke(MDBProxyInvocationHandler.java:77)
         at $Proxy1058.onMessage(Unknown Source)
         at com.sap.jms.resourceadapter.RaServerSession.internalOnMessage(RaServerSession.java:188)
         at com.sap.jms.resourceadapter.RaServerSession.onMessage(RaServerSession.java:330)
         at com.sap.jms.client.session.JMSSession.deliverMessage(JMSSession.java:805)
         at com.sap.jms.client.session.JMSSession.run(JMSSession.java:709)
         at com.sap.jms.resourceadapter.RaServerSession.run(RaServerSession.java:379)
         at com.sap.engine.services.connector.jca15.work.TaskImpl.run(TaskImpl.java:420)
         at com.sap.engine.core.thread.execution.Executable.run(Executable.java:109)
         at com.sap.engine.core.thread.execution.CentralExecutor$SingleThread.run(CentralExecutor.java:314)
    #2.0 #2012 03 03 14:26:57:526#+0530#Error#com.sap.aii.af.service.sld.SLDRegistrationJob#
    #BC-XI-CON-AFW#com.sap.aii.af.lib#005056BB552201B00000000000000DF0#151402750000001894##com.sap.aii.af.service.sld.SLDRegistrationJob.SLDRegistrationJob.invoke()#Guest#0##1014F5C2650011E1B811005056BB5522#1014f5c2650011e1b811005056bb5522#1014f5c2650011e1b811005056bb5522#0#Application [6]#Plain##
    SLD Registration Job: No access to SLD. Waiting for next retry. Error: com.sap.aii.af.lib.sld.SLDException: Failed to initialize ExchangeProfile properties. Reason: Unable to read configuration data (ExchangeProfile/aii.properties)#
    #2.0 #2012 03 03 14:28:57:522#+0530#Error#com.sap.aii.af.service.sld.SLDRegistrationJob#
    #BC-XI-CON-AFW#com.sap.aii.af.lib#005056BB552201B70000000000000DF0#151402750000001894##com.sap.aii.af.service.sld.SLDRegistrationJob.SLDRegistrationJob.invoke()#Guest#0##1014F5C2650011E1B811005056BB5522#1014f5c2650011e1b811005056bb5522#1014f5c2650011e1b811005056bb5522#0#Application [5]#Plain##
    SLD Registration Job: No access to SLD. Waiting for next retry. Error: com.sap.aii.af.lib.sld.SLDException: Failed to initialize ExchangeProfile properties. Reason: Unable to read configuration data (ExchangeProfile/aii.properties)#
    #2.0 #2012 03 03 14:30:57:519#+0530#Error#com.sap.aii.af.service.sld.SLDRegistrationJob#
    #BC-XI-CON-AFW#com.sap.aii.af.lib#005056BB552201BE0000000000000DF0#151402750000001894##com.sap.aii.af.service.sld.SLDRegistrationJob.SLDRegistrationJob.invoke()#Guest#0##1014F5C2650011E1B811005056BB5522#1014f5c2650011e1b811005056bb5522#1014f5c2650011e1b811005056bb5522#0#Application [20]#Plain##
    SLD Registration Job: No access to SLD. Waiting for next retry. Error: com.sap.aii.af.lib.sld.SLDException: Failed to initialize ExchangeProfile properties. Reason: Unable to read configuration data (ExchangeProfile/aii.properties)#
    Edited by: giriep on Mar 3, 2012 11:38 AM

Maybe you are looking for