Send a mail to the vendor at the time of approval with the attachment of PO

Hi all,
I want to send a mail to the vendor at the time of approval by attaching the pdf of that particular PO.
How can I achieve this?
I know the User Exit where the code should be written.
But I want the solution for attaching the PDF of PO at the time of approval.
Please help me in this regard.
Edited by: vinil kumar aturi on Mar 16, 2009 7:52 AM

Hi,
Try Following Code to Send mail as PDF Attachment
In this
Smart form Name : ZSMART_MM_003
This will send mail to EMAIL ADDRESS SPECIFIED IN VENDOR MASTER FK03
This code is written for ME23n so we used nast-objky(10) for purchase order no you may replace it with your purchase order no
and smart form name with your smart form name
*-- Send Mail---
*-- Function Module Call to get Customer Address (Email)--
DATA: VENDOR TYPE ELIFN,
      ADDRNO TYPE ADRNR.
DATA: atab-mail TYPE STRING.
SELECT SINGLE LIFNR FROM EKKO INTO VENDOR WHERE EBELN = nast-objky(10).
SELECT SINGLE ADRNR FROM LFA1 INTO ADDRNO WHERE LIFNR = VENDOR.
TYPE-POOLS: szadr.
DATA adr_kompl TYPE szadr_addr1_complete.
DATA adr1 TYPE szadr_addr1_line.
DATA adtel TYPE szadr_adtel_line.
DATA admail TYPE szadr_adsmtp_line.
DATA adfax TYPE szadr_adfax_line.
CALL FUNCTION 'ADDR_GET_COMPLETE'
       EXPORTING
            addrnumber              = ADDRNO
       IMPORTING
            addr1_complete          = adr_kompl
       EXCEPTIONS
            parameter_error         = 1
            address_not_exist       = 2
            internal_error          = 3
            wrong_access_to_archive = 4
            OTHERS                  = 5.
Mail
  LOOP AT adr_kompl-adsmtp_tab INTO admail.
    MOVE admail-adsmtp-smtp_addr TO atab-mail.
  ENDLOOP.
if sy-subrc = 0.
  DATA: FILENAME TYPE STRING.
  CONCATENATE 'PurchaseOrder' nast-objky INTO FILENAME SEPARATED BY '-'.
  DATA: MESSAGELINE1 TYPE STRING,
        MESSAGELINE2 TYPE STRING.
CONCATENATE 'Do you want to send ' FILENAME ' through E-mail to' into MESSAGELINE1.
CONCATENATE atab-mail '?' into MESSAGELINE2.
  data: answer    TYPE c.
  CALL FUNCTION 'POPUP_TO_CONFIRM_STEP'
       EXPORTING
            defaultoption = 'N'
            textline1     = MESSAGELINE1
            textline2     = MESSAGELINE2
            titel         = ' '
            start_column  = 35
            start_row     = 10
       IMPORTING
            answer        = answer.
  IF answer EQ 'J' OR answer EQ 'Y'.
Code to find Contact person
    DATA: CONTACT TYPE EVERK.
    SELECT SINGLE VERKF FROM EKKO INTO CONTACT WHERE EBELN = nast-objky(10).
Internal Table declarations
    DATA: I_OTF TYPE ITCOO OCCURS 0 WITH HEADER LINE,
          I_TLINE TYPE TABLE OF TLINE WITH HEADER LINE,
          I_RECEIVERS TYPE TABLE OF SOMLRECI1 WITH HEADER LINE,
          I_RECORD LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
Objects to send mail.
          I_OBJPACK LIKE SOPCKLSTI1 OCCURS 0 WITH HEADER LINE,
          I_OBJTXT LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
          I_OBJBIN LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
          I_RECLIST LIKE SOMLRECI1 OCCURS 0 WITH HEADER LINE,
Work Area declarations
          WA_OBJHEAD TYPE SOLI_TAB,
          W_CTRLOP TYPE SSFCTRLOP,
          W_COMPOP TYPE SSFCOMPOP,
          W_RETURN TYPE SSFCRESCL,
          WA_DOC_CHNG TYPE SODOCCHGI1,
          W_DATA TYPE SODOCCHGI1,
          WA_BUFFER TYPE STRING, "To convert from 132 to 255
Variables declarations
          V_FORM_NAME TYPE RS38L_FNAM,
          V_LEN_IN LIKE SOOD-OBJLEN,
          V_LEN_OUT LIKE SOOD-OBJLEN,
          V_LEN_OUTN TYPE I,
          V_LINES_TXT TYPE I,
          V_LINES_BIN TYPE I.
          DATA :  s_control_parameters TYPE ssfctrlop,
                  s_output_options     TYPE ssfcompop.
                  s_control_parameters-getotf = 'X'.
                  s_control_parameters-no_dialog = 'X'.
                  s_control_parameters-preview   = 'X'.
                  s_output_options-tdnoprint = 'X'.
                  s_output_options-tdimmed   = ''.
                  s_output_options-tddest = 'LP01'.        "Spool: Output device
                  s_output_options-tdreceiver = sy-uname.
                  s_output_options-tdcover = ''.
         CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
         EXPORTING
            FORMNAME = 'ZSMART_MM_003'
         IMPORTING
           FM_NAME = V_FORM_NAME
         EXCEPTIONS
           NO_FORM = 1
           NO_FUNCTION_MODULE = 2
           OTHERS = 3.
IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
         W_CTRLOP-GETOTF = 'X'.
         W_CTRLOP-NO_DIALOG = 'X'.
         W_COMPOP-TDNOPREV = 'X'.
         CALL FUNCTION V_FORM_NAME
         EXPORTING
            CONTROL_PARAMETERS = s_control_parameters
            OUTPUT_OPTIONS = s_output_options
            USER_SETTINGS = ''
            nast          = nast
            WA_ADDRESS    = WA_ADDRESS
         IMPORTING
            JOB_OUTPUT_INFO = W_RETURN
         TABLES
            addtel  = it_addtel
            addsmtp = it_addsmtp
         EXCEPTIONS
            FORMATTING_ERROR = 1
            INTERNAL_ERROR = 2
            SEND_ERROR = 3
            USER_CANCELED = 4
            OTHERS = 5.
IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
Convert SMartform to pdf
      I_OTF[] = W_RETURN-OTFDATA[].
      CALL FUNCTION 'CONVERT_OTF'
      EXPORTING
        FORMAT = 'PDF'
        MAX_LINEWIDTH = 132
      IMPORTING
        BIN_FILESIZE = V_LEN_IN
      TABLES
        OTF = I_OTF
        LINES = I_TLINE
      EXCEPTIONS
       ERR_MAX_LINEWIDTH = 1
       ERR_FORMAT = 2
       ERR_CONV_NOT_POSSIBLE = 3
       OTHERS = 4.
IF SY-SUBRC <> 0.
ENDIF.
      LOOP AT I_TLINE.
        TRANSLATE I_TLINE USING '~'.
        CONCATENATE WA_BUFFER I_TLINE INTO WA_BUFFER.
        ENDLOOP.
        TRANSLATE WA_BUFFER USING '~'.
        DO.
          I_RECORD = WA_BUFFER.
          APPEND I_RECORD.
          SHIFT WA_BUFFER LEFT BY 255 PLACES.
          IF WA_BUFFER IS INITIAL.
            EXIT.
            ENDIF.
            ENDDO.
Attachment
            REFRESH: I_RECLIST,
            I_OBJTXT,
            I_OBJBIN,
            I_OBJPACK.
            CLEAR WA_OBJHEAD.
            I_OBJBIN[] = I_RECORD[].
Create Message Body Title and Description
            I_OBJTXT = 'Sir, '.
            APPEND I_OBJTXT.
            I_OBJTXT = ''.
            APPEND I_OBJTXT.
            I_OBJTXT = 'Please Find Attached '.
            APPEND I_OBJTXT.
            I_OBJTXT = FILENAME.
            APPEND I_OBJTXT.
            I_OBJTXT = 'For your reference'.
            APPEND I_OBJTXT.
            I_OBJTXT = ''.
            APPEND I_OBJTXT.
            I_OBJTXT = 'Regards'.
            APPEND I_OBJTXT.
            I_OBJTXT = CONTACT.
            APPEND I_OBJTXT.
*Mail Subject
            DESCRIBE TABLE I_OBJTXT LINES V_LINES_TXT.
            READ TABLE I_OBJTXT INDEX V_LINES_TXT.
            WA_DOC_CHNG-OBJ_NAME = 'Purchase Order'.
            WA_DOC_CHNG-EXPIRY_DAT = SY-DATUM + 10.
            WA_DOC_CHNG-OBJ_DESCR = 'Purchase Order'.
            WA_DOC_CHNG-SENSITIVTY = 'F'.
            WA_DOC_CHNG-DOC_SIZE = V_LINES_TXT * 255.
Main Text
            CLEAR I_OBJPACK-TRANSF_BIN.
            I_OBJPACK-HEAD_START = 1.
            I_OBJPACK-HEAD_NUM = 0.
            I_OBJPACK-BODY_START = 1.
            I_OBJPACK-BODY_NUM = V_LINES_TXT.
            I_OBJPACK-DOC_TYPE = 'RAW'.
            APPEND I_OBJPACK.
Attachment (pdf-Attachment)
            I_OBJPACK-TRANSF_BIN = 'X'.
            I_OBJPACK-HEAD_START = 1.
            I_OBJPACK-HEAD_NUM = 0.
            I_OBJPACK-BODY_START = 1.
            DESCRIBE TABLE I_OBJBIN LINES V_LINES_BIN.
            READ TABLE I_OBJBIN INDEX V_LINES_BIN.
            I_OBJPACK-DOC_SIZE = V_LINES_BIN * 255 .
            I_OBJPACK-BODY_NUM = V_LINES_BIN.
            I_OBJPACK-DOC_TYPE = 'PDF'.
            I_OBJPACK-OBJ_NAME = 'smart'.
            I_OBJPACK-OBJ_DESCR = FILENAME.
            APPEND I_OBJPACK.
            CLEAR I_RECLIST.
            I_RECLIST-RECEIVER = atab-mail.
            I_RECLIST-REC_TYPE = 'U'.
            APPEND I_RECLIST.
            CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
            EXPORTING
              DOCUMENT_DATA = WA_DOC_CHNG
              PUT_IN_OUTBOX = 'X'
              COMMIT_WORK = 'X'
            TABLES
                PACKING_LIST = I_OBJPACK
                OBJECT_HEADER = WA_OBJHEAD
                CONTENTS_BIN = I_OBJBIN
                CONTENTS_TXT = I_OBJTXT
                RECEIVERS = I_RECLIST
            EXCEPTIONS
                TOO_MANY_RECEIVERS = 1
                DOCUMENT_NOT_SENT = 2
                DOCUMENT_TYPE_NOT_EXIST = 3
                OPERATION_NO_AUTHORIZATION = 4
                PARAMETER_ERROR = 5
                X_ERROR = 6
                ENQUEUE_ERROR = 7
                OTHERS = 8.
IF SY-SUBRC <> 0.
WRITE:/ 'Error When Sending the File', SY-SUBRC.
ELSE.
WRITE:/ 'Mail sent'.
ENDIF.
Regards
Nausal

Similar Messages

  • The Vendor account entered is not associated with the item you are trying to open

    Hi
    I moved from a Windows laptop to a Mac Book pro and moved all my files across, now I have found that two of my purchased books I can no longer open, I always get "The Vendor account entered is not associated with the item you are trying to open" message, I have the correct authorisation but they do not open, is theer a way to recover these 2 books?
    Thanks in advance

    This is the Adobe Reader forum; please ask in the Digital Editions forum.

  • The vendor account entered is not associated with the item you are tryingto open. I get this message when i want to open a downloaden book.

    The vendor account entered is not associated with the item you are trying to open. I get this message when i want to open a downloaded book.

    This is the Adobe Reader forum; please ask in the Digital Editions forum.

  • Can't open book from library on computer or nook in digital editions.  message-"the vendor you entered is not asso. with the item you are trying to open.  try again."  I have de-authorized and reauthorized and still not working.

    I had to do a reinstall of windows 7 recently and now have had to download library access and digital editions.  Can't get books to transfer correctly to Nook and can't even open them on the computer in Digital Editions.  Keep getting messages that not authorized to open protected book and/or the above message.  Have followed instructions to deauthorize  and reauthorize.  Also get message when I try to open book.  "This document is licensed for a different user account."

    This is the Adobe Reader forum; please ask in the Digital Editions forum.

  • I want to email a Pages document as a Word doc. I used to be able to do this by clicking on share then send via mail then on Word and an email would appear with my word doc attached.  Now the email does not come up.  Why?

    I want to email a Pages document as a Word doc. I used to be able to do this by clicking on 'share' then 'send via mail' then on 'Word' and an email would appear with my word doc attached.  Now the email does not come up.  Why?

    It's difficult to do more than guess when you don't say what version of OS X or Pages you're running, but if you're on the latest, have you tried the Share menu -> Send via Mail command?
    If that doesn't help, you may have better luck if you ask in the Pages forum:
    Pages
    When you repost, be sure to include full details about your versions so that people know what it is you're working with.
    Regards.

  • TS3899 My mail is configured correctly.  When I go to view my inbox I get the 'Load More Messages...' with the number of messages showing.  I touch the display and nothing happens.  I have uninstalled and reinstalled the email account and restarted the de

    My mail is configured correctly.  When I go to view my inbox I get the 'Load More Messages...' with the number of messages showing.  I touch the display and nothing happens.  I have uninstalled and reinstalled the email account and restarted the device.  I can send mail fine as well as view my sent messages.  Very confusing.

    I have two yahoo accounts and I know as they 'improved' their servers I had periodic outages. It'd work fine on my webmail on  my computer, webmail on the iPad, but not via the mail app. And it was stuff on their end. It may be a case of wait and see and you may need to eventually remove/readd the account on your iPhone.
    When the issue is on their end, unfortunately there's not much for users to do beyond wait it out or find work arounds.

  • When I attempt to send a text from the new iPad, a dialog box appears with the option to either sign in with Apple ID Password or Create New Account. I try signing in using my Apple ID password but IMessage informs me that email address cannot be verified

    When I attempt to send a text from the new iPad, a dialog box appears with the option to either sign in with Apple ID Password or Create New Account. I try signing in using my Apple ID password but IMessage informs me that email address cannot be verified because it is already in use ??? What am I doing wrong?

    settings -> iTunes & App Store
    click on apple ID listed there
    select Sign Out
    sign in with the proper account
    from then on, when the store ask for your password it should be with the correct ID

  • I am having difficulty: we are running a windows server 2003 - mail and outlook support 2007 and upwards, how do I get the brand new apple machines to work with the 2003 version of server

    I am having difficulty: we are running a windows server 2003 - mail and outlook support 2007 and upwards, how do I get the brand new apple machines to work with the 2003 version of server

    I may be way out, but do you know about this product, would it help integrate the Macs for you.
    https://www.thursby.com/sites/default/files/images/ADmitMacv8_SPD.pdf

  • Cannot open your default e-mail folders. You must connect to Microsoft Exchange with the current profile before you can synchronize your folders with your Outlook data file (.ost)

    Fresh installation of Exchange Server 2013 on Windows Server 2012.
    Our first test account cannot access their email via Outlook but can access fine through OWA. The following message appears - "Cannot open your default e-mail folders. You must connect to Microsoft Exchange with the current profile before you can synchronize
    your folders with your Outlook data file (.ost)" is displayed.
    If I turn off cached Exchange mode, setting the email account to not
    cache does not resolve the issue and i get a new error message - "Cannot open your default e-mail folders. The file (path\profile name).ost is not an Outlook data file (.ost). Very odd since it creates its own .ost file when you run it for the first
    time.
    I cleared the appdata local Outlook folder and I tested on a new laptop that has never connected to Outlook, same error message on any system.
    Microsoft Exchange RPC Client Access service is running.
    No warning, error or critical messages in the eventlog, it's like the healthiest server alive.
    Any help would be greatly appreciated. I haven't encountered this issue with previous versions of Exchange.

    So it looks like a lot of people are having this issue and seeing how Exchange 2013 is still new (relatively to the world) there isn't much data around to answer this. I've spend ALOT of time trying to figure this out.
    Here is the answer. :) - No I don't know all but I'm going to try to give you the most reasonable answer to this issue, in a most logical way.
    First thing I did when I was troubleshooting this issue is that I ignored Martina Miskovic's suggestion for Step4 http://technet.microsoft.com/library/jj218640(EXCHG.150)because it didn't make sense to me because I was trying to connect
    Outlook not outside the LAN but actually inside. However, Martina's suggestion does fix the issue if it's applied in the correct context.
    This is where the plot thickens (it's stew). She failed to mention that things like SSL (which I configure practically useless - anyone who ever worked in a business environment where the owner pretty much trusts anyone in the company, otherwise they don't
    work there - very good business practice in my eyes btw, can confirm that...) are some sort of fetish with Microsoft lately. Exchange 2013 was no exception.
    In exchange 2003, exchange 2007 and exchange 2010 - you could install it and then go to outlook and set it up. And when outlook manual Microsoft Exchange profile would ask you for server name, you would give it and give the name of the person who you setting
    up - as long as machine is on the domain, not much more is needed. IT JUST WORKS! :) What a concept, if the person already on premises of the business - GIVE HIM ACCESS. I guess that was too logical for Microsoft. Now if you're off premises you can use things
    like OutlookAnywhere - which I might add had their place under that scenario.
    In Exchange 2013, the world changed. Ofcourse Microsoft doesn't feel like telling it in a plain english to people - I'm sure there is an article somewhere but I didn't find it. Exchange 2013 does not support direct configuration of Outlook like all of it's
    previous versions. Did you jaw drop? Mine did when I realized it. So now when you are asked for your server name in manual outlook set up and you give it Exchange2013.yourdomain.local - it says cannot connect to it. This happens because ALL - INTERNAL AND
    EXTERNAL connection are now handled via OutlookAnywhere. You can't even disable that feature and have it function the reasonable way.
    So now the question still remains - how do you configure outlook. Well under server properties there is this nice section called Outlook anywhere. You have a chance to configure it's External and Internal address. This is another thing that should be logical
    but it didn't work that way for me. When I configured the external address different from the internal - it didn't work. So I strongly suggest you get it working with the same internal address first and then ponder how you want to make it work for the outside
    users.
    Now that you have this set up you have to go to virtual directories and configure the external and internal address there - this is actually what the Step 4 that Martina was refering to has you do.
    Both external and internal address are now the same and you think you can configure your outlook manually - think again. One of the most lovely features of Outlook Anywhere, and the reason why I had never used it in the past is that it requires a TRUSTED
    certificate.
    See so it's not that exchange 2013 requires a trusted certificate - it's that exchange 2013 lacks the feature that was there since Windows 2000 and Exchange 5.5.
    So it's time for you to install an Active Direction Certificate Authority. Refer to this wonderful article for exact steps - http://careexchange.in/how-to-install-certificate-authority-on-windows-server-2012/
    Now even after you do that - it won't work because you have to add the base private key certificate, which you can download now from your internal certsrv site, to Default Domain Policy (AND yes some people claim NEVER mess with the Default Domain Policy,
    always make an addition one... it's up to you - I don't see direct harm if you know what you want to accomplish) see this: http://technet.microsoft.com/en-us/library/cc738131%28v=ws.10%29.aspx if you want to know exact steps.
    This is the moment of ZEN! :) Do you feel the excitement? After all it is your first time. Before we get too excited lets first request and then install the certificate to actual Exchange via the gui and assign it to all the services you can (IIS, SMTP and
    there is a 3rd - I forgot, but you get the idea).
    Now go to your client machine where you have the outlook open, browse to your exchange server via https://exchang2013/ in IE and if you don't get any certificate errors - it's good. If you do run on hte client and the server: gpupdate /force This will refresh
    the policy. Don't try to manually install the certificate from Exchange's website on the client. If you wanna do something manually to it to the base certificate from the private key but if you added it to the domain policy you shouldn't have to do it.
    Basically the idea is to make sure you have CA and that CA allows you to browse to exchange and you get no cert error and you can look at the cert and see that's from a domain CA.
    NOW, you can configure your outlook. EASY grasshoppa - not the manual way. WHY? Cause the automatic way will now work. :) Let it discover that exachange and populate it all - and tell you I'm happy! :)
    Open Outlook - BOOM! It works... Was it as good for you as it was for me?
    You may ask, why can't I just configure it by manual - you CAN. It's just a nightmare. Go ahead and open the settings of the account that got auto configed... How do you like that server name? It should read something like [email protected]
    and if you go to advanced and then connection tab - you'll see Outlook Anywhere is checked as well. Look at the settings - there is the name of the server, FQDN I might add. It's there in 2 places and one has that Mtdd-something:Exchange2013.yourdomain.local.
    So what is that GUID in the server name and where does it come from. It's the identity of the user's mailbox so for every user that setting will be different but you can figure it out via the console on the Exchange server itself - if you wish.
    Also a note, if your SSL certs have any trouble - it will just act like outlook can't connect to the exchange server even though it just declines the connection cause the cert/cert authority is not trusted.
    So in short Outlook Anywhere is EVERYWHERE! And it has barely any gui or config and you just supposed to magically know that kind of generic error messages mean what... Server names are now GUIDs of the [email protected] - THAT MAKES PERFECT
    SENSE MICROSOFT! ...and you have to manage certs... and the only place where you gonna find the name of the server is inside the d*** Outlook Anywhere settings in the config tab, un it's own config button - CAN WE PUT THE CONFIG ANY FURTHER!
    Frustrating beyond reason - that should be Exchange's new slogan...
    Hope this will help people in the future and won't get delete because it's bad PR for Microsoft.
    PS
    ALSO if you want to pick a fight with me about how SSL is more secure... I don't wanna hear it - go somewhere else...

  • HT2736 I'm trying to send a tune as a gift but, every time I fill out the info, and press "continue", I get a message that my session has "timed out".

    I'm trying to send a tune as a gift but, every time I fill out the info, and press "continue", I get a message that my session has "timed out". I didn't take me over a minute to fill out the form. How fast does one have to be!?

    Well, first, why are you running such ancient versions of Firefox as 3.6? i would immediately update to Firefox 15.0.1 as Firefox 3.6.28 is no longer supported and is critically insecure.
    As for the dreamweaver thing, I'm not sure this is a Firefox issue, so I'd check again after updating Firefox.

  • I just got my refurb iPad in the mail. I am trying to set it up, but im getting this message "iTunes could not back up the ipad because the backup was corrupt or not compatable with the ipad. Delete the backup for this ipad. then try again." How?

    I just got my refurb iPad in the mail. I am trying to set it up, but i am getting this error message " iTunes could not back up the ipad because the backup was corrupt or not compatable with the ipad. Delete the backup for this ipad. Then try agian." How do I do that?

    It sounds like the iPad wasn't erased to me. If the iPad is totally cleared of content, there should be nothing on it and no backup to create.
    Without connecting the iPad to your computer - Launch iTunes on you computer and go to Edit>Prefences>Devices. Do you see an iPad backup in there? If you do see it, delete it.

  • Balance in vendor recon account is not matching with the balance in subsida

    Dear All
    Balance in vendor recon account is not matching with the balance in subsidary ledger, the recons accounts inthe masters have been changed,how do i reconcile them

    Hi Surya,
    check f101 - tab parameter, flag Change recon acct.
    f101 carries out postings or gives you a simple list to determine all the open items with changed recon accounts.
    Best regards
       Horst
    Edited by: HorstRn on Jun 24, 2008 6:22 PM
    By the way.... this is the AM forum... Chance to get a solution is much higher in financials....

  • TS3276 I sent out a mass mailing to my various groups and the Yahoo accounts have been getting bombarded with the same message every 2 minutes and I don't know haow to stop the hemmoraging. Non of my other contacts had this problem. Please help!

    I sent out a mass mailing to my various groups and the Yahoo accounts have been getting bombarded with the same message every 2 minutes and I don't know haow to stop the hemmoraging. Non of my other contacts had this problem, just Yahoo. Can someone help me get out of this nightmare?

    I sent out a mass mailing to my various groups and the Yahoo accounts have been getting bombarded with the same message every 2 minutes and I don't know haow to stop the hemmoraging. Non of my other contacts had this problem, just Yahoo. Can someone help me get out of this nightmare?

  • I have two e-mail accounts. A lot of my content is with the older account which is deactivated. How do I get  iTunes to recognize this content?

    I have two e-mail accounts. A lot of my content is with the older account which is deactivated. How do I get  iTunes to recognize this content?

    Authorize the computer for the account.
    Content is permanently tied to the account it was acquired wtih.

  • I cannot activate the screen saver. My operating system is Mac OS X version 10.6.8. The screen message says 'Please contact the vendor to get a newer version of the screen saver'

    When I try and activate my screen saver the following message appears
    Please contact the vendor to get a newer version of the screen saver
    My operating system is Mac OS X  version 10.6.8

    To begin with, you have the wrong forum - the iMacs covered by this forum were discontinued in 2005 and are incapable of running OS X 10.6.x
    Try either iMac (Intel) or Snow Leopard forums.
    To get more help, contributors will need to know what screensaver you're trying to use - is it one downloaded from the internet or one of the OS X default set?

Maybe you are looking for

  • "Cancelled Adobe Creative Suite 5 Master Collection English Windows"- problems downloading the trial

    Hi, I'm trying to download the Adobe CS5 Master COllection, but when the "Akamai Download Manager" pops up and should start the download, the two downloadbars disappears and I get the message "Cancelled Adobe Creative Suite 5 Master Collection Englis

  • How to allocate 4GB in a plug-in

    Hi, I'm working on a filter plug-in which someone wants to use to process really large 32-bit files (e.g. 550+ megapixels).  Apparently they can load these info Photoshop 64-bit (I'd like to have enough RAM to be able to try this).  But the plug-in n

  • Restrict PO at company code level

    Hi, We have near about 10 number of company code and lot of plants attached to each company code. and only one purchase organisation. Now business require that PO shold be created only for 2 company codes not for all. there are alreday roles availabl

  • How to display Column Names of a Database Table in JSP

    Dear All, I want to display all the attribute names(column names) of a database table on JSP. [ ex:  mytable contains : ( EmpId,EmpName,Dept ). This should be display as  EmpId--text box                     EmpName--text box Dept----textbox please no

  • Can i use 32Gb RAM on my macbook pro 2012

    Can i use 32Gb (2 x 16Gb) RAM on my 2012 Macbook Pro????