<?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 Data loss while converting spool to PDF in background in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-loss-while-converting-spool-to-pdf-in-background/m-p/1581069#M262188</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using CONVERT_ABAPSPOOLJOB_2_PDF to convert spool information to PDF.The bytecount in background is 1000 less than what i get by running the program forcibly in foregroud.I am very confused,any suggestions&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 Sep 2006 21:09:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-08T21:09:08Z</dc:date>
    <item>
      <title>Data loss while converting spool to PDF in background</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-loss-while-converting-spool-to-pdf-in-background/m-p/1581069#M262188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using CONVERT_ABAPSPOOLJOB_2_PDF to convert spool information to PDF.The bytecount in background is 1000 less than what i get by running the program forcibly in foregroud.I am very confused,any suggestions&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Sep 2006 21:09:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-loss-while-converting-spool-to-pdf-in-background/m-p/1581069#M262188</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-08T21:09:08Z</dc:date>
    </item>
    <item>
      <title>Re: Data loss while converting spool to PDF in background</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-loss-while-converting-spool-to-pdf-in-background/m-p/1581070#M262189</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you run the program in BG, are you writing the pdf file to appserver? and in FG, are you writing the file to your PC? &lt;/P&gt;&lt;P&gt;There will be small difference in bytcount if your appserver is unix and pc is windows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sridhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Sep 2006 21:31:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-loss-while-converting-spool-to-pdf-in-background/m-p/1581070#M262189</guid>
      <dc:creator>sridhar_k1</dc:creator>
      <dc:date>2006-09-08T21:31:02Z</dc:date>
    </item>
    <item>
      <title>Re: Data loss while converting spool to PDF in background</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-loss-while-converting-spool-to-pdf-in-background/m-p/1581071#M262190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am doing this...&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            src_spoolid              = l_spool_nr1&lt;/P&gt;&lt;P&gt;            no_dialog                = 'X'&lt;/P&gt;&lt;P&gt;            dst_device               = 'LOCL'&lt;/P&gt;&lt;P&gt;       IMPORTING&lt;/P&gt;&lt;P&gt;            pdf_bytecount            = l_bytecount&lt;/P&gt;&lt;P&gt;            LIST_PAGECOUNT           = l_page1&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            pdf                      = itab_pdf_output&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;            err_no_abap_spooljob     = 1&lt;/P&gt;&lt;P&gt;            err_no_spooljob          = 2&lt;/P&gt;&lt;P&gt;            err_no_permission        = 3&lt;/P&gt;&lt;P&gt;            err_conv_not_possible    = 4&lt;/P&gt;&lt;P&gt;            err_bad_destdevice       = 5&lt;/P&gt;&lt;P&gt;            user_cancelled           = 6&lt;/P&gt;&lt;P&gt;            err_spoolerror           = 7&lt;/P&gt;&lt;P&gt;            err_temseerror           = 8&lt;/P&gt;&lt;P&gt;            err_btcjob_open_failed   = 9&lt;/P&gt;&lt;P&gt;            err_btcjob_submit_failed = 10&lt;/P&gt;&lt;P&gt;            err_btcjob_close_failed  = 11&lt;/P&gt;&lt;P&gt;            OTHERS                   = 12.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now l_bytecount stores the total number of bytes in the internal table itab_pdf_output. The value of this differs when i run in foreground nad background seperately&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Sep 2006 21:44:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-loss-while-converting-spool-to-pdf-in-background/m-p/1581071#M262190</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-08T21:44:20Z</dc:date>
    </item>
  </channel>
</rss>

