<?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>Question Re: powerbuilder in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/powerbuilder/qaa-p/477283#M81638</link>
    <description>&lt;P&gt;Hi Rashmi;&lt;/P&gt;&lt;P&gt;  You have a few choices ...&lt;/P&gt;&lt;P&gt;1) Use PB's muli-threading feature (aka SharedObject) to perform the PDF generation asynchronously.   - or -&lt;/P&gt;&lt;P&gt;2) Create another EXE and call it from your PB App to create the PDF&lt;/P&gt;&lt;P&gt;3) Call a Web Service - built using a PB NVUO and generate the PDF in the WS.&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;Regards ... Chris&lt;/P&gt;</description>
    <pubDate>Mon, 27 Mar 2017 21:40:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2017-03-27T21:40:34Z</dc:date>
    <item>
      <title>powerbuilder</title>
      <link>https://community.sap.com/t5/technology-q-a/powerbuilder/qaq-p/477282</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I am saving  a data window as PDF from my application.&lt;/P&gt;&lt;P&gt;dw_1.saveas("path", PDF, TRUE)&lt;/P&gt;&lt;P&gt;when the above code is executing, it is making an hourglass pointer.&lt;/P&gt;&lt;P&gt;I am using below code to create pdf from my application.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;dw_1.Object.DataWindow.Export.PDF.Method = Distill!
dw_1.Object.DataWindow.Printer = "\\prntsrvr\pr-6"
dw_1.Object.DataWindow.Export.PDF.  &amp;amp;
 Distill.CustomPostScript="Yes"
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I do not want to display hours glass to user,which prevent them to continue their work.&lt;/P&gt;&lt;P&gt;Is there any solution for this.&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Rashmi&lt;/P&gt;</description>
      <pubDate>Mon, 27 Mar 2017 14:37:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/powerbuilder/qaq-p/477282</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-03-27T14:37:17Z</dc:date>
    </item>
    <item>
      <title>Re: powerbuilder</title>
      <link>https://community.sap.com/t5/technology-q-a/powerbuilder/qaa-p/477283#M81638</link>
      <description>&lt;P&gt;Hi Rashmi;&lt;/P&gt;&lt;P&gt;  You have a few choices ...&lt;/P&gt;&lt;P&gt;1) Use PB's muli-threading feature (aka SharedObject) to perform the PDF generation asynchronously.   - or -&lt;/P&gt;&lt;P&gt;2) Create another EXE and call it from your PB App to create the PDF&lt;/P&gt;&lt;P&gt;3) Call a Web Service - built using a PB NVUO and generate the PDF in the WS.&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;Regards ... Chris&lt;/P&gt;</description>
      <pubDate>Mon, 27 Mar 2017 21:40:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/powerbuilder/qaa-p/477283#M81638</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-03-27T21:40:34Z</dc:date>
    </item>
    <item>
      <title>Re: powerbuilder</title>
      <link>https://community.sap.com/t5/technology-q-a/powerbuilder/qaa-p/477284#M81639</link>
      <description>&lt;P&gt;HI Chris,&lt;/P&gt;&lt;P&gt;The issue is when I am creating the PDF , it is sending print job to the printer.&lt;/P&gt;&lt;P&gt;as this is a related to OS process so it is making hours glass( we are creating a pdf with help of a printer which is configure in my machine).&lt;/P&gt;&lt;P&gt;can we avoid it.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Rashmi &lt;/P&gt;</description>
      <pubDate>Tue, 28 Mar 2017 11:00:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/powerbuilder/qaa-p/477284#M81639</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-03-28T11:00:35Z</dc:date>
    </item>
    <item>
      <title>Re: powerbuilder</title>
      <link>https://community.sap.com/t5/technology-q-a/powerbuilder/qaa-p/477285#M81640</link>
      <description>&lt;P&gt;You can also generate a PDF by exporting as pdf instead of printing.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;dw_1.SaveAs (ls_fileName, PDF!, True) &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;It will still HourGlass, but you can work with other windows applications if that is what you want. If not, then you have to perform the export asynchronously as Chris suggested.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Mar 2017 13:34:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/powerbuilder/qaa-p/477285#M81640</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-03-28T13:34:18Z</dc:date>
    </item>
    <item>
      <title>Re: powerbuilder</title>
      <link>https://community.sap.com/t5/technology-q-a/powerbuilder/qaa-p/477286#M81641</link>
      <description>&lt;P&gt;Hi rashmi,&lt;/P&gt;
  &lt;P&gt;Install Ghostscript and then perfrom your activity&lt;/P&gt;</description>
      <pubDate>Sun, 18 Mar 2018 06:14:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/powerbuilder/qaa-p/477286#M81641</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-03-18T06:14:28Z</dc:date>
    </item>
  </channel>
</rss>

