How to check when system started? Need ASAP!!

HI,
Guys is there a way that I can tell that when the system started and stopped at certain time? If there is, how can i check?
Please let me know ASAP.
Thanks,
I will post points for sure!!

Afi,
Check dev_disp.old in work directory .. Towards the end you can something like  change server state from ACTIVE to SHUTDOWN .. You will get some idea from that.  Check dev_disp to see when the server is started
Thanks
Prince Jose

Similar Messages

  • Agent and TNSListener service can not run when system starting

    The Agent and TNSListener services can not run automaticaly when system startes.If run Agent service by hand in control panel,system prompt 3221356559 error message.If run TNSListener service in control panel,system prompt none.But after refresh,TNSListener service is not running.How can i do next?Thanks very much!

    geno.nullfree wrote:
    I'm not sure but since it's saying there's a library issue, you could try running:
    # ldconfig
    Failing that you could try a:
    # pacman -Rns slim
    # pacman -Syu slim
    I tried both "ldconfig" and "pacman -XXX", but the problem is still there.
    Maybe I need use another way to recompile slim in my machine.
    But I have no time to test it now, I will try it another day.
    Thx for replies.

  • How to Check when the user is connected to different desktop.

    How to Check when the user is connected to different desktop.Sometimes the user maynot see the theme in the personalize theme list. In that case the person must be using different kind of desktop.How to check, I need a path.And how to apply the theme to that user?
    Thanks,
    Paturi

    Hi,
    you can create the new portal desktop from
    System Administration => Portal display => Desktop and Display Themes
    Select your folder from Portal Content and from its context create new Desktop.
    Add The Framework page and the theme to this desktop page.
    Go to your folder from Portal Content and from the context of the framework page select add framework page to portal desktop.
    Adding Theme to desktop
    From Portal content select Theme folder and select the theme right click it and select Add theme to Portal Desktop.
    Create rule for the Desktop.
    Navigate to System Administration => Portal Display => Desktop and Display Themes Portal Content => Portal Administrators => Super Administrators =>main_rules.
    Click Add IF Expression.
    create the expression if user = xyz then click on apply
    Select the then clause of the if and navigate to your folder where Desktop is created ,Add it and Click Apply.
    Save the Changes to the rule.
    Hope it helps you.
    (reward points if its helpful)
    Thanks,
    Gunjan

  • How to check whether system privilege are granted

    How to check whether system privileges like 'create session' and other ones are granted for user.
    Is there any sys table where this information is available?
    Regards - Neuron

    Keep in mind select * from dba_sys_privs where grantee = 'some-user' will give you a list of privileges granted to some-user directly. To get complete list of system privs granted to a user both directly an via roles use:
    ACCEPT USER PROMPT 'Please enter user name: '
    COLUMN PATH FORMAT A90
    SET LINESIZE 132
    SELECT  PATH,
            PRIVILEGE
      FROM  DBA_SYS_PRIVS,
              SELECT  'DIRECT GRANT' PATH,
                      '&USER' GRANTED_ROLE
                FROM  DUAL
             UNION ALL
              SELECT  LTRIM(SYS_CONNECT_BY_PATH(GRANTED_ROLE,'->'),'->') PATH,
                      GRANTED_ROLE
                FROM  DBA_ROLE_PRIVS
                START WITH GRANTEE = UPPER('&USER')
                CONNECT BY PRIOR GRANTED_ROLE = GRANTEE
      WHERE GRANTEE = GRANTED_ROLE
    /Now on top of privileges granted to a user, user also has privileges granted to PUBLIC. To get privileges user receives via PUBLIC run the above script specifying PUBLIC at the prompt.
    SY.

  • How to check in system(unix/windows) if it is mounted or not?

    how to check in system(unix/windows) if it is mounted or not?

    Hi Prasann,
    how to check in system(unix/windows) if it is mounted or not?
    Please elaborate your query.Meanwhile check with command df -Th
    Regards,
    Gaurav

  • How to Check source systems in RSA1 and verify that connections are working

    How to Check source systems in RSA1 and verify that connections are working ok and how to Check Planning Area have green status.................

    Hi,
    In rsa1, go to 'Tools' and option 'Manage Source System' - the screens are self explanatory there after. To check the planning areas, go to transaction /SAPAPO/MSDP_ADMIN anc check the status of the relevant planning areas.
    Regards
    Vinod

  • How i check the :SYSTEM.FORM_STATUS is DELETE OR REMOVE

    hi master
    SIR how i check my :SYSTEM.FORM_STATUS is DELETE OR REMOVE
    please gide me idea
    thanking you
    aamir

    hello,
    As the online documentation says, :SYSTEM.FORM_STATUS can take 3 different values:
    CHANGED
    NEW
    QUERY
    There is no status for a record that has just been removed. Only the PRE-DELETE, ON-DELETE and POST_DELETE triggers fire on this record.
    Francois

  • OSX Mavericks Wifi connection problem when system starts

    My macbook pro unable to connect to the preset wifi when system started, same whether starts and ready from sleep-mode, or previous shutdown mode.
    This starts to happen just several weeks recently.
    However, after restart the entire OSx, the connection (auto detect and connect) would be back to normal.
    What's wrong? and any idea to solve this problem? Restart the OS takes very long time, and I don't like to waste time everytime open the laptop.
    Please help. Thanks.

    Troubleshooting Wi-Fi issues in OS X
    Wireless Connection Problems - Fix
    Wireless Connection Problems - Fix (2)
    Wireless Connection Problems - Fix (3)
    Wireless Connection Problems - Fix (4)
    Wireless Diagnostics - About
    Also try turning off Bluetooth

  • How to make it not show Finder window when system starts up?

    The subject is the question....a Finder window is always open when system first starts up and how do I make it show and not show? Thanks.

    someone else had this problem too, check out this thread
    http://discussions.apple.com/thread.jspa?threadID=1819909&tstart=150
    He fixed it by changing his wallpaper settings....(lol, copied and pasted from my post in another thread) might not be the same fix as what you need, but heck, why not try, right?

  • How to creating a application that starts  when system start ups

    plz help
    i creating a scheduler application.
    i want it to make it like , it should start automatically whenever the system restarts
    Plz help me

    hi ,
    I tried Java service wrapper
    I got a Frame2.class i.e. in c:\1\Frame2.class
    it just creates a simple Frame window
    say i am using it as a appplication ( Frame2.class)and need it to be start when system restarts, and run it 24x7
    Frame2.java:
    import java.awt.*;
    import java.awt.event.*;
    public class Frame2 extends Frame {
    private Closer Handler;
    Frame2 () {
    Handler = new Closer ();
    setTitle ("Frame Example");
    setSize (300,120);
    addWindowListener (Handler);
    setVisible(true);
    public static void main (String args[]) {
    Frame f;
    f = new Frame2 ();
    class Closer extends WindowAdapter {
    public void windowClosing (WindowEvent event) {
    System.exit (0);
    Now i downloaded wrapper 3.2.3
    Then,
    1) copied bin and conf folder from wrapper3.2.3/src/bin & wrapper3.2.3/src/conf folder to c:\1\
    2)copied Frame2.class from C:\1\ to c:\1\bin\ folder
    3) copied Wrapper.exe from wrapper 3.2.3/bin/ folder to c:\1\bin\ folder
    4) Renamed files App.bat - Frame2.bat,
    InstallApp-NT.bat - InstallFrame2-NT.bat
    UninstallApp-NT.bat - UninstallFrame2-NT.bat
    SimpleInstallApp-NT.bat - SimpleInstallFrame2-NT.bat
    SimpleUninstallApp-NT.bat - SimpleUninstallFrame2-NT.bat
    SimpleApp.bat - SimpleFrame2.bat
    AppNoWrapper.bat - Frame2NoWrapper.bat
    5) And renamed the c:\1\conf\wrapper.conf.in to wrapper.conf
    ( I haven't changed any thing in the wrapper.conf file)
    6) then i executed the Frame2.bat (double clicking it)
    i got this error
    wrapper | --> Wrapper Started as Console
    wrapper | Launching a JVM...
    jvm 1 | java.lang.NoClassDefFoundError: org/tanukisoftware/wrapper/test/Main
    jvm 1 | Exception in thread "main"
    wrapper | JVM exited while loading the application.
    wrapper | Launching a JVM...
    jvm 2 | java.lang.NoClassDefFoundError: org/tanukisoftware/wrapper/test/Main
    wrapper | Wrapper Process has not received any CPU time for 17 seconds. Extend
    ing timeouts.
    jvm 2 | Exception in thread "main"
    wrapper | JVM exited while loading the application.
    7) and then I executed InstallFrame2-NT.bat
    i got error as
    wrapper | CreateService failed - The specified service already exists. (0x431)
    Press any key to continue . . .
    Plz help what should i do to put it on the windows service control panel i.e. to make it start automatically
    Edited by: venkat_walking on Jul 9, 2008 12:38 PM
    Edited by: venkat_walking on Jul 9, 2008 12:40 PM

  • How to check if application started succesfully

    Hi to all!
    I need a script to check if application and db side started succesfully after cold backup has finished. Db side can be tested by system tables. But how to check if all components of apps have been started succesfully ?
    Thanks in advanced

    If you need more extensive checking of your eBusiness environments you may want to check out the perl modules HTTP::WebTest and WWW::Mechanize. They allow you to check specific urls and login to the application via a script. You can do an end to end test of the login process. It doesn't work with forms but for the initial SSW screen they are very good.
    We do this to track our service levels and because we have integrated SiteMinder SSO into our environment which is not picked up by the Applications script. Also the SiteMinder service is controlled by an external organization.
    Does anyone know if the status script for oracle apps can pickup a jvm that has gone bad (ie. You attempt to login but the jvm process has had a problem and apache returns an error when you execute the jsp login page)?

  • How to check R3 system connected to BI system

    Hi to all,
    I am installing BI contents , But before installing the Contents , in need to check which source system (R3)  is connected to BI.
    Please can any body tell me .
    How to check it.
    Regards
    Pavneet Rana

    Hi Rana,
    In RSA1 screen select source system option in the modelling area.
    Right click on the source system(for ex: D10client100) --> select "Check" from the context menu.
    It will display message if there is any thing wrong.
    second method
    If you have authorizations you can goto SM59 Tcode: drill down the ABAP connections ->check for your source system
    double click on it
    it will take you to "RFC destination screen" here you need to click on connection test.
    IT will display the test results.
    Regards
    KP
    Edited by: prashanthk on Aug 10, 2010 6:05 AM

  • URGENT- how to check when application was unistalled

    How do you check WHEN an application was unistalled?
    this is very urgent
    Thank you

    Hi and Welcome to the Community!
    Refer:
    KB29215 How to view event logs on a BlackBerry smartphone
    I'm not at all sure if those logs show what you need, or if it would have required that more verbose logging be enabled prior to the app removal. But, you can look to see.
    If the device is on BES, then it's possible that the BES Admin can dig deeper...but you'd need to ask them about that.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How can by default 'system date' needs come in selection screen automatical

    Hi
    I have 'Notification Date' in the selection screen of the report. And my client wants by default 'system date' needs to come automatically in the selection screen .
    So how can i get the 'Default System Date' in the selection screen for 'Notification Date' when he runs the report .
    Please let me know
    kumar

    Hi,
    1. Create a variable for 0Calday with the following details..
            Type of variable : Characteristic
            Variable name : Give the variable name
            Description : Give the description
           Processing by : Customer exit
           Characteristic : 0calday
           Ready for input : Make the flag enable
           Variable represent : single value
            Variable entry : Mandatory.
    2. Go to CMOD , include the below code for that variable.
          When 'XXXXXX' .   ( XXXXXX - Variable name)
           If  i_step = 1.
           clear l_S_range.
           l_s_range-low  = sy-datum.
           l_s_range-sign = 'I'.          " I: Include, E: Exclude
           l_s_range-opt  = 'EQ'.         " EQ: Equal, BT: Between, ....
           APPEND l_s_range TO e_t_range.
           endif.
    Hope it helps..
    Regards,
    Siva.

  • How to check when and who uses my account?

    I need to check if someone used my account in some particular days and hours. is it possible and how. thank you

    Nikoline wrote:
    How to see when and who made changes in some table?
    Some makes me problems and I want to see who are the usernames.
    ThanksEither you need to implement Oracle Audit, or use Logminer Utility to read archived redo log files

Maybe you are looking for

  • How to move file from folder f1 to other folder f2 in application server.

    Hi all, I want to know if there is any function module which can help me in moving a file from one folder to other folder in application server. Application server operating systems is Unix. I want do this only by function module, please let me know

  • Yahoo Mail account can only see certain subfolders, not main inbox

    Can anyone please help? I've been on the phone with Apple tech support for 2 hours. I have a Yahoo Plus mail account that I've had for about 8 years. I've had my iPhone for a week now and have had no problems receiving or sending mail from my Yahoo a

  • Error while copying from Catalog Manager

    Hello , I have opened my web catalog in 'Catalog Manager'.Now I want to copy a particular 'request' from this environmnet to another . When I right click on the request , It gives me error 'Parameter not found : Recursive'. What i need to do this to

  • W540 sleep mode buttons are not working

    Hello, My question concerns the non-functioning  sleep mode buttons on my Lenovo W540 20BG. In my current power management settings, the W540 is suppose to enter sleep mode by pressing Fn4 or by pressing the round power button shortly. However, eithe

  • Paper tray problem

    Hi experts, i have this printer problem for a few weeks now.. here's the story: i installed a new driver for printer ricoh aficio 3235C driver: aficio 3235C PCL6 device type: HPLJ4000 the printer is working fine but user has requested paper tray shou