How to setup the system monitoring using sol man ?

Experts
can any one advise me how to setup the below monitoing.
Background jobs (SM50)         -  Long running jobs >24hrs
Email/Fax  transmission(SCOT)  -  alert if there is any failire/errors in the email transmission
iDocs Processing(WE05)          -  Data Transfer failure
Enque locks (SM12)         -  alert if there are any Lock entries which are older than 2 days
Update Records(SM13)         -  alert if there are any update request  older than 90 days
Regards
Karthi

Hello Prasad
Thanks a lot your information. I wil go thorugh the documents which you have mentioned.
I have configured few alerts  and  unfortunately I am still struggling to configure these alerts. I am also not able find whether I will be able to configure these alerts are not. Any advice/tip  would be a great help.
if I get some solution, definately I will share with all.
Regards
Karthi

Similar Messages

  • How to setup the WRT350N to use a USB NTFS Drive for backup storage?

    My network consists of a WRT350N Router/AP/NAS (with a 500GB NTFS formatted USB drive), a Windows Vista Ultimate Desktop (wired connection), a Windows Pro SP2 Desktop (wired connection) and a Windows Pro SP2 Laptop (wireless connection).
    Does anyone know what settings to use for the WRT350N and how to setup each of the computers to allow me to use the WRT350N for Backup file Storage?
    For example: Can I/should I enable and use the ftp server functions?  Can I just use the guest user account for all logins; etc.?  Do I have to reformat the USB Drive to FAT32?
    Any help would be appreciated!

    Here is the clue to your question.
    1.If you have formatted your Disk with the help of your computer it will be better if you reformat it with the "Erase" button
    available on the Storage Tab of the Linksys
    router's Setup page.
    2.After that You need to make sure that you have
    public IP address as your WAN IP on the status of the router to setup a FTP server.
    3.You can use guest account for all your users but
    please make sure that you select guest as group
    while creating user.

  • How to insert the system date  using PreparedStatement

    How do I insert system date(from Orcale database) using
    PreparedStatement. I am aware that that oracle has date
    function 'sysdate' to retrieve the database current date.
    How Do i use that in the following syntax?
    Alertnative 1:
    String inssql =
    "insert into emp (empid, name, dept, updateDate) "+
    " values (?, ?, ?, ?)";
    PreparedStatement pstmt = conn.prepareStatement(inssql);
    pstmt.setInt(1, 123456);
    pstmt.setString(2, "Bougnon Kipre");
    pstmt.setString(3, "Rare Species Depatement" );
    pstmt.setDate(4, sysdate) // if this okay
    pstmt.executeUpdate();
    Alternative 2:
    String inssql =
    "insert into emp (empid, name, dept, updateDate) "+
    " values (?, ?, ?, sysdate)";
    PreparedStatement pstmt = conn.prepareStatement(inssql);
    pstmt.setInt(1, 123456);
    pstmt.setString(2, "Bougnon Kipre");
    pstmt.setString(3, "Rare Species Depatement" );
    pstmt.executeUpdate();

    Hi,
    The second alternative will be the best way.
    Since the alternative 1 won't work. sysdate cannot be accessed
    from java as a variable. Either use alternative two or create a
    java.sql.Date and insert it.
    Regards
    Elango

  • How to Configure the system to use an firm's accepted warning banner in 10g

    Hello.
    I need to configure the system (oracle 10.2) to use an firm's accepted warning banner. I was able to do it in version 11 by putting entries in sqlnet.ora file. It then displayed when connectting as user (sys, system). I tried the same with 10.2 version and it doesnt display. Do i need to do anything different in 10g. I could not find the lead on googling it.
    I used theses entries in sqlnet.ora for 11g
    SEC_USER_UNAUTHORIZED_ACCESS_BANNER = <path>\banner2.txt
    SEC_USER_AUDIT_ACTION_BANNER = <path>\banner.txt
    Do we have to do differenetly in 10g. please help
    Thank you very much

    maggie wrote:
    Thanks for responding. Is there a way to create a banner in 10.2 version of oracle. I need to didpaly it as part of checklist i am working on for 10g.
    ThanksUnfortunately, auditors and security nazis dream up "requirements" without ever considering the capabilities and limitations of the selected technology. A lot of these guys get their technical knowledge from American Airlines Magazine when they get tired of reading the SkyMall catalog.
    Sometimes you just have to document the exception, get a manager's signature, and keep it on file.

  • How to know the system configuration using Java.

    Hello Everyone,
    I wanna know the system configuration (Hard Disk size,Ram capacity,Processor speed) .Can we know it using Java API? Or else is there any API which makes my life easier?
    Can someone let me know,please?
    All ur answers r most welcome.
    Thanks

    --> provides you with some basic info on os user and os but my best bet is to find a windows system file that maintains this information and then read the data from it
    import com.sun.servicetag.SystemEnvironment;
    SystemEnvironment se = SystemEnvironment.getSystemEnvironment();
            System.out.println(se.getCpuManufacturer());
            System.out.println(se.getHostId());
            System.out.println(se.getHostname());
            System.out.println(se.getOsArchitecture());
            System.out.println(se.getOsName());
            System.out.println(se.getOsVersion());
            System.out.println(se.getSerialNumber());
            System.out.println(se.getSystemModel());
            System.out.println(se.getSystemManufacturer());Edited by: emmanuel.putti on Nov 11, 2008 6:43 AM

  • How to retrieve the system used in an iview?

    hello,
    i'm currently having trouble retrieving the proper attribute of an iview to retrieve the system used by it.
    it seem like the strings identifying the system in the iview differ in some iviews.
    using either:
    myIView.getAttribute(IAttriView.PORTAL_SYSTEM)
    or
    myContext.getAttributes("").get("System").get().toString()
    produce errors.
    while get("System") sometimes provides the correct system alias the attribute is none existant for other iviews where the string would be "Systemalias".
    IAttriView.PORTAL_SYSTEM doesn't seem to work at all.
    i did implement fail safe code if the attribute isn't present, however i don't know how to retrieve the system attribute without doing a case switch or something similar for all the different strings, which i would prefer not to do.
    also, is there an easy way to retrieve all iviews which use a specific system without parsing the whole pcd and checking the attributes?

    Prerequisite : Create the System Alias for the systems used in the application.
    Use the below code to retrieve the system details:
            HashMap mapattr = new HashMap();
            HashMap map = new HashMap();
            IUser user = WDClientUser.getCurrentUser().getSAPUser();
            IPrincipal principal = (IPrincipal)user;
            ArrayList list = UMFactory.getSystemLandscapeWrappers();
            ISystemLandscapeWrapper systemLandscape = (ISystemLandscapeWrapper)list.get(0);
            //Portal System ALias name
            ISystemLandscapeObject landScapeObject = systemLandscape.getSystemByAlias("<system alias name>");
            IUserMappingData userMapping = (IUserMappingData) UMFactory.getUserMapping().getUserMappingData(landScapeObject,principal);
            userMapping.enrich(map);
            mappedUserId = map.get("user").toString(); // String "UserId"
            mappedPassword = map.get("mappedpassword").toString(); //String "Password" 
         catch(Exception e)
              e.printStackTrace();
              wdComponentAPI.getMessageManager().reportException("Exception during retrieving the User Details - " + e.getMessage(),true);
    Thanks & Regards,
    Amar Bhagat Challa

  • How to recover the system using recovery disc

    please tell me the steps to perform the system recovery using the recovery disc.
    my notebook model i hp pavilion dv-4 5009tx

    Hi:
    Please read the info at the link below.
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c01867418&cc=us&dlc=en&lc=en
    Paul

  • How to setup the SMTP server in Oracle apps?

    Hi,
    How to setup the SMTP server in Oracle Apps? Is it mandatory to keep the SMTP server on the same host where the Oracle data base is installed? Also can someone help how we can set up the SMTP server on different host (not the Database server) and we can use the same for Workflow notification mailer.
    Thanks,
    Bijoy
    Edited by: user12070886 on Feb 6, 2013 4:26 AM
    Edited by: user12070886 on Feb 6, 2013 4:27 AM

    How to setup the SMTP server in Oracle Apps? Is it mandatory to keep the SMTP server on the same host where the Oracle data base is installed? No, it is not mandatory. Also please note that the mails are sent out from concurrent manager mode. Not from the database node.
    Also can someone help how we can set up the SMTP server on different host (not the Database server) and we can use the same for Workflow notification mailer.
    >
    It depends on the operating system you are using. If you are using *nix then sendmail needs to be configured.
    Thanks

  • How to configure the database monitoring (DBA Cockpit) after Support pack

    Hi,
    I did the Support Pack Upgrade for BW system and i ran SGEN as well, now i need to configure the database , could you please suggest how to configure the database monitoring (DBA Cockpit) after Support Pack Upgrade.
    Server is MSSQL , Component is SAP NetWeaver 2004s and OS is Windows NT.
    Plesae suggest.
    Chandu.

    Hi,
    You are right. SAP delivers this functionality from SP-12. So when you have applied the SP-12, you must have done these config steps to enable the DBA Cockpit.
    If you have done these steps earlier, So you must have DBA Cockpit enable right now and putting extra SPs like 13, 14 and so on, should not be a matter.
    Now if you have not performed those config steps before, Please do them now and you will be able to use DBA cockpit.
    Please understand that SP12 is the base to run DBA Cockpit.
    With Regards,
    Saurabh

  • How to get the system info in a network

    Hi to all.
    can any one tell me how to get the system related,like system name and logged user ,info in a network using java...
    thnx in advance,
    ashok

    There is quite a bit of data that is stored in the System Properties. Run this little test app and it'll display all of the System Properties, what you are looking for may be contained in there:
    public class Test {
        public static void main(String[] args) {
            System.getProperties().list(System.out);
    }

  • How to setup the From header  in fullname and email address format

    when I sent mail from the messaging express , the mail that I sent cannot show the sender in the fullname and email address format. I use webmail and other mail client . It show only email address. I don't know how to setup this . I use the SUN JES messaging server 6.0 SP1 .

    exactly so.
    in general, for any configutil setting:
    0=off=no
    1=yes=on

  • How to setup the complex ownership relationship in SAP BPC

    Hi Buddies,
    I am new to SAP BPC. For legal consolidation, I am confused how to setup the ownership in BPC. The senario is following:
        P is the parent company, S1 and S2 are subsidiaries.
        1) P owned S1 80%, ownded S2 90%, meanwhile S1 owned P 20%
            How to setup this?
        2) P owned S1 80%, owned S2 70%, and S1 owned S2 10%.
            How to setup this?
    For above 2 senarioes, how to calculate the Minority Interest? ( Using different consolidation rules?)
    And if there are subgroup, how to see the subgroup result?
    Thanks in advance.
    Maggie Liu

    Hi Will,
    Thanks for reply... Actually, I've tried that before(putting comma after the flag "all," presuming the 71st step shows that I should have 3 members in the memberset under the ICDatasrc dimension. But it also did not work.
    Nope, step 71 did not tell us to use piping and consequently expanding the col key range.
    Thanks...
    Dryan

  • How to setup the default run page in WAR file

    Can anyone please tell me how to setup the default run page in WAR file using JDeveloper? I want the login page to be the default page of the application. Thanks!

    This is usually done in an .XML or other configuration file based on the particular web application container you are using.
    For example, in Tomcat Java Container, its the following parameter in the /conf/web.xml file:
    <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>
    You will need to look at the documentation for your server container.
    thanks

  • How to setup the movement slip printing

    Hi
      Does anyone know how to setup the movement or migo slip printing? Does it need setup condition to auto trigger the output type or omj4 could setup the auto slip printing by output type +plant locaiton ?
      I have setup NDR in my parameter as X, but when I test to move matieral or receipt, there is no slip be printed ..why?
    Thanks
    Sherry

    Hi Alice,
                Go to NACE Transaction in that select ME - Inventory managment and also maintain condition record, Procedure, output type, Acess sequence for output type (WE01) and u get automatically in GR..Moreover also select the printer determination by Plant/Storage location combination.....
    Apart from Maintaining condition record as suggested in previous thread one more important activity is
    In Migo screen on Header data section inside generaltab
    just below Posting date feild you will find Printer Icon right hand side to that there is one check box, this must be checked either manually at the time of GR/GI creation or is preselected if the parameter NDR has been set to X (capital letter!) in your user master recordset. This is preselected if the parameter NDR has been set to X (capital letter!) in your user master record...
    Moreover use MB90 for print outs for goods movement...
    From sas...

  • How to setup the Linksys router E4200 DD-WRT for WVC54GCA

    I don't know how to setup the Linksys router E4200 DD-WRT for WVC54GCA. The DD-WRT is very complcated. Please help!!!!! Also, I have used the TZO.com for the DDNS. Should I setup the DDNS for DD-WRT router??? I used the DDNS for my old model router before. Thanks.
    Solved!
    Go to Solution.

    Hi majekho, that is best be answered by support from the developers at the DD-WRT forums.
    The Search Function is your friend.... and Google too.
    How to Secure your Network
    How to Upgrade Routers Firmware
    Setting-Up a Router with DSL Internet Service
    Setting-Up a Router with Cable Internet Service
    How to Hard Reset or 30/30/30 your Router

Maybe you are looking for

  • Problem in Back Button in ALV report

    Hi Team, I have created a report which has a selection screen. Based on the input I am showing an ALV OO grid in my custom screen 0100. Now In the system toolbar on my 0100 screen I have enabled back, up and exit button. On click of which I am wrting

  • BAPI or FM for Source List (ME01 TCode)

    Hello,          I have a requirement to upload master data for Source List which is T-Code ME01. Now, as there is a Table Control in it, we are having trouble using LSMW because when there is more than 1 record for the given Material Plant Combinatio

  • HT1904 I want to edit my account so every purchase made must be authorized

    My three year old keeps making purchases on my I pad.  I need to set it up so every purchase must require authorization.  I have quite a few charges that I want to dispute.

  • Product Name: HP Pavilion 15-e017tx, Operating System: Windows 8

    When playing videos, sound is not coming but picture is clear. The following prompt appears when testing sound: "This device is using another application.  Please close any other devises that are playing audio to this application and try again." But

  • Backing up photos & music

    I just want to back up a bunch of songs and photos that are on 1 laptop, 2 desktop mac's and 1 external harddrive (connected to my iMac) throughout my home. I bought Time Capsule (1tb) and now think it may be a lot cheaper to just buy a large externa