Problem with Print Email from Web IC

Hello Experts,
I am currently working on CRM 6.0. When i try to print an EMail from Web IC using Print Message Button at the bottom of Email body, I can only find this email in spool rather than printing on printer.
Also I have assigned the printer to my user. Even though `m not able to get the print of the email using Print Message Button. Please Advice.
Thank you.

I have a same problem. I've turned on print immediately, but it still prints E-mails to spool and not to printer. Printing from GUI works ok. Do you have any other advice?
Best regards,
Duško Šorak

Similar Messages

  • Problem with printing emails with IOS 7.

    I installed IOS 7 on my iPad 2 and now have problems printing emails. They come out in a very large print, even if I have disabled 'Larger Print' in Accessibility and have chosen a small print size.  There was no such problem with IOS 6.  What shall I do to get back a normal print size?  Can Apple help please?

    Check Settings>Messages>Send & Receive>Start New Conversations From to be sure your phone number is listed and selected.

  • Problem with retiriving links froma web page

    hi friends,
    ca n anyone help me out.i am trying to retrieve all the links from a web page .but all the linkjs are not being retrieved.can anyone tell me why.
    here i am submitting the code of it.
    private static ArrayList retrieveLinks(URL pageUrl, String pageContents, HashSet crawledList,boolean limitHost)
    // Compile link matching pattern.
    Pattern p = Pattern.compile("<a\\s+href\\s*=\\s*\"?(.*?)[\"|>]", Pattern.CASE_INSENSITIVE );
    Matcher m = p.matcher(pageContents);
    // Create list of link matches.
    ArrayList linkList = new ArrayList();
    while (m.find()) {
    String link = m.group(1).trim();
    // Skip empty links.
    if (link.length() < 1) {
    continue;
    // Skip links that are just page anchors.
    if (link.charAt(0) == '#') {
    continue;
    // Skip mailto links.
    if (link.indexOf("mailto:") != -1) {
    continue;
    // Skip JavaScript links.
    if (link.toLowerCase().indexOf("javascript") != -1) {
    continue;
    // Prefix absolute and relative URLs if necessary.
    if (link.indexOf("://") == -1) {
    // Handle absolute URLs.
    if (link.charAt(0) == '/') {
    link = "http://" + pageUrl.getHost() + link;
    // Handle relative URLs.
    } else {
    String file = pageUrl.getFile();
    if (file.indexOf('/') == -1) {
    link = "http://" + pageUrl.getHost() + "/" + link;
    } else {
    String path =
    file.substring(0, file.lastIndexOf('/') + 1);
    link = "http://" + pageUrl.getHost() + path + link;
    // Remove anchors from link.
    int index = link.indexOf('#');
    if (index != -1) {
    link = link.substring(0, index);
    // Remove leading "www" from URL's host if present.
    link = removeWwwFromUrl(link);
    // Verify link and skip if invalid.
    URL verifiedLink = verifyUrl(link);
    if (verifiedLink == null) {
    continue;
    /* If specified, limit links to those
    having the same host as the start URL. */
    if (limitHost && !pageUrl.getHost().toLowerCase().equals(verifiedLink.getHost().toLowerCase()))
    System.out.println("the given link does not exist");
    continue;
    // Skip link if it has already been crawled.
    if (crawledList.contains(link)) {
    continue;
    // Add link to list.
    linkList.add(link);
    return (linkList);
    Hope some one can help me outr of this .i susupect some problem with the regular expression used.
    it is unable to parse links like
    http://www.cricinfo.com/ci/engine/current/match/scores/live.html
    http://www.cricinfo.com/nzvind2009/content/current/series/366616.html

    kathiksagar wrote:
    i dont have much idea about html parser
    can u tell me how to do itHere are a couple of free parser written in Java:
    [http://java-source.net/open-source/html-parsers]
    I'm sure many of them have a manual, and/or have example code on their website on how to use it.
    Good luck.

  • Problems with send emails from 2nd account

    Hi,
    I have problems to  sent from a 2nd account. Sending emial via my icloud account works excellent. But if I want to sent emails via my 2nd account I got the message     
    " Can't sent emails - Adresse [email protected] was declied from server, because  forward is not allowed"
    I heard that the server has to setup to allow forwrding emails from a 2nd account. Where could I find this?
    Thnaks
    Michael

    I believe CF5 had an issue with 0 byte mails in the spool.
    Test your mail to confirm that you do not attempt to send a 0 byte
    mail.

  • Problems with  print range from 1 to 9999 during printing

    Hi All,
    In my project i am printing the datas in a JTable by a click of the button.I have used the following link:-
    http://developer.java.sun.com/developer/onlineTraining/Programming/JDCBook/advprint.html
    to print that data from the JTable.The main problem i have is that
    1) The font size in which the tableheader and tabledatas printed are so small.So that i need to increase the font size for both tableheader and tabledatas?
    2)When i click the printButton for printing it opens a dialog box showing print range from 1 to 9999. And in the pages from 1 to 9999.
    I don't want this.I want only 1 to 1.I know that by using Pageable
    interface u can change it.But i don't know how to do it
    Any one help me to solve this 2 problems i will be very thankful to u.It is Urgent.For ur reference i will provide my Code:-
    import javax.swing.*;
    import javax.swing.table.*;
    import java.awt.print.*;
    import java.util.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import java.awt.Dimension;
    import java.io.*;
    public class PrintReportPanels extends JPanel implements Printable
    JTable tableView;
    String aLine="";
    DefaultTableModel model;
    Vector columnNames = new Vector();
    Vector data = new Vector();
    JScrollBar jsb = new JScrollBar(JScrollBar.HORIZONTAL);
    JScrollBar jsb1 = new JScrollBar(JScrollBar.VERTICAL);
    JPanel southPanel=new JPanel();
    JPanel printPanel=new JPanel();
    JButton printButton=new JButton();
    int v=ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED;
    int h=ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED;
    private Font fnt=new Font("Arial",Font.PLAIN,20);//Not working for increasing the font size
    public PrintReportPanels()
         try
    this.setLayout(new BorderLayout());
    UIManager.put("ScrollBar.track",Color.red);
    UIManager.put("ScrollBar.thumb",Color.blue);
         FileInputStream fin = new FileInputStream("Spooler.txt");
         BufferedReader br = new BufferedReader(new InputStreamReader(fin));
         // extract column names
         StringTokenizer st1 = new StringTokenizer(br.readLine());
         while( st1.hasMoreTokens() )
         columnNames.addElement(st1.nextToken());
         }               // extract data
         while((aLine = br.readLine())!=null) //br.readLine() which contains the Spooler.txt datas is assigned to aLine
         StringTokenizer st2 = new StringTokenizer(aLine);
         Vector row = new Vector();
         while(st2.hasMoreTokens())
         row.addElement(st2.nextToken());
         data.addElement( row );
         br.close();
         catch (Exception e)
              e.printStackTrace();
    model = new DefaultTableModel(data,columnNames);
    tableView = new JTable(model);
    JScrollPane jsp = new JScrollPane(tableView);
    this.add(jsp,BorderLayout.CENTER);
    this.add(jsb,BorderLayout.SOUTH);
    this.add(jsb1,BorderLayout.EAST);
    this.add(southPanel,BorderLayout.SOUTH);
    southPanel.setLayout(new FlowLayout());
    ImageIcon ic=new ImageIcon("print.gif");
    printButton.setIcon(ic);
    printButton.setBackground(Color.white);
    printPanel.setLayout(new FlowLayout(FlowLayout.LEFT));
    printPanel.add(printButton);
    southPanel.add(printPanel);
    this.validate();
    this.repaint();
    printButton.addActionListener( new ActionListener(){
    public void actionPerformed(ActionEvent evt) {
         PrinterJob pj=PrinterJob.getPrinterJob();
         pj.setPrintable(PrintReportPanels.this);
         pj.printDialog();
         try{
              pj.print();
         }catch (Exception PrintException) {}
    public int print(Graphics g, PageFormat pageFormat,int pageIndex) throws PrinterException
         Graphics2D g2 = (Graphics2D) g;
         g2.setColor(Color.black);
         g2.setFont(fnt);
         int fontHeight=g2.getFontMetrics().getHeight();
         int fontDesent=g2.getFontMetrics().getDescent();
         //leave room for page number
         double pageHeight = pageFormat.getImageableHeight()-fontHeight;
         double pageWidth = pageFormat.getImageableWidth();
         double tableWidth = (double) tableView.getColumnModel().getTotalColumnWidth();
         double scale = 1;
         if (tableWidth >= pageWidth) {
              scale = pageWidth / tableWidth;
         double headerHeightOnPage=
    tableView.getTableHeader().getHeight()*scale;
         double tableWidthOnPage=tableWidth*scale;
         double oneRowHeight=(tableView.getRowHeight()+
    tableView.getRowMargin())*scale;
         int numRowsOnAPage=
    (int)((pageHeight-headerHeightOnPage)/oneRowHeight);
         double pageHeightForTable=oneRowHeight*numRowsOnAPage;
         int totalNumPages= (int)Math.ceil((
    (double)tableView.getRowCount())/numRowsOnAPage);
         if(pageIndex>=totalNumPages)
    return NO_SUCH_PAGE;
         g2.translate(pageFormat.getImageableX(),
    pageFormat.getImageableY());
         g2.drawString("Page: "+(pageIndex+1),(int)pageWidth/2-35, //For printing the page no. at the bottom
    (int)(pageHeight+fontHeight-fontDesent));//bottom center
         g2.translate(0f,headerHeightOnPage);
         g2.translate(0f,-pageIndex*pageHeightForTable);
         //If this piece of the table is smaller than the size available,
         //clip to the appropriate bounds.
         if (pageIndex + 1 == totalNumPages)
    int lastRowPrinted = numRowsOnAPage * pageIndex;
    int numRowsLeft = tableView.getRowCount() - lastRowPrinted;
    g2.setClip(0, (int)(pageHeightForTable * pageIndex),
    (int) Math.ceil(tableWidthOnPage),
    (int) Math.ceil(oneRowHeight * numRowsLeft));
         //else clip to the entire area available.
         else{
    g2.setClip(0, (int)(pageHeightForTable*pageIndex),
    (int) Math.ceil(tableWidthOnPage),
    (int) Math.ceil(pageHeightForTable));
         g2.scale(scale,scale);
         tableView.paint(g2);
         g2.scale(1/scale,1/scale);
         g2.translate(0f,pageIndex*pageHeightForTable);
         g2.translate(0f, -headerHeightOnPage);
         g2.setClip(0, 0,(int) Math.ceil(tableWidthOnPage),
    (int)Math.ceil(headerHeightOnPage));
         g2.scale(scale,scale);
         tableView.getTableHeader().paint(g2);//paint header at top
         return Printable.PAGE_EXISTS;
    public static void main(String[] args)
         JFrame frame=new JFrame();
         RepaintManager.currentManager(frame).setDoubleBufferingEnabled(false);
         JPanel panel=new PrintReportPanels();
         frame.getContentPane().add(panel);
         frame.setSize(800,600);
         frame.setVisible(true);
    Pls. do provide the reply and tell me where i go wrong.I will be waiting for ur reply.It is very Urgent.
    Thanx,
    m.ananthu

    Hi conner,
    1) My font size problem is over i have used the tablename.setFont(new Font("Arial",Font.PLAIN,20)).It does change the font size of the JTable contents but the JTable Header still remains the same.I want to change the font size of the JTable header as well.How to do it?
    2)According to my second problem can u provide the code of how to change the page range from 1 - 9999 to 1-1?So that i will be very thankful to u.
    Thanx,
    m.ananthu

  • Problems with sending emails from my Blackberry BIS account - all on one line

    I am using a BB Storm 9500 and have been trying to use the BIS email account.
    However, whenever I reply or forward emails from my device, the email comes out all on one line regardless of the punctuation I put in.
    My signature also appears on one line despite having formatted it differently.
    I've seen some post on this problem before but I wondered whether anyone has resolved it now. It's a pain because when responding to work emails it looks completely unprofessional.
    Cheers
    TJE

    anyone try it? any use?
    dc

  • Problems with 'Print Booklet' from InDesign CS4

    I am having problems using the 'Print Booklet commane in InDesign CS4. I have done this 100s of time from CS3 with no problems but for some reason it just won't auto duplex (print on both sides of the paper) when I do it from CS4. USing exactly the same settings, computer and file. The printer is setup correctly as will print double-sided automatically from other apps. Using mac leopard. Any ideas?

    Unfortunately, I have tried this. I choose 'layout' from the printer option within the driver  and pick 'short edged binding'. Still no luck.

  • Problem with printing 6x4 from Photoshop CS5 to Epson 2880

    Hi,
    bit of an odd one. I can print A3 and A4 no problem, but when I try to print a 6 x 4 it looks like the printer is not reconising the size of the paper. It prints the image the right size, but as though it were printing it on a larger sheet of paper, in the left hand side with a a 5cm space to the right (which is actually the top of the image).
    I have set the printer to 6 x 4 for both image and paper.
    Any ideas?
    Thanks

    I have an Epson 2200, but am assuming the drivers and print dialog accesing that driver and ICC profiles are very similar to Epson's 2880, which is the same size as the 2200.
    In order to print 6 x 4, whish isn't a standard page size in the print dialogs, are you setting up a custom page size? (Print > Print Settings > Page Size > Manage Custom Sizes) - This works fine here, but if the paper is the wrong size, it won't print. The print driver requires that the paper size actually be 6 x 4.
    Of course, an alternative approach might be to print on a standard paper size, maybe adding trim marks, and then cutting the page down to 6 x 4 after printing.
    If none of this helps, I suggest you contact Epson's tech support.

  • Problem with sending email from 4.6C to MS-outlook / Exchange

    Hello,
    I'm trying to send an email with a pdf-attachment from my 46C system. In trans SOST everything looks fine. There is a document with an attachment. When I send it to my email-client there's no attachment. And the following message is given in my email:
    This message is in MIME format. Your mail reader does not support MIME. Please read the first section, which is plain text, and ignore the rest. Better yet, get a MIME-capable mail reader.
    Does anybody recognise this message ???
    Regards,
    GJ van Holland

    Hai G.J.Van
    Check the following Code
    DATA: OBJPACK   LIKE SOPCKLSTI1 OCCURS 2 WITH HEADER LINE.
      DATA: OBJHEAD   LIKE SOLISTI1 OCCURS 1 WITH HEADER LINE.
      DATA: OBJBIN    LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
      DATA: OBJTXT    LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
      DATA: RECLIST   LIKE SOMLRECI1 OCCURS 5 WITH HEADER LINE.
      DATA: DOC_CHNG  LIKE SODOCCHGI1.
      DATA: TAB_LINES LIKE SY-TABIX.
      DATA L_NUM(3).
    Creation of the document to be sent
    File Name
      DOC_CHNG-OBJ_NAME = 'SENDFILE'.
    Mail Subject
      DOC_CHNG-OBJ_DESCR = 'Delivered Mail'.
    Mail Contents
      OBJTXT = 'Object text'.
      APPEND OBJTXT.
      DESCRIBE TABLE OBJTXT LINES TAB_LINES.
      READ TABLE OBJTXT INDEX TAB_LINES.
      DOC_CHNG-DOC_SIZE = ( TAB_LINES - 1 ) * 255 + STRLEN( OBJTXT ).
    Creation of the entry for the compressed document
      CLEAR OBJPACK-TRANSF_BIN.
      OBJPACK-HEAD_START = 1.
      OBJPACK-HEAD_NUM = 0.
      OBJPACK-BODY_START = 1.
      OBJPACK-BODY_NUM = TAB_LINES.
      OBJPACK-DOC_TYPE = 'RAW'.
      APPEND OBJPACK.
    Creation of the document attachment
      LOOP AT ITAB_DATA.
        CONCATENATE ITAB_DATA-PRODUCTOR
                    ITAB_DATA-VBELN
                    ITAB_DATA-POSNR
                    ITAB_DATA-MATNR INTO OBJBIN.
        APPEND OBJBIN.
      ENDLOOP.
      DESCRIBE TABLE OBJBIN LINES TAB_LINES.
      OBJHEAD = 'ORDERS'.
      APPEND OBJHEAD.
    Creation of the entry for the compressed attachment
      OBJPACK-TRANSF_BIN = 'X'.
      OBJPACK-HEAD_START = 1.
      OBJPACK-HEAD_NUM   = 1.
      OBJPACK-BODY_START = 1.
      OBJPACK-BODY_NUM   = TAB_LINES.
      OBJPACK-DOC_TYPE   = 'TXT'.
      OBJPACK-OBJ_NAME   = 'WEBSITE'.
      OBJPACK-OBJ_DESCR  = 'ORDERS.TXT'.
      OBJPACK-DOC_SIZE   = TAB_LINES * 255.
      APPEND OBJPACK.
    Completing the recipient list
    target recipent
      clear RECLIST.
      RECLIST-RECEIVER = '[email protected]'.
      RECLIST-EXPRESS  = 'X'.
      RECLIST-REC_TYPE = 'U'.
      APPEND RECLIST.
    copy recipents
      clear RECLIST.
      RECLIST-RECEIVER = '[email protected]'.
      RECLIST-EXPRESS  = 'X'.
      RECLIST-REC_TYPE = 'U'.
      RECLIST-COPY     = 'X'.
      APPEND RECLIST.
    Sending the document
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
           EXPORTING
                DOCUMENT_DATA              = DOC_CHNG
           TABLES
                PACKING_LIST               = OBJPACK
                OBJECT_HEADER              = OBJHEAD
                CONTENTS_BIN               = OBJBIN
                CONTENTS_TXT               = OBJTXT
                RECEIVERS                  = RECLIST
           EXCEPTIONS
                TOO_MANY_RECEIVERS         = 1
                DOCUMENT_NOT_SENT          = 2
                OPERATION_NO_AUTHORIZATION = 4
                OTHERS                     = 99.
    Thanks & regards
    Sreenivasulu P

  • Problem with printing selection of web page

    Print selection function from webpage don't print correctly. If text is marked then first line of text is printed not correct (printed only lower part of line). If text is longer than one page there is similar problem at the end of first page and begining of second. The problem occurs on HP LaserJet 4015 printer, and PDF creator too. Firefox 18.0.2 and firefox 19.0 , Windows 7 64bit

    Hi mrbcl1, unfortunately the answer is that Firefox has some bugs when it comes to printing selections!
    Typically, where the top of the selection is cut off, it means that Firefox is applying some style rules meant to position that part of the page on screen -- even though they are irrelevant when printing a selection. There's no built-in way to get Firefox to ignore those rules. You can try a different selection (keep more stuff above) or other interventions, but it can be a waste of time in many cases.
    Here are two workarounds. In both cases, the idea is to isolate the selected part of the page (hide everything else) so you can print it ''normally'', bypassing the limitations of the Print Selection feature.
    (1) Use the [https://addons.mozilla.org/en-US/firefox/addon/nuke-anything-enhanced/ Nuke Anything Enhanced extension]
    See: [https://support.mozilla.org/questions/927457#answer-333518 When using print selection in Firefox 12.0, it prints wherever the selection is on the page (on paper) instead of at the top of the page (of paper).]
    (2) Use a bookmarklet (snippet of JavaScript saved as a button on your bookmarks toolbar) to isolate the selection for printing.
    This is the technique I generally use due to force of habit. The details are in [https://support.mozilla.org/en-US/questions/943039#answer-384875 this post].

  • Problem with printing checks from quicken 2004 - using Vista (32bit) and Officejet J6480

    I have used my quicken 2004 version with my old XP with no problems and HP officejet J6480 All-in-One.  Just got a new computer and everything was going great until I went to print checks - it prints one line and then stops printing.  I assume the problem is with the Vista - is the Quicken 2004 too old?

    Hi , Welcome to the HP Forums! I noticed that you cannot print checks with Quicken, when using your HP Officejet Pro 6830e all-in-one on iOS. I am happy to take a look into this issue for you! Some questions for you: What version of iOS are you using? If you do not know the Operating System you are using, please visit this website. Whatsmyos.What happens when you try to print in TextEdit?Are you able to make copies with the printer? Copying Documents.Have you uninstalled the old printer software, and installed the software for your new printer? Once I know these answers, I will do some further research for you! Thank you for posting!  “Please click the Thumbs up icon below to thank me for responding.”

  • Problem with sending email from Acrobat Reader X Version 10

    Hello all
    I recently purchased a new Dell laptop with Windows 8 as its OS. I had two email clients installed, one is outlook 2007, that has no contacts and then purchased outlook 2014 which I am using. When I installed Acrobat and tried to send a PDF file as an email attachment, it took me first to Outlook 2007. I closed the program, deleted Microsoft office 2007 and tried to send the email again. Now it is telling me that there is no email association with Acrobat . Please help. Thank you.

    Try setting those preferences in Edit>Preferences>Email Accounts>Add account

  • Problem with XML replied from web services

    <cfset ServiceResult = "">
    <cfset xmltext=xmlParse('<?xml version="1.0" ?>
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <SOAP-ENV:Body>
    <runProcess xmlns="http://3e.pl/ADInterface">
    <ModelRunProcessRequest>
    <ModelRunProcess AD_Process_ID="1000000" AD_Menu_ID="0" AD_Record_ID="0" DocAction="">
      <serviceType>IInvoice</serviceType>
        <ParamValues>
             <field column="DocumentNo">
                    <val>#DOCNO_P#</val>
             </field>
        </ParamValues>
      </ModelRunProcess>
    <ADLoginRequest>
      <user>WebService</user>
      <pass>WebService</pass>
      <lang>en_US</lang>
      <ClientID>11</ClientID>
      <RoleID>50004</RoleID>
      <OrgID>11</OrgID>
      <WarehouseID>103</WarehouseID>
      <stage />
      </ADLoginRequest>
      </ModelRunProcessRequest>
      </runProcess>
      </SOAP-ENV:Body>
      </SOAP-ENV:Envelope>')>
    <cfhttp method="post" url="http://192.168.1.11:8080/ADInterface/services/ModelADService">
    <cfhttpparam type ="XML" value=#xmltext#>
    </cfhttp>
    <cfset ServiceResult = cfhttp.fileContent>
    from the code above, i will get replied and store into ServiceResult as below
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <soap:Body><ns1:runProcessResponse
    xmlns:ns1="http://3e.pl/ADInterface"><RunProcessResponse
    xmlns="http://3e.pl/ADInterface" IsError="false">
    <Summary>99 : Transaction Failed C_InvoiceLine</Summary><LogInfo />
    </RunProcessResponse></ns1:runProcessResponse></soap:Body></soap:Envelope>
    actually what i need is only those information inside the <summary> tag. How can i get the result i need?
    Any expert can give their advies? thank you.

    You will need to use CF's built-in XML tags and functions. See sample below:
    <cfsavecontent variable="serviceResult"><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <soap:Body><ns1:runProcessResponse
    xmlns:ns1="http://3e.pl/ADInterface"><RunProcessResponse
    xmlns="http://3e.pl/ADInterface" IsError="false">
    <Summary>99 : Transaction Failed C_InvoiceLine</Summary><LogInfo />
    </RunProcessResponse></ns1:runProcessResponse></soap:Body></soap:Envelope>
    </cfsavecontent>
    <!--- verify content if well formed XML --->
    <cfif IsXml(serviceResult)>
        <!--- create an XML object that CF's XML functions can use --->
        <cfset xmlResult=XmlParse(serviceResult, true) />
        <!--- check for a summary element, will return an array of matching objects
        Note that second parameter for XmlSearch function is an Xpath expresssion
        For an overview of Xpath see http://msdn.microsoft.com/en-us/library/ms256115.aspx
        For seaching XML which uses namespaces in CF see: http://www.coldfusionguy.com/ColdFusion/blog/index.cfm/2008/9/26/XMLSearch-Specify-xmlns-n amespaces-in-an-xPath-Search
         --->
        <cfset summarySearch=XmlSearch(xmlResult, "//*[local-name()='Summary' and namespace-uri()='http://3e.pl/ADInterface']") />
        <cfif ArrayLen(summarySearch) gt 0>
            Summary found: <cfoutput>#summarySearch[1].XmlText#</cfoutput>
        <cfelse>
            Summary not found
        </cfif>  
    </cfif>

  • Print problem with Yahoo email

    Ever since upgrading to Safari Version 7.0.1 (9537.73.11), I have had several different problems with printing emails.  For the time being, let me ask here about only my AT&T Yahoo mail.
    Here is the description of the problem in Yahoo.  When I pull down the “Actions” menu to “Print Message,” I get this dialog box:
                      Print Error
                      There was a problem printing, most likely caused by a pop-up blocker. Please click Try Again.
    Try Again
    So I click the button labeled “Try Again,” and Safari opens the email in a new window with a “Print” tool in the upper left corner. 
    I click the “Print” tool.  With multi-page emails, I like printing on both sides.  I choose either,
    Print Two-sided, or
    Print either odd or even pages.
    With the former option Safari prints one page of the email and stalls.  With the latter Safari prints the whole series of selected pages and stalls.  My printer (HP LaserJet Professional P1102w) refuses to print any more pages.  I have to go into my printer’s application and stop the print job.  Then I have to turn off the printer, wait a while for the machine to re-set, and turn it back on.  Then I can print the remaining page or pages.
    That’s inefficient. Is there some remedy to get Safari to print emails in Yahoo straight through?

    Problems like that with Firefox printing look like they are fixed in Firefox 4.

  • Niggly problem with Hotmail - Sending from a third party email address

    I need true push email on my BlackBerry, but also need access from a PC and need to send from my own email address. The easiest way I've found to do this is to forward all emails to my own address to a Hotmail address and use Hotmail as my main provider. Everything works as it should - I've got Windows Live Mail setup on my PC and all emails are sent to the BlackBerry the instant they're received. However, I've got a niggling problem with sending emails from the BlackBerry...
    On the Hotmail website, I've set my own email address as the default "From" address and in Windows Live Mail, I've set my email address as my own address. So, if I send email from the Hotmail site or from Windows Live Mail, my own email address is used as the "From" address and not the Hotmail address. If I send email from the BlackBerry, it uses the Hotmail address as the "From" address and not my own address. I've set my own email address as the "Reply To" address in BlackBerry Internet Service but it still shows the Hotmail address. I can't see anyway to change this and it's the only problem I have...
    I have tried the GoogleMail service, and this worked fine but every email I sent (either from Google Mail, Outlook or the BlackBerry) would copy itself to the BlackBerry and was getting a bit of a pain.
    I have also tried Yahoo Mail but this wouldn't allow me to send email from another email address.
    Any ideas from anyone? Either to allow emails sent from my BlackBerry to show my own email address as the "From" address, or to stop emails sent through Google Mail to copy themselves to the BlackBerry?

    clnock wrote:
    I need true push email on my BlackBerry, but also need access from a PC and need to send from my own email address. The easiest way I've found to do this is to forward all emails to my own address to a Hotmail address and use Hotmail as my main provider. Everything works as it should - I've got Windows Live Mail setup on my PC and all emails are sent to the BlackBerry the instant they're received. However, I've got a niggling problem with sending emails from the BlackBerry...
    On the Hotmail website, I've set my own email address as the default "From" address and in Windows Live Mail, I've set my email address as my own address. So, if I send email from the Hotmail site or from Windows Live Mail, my own email address is used as the "From" address and not the Hotmail address. If I send email from the BlackBerry, it uses the Hotmail address as the "From" address and not my own address. I've set my own email address as the "Reply To" address in BlackBerry Internet Service but it still shows the Hotmail address. I can't see anyway to change this and it's the only problem I have...
    I have tried the GoogleMail service, and this worked fine but every email I sent (either from Google Mail, Outlook or the BlackBerry) would copy itself to the BlackBerry and was getting a bit of a pain.
    I have also tried Yahoo Mail but this wouldn't allow me to send email from another email address.
    Any ideas from anyone? Either to allow emails sent from my BlackBerry to show my own email address as the "From" address, or to stop emails sent through Google Mail to copy themselves to the BlackBerry?
    Hi,
    I've had this sent items in my inbox, problem with Gmail.  You can add a filter from the settings page of your gmail account.  The filter should be applied to all emails from your email address [[email protected]] and skip the Inbox should be selected.
    Have you tested the "Reply to" option properly?  Send a mail from your BB to a friend and ask them to hit the reply  button, see which account it goes to.
    ===========================================================
    If I've helped, please click the Kudos button.
    If your issue has been resolved, please mark it as solved.
    Joe
    ===========================================================

Maybe you are looking for

  • Alpha channel related export/import

    hello i have a shot in animation that has a flower bouquet wiping across he screen diagonally left to right problem is there is no alpha channel attached so i cant see whats underneath when it wipes do i have to: import this into after effects - mask

  • [bash] bash-completion annoyance

    I was totally confused when: mplayer <tab><tab> was not working on files with no extension. I tried other commands like smplayer and vlc, and they worked. And then I deduced it to a fault with tab-completion, and thus remembered that I had recently i

  • How to call an  encrypted webservice in  BPEL process?

    If i need to call a J2EE webservice which need to authenticate,like need to provide the username and password,or need to provide the signature,how can i discribe it in a BPEL process? Is there any article addressing this problem? Thank you!

  • Chapter question

    Hello. I have a question about creating chapters in iMovie 5.0.2 and then burning to iDVD 5.0.1. Here's what I have and here's what I want to accomplish, if possible. I have imported a total of about 1 hour of video into iMovie. It's from a concert b

  • Popup window hide

    Hi experts,   I have created one popup window. In that I have one button to call another popup window.While showing another popup window I have to hide the first popup window..How to do it.? Please guide me. Regards, Kiruba.R