Communication ORACLE - OUTLOOK (OLE2) - read mail - problem

I have a problem with communication with ORACLE<->OUTLOOK.
I need read mail from Outlook, i know EntryID mail.
My email : [email protected]
Here my code :
PROCEDURE kr_findmail_z(p_mail_id IN VARCHAR2)
IS
objArgL          OLE2.OBJ_TYPE;
objAppOutlook      OLE2.OBJ_TYPE;
objNameSpace           OLE2.OBJ_TYPE;
objFolders           OLE2.OBJ_TYPE;
objFolder           OLE2.OBJ_TYPE;
objMailItems          OLE2.OBJ_TYPE;
objMailItem          OLE2.OBJ_TYPE;
objUserProperties     OLE2.OBJ_TYPE;
objUserProperty     OLE2.OBJ_TYPE;
objSelection      OLE2.OBJ_TYPE;
v_id_new           varchar2(2000);
v_id_folder           varchar2(2000);
v_folder           varchar2(2000);
v_test BOOLEAN;
v_count1 NUMBER(10);
v_count2 VARCHAR2(10);
v_value1 NUMBER(10);
v_value2 VARCHAR2(140);
BEGIN
-- Create Outlook Application Object
objAppOutlook := ole2.create_obj('Outlook.Application');
-- Get Namespace
objArgL := ole2.create_arglist;
ole2.add_arg(objArgL,'MAPI');
objNameSpace := ole2.invoke_obj
(objAppOutlook, 'GetNamespace',objArgL);
ole2.destroy_arglist(objArgL);
--Find Folders
--objFolders:=ole2.invoke_obj(objOutBoxFolder,'Folders');
--message('ObjFolders : '||objFolders);
--pause;
--v_count1 := ole2.get_num_property(objFolders,'Count');
--message('Pocet Folders je : '||v_count1);
--pause;
--while v_count1 > 0 loop
-- bla bla ...
--end loop;
--Get Default-Folder
objArgL := ole2.create_arglist;
ole2.add_arg(objArgL,5);
objFolder := ole2.invoke_obj
(objNameSpace,'GetDefaultFolder',objArgL);
ole2.destroy_arglist(objArgL);
--message('ObjFolder : '||objFolder);
--Get all items in default Folder
objMailItems:=ole2.invoke_obj(objFolder,'Items');
v_count1 := ole2.get_num_property(objMailItems,'Count');
What to find Find my mail with Entry ID ???
objArgL := ole2.create_arglist;
ole2.add_arg(objArgL,'([EntryID]= '''||p_mail_id||''')');
objMailItem := ole2.invoke_obj(objMailItems,'Find',objArgL);
--here crashed
ole2.destroy_arglist(objArgL);
--v_value2 := ole2.get_char_property(objMailItem,'EntryID');
--message('v_value2 je : '||v_value2);
--pause;
-- Display or Stop
IF objMailItem > 0 THEN
--v_value2 := ole2.get_char_property(objMailItem,'EntryID');
--message('v_value2 je : '||v_value2);
--pause;
ole2.invoke(objMailItem,'Display');
ELSIF objMailItem = 0 THEN
message('Dieser Bericht ist nicht existieren !');
RETURN;
END IF;
-- Release objects
ole2.release_obj(objMailItems);
ole2.release_obj(objMailItem);
ole2.release_obj(objFolder);
--ole2.release_obj(objFolders);
ole2.release_obj(objNameSpace);
ole2.release_obj(objAppOutlook);
EXCEPTION
WHEN OTHERS THEN
message(sqlerrm);
END kr_findmail_z;

Hi,
One common cause of this problem is that the data file(.pst) is corrupted, try running Scanpst.exe to repair the .pst file and check the result, for the detailed steps, please refer to the kb below and try the steps under
Manually start the Inbox Repair tool section:
http://support.microsoft.com/kb/272227/en-us
We may also consider if you have set a filter on the View, since you mentioned you can still find the emails when you search for them, this is probably the reason.
Try to start Outlook with the switch "cleanviews":
Press Win + R, type "outlook.exe /cleanviews" in the blank box, press Enter.
This will restore the default view and all the custom views you created will be lost.
Regards,
Melon Chen
TechNet Community Support

Similar Messages

  • Communication ORACLE - OUTLOOK - read mail - problem

    Hi !!
    I have a problem with communication with ORACLE<->OUTLOOK.
    I need read mail from Outlook, i know EntryID mail.
    It's no go. I need help, please.
    Pavol
    My email : [email protected]
    Here my code :
    PROCEDURE kr_findmail_z(p_mail_id IN VARCHAR2)
    IS
    objArgL OLE2.OBJ_TYPE;
    objAppOutlook OLE2.OBJ_TYPE;
    objNameSpace OLE2.OBJ_TYPE;
    objFolders OLE2.OBJ_TYPE;
    objFolder OLE2.OBJ_TYPE;
    objMailItems OLE2.OBJ_TYPE;
    objMailItem OLE2.OBJ_TYPE;
    objUserProperties OLE2.OBJ_TYPE;
    objUserProperty OLE2.OBJ_TYPE;
    objSelection OLE2.OBJ_TYPE;
    v_id_new varchar2(2000);
    v_id_folder varchar2(2000);
    v_folder varchar2(2000);
    v_test BOOLEAN;
    v_count1 NUMBER(10);
    v_count2 VARCHAR2(10);
    v_value1 NUMBER(10);
    v_value2 VARCHAR2(140);
    BEGIN
    -- Create Outlook Application Object
    objAppOutlook := ole2.create_obj('Outlook.Application');
    -- Get Namespace
    objArgL := ole2.create_arglist;
    ole2.add_arg(objArgL,'MAPI');
    objNameSpace := ole2.invoke_obj
    (objAppOutlook, 'GetNamespace',objArgL);
    ole2.destroy_arglist(objArgL);
    --Find Folders
    --objFolders:=ole2.invoke_obj(objOutBoxFolder,'Folders');
    --message('ObjFolders : '||objFolders);
    --pause;
    --v_count1 := ole2.get_num_property(objFolders,'Count');
    --message('Pocet Folders je : '||v_count1);
    --pause;
    --while v_count1 > 0 loop
    -- bla bla ...
    --end loop;
    --Get Default-Folder
    objArgL := ole2.create_arglist;
    ole2.add_arg(objArgL,5);
    objFolder := ole2.invoke_obj
    (objNameSpace,'GetDefaultFolder',objArgL);
    ole2.destroy_arglist(objArgL);
    --message('ObjFolder : '||objFolder);
    --Get all items in default Folder
    objMailItems:=ole2.invoke_obj(objFolder,'Items');
    v_count1 := ole2.get_num_property(objMailItems,'Count');
    What to find Find my mail with Entry ID ???
    objArgL := ole2.create_arglist;
    ole2.add_arg(objArgL,'([EntryID]= '''||p_mail_id||''')');
    objMailItem := ole2.invoke_obj(objMailItems,'Find',objArgL);
    --here crashed program with error FRM-40735 (non oracle
    exception)
    ole2.destroy_arglist(objArgL);
    --v_value2 := ole2.get_char_property(objMailItem,'EntryID');
    --message('v_value2 je : '||v_value2);
    --pause;
    -- Display or Stop
    IF objMailItem > 0 THEN
    --v_value2 := ole2.get_char_property(objMailItem,'EntryID');
    --message('v_value2 je : '||v_value2);
    --pause;
    ole2.invoke(objMailItem,'Display');
    ELSIF objMailItem = 0 THEN
    message('Dieser Bericht ist nicht existieren !');
    RETURN;
    END IF;
    -- Release objects
    ole2.release_obj(objMailItems);
    ole2.release_obj(objMailItem);
    ole2.release_obj(objFolder);
    --ole2.release_obj(objFolders);
    ole2.release_obj(objNameSpace);
    ole2.release_obj(objAppOutlook);
    EXCEPTION
    WHEN OTHERS THEN
    message(sqlerrm);
    END kr_findmail_z;

    Hi,
    One common cause of this problem is that the data file(.pst) is corrupted, try running Scanpst.exe to repair the .pst file and check the result, for the detailed steps, please refer to the kb below and try the steps under
    Manually start the Inbox Repair tool section:
    http://support.microsoft.com/kb/272227/en-us
    We may also consider if you have set a filter on the View, since you mentioned you can still find the emails when you search for them, this is probably the reason.
    Try to start Outlook with the switch "cleanviews":
    Press Win + R, type "outlook.exe /cleanviews" in the blank box, press Enter.
    This will restore the default view and all the custom views you created will be lost.
    Regards,
    Melon Chen
    TechNet Community Support

  • Gmail, iPhone, Outlook..sent mail problem

    Dear Friends,
    I was writing to see if anyone might be able to help me diagnose a problem I am having with gmail on the iphone. I have the iphone setup to read my gmail account and use outlook on the pc as my desktop mail reader. My outlook is setup so my multiple accounts all end up in my inbox.
    When I send from my gmail account on the iphone outlook does not see the mail in outlook. This is a major issue for me since I deal with clients and need to have this information on my desktop to keep track of things, etc.
    The thing I find most confusing is if I use the gmail web interface I can see the mail that was sent in the sent mail folder. The iphone can also see this, it is just that outlook can't.

    Barry Schwartz1,
    Many, if not most, ISPs filter port 25 to prevent users from sending spam. Even though your Exchange's SMTP settings allow it to listen on port 25, you may not be able to send via port 25. Many server admins, configure their server to listen on another port, most often 587 or 465 in addition to requiring authentication as anti-spam measures.
    I know that AT&T's EDGE network for example does filter Port 25. If you are using your iPhone on WiFi at home you may want to check with your home internet service provider (ISP) to see if they filter Port 25.
    If the server admin is not willing to configure the server to listen on another port, they might be willing to allow you to use VPN so that when you send it will be via the VPN, and not using Port 25 through your ISP.
    Hope this helps,
    Nathan C.

  • Hi!! how can i read mails present in the sub folder from outlook inbox

    hi every one...
    i have to read a sub folder present in the inbox from outlook.
    for that i tried as
    Session session = Session.getDefaultInstance(props, null);
    store = session.getStore("pop3");
    store.connect("URL", "USERNAME","PASSWORD");
    inbox = store.getFolder("INBOX/subFolderName");but it shows an error like Folder Not Exist...
    can any one suggest me to solve this problem to read mails present in the sub folder.
    Thank you

    thank you for support guys...
    so if i am using pop3 protocal, it cant read the sub folders present in the outlook inbox ..
    is there any alternative way to achieve this ...?

  • Element v.11 & 9 Photo mail problem with MS Outlook

    Looking for a fix:  Elements v.11 has a photo mail problem with Microsoft Outlook mail, even when Outlook is designated the defaul e-mail program in Windows internet.
    Is there a fix??  Thanks.

    I just posted the same problem and so I'll join this thread, hoping to see an answer to your question.  By the way, this PSE11 feature worked fine for me with Outlook 2007, but stopped working when I upgraded to Outlook 365.

  • Oracle Outlook Connector Deployment Problem

    I am trying to deploy Outlook 2003 with the Oracle Outlook connector. I am using the Custom installation Wizard provided by the Microsoft Office 2003 Support Tools.
    I have set the Oracle connector to piggy-back on the install, however, it will not setup each user automatically. Even using the ini file. You have to manually setup each current user and new users as they come to a new pc.
    I want Outlook the CIW to setup the Oracle connector automatically using a .PRF file (Outlook profile file). Unfortunately, with 3rd party connectors, you have to setup the .prf manually. But, other than the white paper provided by Microsoft, there isn't any info on how to manually setup the .PRF file that will setup the connector?
    Do I need to call Microsoft (and spend the $250), Oracle, or is there anyone out there that has this info?
    Any help would be beneficial to everyone trying to deploy the oracle connector to a large amount of machines without ever having to visit each pc.
    Michael Scott
    PC/Network Analyst
    City of High Point, NC

    Not yet. I have issued a TAR with Oracle and have talked to a technician about this problem. He is now meeting with engineers to see if it is possible. I have also been on the phone with a software company called AutoProf and testing their software Profile Maker 8. The tech that I spoke with there is also working with the engineers to come up with a solution. Right now it looks as though some scripting is going to have to occur to get it to work right. I'll keep you posted.

  • Java Mail - problems receiving HTML mail from outlook

    Hello,
    I have a problem with receiving HTML mails from outlook. What I want to do is the following
    - receiving a HTML mail - like a newsletter- send via Outlook
    - display the mail via my mail client in a jtextpane
    I tried it with the following code - but without success :
    a)
    Message msg = message;                    ByteArrayOutputStream os = new ByteArrayOutputStream();     
    message[i].getDataHandler().writeTo(os);
    String data = new String(os.toByteArray());
    textPane.setText(data);
    b)
    StringBuffer sb = null;
    Multipart mp = (Multipart)message[i].getContent();
    for (int j = 1; j < count; j++){
    sb = new StringBuffer();
    InputStream is = mp.getBodyPart(j).getInputStream();
    int c;
    while ((c = is.read()) != -1)
    sb.append((char) c);
    is.close();
    textPane.setText(sb.toString());
    Thanks,
    Mario

    This is what i use and it works just fine
    import java.io.*;
    import java.net.InetAddress;
    import java.util.Properties;
    import java.util.Date;
    import javax.mail.*;
    import javax.mail.internet.*;
    public class sendMail {
    public sendMail(String To,String Subject,String message) {
    String to = To, subject = Subject, from = null,
              cc = null, bcc = null, url = null;
         String protocol = null, host = null, user = null, password = null;
         boolean debug = false;
         try{
    Properties props = System.getProperties();
         Session session = Session.getDefaultInstance(props, null);
         Message msg = new MimeMessage(session);
         if (debug)
              session.setDebug(true);
    msg.setFrom(new InternetAddress("[email protected]"));
         msg.setRecipients(Message.RecipientType.TO,
                             InternetAddress.parse(to, false));
         msg.setSubject(subject);
    msg.setText(message);
         msg.setHeader("Mail","test.com");
         msg.setSentDate(new Date());
         Transport.send(msg);
         System.out.println("\nMail was sent successfully.");
         } catch (Exception e) {
         e.printStackTrace();

  • Problem in Reading Mail Attachement

    I'm facing a problem while reading mail attachments. Java-mail returns null disposition for the below message,but this message has attachment javamail is not considering the mail attachment .I'm using java-mail 1.3.Can anybody help me to solve this problem ?
    Return-Path: prvs=00548bd8bd=[email protected]
    Received: from PRODTM1.TRUST.UASC.AO ([172.28.2.143])
         by trust.uasc.net
         ; Mon, 14 Mar 2011 11:07:04 +0000
    X-TM-IMSS-Message-ID:<[email protected]>
    Received: from gw.northport.com.my ([202.188.31.130]) by trust.uasc.net ([172.28.2.144])
    with ESMTP (TREND IMSS SMTP Service 7.1) id 45727fb90003495a ; Mon, 14 Mar 2011 11:06:52 +0000
    Received: from [192.1.10.13] (port=59768 helo=nmbsmtp-01.northport.com.my)
         by gw.northport.com.my with esmtp (Exim 4.69)
         (envelope-from <[email protected]>)
         id 1Pz5bs-0003EO-0A; Mon, 14 Mar 2011 19:06:48 +0800
    X-CTCH-RefID: str=0001.0A090205.4D7DF6C8.0116,ss=1,fgs=0
    Date: Mon, 14 Mar 2011 19:05:50 +0800 (SST)
    From: AMTedi-Container Svcs <[email protected]>
    Message-ID: <[email protected]>
    Mime-Version: 1.0
    To: [email protected], [email protected],
    [email protected], [email protected]
    Subject: CODCT1UAS
    Content-Type: multipart/mixed; boundary="-"
    X-TM-AS-Product-Ver: IMSS-7.1.0.1394-6.5.0.1024-18010.003
    X-TM-AS-Result: No--4.942-5.0-31-1
    X-imss-scan-details: No--4.942-5.0-31-1

    If you were assuming that every message would have a valid body part
    and that they would tell you definitively which parts you should consider to
    be "attachments", ya, that won't work. The disposition is a hint at best.
    It can be wrong. It might not even be there.

  • HT6030 I have many problems with my mail since I moved to mavericks. The filter is very sensitive, read mail appears as unread, I can't drag mail to the folders and more. I can't update the mail program as directed on this page, update says my system is u

    I have many problems with my mail since I moved to mavericks. The filter is very sensitive, read mail appears as unread, I can't drag mail to the folders and more. I can't update the mail program as directed on this page, update says my system is updated

    I don't think that a software update from Apple will solve the issues that you are having. You have a rogue installation. After you posted I have just done the following:
    Disk Utility can verify  my partitioned Volume (including my boot disk) AND REPAIR the non-boot disks on the same Volume without a glitch. It repairs the non-boot disks containing data smoothly.
    I have used Mail to send some mails from some Yahoo and Hotmail accounts to my Thunderbird client containing GMail accounts - absolutely normal.
    I have iLife '09 but my iMovie '09 and iPhoto '09 open in a jiffy and I see no issues here. I have 6GB RAM (Maximum) on an early 2008 Macbook Pro with a 750GB hard drive partitioned with 120GB reserved for the Boot Drive.
    I am sorry that I cannot help further but I am sure there must be a way to reinstall the software without having to revert to restoring your ML backup. I have two clones and if you have such I would attempt to do that through that rather than through Time Machine - that is of course if you have a cloned drive.
    Good luck!

  • Upgrade install to 10.5 Mail problems solution

    Ok, I am posting this after 2 days of research why Mail behaves crazily after I installed 10.5 via update. I tried archive and install as well with same Mail problems resulting.
    Now maybe this wont work for everybody, but it solved all my problems like a charm resulting in Mail working perfectly now.
    After one whole annoying day behind the forums I just thought I should post it.
    The basic problem was that my Mail didn't want to receive messages while the progress bars were just spinning infinite. Quitting Mail had to be done via Force Quite to stop it.
    First thing i noticed was that if I open "*Previous recipients*" panel I get the everlasting spinning beach ball.
    So I gathered that there must be some problem in the communication between Mail and Address Book. I backuped the Address Book database and deleted everything I could find connected with Address Book.
    Next step was going to Mail folder in my User Library where I deleted all mailboxes .plists and mails because I had some messages I couldn't delete in Mail app. I also deleted other .plist files.
    Then I reinstalled Address Book via additional install and rebooted the machine.
    Address Book now contained no addresses. I opened Mail, and bingo everything started working, opening "previous recipients" showed 0 contacts and I starter using Mail without problems.
    To finish the thing, just backup Address Book ad voila.
    Now, maybe that won't sort out everybody's problem, but it sure did mine. And I had all Mail problems described on this forum while sing Mail.
    Good luck fixing this highly annoying Leopard feature!

    Hi,
    Same thing here. All printers gone. Archive & Install 10.5 on a 2.33Ghz MBP. Cannot find my network printers. Tried everything I can think of. When I boot from my external drive (10.4.9) everything works great. Leopard also ate my company VPN and won't give it back. Any help would be welcome.

  • Bug in Oracle Outlook Connector 10,1,1,0,2 (1431) and Oracle Forms 6i Rel 2

    Hello,
    I installed Oracle Outlook Connector. 10,1,1,0,2 (1431)
    We are using Oracle Collaboration Suite on a 10g database.
    On the Desktop.
    I am using.
    a) MS/OFFICE Outlook 2003.
    b) Oracle Forms and Reports 6i Release 2.
    c) Oracle instance client 10.1
    d) Windows XP HOME SP2.
    What happens?
    1) Oracle Run Time Forms 6i and Oracle/MS Outlook 2003 run fine(Work) when I run them ONE AT A TIME!
    2) When I run them together(At the same time) I receive this error message. FRM-40735 ORA-06508.
    I have narrowed it down to an Oracle Connector 10g problem.
    How did I do that?
    In XP Home you can create multi-user accounts.
    I created a new user account this time I connected to Microsoft Exchange Server 2000.
    Results. Oracle runtime 6i works at the same time as MS Outlook 2003.
    I am able to use both Programs at the same time. Without any error messages.
    Next Step.
    I created a new user account and this time I used an Oracle Connector 10.1g for MS Outlook 2003.
    Results: Same error message as before. Ran the application(s) at the same time. FRM-40735 and ORA-06508
    Please help with any ideas.
    Thank you
    Dennis

    The product managers look through the forum threads periodically. Some more regularly than others. Since I only look at the forum about once a week, I'm probably the least regular of the PMs. Development also scans the forum, but less regularly.
    If you have urgent issues that requires action/response from Oracle, it is better to open an SR with Oracle Support.
    Hope that helps,
    --Marc                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Verizon/Yahoo Mail Problems

    I've looked everywhere for a similar problem to what I am experiencing, but can't find anyone who seems to be having the same thing going on. For more than a year, my family has used Verizon yahoo mail without any problems on the Apple Mail application. Nothing has changed recently, and the preferences settings have been:
    POP Account
    Email: [email protected]
    Incoming Server: incoming.yahoo.verizon.net
    Outgoing server: outgoing.yahoo.verizon.net
    Username: [email protected]
    Correct password
    Outgoing mail server (SMTP: outgoing.yahoo.verizon.net
    These worked for more than a year on two separate accounts run on two separate Apple computers, until a month ago something just stopped and now we can no longer send a receive mail on these servers through apple mail. We can access the accounts on Yahoo and Verizon online, but not in Mail itself. I get the message "Enter password for Account 'Verizon.' The POP server incoming.yahoo.verizon.net rejected the passowrd for user '[email protected]' Please re-enter your password, or cancel." When the password is entered, the same message pops right back up over and over again, even though the password is right. This is happening with TWO accounts on TWO computers, and absolutely nothing is changed, not even a software update. I've been on the phone with verizon for hours, and they insist this is an Apple problem, since the server works fine off the yahoo website. I've tried deleting the account, setting it up again, using incoming.verizon.net instead of incoming.yahoo.verizon.net . . . Does anyone know what is going on, or has seen this before? It's getting really inconvenient to have these accounts offline when nothing has happened.

    Okay, I was finally able to get in touch with someone at Verizon who knew what is going on. I guessed that something had happened at Verizon or Yahoo between when this was working and when it wasn't, and I was right. Apparently, Yahoo cancelled its POP service as a portal partner with Verizon, making it impossible to people to access mail on outside POP accounts such as Outlook or Apple Mail. They said they sent out an email warning people this would happen, but I know we didn't get it. The rep explained that in order to access mail on outside applications, you have to switch to Windows Live as a portal partner (whether or not you have Mac, it still works). All you have to do on Mail is switch to incoming.verizon.net (deleting the yahoo). Use ports 110 and 25 (the defaults) instead of 110 and 587. If using a Mac, set up Windows Live by visiting http://www.verizon.net/getlivenow Then enter the primary account email address and password. It will want to download software (which won't work on a Mac), so choose custom installation and uncheck all downloads. All accounts linked to the primary will switch in about an hour. There is one caveat: all of your email on your verizon yahoo server will be deleted and WILL NOT TRANSFER OVER. Make sure to save all important emails to your computer before making the switch. To access email online, you just use Verizon webmail instead of Verizon/Yahoo mail off of the yahoo site. Hope that helps anyone with this problem!

  • Read mail using java, and set the mail

    How can I read mail and set message "SEEN" with java? (javax.mail)
    IMAP supports flags; so there are no problems, just using
    msg.setFlag(Flags.Flag.SEEN, true);
    but,
    POP3 does not support flags; how can I solve this in POP3? I have searched for this problem, found that I can just check for the header "Status", but this header does not exsist. Then I tried to add this header, but again, then I got IllegalWriteException cause pop3-msg is writeprotected (yes: I opened the folder READ_WRITE); so; does anyone know how I can solve this problem?

    Hi !
    Could u plz send me the code u r having for reading mails using IMAP...actually v r trying to read mails from outlook but due to some security reasons our team has decided not to use pop3 ...
    Thanks in Advance
    sha

  • Outlook and mac mail client attachements freeze, skype freeze

    Hi all,
    I am working in a company that many users have Macbooks Air and Pro. One specific user with a  a Macbook air that has a clean install of Yosemite (not even a week ) started to have problems with the mac mail client attachements. Every time he tried to insert a file the mail client frozen and had to force quit. After a while i observe the same issue on Outlook mail client. At last after a reboot that he did to see if that gonna solve the problem then Skype started to freeze also and had to quit every time. So now, so far none of the above apps work as expected and the Skype doesn't work at all. It has to be noted here that we did the upgrade from Mavericks to Yosemite to solve the Skype issue that he had also for a couple months now and it wasn't resolved from Skype's support team( never answered). So for now we have again the same problem and and with a fresh install of Yosemite i am started to thinking about hardware issues or even broken drivers, code to Yosemite etc. The laptop has an encrypted SSD using Filevault, SEP, Office and Acrobat Reader nothing else.
    Any thoughts to solve this issue?

    Hi Brody,
    Thank you for your answer, yes i did erase the hard drive and install Yosemite!! After a second call that i made with my client he said that first of all:
    The problems of the Outlook and mac mail client attachements freeze started after he install Cisco VPN Anyconnect (I don't think that this has to do anything with the freezing) so he tried to remove this using Appcleaner. After this not only the Outlook and mac mail client attachements freeze problem was remaining but he saw that skype started to freeze also. No matter how many uninstall and install he made to the Skype, Skype continues to freeze. For the mail freeze i advise him to use the verify/repair disk permissions and so far that one solved. The remaining problem is the Skype Freeze so far. I also tried to remove the Skype following this https://support.skype.com/en/faq/FA12073/how-can-i-completely-uninstall-and-then -reinstall-skype-for-mac-os-x
    so to avoid Appcleaner and still the problem persist even with older versions of Skype. I also create another profile account in Yosemite and Skype seemed to played well there. But i would need to solve in his account so to avoid any file transfer. Do you have any idea why that happened? Is it a file permissions problem? Corrupt/missing files in users profile? This one problem had in the past as i wrote in the previous comment and couldn't work at that time.
    Any thought on that? What could be wrong?
    Thanks

  • Why does the iCloud Control Panel say "Install Outlook to use Mail, Contacts, and Calendars?"

    I've just successfully installed the iCloud Control Panel on my PC (runs with Vista). Why does the iCloud Control Panel say "Install Outlook to use Mail, Contacts, and Calendars?" The Bookmarks (with Safari) and Photo Stream options are active, but the Mail (with Outlook), Contacts (with Outlook),and Calendars and Tasks (with Outlook) are not. I'm using Office Outlook 2007. I used to be able to synch my iPhone with my PC's Outlook through iTunes without any problems. Any help would be appreciated.

    I meant to say when in the control panel!

Maybe you are looking for

  • Report works in Studio; fails to run when deployed

    Our SSRS developers claim their reports work fine when run on their desktops, but not when deployed to the SSRS server. They blame the SS2008 R2 database server for some reason.  They say the reports which fail tend to be the larger reports with the

  • How to Use OG.OPEN

    Dear All I'm having problem with OG.OPEN Here is my coding. when I compiled it it giving error as follows. Please help me identifier 'OG.OPEN' must be declared declare plist ParamList; begin execute_query; OG.Open (' g35oun01.ogd' , ' CONTROL.PIE_CHA

  • Former Budgeting Support

    Hi All! Can anybody help? I'm looking for any sap note or official doc regarding support of Former Budgeting. I found some posting on scn that it was not supported (new development) in 2009 already but failed to find any official info from sap. We ne

  • Signal manipulati​on---help?

    hey, i am trying to simulate a vibration (accl vs time) signal by reading from a spreadsheet with about 15000 data points(time and accl). i am reading the two colomns from the sprdsheet and plotting them on a XY graph in a auto indexed for loop(so th

  • When I press theFacebook icon, it starts to connect and then goes back to iPad homepage

    Facebook icon on homepage will not connect me to Facebook. It starts to, then immediately goes back to iPad gomepage