Email attachment from spool...not to go on printer for printing

Hi,
I am sending email attachement whenever I find email address on customer. To send email I am reading from spool and then sending.
My requirement is I should not send the document for regular printing whenever I find email of customer. Since we are already sending the PDF to customer.
But right now in my program both printing and sending email is happening. How to stop printing when I find email ID of customer?
Thanks

Hi,
in your print program try to set the attribute TDNOPRINT of the OUTPUT_OPTIONS (structure SSFCOMPOP) with X in case you find the email.
Cheers.

Similar Messages

  • I have files that have been on my computer for over a year and all of a sudden they wont open and an error message comes up saying they were improperly downloaded or came in an email attach which is not the case

    I have files that have been on my computer for over a year and I have used them several times and all of a sudden they wont open.  I received an error message saying they are improperly downloaded or came as an email attachement which is not the case.  Please advise

    They seem to be word files - they will open if I choose "open with" microsoft word, but if I double click they don't open they are appearing as PDF on my screen.  I even opened one and then tried to "save as" making sure I chose .doc and they still appear as PDF
    I just created a new document response.doc in word and when I saved to my desktop it appears as a PDF file and I absolutely did not create a PDF or save as PDF it was a simple word
    doc.
    The message says "Adobe reader could not open response.doc because it is either not a supported file type or because the file has been damaged (for example attached in an email and not properly decoded)
    The reader version is I believe the most current, I always update when prompted.  OS is Windows 8

  • Send report as an email attachment from a page

    Hi
    I have page which generates a report based on two filters. After the report is generated, 'I want to send that report as an email attachment from that page, when button is clicked "Send Email"
    Thanks a lot in advance.'

    I accomplished functionality I believe similar to what you are looking for in an application once by querying a report into an html e-mail message. This approach gives you all kinds of flexibility. At least this would be one way of doing it. I am going to include a simplified sample here of what the script looked like. I hope this is at least helpful.
    DECLARE
    l_body_html CLOB;
    BEGIN
    l_body_html :=
    '<html>
    <head>
    <style type="text/css">
    body{font-family: Arial, Helvetica, sans-serif;
    font-size:9pt;
    margin:30px;
    background-color:#ffffff;}
    </style>
    </head><body>
    ' || UTL_TCP.crlf;
    l_body_html :=
    l_body_html || '<table border="1"><tr bgcolor="#999999">
    <th width="75" scope="col">
    Department
    </th>
    <th width="75" scope="col">
    Course
    </th>
    </tr>' || UTL_TCP.crlf;
    FOR c1 IN (SELECT some_table.DEPARTMENT, some_table.COURSE FROM some_table)
    LOOP
    l_body_html :=
    l_body_html || '<tr><td>
    ' || c1.DEPARTMENT || '
    </td>' || UTL_TCP.crlf;
    l_body_html := l_body_html || '<td>
    ' || c1.COURSE || '
    </td>' || UTL_TCP.crlf;
    l_body_html := l_body_html || '</tr>' || UTL_TCP.crlf;
    END LOOP;
    l_body_html := l_body_html || '</table>' || UTL_TCP.crlf;
    apex_mail.send(
    p_to => '<some email address>',
    p_from => '<desired from address here>',
    p_body => NULL,
    p_body_html => l_body_html,
    p_subj => '<desired subject line here>');
    END loop;
    apex_mail.push_queue;
    END;
    Edited by: stbrownOSU on Dec 8, 2009 2:53 PM
    I think something must have happened when I copied and pasted the code from TOAD. I have corrected the above code. Please try it again.

  • Cannot drag attachment from lotus notes to acrobat 11

    i cannot drag attachment from lotus notes to acrobat 11. before i have the acrobat 9 its possible now i have the 11 version then i can't do anything. maybe you have some ideas if this is already removed from the latest version. thanks.

    Hi Tony ,
    I would like to know few details before we assist you further.
    Which version of Lotus Notes are you using?
    What is the exact version of Acrobat?
    What OS do you work on?
    What are the steps you are performing to drag the attachment from lotus notes to Acrobat ?
    Regards
    Sukrit Dhingra

  • Email attachment from ibooks or file manager

    When I email a attachment from ibooks or file manager, the  text added to the email witch is visible in the send email on the ipad is not send except for the inserted file  Only the attachment is received but no text.  Is it possible to ad a text and signature?

    That issue has nothing to do with FileVault. The recipient's mail server is misconfigured.

  • Emailing photos from mail, not iphone. How?

    Is there a way to email a picture to someone directly from the mail program, if that picture was imported into iphoto- When I try to attach the picture, I am not able to locate it becuase its in iphoto. Do they do that so you HAVE to email pics from iphoto?

    No -there are many ways
    if you are in iPhoto select the photo(s) and drag to the mail icon in the dock
    if you are in mail create the message and look in the browse photos near the upper right of the new message - or click attack and look in the media browser in the lower left of the attach window - media ==> photos ==> iPhoto
    LN

  • Sending emails+attachment from a servlet

    Hi all,
    I'd like to send emails from within my servlet. There must be a possibility to attach a file that has been uploaded to the server in a previous request.
    Currently I'm using sun.net.smtp.SmtpClient to send simple emails.
    Does the sun-smtp-package provide a way to attach a file to an email?
    regards
    Steffen

    I'm not sure but I think the sun.net.smtp package is part of J2EE. I didn't need to download it. You will need a Base64-Encoding algorithm for transforming the file-data (the attachment) into the email message. OReillys servlet package provides a class for this (www.servlets.com).
    Below is an example how to send an email with a file attached to it. You will have to specify the name of an SMTP-Server. If you do not have one you can (for testing purposes) direct the email into a text file.
    try{
         String host = /** @todo place your smtp-server name or IP here */
         SmtpClient smtp = new SmtpClient(host);
         smtp.from(from);
         smtp.to(toList);
         PrintStream out = smtp.startMessage();
         Base64Encoder b64e = new Base64Encoder(out); // Base64Encoder is also a Stream which we will only use for the attachment-data
         /* uncomment this if there is no smtp-server. The email will be stored in a file
         File fEml = new File(/** @todo add your filePath here */+File.separatorChar+"out.eml");
         PrintStream out = new PrintStream(new FileOutputStream(fEml));*/
         out.println("From: "+from);
         out.println("To: "+toList);
         out.println("Subject: "+subject);
         out.println("Date: "+date.toString());
         out.println("MIME-Version: 1.0");
         // we have to declare the email multipart/mixed to notify the email client that this mail contains sub parts of different content-types
         out.println("Content-Type: multipart/mixed;");
         // the boundary-string separates the sub parts (just like in HTTP-Multipart-Requests)
         out.println("\tboundary=\"----=_next_part\"");
         out.println("\r");
         out.println("This is a multipart message in MIME format.");
         out.println("\r");
         // first sub part starts here - its the text message
         out.println("------=_next_part");
         // this sub part contains only plain text
         out.println("Content-Type: text/plain;");
         out.println("\tcharset=\"iso-8859-1\"");
         out.println("Content-Transfer-Encoding: 7bit");
         out.println("\r");
         // Message text goes here
         out.println(/** @todo place your message here */);
         out.println("\r");
         // now the attachment
    out.println("------=_next_part");
    out.println("Content-Type: application/octet-stream;");
    out.println("\tname=\""+fileName+"\"");
    out.println("Content-Transfer-Encoding: base64");
    out.println("Content-Disposition: attachment;");
    out.println("\tfilename=\""+fileName+"\"");
    out.println("\n");
    // encode file piece by piece
    File f = new File(/** @todo place your filepath here */+File.separatorChar+fileName);
    FileInputStream fis = new FileInputStream(f);
    int i = 0;
    do{
    byte[] content = {0, 0, 0};
    i = fis.read(content, 0, 3);
    if (i != -1){
                   b64e.write(content);
         }//if
    }while(i != -1);
    fis.close();
    fis = null;
    f = null;
         // this is it, all there's left to do is to flush our output-stream and clean up
         out.flush();
         b64e.close();
         out.close();
         b64e = null;
         smtp.closeServer();
         out = null;
         smtp = null;
    }catch(IOException ioe){
         ioe.printStackTrace();
    }//catch
    HTH
    Steffen

  • Email attachment from fop

    i am creating a pdf by using fop. the issue is that i want to attach the pdf file to an email.
    but i am wondering if there is any way to attach file to an email without generating an actual file. i am looking for info that i can use stream or object to send out emails...
    thanks in advance...

    Now multiple jpgs won't send.  Other people have posted that problem. Looks like Mt. Lion has a bug with email attachments.  It's not just a matter of pngs in iphoto.

  • Sending as email attachment from Word 2013 gets stuck in Outbox

    I am using Office 2013 and use the send document as attachment option within Word to email documents. The documents that I email are from a shared exchange mailbox. Whenever I do this the emails get through to the receiver but are stuck in my personal outbox
    rather than sending and heading to the shared sent box.
    This only occurs when I use this option from Word, eg: I can send Excel attachments from within Excel and it goes to the shared Sent box.
    I am also able to successfully send emails from with Outlook via the shared account.
    I am unable to find any settings in Word that affect this behavior, any ideas?

    Hi,
    Please run Word in Safe Mode to test if it's 3rd-party add-ins related:
    Press Win + R and type “word.exe /safe” in the blank box, then press Enter.
    If there’s no problem in Safe Mode, disable the suspicious add-ins to verify which add-ins caused this issue.
    We can also refer to the link below, to learn more and check the possible settings that may affect this behavior:
    http://www.msoutlook.info/question/278
    Regards.
    Melon Chen
    TechNet Community Support
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • I have several email account setup on iphone.  for one of them can receive from/to emails from phone, but emails sent from computer not received on phone.  phone shows receiving but does not come thru

    I have iphone 4s with several email accounts set up.  For one of these accounts, and only one, test emails sent from phone come thru fine.  But computer generated mail doesn't come to phone.  For test messages phone shows "receiving" but nothing comes to inbox.  External sent mail does not  come to phone inbox, but does to outlook on computer.  Have checked settings and these seem correct.  What's up?  Four other accounts work fine.

    If you can send e-mail when on WiFi from home, but not when on 3G, that indicates your email provider is blocking e-mail being sent from outside their network. This is done to control Spam. ISPs who do this will usually have a separate SMTP server that should be used when using a mobile device. Check with them again.

  • I am finding that some of me emails (mainly from companies not my friends) are coming through to my iphone but not coming through to my iMac.

    For quite a while now I have missed some important emails that have come through to my iphone but not downloaded to my iMac, its happening more and more recently. It is really fustrating, I have looked at my iMac and can't find anywhere to adjust the settings to let through the missing emails, the emails that are not coming to my home pc are normaly from large companies, some from my credit card company and comformation for hotel bookings etc, etc.
    Can anyone help me please?

    Problem might me with how your e.mail is set up if you're using POP3.
    If you're using POP3 then you need to add "recent:" (without the quotation marks) before your username on both your iMac and your iPhone.
    I use POP3 with Virgin Media and they have well documented help on this aspect.
    This now works fine for me and I no longer miss any e.mails.

  • Sending Email Attachment from UNIX using UUENCODE Command

    Hi,
    We are using "uuencode" command to send the mail with attachment to particular user but we are getting the mail without attachment, it's printing ASCII characters in mail body.
    The command is:
    uuencode $XXAR_TOP/out/${v_request_id}.csv.gz ${v_request_id}.csv.gz) |
    mailx -s "Invoice Information Extract" $v_email_recipient
    My requirement is to send the PDF file as an attachment.
    Any setups or configuration required in UNIX box to get an attachment.
    Advance Thanks
    Subbu

    I need to send the PDF or zip file as an attachment through mail,
    I tried with uuencode, it's not giving any error message but the mail recipient has only a mail with unreadable text because the pdf/zip file is directly in the mail (not as attachment).
    How to send the file as an attachment from unix?
    Advance Thanks
    Subbu

  • Emails sent from iPhone not being received

    I've noticed this happening over the past week or so... Anytime I initiate a new email thread from my Gmail account on my iPhone, the recipient isn't getting it. If I go into Gmail via the web I'll see the email in my Sent Items, but it never arrives. In one instance, I got a bounceback message from the recipient's server, but in the others I haven't gotten anything back. This has happened to at least 5 different email addresses, all with different providers, that I've tried to send to, and needless to say I am sure that all of these addresses are indeed valid recipients.
    I'm already running iPhone OS 3.1...

    If you see it in the gmail sent box on the web, then it was sent.
    It sounds like something you need to talk with google about.

  • Deployed application from NWDS not available in local folder for IView crea

    Hi Gurus,
    I have deployed an Web Dynpro Java application from NWDS. The application deployed fine.
    But when I tried to cretae the Web Dynpro Java application from the Portal the corresponding application is not available in local folder for IView creation.
    How do i need to proceed for Web Dynpro Java IView creation.
    Thanks & Regards,
    Kiran Kumar k

    Hi Kiran,
    Please check under sap.com/local  OR you custom package while creating Web Dynpro Java application iview.
    Then select your WD Application if you found - Applcaition >> package >> then select Application name and click on next.
    Verify your application deployed or not or in which folder at content administration >> web dynpro >> searh your WD application.
    Hope it helps
    Regards
    Arun

  • Email PDF from IE not working correctly

    We use software that exports a Crystal Report to a PDF file and displays it in Internet Explorer (IE9).  From the Reader toolbar, you can email the PDF as an attachment.  Ever since upgrading to verion 11, the file is attached to the email with the name of the web page instead of the PDF extension (.aspx instead of .pdf).  I copied the attachment to the Desktop and renamed it to a .pdf and it does open just fine.  The problem is that I should not have to do that.  Plus, users are having a hard time with it.  How can I fix this issue?

    This is a known issue in Acrobat11, will be fixed in dot release.

Maybe you are looking for

  • 16:9 Help needed. Workflow: extracted video from DVD, FCE HD edit & DVDSP.

    Hi, I have a project where according to the camera person it was shot in 16:9 with the camera (assuming a DV camcorder of some sort). It was captured from the camera and converted to a DVD (VIDEO_TS folder and everything) and sent to me for editing.

  • Embedded flash not behaving correctly

         I am having some problems with embedding flash into a PDF and I hope you can help. When I run the flash outside the PDF, all of the rollovers and cursor changes behave correctly. However, once I embed the flash into the pdf and launch it, when I

  • NOISE WHILE PRINTING (SPRING/METAL ALIKE SOUND)

    HI, WE ARE USING AN HP OFFICEJET 6500A PLUS PRINTER, IT'S BEEN 2 WEEKS NOW SINCE THE IRRITABLE SOUND STARTED. IT IS A LOUD SPRING LIKE SOUND WHEN PRINTING. I TRIED CLEANING AND ALIGNING BUT DID NOT WORK. I HAVE CHECK PAPER JAM PROCEDURE ALSO BUT STIL

  • Missing Desktop File

    I was transferring some files from my phone on to my G585 laptop. I made a file and transferred over 120 pictures from my phone in to the file. Now the file is gone. Its not anywhere to be found. Search give me nothing, and it's not in the recycle bi

  • 500 Internal error when clicking on Completed tasks in UWL

    Hi All We are getting 500 Internal Server Error and java.Lang.Null pointer exception when trying to Click on Completed Tasks. We are using GP to design the process flow. In UWL we are getting tasks from GP Connector Please help to resolve the issue T