How to Find whether schedular is started or not

HI,
i am facing a problem. in my application admin is logging in , starting a schedular
and log off. when any admin comes to the screen, i need to show whether the schedular
is started or not.
For starting and stopping i am not maintaining any log file, as our log is too
big, it is difficult to find the last started time of the schedular from the log,
if i log the details.
Can anybody help me in this???
Regards
glkishore

You check check if the port is open from your client to server by running the following command from the client:
If the client is unix/linux:
from a terminal run the command:
telnet server-ip port-no
eg
telnet 172.29.64.208 1521
If the client is windows:
From the command prompt or from windows terminal run the command:
telnet server-ip port-no
eg
telnet 172.29.64.208 1521
Closed port will result:
WINDOWS:
Connecting To sedefu01...Could not open connection to the host, on port 6789: Co
nnect failed
UNIX:
-bash-3.2$ telnet 172.29.64.208 1521
Trying 172.29.64.208...
telnet: Unable to connect to remote host: Connection refused
Open port will result:
WINDOWS:
The telnet will pass
UNIX:
-bash-3.2$ telnet 172.29.64.208 1521
Trying 172.29.64.208...
Connected to 172.29.64.208.

Similar Messages

  • How  to find whether excel is open or not-urgent plzzzzzzzzzzzzzzz

    hi
    i have used dde command to export the info in a form to excel it works fine.but when ever the user accidently closes the excel sheet and if the user again tries to import data to excel using a push button the application is not raised..the user has 2 refesh or come back to the form again for rasiing the excel......how can i track whether excel is closed or open......can i have a global variable but in case of closing the excel how can i reset it.........

    If you are using Forms 6i, you can use the D2kwutil package (search this site to find it). This package consists of a .pll and .dll library which you link to your application (you just copy the dll to either the Windows/System or Oracle\Bin folder).
    In that library, look for the "Find3rdPartyApp" function within the win_api_session package.
    For more recent versions of Oracle forms, I think that the package (D2kwutil) has been renamed to WebUtil.

  • How to find whether my netbook is bluetooth enabled

    I want to connect to my Android Tablet via bluetooth to my netbook Aspire One running on Windows XP.
    How to find whether my netbook is bluetooth enabled ?
    K.R.Kumar

    Click Start, click Run, type bthprops.cpl, and then click OK.
    If your computer has bluetooth capabiliteis, it will launch "Bluetooth Devices". If you successfully opened Bluetooth Devices, then your computer does have Bluetooth capabilities, otherwise, it does not have...
    If it has:
    On the Options tab, click to select the Turn discovery on check box, and then click Apply. To enable Bluetooth devices to connect to your computer, click to select the Allow Bluetooth devices to connect to this computer check box, and then click OK.

  • How to find whether an Invoice is been posted for a particular PO

    Hi,
    How to find whether an Invoice is been posted for a particular PO.
    I have a scenario where I fetch data into an internal table T_CDHDR(It has PO and other details). For each and every entry(PO) in that internal table I have to see whether an Invoice is been posted or not. They told to use <b>EKBE(Purchasing document history)</b> table. But, I don't know which field to check for and based on what conditions.
    Can someone help me with sample code or some valuable inputs.
    Thanks in advance.
    Regards,
    Paddu.

    HI,
    TABLE IS RIGHT.
    IN THAT TABLE FOR THE FIELD BEWTP CHECK WHETHER ENTRY IS "Q".
    Q STANDS FOR IR-L THAT MEANS INVOICE IS DONE.
    ON THE SELECTION SCREEN OF EKBE TABLE ENTER THE PO NUMBER.
    THEN CHECK WHETHER IT HAS ENTRY FOR BEWTP 'Q'.
    YOU CAN CROSS-CHECK THIS DATA FROM TABLE WITH THAT IN ACTUAL PO IN T.CODE - ME23N.
    ENTER PO NUMBER ,THEN IN ITEM DETAILS , IN HISTORY TAB SEE FOR THAT INVOICE NO.

  • Hi guys,Explain how to find whether the user request is dialog or bc ...

    how to find whether the user request is dialog or bc or some other wp and where we can see that ?

    Hello Damodar,
    You can find out that in SM50.
    However one piece of advice. I have noticed that you are raising lots of questions about very basic questions. Either you new to SAP or dont know anything about SAP Basis and want to get in this area. Or else you are preparing for some interview. In either of these cases expecting solutions given at SDN are not going to be of much help. Better read yorself in SAP Help as most people do. SDN should not be overly used for such purposes. Basic questions are welcome but you want to learn SAP through SDN !!!
    Regards.
    Ruchit.

  • How to find whether MIRO is done for a PO

    Hi All,
    Is there any indicator attached to POs that indicates whether MIRO is done for that PO?
    I mean after PO creation in ME21N -> GR in MIGO -> Excise (if applicable) and -> MIRO... how to find whether MIRO is done for a particular PO?
    Helpful tips will be gratefully rewarded...
    Regards,
    Karthik

    See if an entry exist in EKBE for the PO Number and its items.
    The complete process though is, to find the GR Quantity for each PO Item and see if it matches with the PO Item quantity.
      SELECT EBELN
             EBELP
             MENGE
             LOEKZ
        FROM EKPO
        INTO TABLE LT_EKPO
       WHERE EBELN = P_EBELN.
      IF NOT LT_EKPO[] IS INITIAL.
        SELECT EBELN
               EBELP
               MENGE
               BEWTP
               GJAHR
               BELNR
               BUZEI
               SHKZG
          FROM EKBE
          INTO TABLE LT_EKBE
          FOR ALL ENTRIES IN LT_EKPO
         WHERE EBELN = LT_EKPO-EBELN
           AND EBELP = LT_EKPO-EBELP
           AND VGABE = '1'.
      ENDIF.
      LOOP AT LT_EKBE.
    * Change the sign of the quantity for debit
        IF LT_EKBE-SHKZG = C_SHKZG_H.
          LT_EKBE-MENGE = -1 * LT_EKBE-MENGE.
        ENDIF.
        MOVE-CORRESPONDING LT_EKBE TO LT_EKBE_SUM.
        COLLECT LT_EKBE_SUM INTO LT_EKBE_SUM.
        CLEAR LT_EKBE_SUM.
        ENDLOOP.
       loop at it_ekpo.
    ** For each line item, calculate the total GR Quanity
        READ TABLE LT_EKBE_SUM WITH KEY EBELN = LT_EKPO-EBELN
                                        EBELP = LT_AWKEY-EBELP.
        IF SY-SUBRC = 0.
    * If the PO Item Quantity is equal to GR Quantity
            IF LT_EKPO-MENGE <= LT_EKBE_SUM-MENGE.
    * The PO Item can be considered completed GRed
            ENDIF.
        ENDIF.
      ENDLOOP.

  • How does u find whether query touches aggregates or not?

    Hi gurus
         How does u find whether query touches aggregates or not?
    Thanks in advance
    Raj

    Hi Rajaiah.
    You can test this from TA RSRT -> Execute and debug -> Display aggregate found.
    Hope it helps.
    BR
    Stefan

  • How to find whether the installed sap software is 32 bit or 64 bit?

    How to find whether the installed sap software is 32 bit or 64 bit?
    Hi Community,
    We have Windows machine - 64 bit - x64. So, we can install either 32 bit or 64 bit sap software, both are supported, right. Now, a sap system is already installed on this machine and i would like to find out whether the sap software is 32 bit or 64 bit, how can i check?
    I have already seen under Menu System - Status - Other Kernel Info & at OS level, with the command disp+work but i cant find the info iam looking for.
    Please help.
    Regards,
    Mohan.

    Hi Sunny,
    Thank you very much for your quick reply.
    Didnt know that one has to look under "Compiled for".
    Regards,
    Mohan.

  • How to find whether remote database is up or not (connected via dblink)

    Hi,
    I am using dblink to connect Biz database from Dev database.(Biz, Dev - database names)
    Running dbms job using the dblink from the Dev database to update data on Biz database...
    Problem is dbms job should run if and only if the Biz database is up for which i created the dblink...
    1) How to make sure or implement the check to find whether the Biz is database is up or not in Pl/sql or sql...
    2) How to reschedule the dbms jobs once the database is up
    pls suggest me how to find whether the database is up or not b4 running the dbms job?
    Using- Oracle 10g

    The only way to know whether the remote database is up (and whether the network between the two databases is up and whether the remote database's listener is up and whether the password configured in the database link is correct and whether the local TNS alias is correct, etc) would be to actually run a query against the remote database over the database link. In other words, the way to figure out whether the link is up is to let the job run and catch & handle exceptions when there are problems.
    By default, a job scheduled via DBMS_JOB will automatically reschedule itself if there is an unhandled exception by geometrically backing off (it waits 1 minute after the first failure, 2 minutes after the second, 4, 8, 16, 32 minutes, etc until it's marked as broken after 16 failures). You could, of course, catch appropriate exceptions and handle them in a reasonable fashion and manually reschedule jobs at intervals that make more sense for your particular job.
    Justin

  • How to find whether the cookies are enabled or not

    Hi All,
    Please suggest me, while sending the first request only how to find whether the cookies are enabled or not.
    thanks.

    you could use a servlet, write a cookie and then try to read it, if it's read then it's enabled else not.

  • How to Find whether  JRE is installed in a system or not ?

    I have to write an application in which I want my app to find whether jre is installed or not ?
    Can any one help in this ? My E-Mail ID is
    [email protected]
    Kumanan.

    For windows OS this is the solution.
    Find out the following key in the registry.
    HKEY_LOCALMACHINE/Software/javaSoft/Java Runtime Environment
    if the key to javasoft is there then JRE is installed and to see the version of JRE look a level down further and you will find the versions.

  • How i find my i5c is genuine or not

    how i find my i5c is genuine or not?

    See this thread: https://discussions.apple.com/message/23719985#23719985

  • How to find whether the Oracle Apps Instance is ShredAppltop or not

    How shhould we find whether 11i/R12 is shared appltop/shared appstier enabled?
    Is there any table to find this info.
    How many ways we can find this?

    Hi,
    Please see this thread.
    In R12 shared appltop/distributed appltop
    In R12 shared appltop/distributed appltop
    Thanks,
    Hussein

  • How to find whether any disk arry is connected in the system

    Hi Guys,
    Please help me regarding Disk Array.
    1) What command(s) should I use to check whether any disk array is connected in the server or not.
    2) Please share the method for,
    For single server system (A single sun server is connected with exernal disk array).
    For Cluster server system (Two servers are connected as a sun cluster and Disk array is connected to the cluster as resource).
    3) If the disk array is from SUN or from other vendor, how can i know that?
    4) How to find how many disks are available in the Disk array?
    Thanks

    Wow... I got a reply from nik !!!
    Thanks for your reply..
    *1) I have a confussion that format command only report the local disks not external disks(Disk array). Is that correct?*
    2) We have a cluster server V890+V890 + Disk-Array(Sun StorageTek). The format output is below.
    *(5,6,7 & 8 are disk array?)*
    root# format
    Searching for disks...done
    AVAILABLE DISK SELECTIONS:
    0. c1t0d0 <SUN146G cyl 14087 alt 2 hd 24 sec 848>
    /pci@8,600000/SUNW,qlc@2/fp@0,0/ssd@w500000e01924a4e1,0
    1. c1t1d0 <SUN146G cyl 14087 alt 2 hd 24 sec 848>
    /pci@8,600000/SUNW,qlc@2/fp@0,0/ssd@w500000e01a467d91,0
    2. c1t2d0 <SUN146G cyl 14087 alt 2 hd 24 sec 848>
    /pci@8,600000/SUNW,qlc@2/fp@0,0/ssd@w500000e019dd3151,0
    3. c1t3d0 <SUN146G cyl 14087 alt 2 hd 24 sec 848>
    /pci@8,600000/SUNW,qlc@2/fp@0,0/ssd@w500000e01a467321,0
    4. c1t4d0 <SUN146G cyl 14087 alt 2 hd 24 sec 848>
    /pci@8,600000/SUNW,qlc@2/fp@0,0/ssd@w500000e01922a001,0
    5. c2t600A0B8000482D560000031B482A46BCd0 <SUN-CSM200_R-0619 cyl 51838 alt 2 hd 512 sec 64>
    /scsi_vhci/ssd@g600a0b8000482d560000031b482a46bc
    6. c2t600A0B8000482D5600000318482A46A6d0 <SUN-CSM200_R-0619 cyl 51838 alt 2 hd 512 sec 64>
    /scsi_vhci/ssd@g600a0b8000482d5600000318482a46a6
    7. c2t600A0B8000482DBC00000659482B59D3d0 <SUN-CSM200_R-0619 cyl 51838 alt 2 hd 512 sec 64>
    /scsi_vhci/ssd@g600a0b8000482dbc00000659482b59d3
    8. c2t600A0B8000482E200000049E482B599Ad0 <SUN-CSM200_R-0619 cyl 51838 alt 2 hd 512 sec 64>
    /scsi_vhci/ssd@g600a0b8000482e200000049e482b599a
    (End 0f output)
    *3) For cfgadm output is given below*
    root# cfgadm -al
    Ap_Id Type Receptacle Occupant Condition
    PCI0 unknown empty unconfigured unknown
    PCI1 unknown empty unconfigured unknown
    PCI2 unknown empty unconfigured unknown
    PCI3 unknown empty unconfigured unknown
    PCI4 scsi/hp connected configured ok
    PCI5 pci-pci/hp connected configured ok
    PCI6 pci-pci/hp connected configured ok
    PCI7 fibre/hp connected configured ok
    PCI8 fibre/hp connected configured ok
    c0 scsi-bus connected configured unknown
    c0::dsk/c0t0d0 CD-ROM connected configured unknown
    c1 fc-private connected configured unknown
    c1::500000e01922a001 disk connected configured unknown
    c1::500000e01924a4e1 disk connected configured unknown
    c1::500000e019dd3151 disk connected configured unknown
    c1::500000e01a467321 disk connected configured unknown
    c1::500000e01a467d91 disk connected configured unknown
    c1::508002000065adb9 ESI connected configured unknown
    c3 scsi-bus connected configured unknown
    c3::rmt/0 tape connected configured unknown
    c4 scsi-bus connected unconfigured unknown
    c5 scsi-bus connected unconfigured unknown
    c6 scsi-bus connected configured unknown
    c6::rmt/1 tape connected configured unknown
    c7 scsi-bus connected unconfigured unknown
    c8 scsi-bus connected unconfigured unknown
    c9 fc-private connected configured unknown
    c9::200600a0b8482dab disk connected configured unknown
    c10 fc-private connected configured unknown
    c10::200500a0b8482dbd disk connected configured unknown
    c11 fc-private connected configured unknown
    c11::200700a0b8482dab disk connected configured unknown
    c12 fc-private connected configured unknown
    c12::200400a0b8482dbd disk connected configured unknown
    usb0/1 unknown empty unconfigured ok
    usb0/2 unknown empty unconfigured ok
    usb0/3 unknown empty unconfigured ok
    usb0/4 unknown empty unconfigured ok
    *4) root# cfgadm -al -o show_FCP_dev*
    Ap_Id Type Receptacle Occupant Condition
    c1 fc-private connected configured unknown
    c1::500000e01922a001,0 disk connected configured unknown
    c1::500000e01924a4e1,0 disk connected configured unknown
    c1::500000e019dd3151,0 disk connected configured unknown
    c1::500000e01a467321,0 disk connected configured unknown
    c1::500000e01a467d91,0 disk connected configured unknown
    c1::508002000065adb9 ESI connected configured unknown
    c9 fc-private connected configured unknown
    c9::200600a0b8482dab,0 disk connected configured unknown
    c9::200600a0b8482dab,1 disk connected configured unknown
    c9::200600a0b8482dab,31 disk connected configured unknown
    c10 fc-private connected configured unknown
    c10::200500a0b8482dbd,0 disk connected configured unknown
    c10::200500a0b8482dbd,1 disk connected configured unknown
    c10::200500a0b8482dbd,31 disk connected configured unknown
    c11 fc-private connected configured unknown
    c11::200700a0b8482dab,0 disk connected configured unknown
    c11::200700a0b8482dab,1 disk connected configured unknown
    c11::200700a0b8482dab,31 disk connected configured unknown
    c12 fc-private connected configured unknown
    c12::200400a0b8482dbd,0 disk connected configured unknown
    c12::200400a0b8482dbd,1 disk connected configured unknown
    c12::200400a0b8482dbd,31 disk connected configured unknown
    Which part of output is indicating diskarry.. Please help me to understand....
    FYI
    root@# more /etc/vfstab
    #device device mount FS fsck mount mount
    #to mount to fsck point type pass at boot options
    #/dev/dsk/c1d0s2 /dev/rdsk/c1d0s2 /usr ufs 1 yes -
    fd - /dev/fd fd - no -
    /proc - /proc proc - no -
    /dev/md/dsk/d103 - - swap - no -
    /dev/md/dsk/d100 /dev/md/rdsk/d100 / ufs 1 no nologging
    /dev/md/dsk/d115 /dev/md/rdsk/d115 /global/.devices/node@1 ufs 2 no global
    swap - /tmp tmpfs - yes -
    /dev/vx/dsk/ossdg/exporthome /dev/vx/rdsk/ossdg/exporthome /export/home ufs 2 no logging
    /devices - /devices devfs - no -
    ctfs - /system/contract ctfs - no -
    objfs - /system/object objfs - no -
    sharefs - /etc/dfs/sharetab sharefs - no -

  • How to find whether the current BU in Apps is multi org or not??

    I want to know that how we can find the status of multi org whether it is enabled or not?
    Edited by: user13079708 on Jun 23, 2011 6:27 AM

    Hi;
    What is EBS version?
    In R12.x its comes enable by default
    In R11 Run the following SQL statement, if it returns 'Y', then your installation is Multi-Org:
    SQL> select multi_org_flag from fnd_product_groups;
    Regard
    Helios

Maybe you are looking for

  • Error message - Specify either address number or address handle

    Hi all, When I tried to display an outbound delivery, there is a status message which says 'Specify either address number or address handle'. Please let me know the reason for the above. Thanks and regards, Anishur

  • Is it possible to edit "Disc #" column in iTunes?

    I did a search on this and did not find it, though I'd imagine someone's asked this before. On some multi-CD box sets, not all the disc info appears in the "Disc #" column in iTunes 9. For example, one set I imported showed 1 of 8, 2 of 8, 3 of 8, 4

  • BPM Message Split: Does it really work?

    Hello everybody, did anybody of you design a process with a message split that works? If I look the SAPs tutorial "checkSeatFlightAvailability" an test the message-split in IR I CAN'T see that there is a message really splittet into MESSAGE1, MESSAGE

  • Why is my mac book blank and not loading when I turn it on?

    Why is my mac a blank screen when I turn it on and not loading?

  • Dynamic pages / parameter and navigation links

    hi all! my goal is to develop a portal page , with a naviagtion region on the left side (this is a dynamic page in which links are defined) and on the right side there should be the main region (also a dynamic page , with parameter input). Now, it sh