<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic sending pdf reports in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/sending-pdf-reports/m-p/583069#M1100589</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi i have 2 dim as drill down i want to send reports as pdf what could be the action in desktop vesion not in publisher&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 Apr 2014 08:36:56 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-04-16T08:36:56Z</dc:date>
    <item>
      <title>sending pdf reports</title>
      <link>https://community.qlik.com/t5/QlikView/sending-pdf-reports/m-p/583069#M1100589</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi i have 2 dim as drill down i want to send reports as pdf what could be the action in desktop vesion not in publisher&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2014 08:36:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/sending-pdf-reports/m-p/583069#M1100589</guid>
      <dc:creator />
      <dc:date>2014-04-16T08:36:56Z</dc:date>
    </item>
    <item>
      <title>Re: sending pdf reports</title>
      <link>https://community.qlik.com/t5/QlikView/sending-pdf-reports/m-p/583070#M1100590</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Venu &lt;/P&gt;&lt;P&gt;You can use macro to sending your qv objects into word or excel and is it necessary to send your object to pdf report or it is feasible if i provide the macro that transfer your QV objects into Word and excel file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2014 08:47:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/sending-pdf-reports/m-p/583070#M1100590</guid>
      <dc:creator>arsal_90</dc:creator>
      <dc:date>2014-04-16T08:47:58Z</dc:date>
    </item>
    <item>
      <title>Re: sending pdf reports</title>
      <link>https://community.qlik.com/t5/QlikView/sending-pdf-reports/m-p/583071#M1100591</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please follow this for pdf report&lt;/P&gt;&lt;P&gt;1. Install Bullzip PDF Printer (I tried CutePDF, PDF X-change, PdfCreator,.. bullzip is the only one that works)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Macro :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sub Dagrapport&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vReport = “QVreportname” ‘Set report&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vName = “reportname” ‘Name of output pdf&lt;/P&gt;&lt;P&gt;ActiveDocument.PrintReport(vReport), “Bullzip PDF Printer”, false ‘Printreport&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reportFile = “reportpath” &amp;amp; vName &amp;amp;”.pdf” ‘Setting outputname&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MyPrintPDFWithBullZip(reportFile) ‘Call pdf printer&lt;/P&gt;&lt;P&gt;ActiveDocument.GetApplication.Sleep 5000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;zendDagrapport&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;End sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FUNCTION MyPrintPDFWithBullZip (pdfOutputFile)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set obj = CreateObject(“Bullzip.PDFPrinterSettings”)&lt;/P&gt;&lt;P&gt;obj.SetValue “Output” , pdfOutputFile&lt;/P&gt;&lt;P&gt;obj.SetValue “ConfirmOverwrite”, “no”&lt;/P&gt;&lt;P&gt;obj.SetValue “ShowSaveAS”, “never”&lt;/P&gt;&lt;P&gt;obj.SetValue “ShowSettings”, “never”&lt;/P&gt;&lt;P&gt;obj.SetValue “ShowPDF”, “no”&lt;/P&gt;&lt;P&gt;obj.SetValue “RememberLastFileName”, “no”&lt;/P&gt;&lt;P&gt;obj.SetValue “RememberLastFolderName”, “no”&lt;/P&gt;&lt;P&gt;obj.SetValue “ShowProgressFinished”, “no”&lt;/P&gt;&lt;P&gt;obj.SetValue “ShowProgress”, “no”&lt;/P&gt;&lt;P&gt;obj.WriteSettings True&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END FUNCTION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;‘===========================================================================&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;‘===========================================================================&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;function zendDagrapport()&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dim objEmail&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Const cdoSendUsingPort = 2 ‘ Send the message using SMTP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Const cdoAnonymous = 0 ‘Do not authenticate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Const cdoBasic = 1 ‘basic (clear-text) authentication&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Const cdoNTLM = 2 ‘NTLM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SMTPServer = “IP Mailserver”&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Const SMTPPort = 25 ‘ Port number for SMTP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Const SMTPTimeout = 60 ‘ Timeout for SMTP in seconds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;‘Sending mail&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set objEmail = CreateObject(“CDO.Message”)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set objConf = objEmail.Configuration&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set objFlds = objConf.Fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With objFlds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;‘---------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;‘ SMTP server details&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;.Item(“&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/sendusing”"&gt;http://schemas.microsoft.com/cdo/configuration/sendusing”&lt;/A&gt;&lt;SPAN&gt;) = cdoSendUsingPort&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;.Item(“&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/smtpserver”"&gt;http://schemas.microsoft.com/cdo/configuration/smtpserver”&lt;/A&gt;&lt;SPAN&gt;) = SMTPServer&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;.Item(“&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/smtpauthenticate”"&gt;http://schemas.microsoft.com/cdo/configuration/smtpauthenticate”&lt;/A&gt;&lt;SPAN&gt;) = cdoAnonymous&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;.Item(“&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/smtpserverport”"&gt;http://schemas.microsoft.com/cdo/configuration/smtpserverport”&lt;/A&gt;&lt;SPAN&gt;) = SMTPPort&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;.Item(“&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/smtpusessl”"&gt;http://schemas.microsoft.com/cdo/configuration/smtpusessl”&lt;/A&gt;&lt;SPAN&gt;) = False&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;.Item(“&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout”"&gt;http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout”&lt;/A&gt;&lt;SPAN&gt;) =&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SMTPTimeout&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.Update&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;‘---------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;End With&lt;/P&gt;&lt;P&gt;objEmail.To = “to emailaddress” ‘Email Recipient&lt;/P&gt;&lt;P&gt;objEmail.From = “from emailaddress” ‘Email Sender&lt;/P&gt;&lt;P&gt;objEmail.Subject = “emailsubject” ‘ Subject&lt;/P&gt;&lt;P&gt;objEmail.TextBody = “emailbody” ‘Text Body&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end function&lt;/P&gt;&lt;P&gt; i will provide the macro for word and excel file by night and attache you can find the word file that transfer your object into jpg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2014 08:55:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/sending-pdf-reports/m-p/583071#M1100591</guid>
      <dc:creator>arsal_90</dc:creator>
      <dc:date>2014-04-16T08:55:20Z</dc:date>
    </item>
  </channel>
</rss>

