Email Server Monitoring Methods

I am about to develop an Email Server monitoring project. I have several questions about it:
1. Whats the best method to do it ? (in term of accuracy and work load)
2. I've been reading on some round-robin method which expect a reply from an email server to determine the status of the server. Whats the difference between this method and the conventional way (which sends email to server and doesnt expect for a reply), Isn't the latter method sufficient and accurate enough ?
Thats what I'd like to know. Any other suggestions are also welcome. Thanks.

import java.io.*;
import java.net.Socket;
* Simple SMTP Client that allows your Java App send emails.
* Uses Java Sockets to connect directly to an SMTP server.
* It supports sending of plain text or HTML emails.
* Bonus: Unlike many other Java SMTP Sockets examples, this one actually works.
* @author Olly Oechsle, www.intelligent-web.co.uk
public class Emailer {
    public static void main(String[] args) throws Exception {
        String results = send("localhost",
                25,
                "[email protected]",
                "[email protected]",
                "Test Email",
                "<b>You got mail!</b>");
        System.out.println(results);
     * Sends an email.
     * @return The full SMTP conversation as a string.
    public static String send(
            String host,
            int port,
            String to,
            String from,
            String subject,
            String message) throws Exception {
        // Save the SMTP conversation into this buffer (for debugging if necessary)
        StringBuffer buffer = new StringBuffer();
        try {
            // Connect to the SMTP server running on the local machine. Usually this is SendMail
            Socket smtpSocket = new Socket(host, port);
            // We send commands TO the server with this
            DataOutputStream output = new DataOutputStream(smtpSocket.getOutputStream());
            // And recieve responses FROM the server with this
            BufferedReader input =
                    new BufferedReader(
                            new InputStreamReader(
                                    new DataInputStream(smtpSocket.getInputStream())));
            try {
                // Read the server's hello message
                read(input, buffer);
                // Say hello to the server
                send(output, "HELO localhost.localdomain\r\n", buffer);
                read(input, buffer);
                // Who is sending the email
                send(output, "MAIL FROM: " + from + "\r\n", buffer);
                read(input, buffer);
                // Where the mail is going
                send(output, "RCPT to: " + to + "\r\n", buffer);
                read(input, buffer);
                // Start the message
                send(output, "DATA\r\n", buffer);
                read(input, buffer);
                // Set the subject
                send(output, "Subject: " + subject + "\r\n", buffer);
                // If we detect HTML in the message, set the content type so it displays
                // properly in the recipient's email client.
                if (message.indexOf("<") == -1) {
                    send(output, "Content-type: text/plain; charset=\"us-ascii\"\r\n", buffer);
                } else {
                    send(output, "Content-type: text/html; charset=\"us-ascii\"\r\n", buffer);
                // Send the message
                send(output, message, buffer);
                // Finish the message
                send(output, "\r\n.\r\n", buffer);
                read(input, buffer);
                // Close the socket
                smtpSocket.close();
            catch (IOException e) {
                System.out.println("Cannot send email as an error occurred.");
        catch (Exception e) {
            System.out.println("Host unknown");
        return buffer.toString();
     * Sends a message to the server using the DataOutputStream's writeBytes() method.
     * Saves what was sent to the buffer so we can record the conversation.
    private static void send(DataOutputStream output,
                             String data,
                             StringBuffer buffer)
            throws IOException {
        output.writeBytes(data);
        buffer.append(data);
     * Reads a line from the server and adds it onto the conversation buffer.
    private static void read(BufferedReader br, StringBuffer buffer) throws IOException {
        int c;
        while ((c = br.read()) != -1) {
            buffer.append((char) c);
            if (c == '\n') {
                break;
}Is the above code considered as low level approach ?
I tested it so far and it works only for some mail servers (https://inetmon.com and https://nav6.org). However when I tried to send an email to myself in gmail.com it doesnt work. It catches an expection and prints "Host Unknown". Any idea how to fix it ?

Similar Messages

  • HOW TO: Relay/Send email from websites, Server Monitor in OS 10.5 Server

    If you don't want to run your own mail server or configure DNS on your Xserve, but you still want your website or applications like Server Monitor to send email notifications; this is what you need to do:
    Scenario: Mac OS 10.5.2 Leopard - Advanced Configuration - Setup is for strictly sending emails through SMTP, routed through your ISP or another provider. This is not for receiving emails.
    -Open up Server Admin
    If you have yet to add in a server to admin, you need to do so. Resource PDFs on setting up OS X Server are available at Apple http://www.apple.com/server/macosx/resources/ and there are video tutorials at http://movielibrary.lynda.com/html/modPage.asp?ID=373
    -Click on your server, then choose the Settings button
    -Then choose Services from the Tabs/Buttons below
    -Select the Mail checkbox and then hit Save
    -Now choose the newly added Mail service in the left pane, then click the Settings button up top
    -Start with the Advanced tab. Under Security, un-check everything and don't use SSL unless you want to. You don't need to mess with the other sub-tabs here.
    -Next choose the Logging Tab. Under SMTP log level, choose debug so you will be able to see what goes on in the log.
    -Mailing List, Quotas and Filters tabs can go untouched. You can mess with them later if you want.
    -Click the Relay tab. It is a good idea to only accept relays from your local machine. If you uncheck this, I believe it leaves you with an open relay that anybody can access.
    -Now for the General Tab. Under Domain Name put anything you want. Any made up name and extension is fine.
    Under Host Name, again put anything you want.
    Un-check Enable POP, Un-check Enable IMAP - Basically un-check everything
    Check or leave checked Enable SMTP
    Now check Relay outgoing mail through host:
    Then enter your hosts SMTP server. ex. smtpout.secureserver.net
    Now check Authenticate to relay with user name: and enter your username and password
    -Now hit the Save button
    -Now we need to take a look at the main.cf file and add a few things
    -If you aren't showing all files in Finder already, open up Terminal.app
    Now type in: defaults write com.apple.Finder AppleShowAllFiles True
    Hit enter
    Now type in: killall Finder
    Now Finder should reset and all files should be visible - To hide all files, do the same thing but type False
    -Now open Macintosh HD and navigate to /private/etc/postfix/main.cf (Note: you won't be able to open and edit this in TextEdit. I recommend a program like TextWrangler http://www.barebones.com/products/textwrangler/download.shtml )
    -Once you have main.cf open, all your settings should be together at the bottom of the doc. Scroll down. You will need to add in a few lines and verify all the settings are exactly as below (except of course your own names and SMTP server):
    readme_directory = /usr/share/doc/postfix
    mydomain_fallback = anything.anyting
    messagesizelimit = 0
    myhostname = anything.anything
    mailbox_transport = cyrus
    mydomain = anything.anything
    mailboxsizelimit = 0
    enableserveroptions = yes
    inet_interfaces = all
    relayhost = smtpout.secureserver.net
    smtpsasl_passwordmaps = hash:/etc/postfix/sasl/passwd
    smtpsasl_authenable = yes
    smtpdsasl_authenable = no
    smtpsasl_securityoptions =
    smtpduse_pwserver = no
    smtpdrecipientrestrictions = permitmynetworks,reject_unauthdestination,permit
    smtpdpw_server_securityoptions = none
    -Now save the main.cf document
    -Now go back to Macintosh HD and navigate to /private/etc/postfix/sasl/passwd
    Open passwd with TextWrangler or you editing app, and verify that your SMTP server, username and password are correct. It should look something like this:
    smtpout.secureserver.net [email protected]:password
    -This should be what you entered in Server Admin when you first started. If all is well, quit your editing app.
    -Now, while you are still at /private/etc/postfix/sasl/passwd you need to edit permissions for passwd
    You can chmod in Terminal.app or secondary click on passwd and "Get Info"
    Click the lock and enter your password to unlock the settings
    Next click the + button and add yourself and Admin
    -Now you can close out of everything and go back to Server Admin
    -Hit the Reload (twisty arrow) button at the bottom and once everything is reloaded, hit Start Mail
    -Now type localhost in your browser to see if your website can send email. You can also open up other apps such as Server Monitor and do something to change the status to have it send an email.
    -You can click on Mail in the Server Admin and then view the SMTP log. As long as emails are being sent and then removed from the queue, you are in good shape. If you are getting an SASL error or mechanism error, open up main.cf and verify your settings and/or check permissions on passwd file

    Don't you need the Mail service running to have apps like Server Monitor send email notifications? - Also for hosted sites that use the sendmail function you need a service running to get the emails sent.
    Really you are not hosting a Mail server. It is open, but there is no incoming and if you only accept SMTP relays from the local machine, there should be no issues.

  • Server Monitor Email Notification settings

    Ciao!
    Email notification settings in Server Monitor, how does this work and needs to be setup?
    Do I have setup a email account in the Server to use this feature or do I just enter the following fields:
    From:
    To:
    and the server does the rest, which I can't believe. :?
    Thanks for any help!

    I believe the answer is yes: you do not need an email account set up for the notifications to be sent out, and they will come from whatever email domain you specify in the "From:" field.
    -Doug

  • Monitors: SQL Server: Access Methods: Full Scans/sec

    Hello,
    I created a Monitor:
    Monitors: SQL Server: Access Methods:
    Full Scans/sec
    It appears in Heath explorer on the servers
    but is not available in the Performance Data for the Views...
    What did I miss? I need to create a rule but which type ? linked to the monitor?
    Should I use a Rule or a Monitor or a combination?
    Thanks,
    Dom
    System Center
    Operations Manager 2007 / System Center
    Configuration Manager 2007 R2 /
    Forefront Client Security
    / Forefront Identity Manager

    Hello,
    I got on the servers the
    1200:New Management Pack(s) requested. Management group "SCOM-MED", configuration id:"68 D8 86 93 7A 48 27 13 C0 6F B2 76 3C A4 07 87 DA 53 22 7F ".
    1201:New Management Pack with id:"xxxx.SQL.Servers", version:"1.0.0.1" received.
    1207... Rule/Monitor "Microsoft.Windows.SystemCenterDPM.DPMServerDiscovery" running for remote instance "MSQLCL1SQLBU.ad.medctr.ucla.edu" with id:"{A3100D57-1657-A51E-CD3E-6ACF2679A501}" will be disabled as it is not remotable.
    Management group "SCOM-MED".
    1210 New configuration became active. Management group "SCOM-MED", configuration id:"68 D8 86 93 7A 48 27 13 C0 6F B2 76 3C A4 07 87 DA 53 22 7F ".
    still waiting ...
    1204: Management Pack with id:"xxxx.SQL.Servers", version:"1.0.0.1" is no longer used by HealthService and will be deleted from cache.
    Is this 1204 okay !!!!!
    Thanks,
    Dom
    System Center Operations Manager 2007 / System Center Configuration Manager 2007 R2 / Forefront Client Security / Forefront Identity Manager

  • Server Monitor Version 1.6.1 (2) won't send email notification

    I am running Server Monitor Version 1.6.1 (2) on a Mac Pro 10.5.8. It is monitoring an Intel XServe 10.5.8 and a Dual G5 XServe 10.4.11.
    I had a bad UPS and Server Monitor only emailed notification of the 10.4.11 XServe going down but not about the 10.5.8 Intel XServe going down. I checked the log for the Intel XServe and it says, "Email notification could not be sent to ..."
    The email notification settings are the same for both Servers.
    Any ideas how to get email notification working for the Intel XServe.

    A little more info...
    Also, the G5 XServe uses it's actual IP address while the Intel XServe uses a different IP because of LOM.
    The G5 Xserve requires password authentication to change email settings while the Intel XServe does not.
    ANY suggestions here???
    Thanks!

  • Server Monitor Notification will NOT accept an outgoing email address

    Hi folks. I have a new XServer Xeon. Everything is working great, except for one maddening issue: When I use Server Monitor and go to set up notifications, the "send to" field will NOT accept any input at all...whether it's a bonafide email address or just any old text typing. Nada. I can seem to enter all other info like the "from" field, and the buttons work....just can't add any addresses to send notifications to. Any ideas? I'm hoping this is a "duh" moment for me and not a real issue.
    Thanks!

    Daddy
    I have quite a few Xserve's (G4, G5) running Email notification from Server monitor without mail services running.
    It appears to be a problem with the new Intel's version of Server monitor, I cannot get SM to accept any email addresses either, it will also not remember other settings between launches.
    I have submitted a bug report with Appple through ADC on this.
    FYI if you setup lights out management on another IP on Xserve and connect server monitor to that IP from another machine you can add email addresses but when hardware events occur on Xserve no emails are sent!
    So IMHO server monitor V1.5 is broken right now, only good for manually monitoring the hardware.
    If I get an answer from Apple I will post it in this category
    Ed

  • Email notification not working from Server Monitor (for power outages etc.)

    I have my email address entered in the notifications fields for power on Server Monitor. I tried pulling the plug (it's on a UPS), which it did notice but it never sent any emails. How do I debug this? Where is the SMTP settings or whatever is needed? Have people gotten the email notifications from Server Monitor to work?
    Mike

    tobias Eichner wrote:
    Have you checked your mail filter, maybe the notification got mistakenly marked as spam ?
    thank you for your reply! Is this working for you - are you getting notifications? My spam folder doesn't have any of these. Where did you set up the SMTP info for this? I don't see this anywhere. On the web, at
    http://support.apple.com/kb/TA21298?viewlocale=en_US
    it looks like you have to tell it how to send the emails in Message.framework:
    The Message.framework looks in two places for a way to send email. The first
    is that it looks for an SMTP server configured in the Email tab of Internet
    preferences. The other way is to use an email account configured in Mail.
    the question is, which user's .plist file for internet preferences or for Mail - which user's info is it using to send the notifications?
    Mike

  • Server monitor not working (hardware monitor)

    Just finnished installing my brand new maxed out Intel Xserves. And the Server monitor isn't working.
    This thread:
    http://discussions.apple.com/thread.jspa?messageID=643361
    Didn't solve my problem. hwmond is running on the Xserves but each server line just says "Waiting for response". My /System/Library/ServerSetup/SetupExtras file doesn't even HAVE a Disabled key. It has Label, OnDemand, Program, ProgramArguments and ServiceIPC keys, but no Disabled. And the hwmonds is running anyway.
    I have opened server monitor on the xserve itself and tried to open it to itself with no luck. I have configured Lights out management by choosing Server->Configure local Machine and added another IP there with different login, but I can't connect to either IP. Firewalls are all turned off.
    Running /System/Library/ServerSetup/SetupExtras/hwmondSetup just says "already loaded"
    Server Admin works, I can log in and edit services. Workgroup manager also works.
    When i run the hwmond as root on the server, it says "Failed to communicate with the front panel" which could be due to hwmond already running, but I can't turn off the process since launchd (?) launches it again.
    When I choose "Configure local Machine" the password I entered is always blank, but maybe that's by design.
    Since these servers aren't installed yet I have them in my office and their IP's are temporary, so I read this:
    http://docs.info.apple.com/article.html?artnum=106830
    And it says that for this environment I should set the hostname to "localhost" in /etc/hostconfig. Done. Nothing changed.
    I've googled this and searched here but found nothing. I'm running out of options... What should I do?

    I set the server on a desk and do a fresh install off a DVD with the "erase HD" option. Then I install and configure the software I need (Software update, Sophos, power options, etc.) I did not configure LOM at that point, because I wasn't sure how to do it, and I needed to deploy the server. (luckily LOM was easy enough to set up after it was deployed.) Once the server is ready, I connect a FireWire HD to it, which has OS installed on it and boot from that.
    That way my server is just an attached disk, and I use Disk Utility to create an image of it, which I then deploy on other servers.
    I've had an issue with the G5 XServes where such a method required relatively simple modification before the server monitor would work:
    http://docs.info.apple.com/article.html?artnum=301046
    But, I've not had to do that with the Intel XServes.

  • Email server automatica​lly updates itself

    I manually input the email server information for my Exchange Server into the 'incoming mail server' settings.  It syncs, and some emails download.  Then they stop... I go back to the incoming mail server information, and it's a different mail server.  Does anyone else see this 'auto-update' of the server information that you've loaded?  Is there a way to "lock it" in?
    Post relates to: HP TouchPad (WiFi)

    I think some of the possible causes of such slowness:
    - Index issues
    - replication latency
    - high load
    - disk usage
    I would check those issues in that order, first checking the number and type of indexes for each entry, non indexed searches that could over load server, and try to get better performance reindexing. Updates are usually expensive but not that expensive.
    Then, if everything is OK, I would test only using the slow machine and see if replication was an issue.
    In all cases I would monitor operative system behaviour.
    Mmmh you can also check if the workload of write operations in the slower machine are significantly higher than in the other. And if search time are the same...

  • No option to change "Incoming server authentication method" to None on iPhone 6?

    I just upgraded to an iPhone 6 and did a restore from my 5......   Problem is my pop e-mail account won't connect....  It still connects on both my iPad and iPhone 5, both of which are iOS 8.  The only setting that differs between the two that work and my new iPhone is under the "Incoming server authentication method" setting.  On the working devices, nothing has a check mark.  On the new iPhone, "Password" is checked, and I can't find a way to uncheck it (there is no "none" option). 
    Surely I should be able to work around this?

    Hello 83preston,
    After reviewing your post, I have located an article that can help troubleshoot email issues. It contains a number of troubleshooting steps and helpful advice for the issue you are experiencing:
    Get help with Mail on iPhone, iPad, and iPod touch
    "Username or password is incorrect" with POP3 account
    Before you check your email on your iOS device, close any other email programs and close any webmail sites you may have open on another computer.
    To see if your account is a POP3 account, use the Mail Settings Lookup tool or follow these steps:
    Go to Settings > Mail, Contacts, Calendars and tap the account.
    Look for the label POP ACCOUNT INFORMATION.
    If your email provider offers IMAP, remove the POP3 account, then add the account with your provider's IMAP settings. POP3 communicates with one mail client at a time. If more than one mail client tries to connect, you might see a username or password error.
    Thank you for contributing to Apple Support Communities.
    Cheers,
    BobbyD

  • Server monitor : my turn

    Like other people, i would like to manage my xserve remotely (like the advertisement promise).
    ===
    configuration :
    * xserve 1.1
    * os server 10.4.10 (8R2218b)
    * LOM Revision 1.2.7
    * only one ethernet port used,
    * in the etc/hostconfig, the hostname is -AUTOMATIC-
    * i did not configure the LOM initially (because i did'nt ask for a specific ip adress dedicated for LOM at this time). My provider gave me then a specific adress for LOM on the same subnet.
    * dns and reverse dns for the server and LOM are configured by the provider and work fine,
    * I configured the LOM like 'defor' advised in his Aug 22, 2007 post in
    http://discussions.apple.com/thread.jspa?threadID=940740&tstart=0
    * I did shutdown/disconnect/reconnect power/power on.
    ===
    Problems are :
    1) malfunction of server monitor localy (via vnc)
    Server Monitor shows Name = localhost, IP=127.0.01 : is it ok ? .
    It gives informations about the hardware but :
    = i cannot write email adresses into the "edit notification panel". The "Add" button remains grey.
    = the "restart button" doesn't work... "Failed to contact server".
    2) no remote server monitor.
    From my Mac book Pro (localized French)
    I notice that in the list : 'Nom' is empty and 'Adress IP' is correct (writing the IP or the name) and the status remains 'Attente de reponse'
    3) ipmitool
    ipmitool -U [myLOMadminaccount] -H [LOMIP] chassis power status
    ask for password,
    wait 3 seconds and return nothing (the prompt)...the same for others commands
    but "sudo ipmitool -v -v user list 1" gives well the 2 accounts (1 ADMINISTRATOR, 1 USER)
    Thanks in advance for your help.

    Happy news from my system :
    I went to the data center yesterday to try different configurations of LOM but first applied the Xserve Firmware Update 1.0.
    A "power off/disconnect power cord (and ethernet cable, why, not ?) dance " and bingo :
    1) Server monitor on my MacBook connects to the xserve,
    2) I can add an email notification,
    3) i can restart the xserve from my laptop.
    But... it's not complete...
    The history log shows (translating from french) every x minutes : three times 'unable to contact the server' then 'connection lost' then, after few seconds the update time is refreshed as the elapse live time of the xserve in the "infos" panel :
    Is-it a real update or a fake ?
    To be sure (silly question ?), is it possible to simulate a xserve problem in the scope of server monitor (and test the notification by email) ?
    Admin server has the same problem : connection lost after x minutes

  • TS1307 "The email server didn't recognize your username/password combination". This message pops up when trying to mail photos from iPhoto. How do I fix it?

    "The email server didn’t recognize your username/password combination." This message pops up when trying to send photos from iPhoto via Mail. I have tried reseting passowrds in both gmail and me.com

    Thanks for helping Christeneau.  You helped me too...eventually.  I say eventually because I was puzzled by your 'What does it say behind "email photo's using"'?
    I realised the problem was your incorrect use of the apostrophe 's', as in 'photo's using'.
    I just could not make any sense of this sentence at all, until I realised that you meant to write, "What does it say behind "email photos using".  What you employed was the possesive use of the apostrophe - a mistake that seems to have become endemic in english speaking nations during the last 10 years or so, brought on by the lack of understanding basic english grammar.  This has come about because of sloppy teaching methods the world over - it's not really your fault.
    It's quite simple: The apostrophe 's' should be used as the following examples show:
    James's apple, the car's horn, the world's atmosphere. The one exception is 'its shape,' where there is no apostrophe showing posession because that construction has been used as an abbreviation to 'it is', as in 'it's'.
    Plurals (more then one) NEVER have an apostrophe!  E.g. CDs, eggs, biscuits, vehicles, UNLESS to show possesion - a CD's label, the biscuit's taste, a vehicle's colour.
    Thanks again for you help.

  • Server Monitor Buttons Missing

    The Monitoring, Profiling and Memory Tracking buttons are all missing from the Server Monitor and it is not displaying any data. Where did they go? I'm on CF9/Multi-server and Windows Server 2008/64 bit. My CF server instances are running under a domain account so they can get to network shares. I'm using multiple jvm.config files to give some servers more memory than others. I've tried adding the domain account to the Administrators group, made sure monitoring, profiling and memory tracking are all enabled, and made sure the crossdomain.xml file is in the webroot.

    Well, first briefly, I've seen this happen (the start/stop buttons don't appear), where simply refreshing the page made them reappear.
    Assuming you've confirmed that doesn't solve it, here are some questions that may help us hone in on the problem:
    - does this happen on all the instances or just one?
    - you say you are on CF9. Do you mean 9 or 9.0.1?
    - Have you applied any hotfixes or cumulative hotfixes? (And I'd ask you to confirm that not from memory but from confirming by looking in the lib\updates directory. On Multiserver, that's \servers\cfusion\cfusion-ear\cfusion-war\WEB-INF\cfusion\lib\updates for the cfusion instance, or \servers\instancename\cfusion.ear\cfusion.war\WEB-INF\cfusion\lib\updates for any others (note change from - to . in the ear/war directory names).
    - Are the hotfixes there the right ones for the version you're running (not 900 in the filenames if you're running 9.01, or vice-versa)
    - When you say it's "not displaying any data", do you mean that the graphs on the front page are essentially blank? That would mean simply that "start monitoring" has not yet been enabled. When you say "no data", I'd want to make sure you don't mean that none of the screens show anything. There are many that show data even if there are none of the "start" buttons enabled, such as the Template Cache Status page (on the Statistics tab, in the "Request Statistics" section). Is that "displaying data"? Just trying to help clarify your situation.
    Also, just as a workaround until you do solve this, note that if you're on 9.01, you can now at least turn the buttons on and off in the CF Admin, something that's gone under the radar for many, it seems.
    Hope that's helpful.
    /charlie arehart
    [email protected]
    Providing CF and CFBuilder troubleshooting services
    at http://www.carehart.org/consulting

  • Mac Mini Email Server Help!!!!

    I recently bought a mac mini to use in my office. I want to setup a email server so that all of the office email's go through the mac mini and then to the isp. Is there any way i can do this. Also I need to install windows 7 on mac os x sever 10.6, is there a workaround because there is no boot camp?

    So do you want a full blown mail server setup to receive as well as send? Or just sending? If its just sending, what are you looking to accomplish using this method?
    The purpose of the server would be to run its services 24/7, why would you want to install Windows 7 on it, this would be done better at user desktop via boot camp or parallels?

  • Server Monitoring Problem

    I have had a situation where we installed CF 8 and ran the
    trial version for some time before we bought the Standard LIcense
    and applied it. We were checking out the server monitoring during
    our trial period, and had it enabled. Now--because we are running
    the Standard edition the server monitor is unavailable. However--I
    am still receiving emails generated by the server monitor. Is there
    a way to disable the server monitor--without accessing the
    interface?
    Thanks,

    Go to "neo-monitoring.xml" in "\ColdFusion8\lib"
    change
    <var name="monitoringenabled">
    <boolean value="false" />
    </var>
    save the file and restart the server.

Maybe you are looking for

  • How to rearrange key figures for every row in a report

    Hi gurus, I need help in rearranging the key figures values( product sales for A, B, and C ) in the columns for each sales division row D1,D2,D3 displaying keyfigures in the order of descending sales volume for each division. The order of key figures

  • MessageExpiredException error in JDBC - RFC scenario using BPM.

    <b>Scenario:</b> JDBC( Asynch)- RFC( Synch)- JDBC (Asyc)       We are using XI to read oracle table records to insert the records in R/3 and after the insert in R/3 we return a sap code to update in oracle db. When we try to process 10 or less rows f

  • Photoshop CS6 Activation doesn't work

    I downloaded Photoshop CS6 from Adobe and when i tried to activate it it doesn't work. I used my "Adobe Creative Suite Design & Web Premium" CS6 but it said the Serial Number was closed.

  • Found a good cursor/icon editor plug-in for Photoshop

    I've been trying to edit cursors and icons, and Photoshop doesn't natively support .ico or .cur file formats.  After being disappointed with the available stand-alone cursor editor programs, I began searching for Photoshop plug-ins. The best plug-in

  • Oracle 8.0.6. Can't download

    I have been trying to download Oracle 8.0.6 client. The file size is over 190 Mbytes, and my system always seems to time out. Is there anywhere where I can get this on CD-ROM? I am in the UK. Thanks Lindsay