Problem while emailing after exporting as PDF.

I have this strange problem. Basically, we have this VB6/SQL2005 application that exports crystal report into pdf attaches it to email and then send it in email...now most of the time and i would say about 95% of time, the email goes fine and they receive it fine. But recently it has started where they dont receive email on the other side. No rejection email message. No bounce back message.
Becuase of different email clients on the other side, it is very hard to pin point the problem.
We are using Crstal XI.
Any help would be appreciated..
Thanks
Raj

It may be the other mail server is detecting the attachement and blocking it. Check with them first.
Please re-post if this is still an issue or purchase a case and have a dedicated support engineer work with you directly:
http://store.businessobjects.com/store/bobjamer/DisplayProductByTypePage&parentCategoryID=&categoryID=11522300?resid=-Z5tUwoHAiwAAA8@NLgAAAAS&rests=1254701640551

Similar Messages

  • Failed to display CR after export to PDF in Browser

    Post Author: asnila
    CA Forum: Exporting
    Hi,
    I had a problem to display CR after export to PDF in browser. No message error displayed except the browser is blank.
    Below is the code that i had been used.
    Dim RptFilePath As StringDim RptExportOpt As CrystalDecisions.Shared.ExportOptionsDim ExportLocation As New CrystalDecisions.Shared.DiskFileDestinationOptionsDim ExportPath As StringRptFilePath = "C:\Project\reportPro.rpt"myReport.Refresh()myReport.SetDatabaseLogon("root", "", "localhost", "dbpro")ExportPath = "C:\Project\reportPro.pdf"ExportLocation.DiskFileName = ExportPathRptExportOpt = myReport.ExportOptionsWith RptExportOpt.DestinationOptions = ExportLocation.ExportDestinationType = ExportDestinationType.DiskFile.ExportFormatType = ExportFormatType.PortableDocFormatEnd WithmyReport.Export()Response.ClearContent()Response.ClearHeaders()Response.ContentType = "application/pdf"Response.WriteFile(ExportPath)Response.Flush()Response.Close()MyConnection.Close()
    Fyi, i'm using Crystal Report 10 embedded with VS 2005. Please help me.

    It looks like the 2 DLLs you mentioned, are getting corrupted or modified due to some operation that might have been performed on them. Can you please try the below mentioned instructions and see if that gets your application to install without any errors:
    1. Try installing your business app.
    2. When you see the error message as stated, try running the below mentioned commands: (Start | Run | Type cmd and hit Enter)
        regsvr32 LTKRN11n.dll /i /s
        regsvr32 LTKRN11n.dll /s
        regsvr32 LTDIS11n.dll /i /s
        regsvr32 LTDIS11n.dll /s
    3. The above commands should fix the issues in the mentioned DLLs and allow normal installation of your business app.
    Hope this gets your app to work and install properly.

  • Hyperlinks from other placed indd documents or pdfs getting lost after export to PDF

    after upgrade vom CS 5.5 to CS 6: hyperlinks from other placed indd documents or pdfs getting lost after export to PDF
    I tried all options for the as well known and working export options

    after upgrade vom CS 5.5 to CS 6: hyperlinks from other placed indd documents or pdfs getting lost after export to PDF
    I tried all options for the as well known and working export options

  • Problem When Multiple Users Export To PDF Simultaneously

    I am hoping someone out there can help.  We have had no luck at all with Crystal Reports / SAP support for this issue.
    We have a client/server aplication and have written a C# program to load a crystal report on the server, export it to PDF and then we send the PDF to the client. We are using Crystal Reports 2008 and have applied SP4.
    The scenario is as follows:
    Two users log into our application from different PC's.
    User 1 prints a report with no issue.
    User 2 prints a report 5 seconds later with no issue.
    If User 1 prints a report and while that report is being exported to PDF, User 2 prints a report, the first will be successful and the second will fail.  If User 2 reprints the report after receiving a failure, the report prints successfully the second time (using the same temp report folders as the previous attempt). We have done a lot of tracing and have narrowed the problem down to the point in out C# program when the cryRpt.Export() routine is called.  It seems to be what is failing and doesn't seem to be able to run 2 exports simultaneously.
    All exporting to PDF occurs on the application server and the processes run as "Administrator" so permissions should certainly not be a problem.  Each user is printing a different physical .rpt file and the data for each report is in a different physical directory.
    Has anyone come across this before or have any suggestions?

    We thought the same thing as you suggest and have already made that change without sucess.  Below is what the code looks like for our export routine.  Perhaps you can spot something we have not.  As mentioned before the export appears to be faulting at the statement "cryRpt.ExportToDisk(ExportFormatType.PortableDocFormat, pdfname);" in the below code.
    The code is as follows:
            public void exportReport(string xmldir, string crname, string pdfname, string termid, bool debug)
                try
                    if (debug)
                        dt = DateTime.Now;
                        tw.WriteLine(dt.ToString() + "-Start exportReport: " + crname);
                    ReportDocument cryRpt;
                    cryRpt = new ReportDocument();
                    cryRpt.Load(crname, OpenReportMethod.OpenReportByTempCopy);
                    if (debug)
                        tw.WriteLine("Done loading report: " + crname);
                    int tmpct = 0;
                    int tmpint = crname.IndexOf("
    ", tmpct);
                    while (tmpint != -1)
                        tmpct = tmpint;
                        tmpint = crname.IndexOf("
    ", tmpct + 1);
                    string ODBCReportFileName = crname.Substring(tmpct + 1, crname.Length - tmpct - 5);
                    if (debug)
                        tw.WriteLine("ODBC Report Filename: " + ODBCReportFileName);
                    Database crDatabase;
                    Tables crTables;
                    Table crTable;
                    TableLogOnInfo crTableLogOnInfo;
                    ConnectionInfo crConnectionInfo = new ConnectionInfo();
                    //Setup the connection information structure to log on to the data source for the report.
                    // If using ODBC, this should be the DSN. If using OLEDB, etc, this should be the physical server name
                    crConnectionInfo.ServerName = "SH" + ODBCReportFileName;
                    if (debug)
                        tw.WriteLine("Resetting connection to: " + crConnectionInfo.ServerName);
                    crConnectionInfo.DatabaseName = "";
                    //Get the table information from the report
                    crDatabase = cryRpt.Database;
                    crTables = crDatabase.Tables;
                    //Loop through all tables in the report and apply the
                    //connection information for each table.
                    if (debug)
                        tw.WriteLine("Applying new connection to all tables...");
                    for (int i = 0; i < crTables.Count; i++)
                        crTable = crTables<i>;
                        crTableLogOnInfo = crTable.LogOnInfo;
                        crTableLogOnInfo.ConnectionInfo =
                        crConnectionInfo;
                        crTable.ApplyLogOnInfo(crTableLogOnInfo);
                        if (debug)
                            tw.WriteLine("Applying new connection to tables " + crTable.Name);
                    cryRpt.Refresh();
                    if (debug)
                        tw.WriteLine("Applying new connection to all tables... DONE");
                    if (debug)
                        tw.WriteLine("Target report: " + pdfname);
                    cryRpt.ExportToDisk(ExportFormatType.PortableDocFormat, pdfname);
                    if (debug)
                        tw.WriteLine("Export Complete");
                    cryRpt.Dispose();
                    cryRpt.Close();
                    if (debug)
                        dt = DateTime.Now;
                        tw.WriteLine(dt.ToString() + "-Done export to PDF.");
                catch (Exception e)
                    TextWriter tw1 = new StreamWriter(logpath + "
    exporterror.log", true);
                    tw1.WriteLine("Exception when export report: " + e.Message);
                    tw1.WriteLine(e.StackTrace);
                    tw1.Close();

  • Change in report format after exporting from pdf format to excel format.

    Hi,
    I got a problem while exporting the pdf format of the Report to Excel format "Fully-Foramtted Grids and Texts".
    The format gets automatically changed.
    Is there any solution to this problem.

    Can you give some more details?
    Which version are you using (and which patch level - if any).
    Also what formatting is default on the reports and what is the default format in excel.
    What exactly is different between PDF and excel?
    Another possibility is that font substitution is going on??

  • Problem while converting smartform out to PDF.

    Hi,
    I have an issue while converting smartform output to PDF. After converting samrtform out to PDF, apostrophe(') is appearing as # in the pdf file. For example the word Indian's is getting printed as Indian#s. I'm using Helvetica font for printing this text.
    How ever print preview is coming fine.
    Could anybody provide me some inputs to solve this.
    Thanks,
    Rick.

    I'm using FM: CONVERT_OTF
    CALL FUNCTION 'CONVERT_OTF'
        EXPORTING
          format                = 'PDF'
        IMPORTING
          bin_filesize          = lv_filesize
        TABLES
          otf                   = ls_job_info-otfdata
          lines                 = lt_pdf_table
        EXCEPTIONS
          err_max_linewidth     = 1
          err_format            = 2
          err_conv_not_possible = 3
          err_bad_otf           = 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.

  • Indesign CS4 button flashes after exported to PDF and viewed in Acrobat Reader/Professional X

    Hey everyone,
    Greetings!
    I've encountered this odd problem when preparing my portfolio.
    I've created some 40 buttons in InDesign CS4 (all according to the official tutorial) to Show/Hide Fields (specificly images), and navigate through the pages.
    The buttons all have their own Normal and Rollover states, but no Click states.
    After exporting the file to PDF, I tested the buttons in Acrobat Reader 9 and Acrobat Pro 9, and both the actions and the states worked fine.
    BUT that's not the case with Acrobat Reader X or Acrobat Pro X.
    The actions are still there, showing the images and navigating, but the states are not!
    The buttons' rollover states just flashes when the mouse hover above them, and even in Normal state, they kept *blinking* randomly.
    Frustrated for a week.
    PS. I suspected and used a Indesign file with only one simple button to rule out the following:
    1. Overlapping buttons
    2. Slow processing due to large image size
    3. Mishandling of transparency
    At this moment I'm pretty sure it's an Acrobat thing...Help!

    Thanks Dave! I was in the middle of writing this when your post came in:
    Not sure if this will help anyone, but I changed the button fill color to white and it seemed to fix the flicker. I exported each state from indesign as a PDF and recreated the button from scratch. This still had the flicker. I'm guessing something strange is happening with the transparancy of the states.
    Glad to hear it's fixed!

  • Reporting Services with out national character after export to PDF

    I have problem with exported report to PDF(sended by job)on some devices(pc, mobile, tablets),i dont see any text correctly, only undefinied symbols, problem only exists on exported reports, on SSRS by WEB looks correctly, 
    WIN 2008 R2 (eng)
    SQL 2008 (eng)
    Region: Poland.

    Hello,
    According to your description, it is contains non-English characters in your report. This problem occurs because the glyph IDs for some non-English characters have changed in some font files.
    In Cumulative Update #1 for SQL Server 2008 is automatic full font embedding and subsetting for Unicode characters in Reporting Services 2008 PDF rendering. Please update SSRS 2008 to SSRS 2008 CU1 to resolve the issue.
    There is a KB article about Incorrect characters appear in a SQL Server Reporting Services report after you export it to a PDF file, you can refer to it.
    http://support.microsoft.com/kb/955495
    Regards,
    Alisa Tang
    Alisa Tang
    TechNet Community Support

  • Pages crashes after exporting to PDF or .doc

    This is a problem now that it happens everytime i use pages.
    I'm working on a document and then I go to save a PDF by either Export in the File menu
    or by choosing "save as PDF" in the printer dialogue
    after it saves the PDF as soon as I go back to the pages doc the app crashes.
    and asks me if i want to reopen cancel or send a report - which i have done.
    this also happens if i save as .doc
    maybe i have to reset the app?
    this is making pages unusable unfortunately

    There used to be a reproducible crash in the past with a footnote, if you deleted the text referencing the footnote without deleting the footnote and then printed/exported to PDF. However, that problem is gone in the latest versions, as far as I can tell.
    Apart from that, I do not know of any definite crash scenarios.

  • Audio problems in iMovie11 after exporting

    Hey everyone!
    I have been suffering from a problem that I have no clue how to fix. So I created my video 9min long with all sorts of stuff (logos, various songs, voicerovers, detached audio, attached audio haha, cutaway picture, etc etc) and everything is fine with the sound while its still in the library. The movie is made and ready to export. BUT when I export and create a .mov file (HD 780 or 1080) the sound gets messed up and sudden gaps of silence appear out of nowhere. Usually those gaps appear at the end of the clip. Also the more I export the movie the more problems it appears to have..... So now besides the silence gaps, in 2 scenes the sound goes like you're under water for a second or so, and then goes back to normal. AGAIN this happens ONLY after exporting. Before rendering everything is fine on my imovie, sound is in tact and whatnot. But after exporting I face these issues that I have to solve somehow..
    Please help someone, it's urgent!
    Thank you in advance.

    Extract, or detach, the audio and make sure the audio is in sync.

  • Hello i am rajesh i am having problem while conveting other files into pdf format please help me

    i am rajesh i am having problem while converting other files into acrobat format please help me

    Hello Rajesh,
    I'm sorry to hear you're having trouble. Are you using Acrobat.com to convert your files to PDF? Please let me know where you are having trouble and I will do my best to help you convert your files. For your reference, here is a list of filetypes that can be converted to PDF online with Acrobat.com:
    http://kb2.adobe.com/cps/524/cpsid_52456.html#Create%20PDF
    Best,
    Rebecca

  • Indesign to PDF. Logo appears blurred after exporting to PDF.

    I have a png and jpeg logo that appears fine in my indesign doc but when I export to PDF the image is blurred and has a white line around the logo edge as if the image is bleeding into the page.
    The png and jpeg logo file (I have tried both versions) is 4x4 inches and 300 dpi. I am a loss at to what the problem is. I have tried smooth line art in the Adobe preferences.. but nothing works there.
    Is there a standard setting for Indesign and Adobe (in terms of output) that would help resolve this issue.. ? Any ideas greatly appreciated...

    Hi. Thanks for stepping in with some advice. I'm actually exporting at print quality so avoiding the low resolution pdf issue but the logo has a transparent background and is a png file. Would it help if I resaved it as a vector file? Any further advice would be welcome. It looks 100% fine in Indesign but just my exporting to PDF makes the logo look terrible. Thanks again..

  • Image Stitches after exporting to PDF

    Hi guys,
    I have exported PDF documents from InDesign in virtually all standards and option configurations. The output would sometimes look good but upon closer inspection white lines would appear across images; these images are divided into (seemingly) random sections.
    I have done some research and this seems to be a problem with the transparency flattener. Having used all standards (PDF 1.3 through PDF 1.7) this cannot be the problem. All standards starting 1.4 do not use the transparency flattener as far as I know. Also, most pages of the document do not use transparency, shadow, blending modes or any effects for that matter. The problem occurs with even the smallest and simplest images.
    The InDesign documents I export are in fact 11X17 tabloid versions of different 4-page brochures. I created a tabloid-sized page and imported each of the 4 pages to the tabloid page. The problem occurs only when exporting these tabloid documents to PDF. The original imported InDesign documents do not have that problem - I made sure.
    At first, the problem seemed to be with importing InDesign documents, but this isn't so. I exported the original InDesign documents to EPS and imported those to the Tabloid page - the same thing happens.
    I have spent hours trying to figure this out and eventually gave up and printed everything with the lines. By disabling anti-aliasing I could get rid of the lines on-screen. I haven't tried but don't think it'd do anything in print.
    Can anyone recommend a solution or at least an idea? I'm willing to try anything as this is happening with every 11X17 tabloid brochure that I create. At the moment the only thing I can think of is copying and pasting the original content to the 11X17 tabloid document, but this would be time consuming and impractical, especially when master pages exist - and this is also assuming that the problem really is with placing InDesign/EPS documents.
    Thank you,
    Tom.

    You say the flattener isn't active, but eps doesn't support transparency so those pages got flattened before you placed them.
    As Mike is alluding, there was a bug in the first release of CS3 that sometimes caused stitching in placed ID files, so the problem may well be at import, rather than export.
    Peter

  • Problem with image after exporting from Lightroom 5

    Good day. Please can someone help me? I have Lightroom 5, and I have a problem in exporting edited images. At issue, do all the necessary settings and retreat noise and sharpness adjustment by brush adjustment tool, however, to export the image, noise and some minor adjustments are lost. Because in Lightroom visualize the way you wish, but after export, is not it the same? How do I get a different result? Thank you all!

    I have the same problem!
    Something got broken with my Lightroom 5.6 (Windows 7Pro)  two days ago and I don't see any adjustments made with brush after exporting photos!
    It's not a problem of library or RAW files - the same, work fine on other computers (iMac).
    I tried to clean the computer with CC Cleaner Tool, and install everything again, but it didn't help.
    I already lost 2 days trying to fix it, and I don't want to format the drive and install Windows again
    Can anyone help?

  • Unwanted Anti-aliasing after export to PDF!?

    Dear comunity,
    First of all let me say, that i am relatively new to indesign,
    this is really driving me crazy: my boss gave me the task to renew our business cards (no new layout, just different names and addresses.) So i took the indesign file my predecessor made and switched the names and contact information. The indesign file contains three back sides for three different people, every one with their own QR-code.
    I made three new QR codes, deleted the old ones and brought the new ones in. (the codes were originally PNG, i put them in Photoshop and exported as PSD, since i heard, that i should use PSD files in ID instead of PNG or JPEG.)
    When exported to PDF, two of these QR codes are working just fine, the third one has the following problem: On the edges of the code, thin light gray lines appear, for my untrained eye, these look just like anti-aliasing. These do only appear in the exported PDF, not in Indesign itself, and only in one of the three QR-codes, though i created and imported them all the same way.
    I should probably mention, that i made the codes 50% transparent. I already did lots of research regarding that problem, and one person said, that this is a bug, which has been solved in ID CC 2014, so i updated my ID to that version, imported the corrupt PSD anew, still the same problem.
    What did i do wrong with this particular PSD file? Might there be a button or something, when i have the psd selected in iD, that toggles AA on and off for that particular file??
    I added two pictures. the 1st one is one of those, who don't make any problems, the second one is the one, that has the unwanted anti-aliasing (or whatever it is). I just made screenshots out of Acrobat, because this forum wouldn't let me upload The PDFs. As i said, they both come from the same ID file, exported the same way.
    Thanx in advance for all your kind help.
    Nigi

    Thank you Willi, one more question,
    You are saying, i down sampled with the wrong method. So what would be the right method? I just drag and dropped the file and placed using the placegun thingy.
    Just asking for future projects, this particular problem will be solved by the internal QR-editor, i'm sure.
    Boy that whole print-stuff is a whole new area for me, there's much to learn, so i am very grateful for people like you, who take their time to help a poor autodidact...
    Thanks

Maybe you are looking for

  • Dual boot windows mac mini

    I got a Mac mini and in general I'm happy with it but found out that there's some software I use regularly that is just much better on Windows.  They barely support OS X although technically they do.  So I would like to dual boot Windows as it seems

  • HT4859 If I backup to iCloud from iPhone 3GS, can I delete all my photos off my iPhone and be able to view them from the computer?

    My memory is full, if I back up to iCloud using my iPhone 3GS can I delete the photos off my device and be able to restore my phone and get my contacts back and save photos onto a computer?

  • How to verified apple id

    Why my I phone 5s come to open apple store come to having problem  by sign in appear as not verified apple id please help me to solve a problem by access AppStore without sign in appear I front of my account at all

  • Help with mysql query plz anyone i am begging!!!

    Hi everyone pls forgive me i am new to java. can someone pls tel me where i am going wrong wit this mysql query? <sql:query var="parish" maxRows="1" dataSource="jdbc/gav"> SELECT ParishName, OwnerOccupierHousehold, OwnerOccupierPercOfOverall, OwnerOc

  • ABC analysis and cyclic inventory

    What is the relAtion between ABC indicators and CC indicators?Why do we need to run ABC analysis for cyclic inventory?Cant we randomly assign the CC indicators in MM02?