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

Similar Messages

  • 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

  • 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.

  • Outlook 2003 Mail problem

    I have a few questions/problems.
    1. Anytime my iphone is in the unlocked position and my outlook on my computer checks for new mail I receive an error message "Mailbox is locked...Another Mail Client is using this mailbox". Is there anyway to "allow access" or something so both can check for mail at the same time?
    2. I am receiving some emails just on in my outlook, some just on my iphone, and some on both? Once an email is sent, shouldn't it go to both the phone and the outlook if I havent opened it in either?

    Is this a POP account?
    1. Do you have email being checked on your computer at the same time as on your iPhone? Only one device can be accessing the POP account at one time, so if one is accessing, the other is essentially locked out.
    2. Do you have your account set to delete emails from the server once they are fetched? In that case, once one email client (ie your computer) pulls the mail off the server, it will no longer be available for the other client (ie your iPhone) to fetch.
    If you can set your account up as an IMAP account instead of POP, everything done on one device will be mirrored exactly on the other.
    I'm sure someone else will be able to add a more detailed technical explanation, but I think that's probably what's happening.
    -SB
    Message was edited by: SisterBlue

  • Outlook and mail problem

    When I opened a email the other day it was spam now it won't let me login into outlook saying my password is incorrect  also when I eventually logged into out look I made a new password then it says I think some one may be using my account and asked would I fill in a questionnaire to verify it's my account please help

    What, exactly, does this have to do with an iPhone?

  • Oracle UTL_SMTP junk mail problem

    hi friends i have function; F_MAIL_GONDER which always send mail in junk. how can we send mail to inbox correctly not to junk box?
        FUNCTION F_MAIL_GONDER
          MAILICERIGI        VARCHAR2,
          MAILKONUSU         VARCHAR2,
          GONDERENKISI       VARCHAR2,
          ALICIKISI          VARCHAR2
        RETURN BOOLEAN IS
          MAILHOST            VARCHAR2(1903);--CONSTANT
          MAILPORT           NUMBER;
          CRLF               CONSTANT VARCHAR2(2):= CHR(13) || CHR(10);
          MESG               VARCHAR2(1903);
          MAIL_CONN          UTL_SMTP.CONNECTION;
        BEGIN
             MAILPORT    := 25;                    -- MAIL SUNUCUNUN KULLANDIGI PORT | MAIL SERVER PORT
             MAILHOST    := 'mail.sakarya.bel.tr';--'smtp.mailserver.com';  -- MAIL SUNUCUNUN ADRESI          | MAIL SERVER IP OR ADRESS
         dbms_output.put_line('1');
             MAIL_CONN := UTL_SMTP.OPEN_CONNECTION(MAILHOST, MAILPORT);
         dbms_output.put_line('2');
             --MAILICERIGI := 'BU ALAN MAIL ICERIGINDEKI MESAJ OLARAK GOSTERILECEKTIR'; -- MESAJ GOVDESI | MAIL BODY
             --MAILKONUSU  := 'BU ALAN MAIL KONUSU OLARAK GOSTERILECEKTIR';             -- MESAJ KONUSU | MAIL SUBJECT
             --GONDERENKISI:= '[email protected]'; -- MAIL GONDEREN KISININ MAIL ADRESI | MAIL SENDER ADRESS
             --ALICIKISI   := '[email protected]';      -- MAILI ALACAK KISININ MAIL ADRESI  | MAIL RECEIVER ADRESS
             MESG := 'DATE: ' ||
                  TO_CHAR( SYSDATE, 'DD MON YY HH24:MI:SS') || CRLF ||
                      'FROM: <'|| GONDERENKISI ||'>' || CRLF ||
                      'SUBJECT: '|| MAILKONUSU || CRLF ||
                      'TO: '||ALICIKISI || CRLF || '' || CRLF || MAILICERIGI;
          dbms_output.put_line(MESG);
              UTL_SMTP.HELO(MAIL_CONN, MAILHOST);
           UTL_SMTP.MAIL(MAIL_CONN, GONDERENKISI);
              UTL_SMTP.RCPT(MAIL_CONN, ALICIKISI);
              UTL_SMTP.DATA(MAIL_CONN, MESG);
              UTL_SMTP.QUIT(MAIL_CONN);
              RETURN TRUE;
           EXCEPTION
             WHEN OTHERS THEN
               RETURN FALSE;
         END F_MAIL_GONDER;

    I'm not sure I follow. If the SMTP server required authentication, your PL/SQL procedure would get an error indicating that your message was rejected because you didn't log in. If the message was delivered, that indicates that this server doesn't require authentication. If you have some other application sending mail that does send a password, I would be very suspicious that the two applications are not using the same mail server.
    If you do change to use a mail server that requires authentication, you should be able to add
    utl_smtp.command(conn, 'AUTH LOGIN');
    utl_smtp.command(conn, utl_encode.base64_encode(utl_raw.cast_to_raw(<username>)));
    utl_smtp.command(conn, utl_encode.base64_encode(utl_raw.cast_to_raw(<password>))); to your procedure after the utl_smtp.helo call.
    Justin

  • 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.

  • Sir i am using datasocket read ,i am communicating with java but my problem is that bcz im using while loop to see if value has changed my labview consumes all the processors time ,sir i want a event like thing so that while loop is not in continuous loop

    sir i have given lot of effort but i am not able to solve my problem either with notifiers or with occurence fn,probably i do not know how to use these synchronisation tools.

    sir i am using datasocket read ,i am communicating with java but my problem is that bcz im using while loop to see if value has changed my labview consumes all the processors time ,sir i want a event like thing so that while loop is not in continuous loopHi Sam,
    I want to pass along a couple of tips that will get you more and better response on this list.
    1) There is an un-written rule that says more "stars" is better than just one star. Giving a one star rating will probably eliminate that responder from individuals that are willing to anser your question.
    2) If someone gives you an answer that meets your needs, reply to that answer and say that it worked.
    3) If someone suggests that you look at an example, DO IT! LV comes with a wonderful set of examples that demonstate almost all of the core functionality of LV. Familiarity with all of the LV examples will get you through about 80% of the Certified LabVIEW Developer exam.
    4) If you have a question first search the examples for something tha
    t may help you. If you can not find an example that is exactly what you want, find one that is close and post a question along the lines of "I want to do something similar to example X, how can I modify it to do Y".
    5) Some of the greatest LabVIEW minds offer there services and advice for free on this exchange. If you treat them good, they can get you through almost every challenge that can be encountered in LV.
    6) If English is not your native language, post your question in the language you favor. There is probably someone around that can help. "We're big, we're bad, we're international!"
    Trying to help,
    Welcome to the forum!
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • Question: Is there a way to create a PDF from outlook e-mail that does not embed the attachment? better, is there a way to convert the e-mail with attachement (not embeded) as pdf pages? - Problem: I have 1400 e-mails with attachments that need to be conv

    Is there a way to create a PDF from outlook e-mail that does not embed the attachment? better, is there a way to convert the e-mail with attachement (not embeded) as pdf pages?
    - Problem: I have 1400 e-mails with attachments that need to be converted into pdf and the attachments cannot be embeded.
    System: PC Windows 7 using Acrobat X Prof. - Thank you!

    Hi ,
    There is an option of embedding index for faster search while converting email to a PDF .
    However I am not sure that will serve your purpose or not .
    I would recommend you to get in touch with Microsoft support as well .
    Meanwhile I'll work on it and get back to you in case I get a desired solution .
    Regards
    Sukrit Dhingra

  • 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.

  • Outlook 2011 mail sent to Apple mail problems

    A lot of my clients send me mail from outlook 2011 and when i receive something as simple as an image as a Signature, it is both embedded and attached, so Apple Mail displays this twice in the message body.
    Can anyone advise on how to stop this from happening.

    May want to ask in the Microsoft Office for Mac forums, since the question is specific to Outlook.

  • 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.

  • Deleting Old Outlook E-mail Address and Adding a New One

    I am using an SMT5800 and have recently moved. In my previous location, my phone was synced to my workplace Outlook E-mail address. Since moving, I have tried repeatedly to update my Outlook E-mail settings to match my new workplace. Unfortunately, when attempting to change the Outlook settings, the phone does not allow me to remove my old username. Since the phone also does not allow me to simply delete the old Outlook address and simply start over, I remain unable to Active Sync with my current place of employment. How might I go about rectifying this?

    Dareru76 wrote:
    I am using an SMT5800 and have recently moved. In my previous location, my phone was synced to my workplace Outlook E-mail address. Since moving, I have tried repeatedly to update my Outlook E-mail settings to match my new workplace. Unfortunately, when attempting to change the Outlook settings, the phone does not allow me to remove my old username. Since the phone also does not allow me to simply delete the old Outlook address and simply start over, I remain unable to Active Sync with my current place of employment. How might I go about rectifying this?
    I assume you were using MS Exchange for your work. If you can not delete the old account then you do have a problem. This should not be an issue. First back up your phone, Contacts, Settings etc using a backup program like PPCPIMbackup(free) or SPB backup or equivalent. For this message I used PPCpim Backup and backed up all my data to my storage card. Next start ACTIVESYNC on the phone, click MENU>OPTIONS and delete the Exchange account there. Then establish a account with your new workplace. Once the account is established Start PPCPIM backup and restore just the info you want, i.e. contacts etc. That should work.

Maybe you are looking for

  • Facebook-skype account -- how can I get my old acc...

    Long story short, after the frustration of trying numerous ways to log in to Skype with facebook, on of which consists of disconnecting Skype from my Facebook Apps, I found that though I have successfully gotten the dektop client to work, my old "fac

  • IPod stops syncing after a while, won't eject and then crashes iTunes

    Whenever I try to update my iPod Classic 80GB, after 1000 songs or so the iPod stops syncing (gets stuck on a song). Then the iPod won't eject, even when dragged into trash. Then, when trying to eject iPod or quit iTunes, iTunes crashes and has to be

  • How to configure iPhoto in my setup with external hard drive

    Hi there, I've been digging around for answers but I'm still not clear on what the right path is. I have a new MacBook Air. For the obvious reason (space) I don't want to keep my photos on it. I have a functioning MacBook with a dead backlit screen.

  • F.27 - combined statement for different company codes

    Hi,    In F.27 transaction, for sending account statement to customer, for a customer with open items in different company codes, a different account statement is generated for each company code. The business wants one statement per customer, with op

  • SAP Crystal Report Support

    Hi, we having a licensed version of Crystal Reports 2011. When I register for SAP Coummunity Network , Its asking SAP Market Place ID & Passoword, We having Order Id, How to get SAP Market Place ID & Password? Regards, Esha Abdullah M