<?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: Can't close Reportdocument class in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaa-p/7524383#M2701227</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I know exactly where it hangs - on RptDoc.Close - after printing&lt;/P&gt;&lt;P&gt;This happens on any printer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also tried to add a viewer on a form:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        Dim RptDoc As New CrystalDecisions.CrystalReports.Engine.ReportDocument&lt;/P&gt;&lt;P&gt;        RptDoc.Load("C:\Report1.rpt")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        Dim oFrm As New Form1&lt;/P&gt;&lt;P&gt;        oFrm.CrystalReportViewer1.ReportSource = RptDoc&lt;/P&gt;&lt;P&gt;        oFrm.ShowDialog()&lt;/P&gt;&lt;P&gt;        oFrm.Dispose()&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        RptDoc.Close()&lt;/P&gt;&lt;P&gt;        RptDoc.Dispose()&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The report shows correctly but then VS hangs on RptDoc.Close&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: gwadafu on Jan 5, 2011 5:07 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Jan 2011 15:47:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-01-05T15:47:57Z</dc:date>
    <item>
      <title>Can't close Reportdocument class</title>
      <link>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaq-p/7524381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;Imagine this simple piece of code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        Dim RptDoc As New CrystalDecisions.CrystalReports.Engine.ReportDocument&lt;/P&gt;&lt;P&gt;        RptDoc.Load("C:\Report1.rpt") &lt;/P&gt;&lt;P&gt;        RptDoc.PrintToPrinter(1, False, 1, 0)&lt;/P&gt;&lt;P&gt;        RptDoc.Close()&lt;/P&gt;&lt;P&gt;        RptDoc.Dispose()&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Report1.rpt is a simple report with a label and no DB connection (just for a try)&lt;/P&gt;&lt;P&gt;When tryng to process RptDoc.Close system hangs (i always stopped so i don't know how long it can take to close)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Same issue with Using / End Using&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        Using RptDoc As New CrystalDecisions.CrystalReports.Engine.ReportDocument&lt;/P&gt;&lt;P&gt;                  RptDoc.Load("C:\Report1.rpt") &lt;/P&gt;&lt;P&gt;                  RptDoc.PrintToPrinter(1, False, 1, 0)&lt;/P&gt;&lt;P&gt;        End Using&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm woking with VS2010 and CR 13&lt;/P&gt;&lt;P&gt;Normally miy reports have a DB connection to Oracle but wanted to see if the close also fails with a very simple report and it does !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jan 2011 15:02:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaq-p/7524381</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-05T15:02:06Z</dc:date>
    </item>
    <item>
      <title>Re: Can't close Reportdocument class</title>
      <link>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaa-p/7524382#M2701226</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use a try/catch on all of your methods so you know what and where it's failing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does it print?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What printer are you using?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Add the viewer to a form and preview rather than printing?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;Don&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jan 2011 15:18:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaa-p/7524382#M2701226</guid>
      <dc:creator>former_member11696</dc:creator>
      <dc:date>2011-01-05T15:18:14Z</dc:date>
    </item>
    <item>
      <title>Re: Can't close Reportdocument class</title>
      <link>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaa-p/7524383#M2701227</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I know exactly where it hangs - on RptDoc.Close - after printing&lt;/P&gt;&lt;P&gt;This happens on any printer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also tried to add a viewer on a form:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        Dim RptDoc As New CrystalDecisions.CrystalReports.Engine.ReportDocument&lt;/P&gt;&lt;P&gt;        RptDoc.Load("C:\Report1.rpt")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        Dim oFrm As New Form1&lt;/P&gt;&lt;P&gt;        oFrm.CrystalReportViewer1.ReportSource = RptDoc&lt;/P&gt;&lt;P&gt;        oFrm.ShowDialog()&lt;/P&gt;&lt;P&gt;        oFrm.Dispose()&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        RptDoc.Close()&lt;/P&gt;&lt;P&gt;        RptDoc.Dispose()&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The report shows correctly but then VS hangs on RptDoc.Close&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: gwadafu on Jan 5, 2011 5:07 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jan 2011 15:47:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaa-p/7524383#M2701227</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-05T15:47:57Z</dc:date>
    </item>
    <item>
      <title>Re: Can't close Reportdocument class</title>
      <link>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaa-p/7524384#M2701228</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It might help you to turn on some of the logging to see what the reporting engine is doing when attempting to close the connection. Have a look at the kbase article below for instructions on how to turn on the logging. Analysis of the logs will be up to you though. You'll want to look at the logs backwards though. Check for things that take an extraordinarily long time to complete in the functions log.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This was just published to the public today so it may take 24 - 48 hours to be available in the search. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1470978 - How to enable/disable crpe logging for the Crystal Reports .NET SDK&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jan 2011 23:46:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaa-p/7524384#M2701228</guid>
      <dc:creator>former_member208657</dc:creator>
      <dc:date>2011-01-05T23:46:17Z</dc:date>
    </item>
    <item>
      <title>Re: Can't close Reportdocument class</title>
      <link>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaa-p/7524385#M2701229</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks David for your answer.&lt;/P&gt;&lt;P&gt;I did enable logging and saw the files. While my app is still hanging ... here are ending contents of the log files.&lt;/P&gt;&lt;P&gt;As you can see from files last log time was 11:55 and now it's 12:07 and app is still waiting for instruction Reportdocument.Close to be completed...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The &lt;U&gt;bkgrnd&lt;/U&gt; file :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;|228f675c-2139-c554-4949-2b2cfe59fd66|2011 01 06 11:53:32:062|+0100|==| | |bkgrnd| 3756|2072|| |0|0|0|0|CRPE.CRPEBackgroundThread|localhost:3756:2072.21:1|-|-|CRPE.CRPEBackgroundThread|localhost:3756:2072.21:1||||||||||||0x818	11:53:32.046	13	1	PEClosePrintJobRequest	Report1 {304AFC1B-A4A7-4897-AA43-1D181C131F50}.rpt	closing print job	0				19	&amp;lt;==&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;|01e832e1-1965-7aa4-db28-47219801858b|2011 01 06 11:53:32:062|+0100|==| | |bkgrnd| 3756|2072|| ||||||||||||||||||||||0x818	11:53:32.062		0	threadProc			0				0	&amp;lt;==&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;|b90c2e0d-4165-7334-39a7-9b676320ff24|2011 01 06 11:53:32:062|+0100|==| | |bkgrnd| 3756|2072|| ||||||||||||||||||||||0x818	11:53:32.062	0	0	threadProc		Worker thread stopping.	0				0	&amp;lt;==&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The &lt;U&gt;diagnostic&lt;/U&gt; file (where it seems CR has still 2 jobs to close):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;|a2631294-0777-8464-f850-a07044febada|2011 01 06 11:53:32:062|+0100|==| | |Diagnostics| 3756|1564|| ||||||||||||||||||||||..\..\src\crpe\crpe.cpp:755,Closing engine,Start Time,"11:53:32"&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;|425119da-6d03-41e4-2a87-55b32f8300e8|2011 01 06 11:53:32:062|+0100|==| | |Diagnostics| 3756|1564|| ||||||||||||||||||||||..\..\src\crpe\crpe.cpp:797,Closing engine,Before close engine use count,"3"&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;|96941a67-cb58-40b4-aa25-5fabbd2f283b|2011 01 06 11:53:32:062|+0100|==| | |Diagnostics| 3756|1564|| ||||||||||||||||||||||..\..\src\crpe\crpe.cpp:822,Closing engine,After close engine use count,"2"&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;|63f7eed4-9741-b804-59ee-9033988dc1a4|2011 01 06 11:53:32:062|+0100|==| | |Diagnostics| 3756|1564|| ||||||||||||||||||||||N/A:-1,Closing engine,Elapsed Time,"1"&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;|df2392a4-3ee2-8734-dbef-caa5bfc10ac0|2011 01 06 11:53:32:078|+0100|==| | |Diagnostics| 3756|3412|| ||||||||||||||||||||||..\..\src\crpe\crpe.cpp:755,Closing engine,Start Time,"11:53:32"&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;|94dc8588-d50d-ebc4-0862-46232deac6d4|2011 01 06 11:55:12:093|+0100|==| | |Diagnostics| 3756|1564|| ||||||||||||||||||||||..\..\src\crpe\crpe.cpp:755,Closing engine,Start Time,"11:55:12"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The &lt;U&gt;functions&lt;/U&gt; file:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;|318a5bcc-6ced-6ca4-fa98-72d9dda7a92e|2011 01 06 11:53:32:046|+0100|==| | |functions| 3756|1564|| ||||||||||||||||||||||0x61c	11:53:32.046		1	PEClosePrintJob	Report1 {304AFC1B-A4A7-4897-AA43-1D181C131F50}.rpt		0	jobN:1	IN		19	&amp;lt;==&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;|84a8caac-939f-c854-e802-030217b73523|2011 01 06 11:53:32:062|+0100|==| | |functions| 3756|1564|| ||||||||||||||||||||||0x61c	11:53:32.046	15	1	PEClosePrintJob	Report1 {304AFC1B-A4A7-4897-AA43-1D181C131F50}.rpt		0	OUT	jobN:1		19	&amp;lt;==&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;|67a35a91-1227-2244-6a96-920efec0d512|2011 01 06 11:53:32:062|+0100|==| | |functions| 3756|1564|| ||||||||||||||||||||||0x61c	11:53:32.062		0	PECloseEngine			0	void	IN		19	&amp;lt;==&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;|cc1e1032-5861-c7a4-7bed-f722ed54a177|2011 01 06 11:53:32:062|+0100|==| | |functions| 3756|1564|| ||||||||||||||||||||||0x61c	11:53:32.062	1	0	PECloseEngine			0	OUT	void		19	&amp;lt;==&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;|02ea1021-f754-11d4-ea8d-8e8eb29a4e39|2011 01 06 11:53:32:078|+0100|==| | |functions| 3756|3412|| ||||||||||||||||||||||0xd54	11:53:32.078		0	PECloseEngine			0	void	IN		0	&amp;lt;==&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;|e20ff076-98fd-5f54-fa05-69ec2f3d12aa|2011 01 06 11:55:12:093|+0100|==| | |functions| 3756|1564|| ||||||||||||||||||||||0x61c	11:55:12.093		0	PECloseEngine			0	void	IN		0	&amp;lt;==&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jan 2011 11:09:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaa-p/7524385#M2701229</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-06T11:09:37Z</dc:date>
    </item>
    <item>
      <title>Re: Can't close Reportdocument class</title>
      <link>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaa-p/7524386#M2701230</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try moving the close and dispose to the forum unload method and comment them out in the subroutine itself. It should not be executing either until the printtoprinter method is finished so not sure why it's not working for you...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Question for you, did you create a c:\temp folder on your PC?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And what OS are you using, 32 or 64 bit?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;Don&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jan 2011 15:23:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaa-p/7524386#M2701230</guid>
      <dc:creator>former_member11696</dc:creator>
      <dc:date>2011-01-06T15:23:22Z</dc:date>
    </item>
    <item>
      <title>Re: Can't close Reportdocument class</title>
      <link>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaa-p/7524387#M2701231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Don,&lt;/P&gt;&lt;P&gt;My OS is WinXP SP3 but i have same problem with Windows 7 Ultimate - Both 32bit&lt;/P&gt;&lt;P&gt;Yes, i do have a C:\temp folder&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I Just noticed that if i remove the close &amp;amp; dispose methods from my subroutine and then i close the form where the routine is placed then the reportdocument is closed fine (from log):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I Have waited 30 seconds beforee closing form - and no code has been written in the formclosed event&lt;/P&gt;&lt;P&gt;That's my code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Private sub Test&lt;/P&gt;&lt;P&gt;        Dim RptDoc As New CrystalDecisions.CrystalReports.Engine.ReportDocument&lt;/P&gt;&lt;P&gt;        RptDoc.Load("C:\Report1.rpt")&lt;/P&gt;&lt;P&gt;        RptDoc.PrintToPrinter(1, False, 1, 0)&lt;/P&gt;&lt;P&gt;End sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Log file (diagnostic):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;|b017cbc3-3828-4744-6950-64d66e0960b1|2011 01 06 16:59:14:125|+0100|==| | |Diagnostics| 2068| 640|| |0|0|0|0|CRPE.CRPEBackgroundThread|localhost:2068:640.20:1|-|-|CRPE.CRPEBackgroundThread|localhost:2068:640.20:1||||||||||||N/A:-1,Checking for data source changes,Elapsed Time,"0"&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;|94962ea8-2865-34a4-58e5-94248665ef29|2011 01 06 16:59:44:500|+0100|==| | |Diagnostics| 2068| 640|| |0|0|0|0|CRPE.CRPEBackgroundThread|localhost:2068:640.21:1|-|-|CRPE.CRPEBackgroundThread|localhost:2068:640.21:1||||||||||||..\..\src\print\datasource\datasrc2.cpp:535,Releasing subreport data sources,Start Time,"16:59:44"&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;|1a1f10bb-8be0-7664-9b0b-de8714a1d298|2011 01 06 16:59:44:500|+0100|==| | |Diagnostics| 2068| 640|| |0|0|0|0|CRPE.CRPEBackgroundThread|localhost:2068:640.21:1|-|-|CRPE.CRPEBackgroundThread|localhost:2068:640.21:1||||||||||||N/A:-1,Releasing subreport data sources,Elapsed Time,"0"&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;|64e76903-7252-fe84-d96d-68a02504591a|2011 01 06 16:59:44:515|+0100|==| | |Diagnostics| 2068|2572|| ||||||||||||||||||||||..\..\src\crpe\crpe.cpp:755,Closing engine,Start Time,"16:59:44"&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;|f0f0fd6b-e56b-18d4-aa90-788b19523611|2011 01 06 16:59:44:515|+0100|==| | |Diagnostics| 2068|2572|| ||||||||||||||||||||||..\..\src\crpe\crpe.cpp:797,Closing engine,Before close engine use count,"3"&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;|079a6377-072a-f534-f9a5-1af8ce61eabf|2011 01 06 16:59:44:515|+0100|==| | |Diagnostics| 2068|2572|| ||||||||||||||||||||||..\..\src\crpe\crpe.cpp:822,Closing engine,After close engine use count,"2"&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;|24099367-5f6c-40e4-b83a-6f888d3be4ce|2011 01 06 16:59:44:515|+0100|==| | |Diagnostics| 2068|2572|| ||||||||||||||||||||||N/A:-1,Closing engine,Elapsed Time,"0"&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;|888c3279-4e92-bfb4-285e-3c62f7389fa5|2011 01 06 16:59:44:515|+0100|==| | |Diagnostics| 2068|3872|| ||||||||||||||||||||||..\..\src\crpe\crpe.cpp:755,Closing engine,Start Time,"16:59:44"&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;|4b6008c0-b5c9-b964-9a39-de7faab98979|2011 01 06 16:59:44:515|+0100|==| | |Diagnostics| 2068|3872|| ||||||||||||||||||||||..\..\src\crpe\crpe.cpp:797,Closing engine,Before close engine use count,"2"&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;|e24fceb0-45b6-dc14-b85a-4953d4608451|2011 01 06 16:59:44:515|+0100|==| | |Diagnostics| 2068|3872|| ||||||||||||||||||||||..\..\src\crpe\crpe.cpp:822,Closing engine,After close engine use count,"1"&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;|0df5892c-eb95-8184-8a02-d44bc3488e1c|2011 01 06 16:59:44:515|+0100|==| | |Diagnostics| 2068|3872|| ||||||||||||||||||||||N/A:-1,Closing engine,Elapsed Time,"0"&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;|95ff7794-3d78-7da4-bb6f-e2d9cfe221f6|2011 01 06 16:59:44:531|+0100|==| | |Diagnostics| 2068|2572|| ||||||||||||||||||||||..\..\src\crpe\crpe.cpp:755,Closing engine,Start Time,"16:59:44"&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;|a17c9faf-71d6-6ac4-da09-4937dc513de7|2011 01 06 16:59:44:531|+0100|==| | |Diagnostics| 2068|2572|| ||||||||||||||||||||||..\..\src\crpe\crpe.cpp:797,Closing engine,Before close engine use count,"1"&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;|4f8b4ddf-6ad0-fda4-6ba9-179435b5dec4|2011 01 06 16:59:45:015|+0100|==| | |Diagnostics| 2068|2572|| ||||||||||||||||||||||..\..\src\crpe\crpe.cpp:822,Closing engine,After close engine use count,"0"&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;|7f396185-44d5-e6d4-9906-38e2c4e5ba54|2011 01 06 16:59:45:015|+0100|==| | |Diagnostics| 2068|2572|| ||||||||||||||||||||||N/A:-1,Closing engine,Elapsed Time,"491"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: gwadafu on Jan 6, 2011 5:14 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jan 2011 16:07:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaa-p/7524387#M2701231</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-06T16:07:52Z</dc:date>
    </item>
    <item>
      <title>Re: Can't close Reportdocument class</title>
      <link>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaa-p/7524388#M2701232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't use c:\temp. For some reason our developers are using it also and it can cause problems. The known issue is the Database Expert can cause VS to crash if some specific file types are also in the temp folder. &lt;/P&gt;&lt;P&gt;I believe the issue is because the default for all OS's is the \users\temp folder they determined we can use it now and it's known to cause problems in CR for VS 2010.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try renaming your temp folder to c:\mytemp and then test again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I assume you did not change the default Users Environment variables correct?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;Don&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jan 2011 16:19:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaa-p/7524388#M2701232</guid>
      <dc:creator>former_member11696</dc:creator>
      <dc:date>2011-01-06T16:19:19Z</dc:date>
    </item>
    <item>
      <title>Re: Can't close Reportdocument class</title>
      <link>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaa-p/7524389#M2701233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Don,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I renamed the c:\temp but no difference.&lt;/P&gt;&lt;P&gt;made no changes to envirnement variables &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I made a new try:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Main Form with a button to open Form1&lt;/P&gt;&lt;P&gt;- On Form1 code to print report (as posted before)&lt;/P&gt;&lt;P&gt;- I closed form1 and looked at CR log - still not closing jobs  and temporary RPT file present with a new tmp file 1 KByte&lt;/P&gt;&lt;P&gt;- I closed Main Form and temporary RPT file and tmp file were deleted - and also found in log the jobs were terminated succesfully&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Seems like there's something in the project that can be released only on when project stops !&lt;/P&gt;&lt;P&gt;But beleive me i have nothing on main form (it's an empty form wit a button)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The reason why i want to close &amp;amp; dispose the reportdocument class is cause i have an app running as a service on a server and noticed wjt the code below that i can print max 75 reports before crash (and i find 75 sessions opened on my Oracle server !)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        Dim nRpt As Integer&lt;/P&gt;&lt;P&gt;        Do&lt;/P&gt;&lt;P&gt;            RptDoc = New CrystalDecisions.CrystalReports.Engine.ReportDocument&lt;/P&gt;&lt;P&gt;            RptDoc.Load("C:\Report1.rpt", CrystalDecisions.Shared.OpenReportMethod.OpenReportByTempCopy)&lt;/P&gt;&lt;P&gt;            RptDoc.PrintToPrinter(1, False, 1, 0)&lt;/P&gt;&lt;P&gt;            RptDoc = Nothing&lt;/P&gt;&lt;P&gt;            nRpt += 1&lt;/P&gt;&lt;P&gt;        Loop&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: gwadafu on Jan 6, 2011 5:57 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jan 2011 16:31:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaa-p/7524389#M2701233</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-06T16:31:05Z</dc:date>
    </item>
    <item>
      <title>Re: Can't close Reportdocument class</title>
      <link>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaa-p/7524390#M2701234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this a WEB or Windows app on the server?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try adding GC.Collect to force Windows to release the objects.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No one else I recall is having this problem so it must be a environment specific to your system. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use Process Monitor from Microsoft to see what is happening, could be a permission problem. If it's a WEB app then use something like Fiddler to see what those sessions are doing. If it is a WEB app then search on PostBack for sample on how to use it so you can close the session when the report is closed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;Don&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jan 2011 17:40:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaa-p/7524390#M2701234</guid>
      <dc:creator>former_member11696</dc:creator>
      <dc:date>2011-01-06T17:40:56Z</dc:date>
    </item>
    <item>
      <title>Re: Can't close Reportdocument class</title>
      <link>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaa-p/7524391#M2701235</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;it is a windows app&lt;/P&gt;&lt;P&gt;I already tried with GC.Collect without results&lt;/P&gt;&lt;P&gt;The RPT file in %Temp% folder is deleted (and CR printer job cleared) only when i exit main form&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jan 2011 18:01:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaa-p/7524391#M2701235</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-06T18:01:52Z</dc:date>
    </item>
    <item>
      <title>Re: Can't close Reportdocument class</title>
      <link>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaa-p/7524392#M2701236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I see the same last 3 &lt;STRONG&gt;PECloseEngine&lt;/STRONG&gt; calls in my logs as well, but they are all executed very quickly (all within 0.4 sec). Use Process Explorer to see what Crystal Runtime is being used when running your application. Ensure there isn't any mixed runtime from the beta. The beta files will be 14.x. The release version is 13.0.99.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also use Process Monitor to see what your system is doing at the time of the &lt;STRONG&gt;PECloseEngine&lt;/STRONG&gt; calls. Is it attempting to get access to a resource and is having issues? It is hanging on a network call?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;These are some of the files that might show up as 14.x&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;boezlib.dll	14.0.0.760&lt;/P&gt;&lt;P&gt;ebus-3-3-2-7.dll	14.0.0.760&lt;/P&gt;&lt;P&gt;etc-1-0-12-6.dll	14.0.0.760&lt;/P&gt;&lt;P&gt;fssl-1-2-1-6.dll	14.0.0.760&lt;/P&gt;&lt;P&gt;icudt30.dll	14.0.0.760&lt;/P&gt;&lt;P&gt;icuuc30.dll	14.0.0.760&lt;/P&gt;&lt;P&gt;libOCAHelperw-5-0.dll	14.0.0.760&lt;/P&gt;&lt;P&gt;libOCASecurityw-4-0.dll	14.0.0.760&lt;/P&gt;&lt;P&gt;pvlocale-1-0.dll	14.0.0.760&lt;/P&gt;&lt;P&gt;xerces-c_2_7.dll	14.0.0.760&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: David Hilton on Jan 6, 2011 10:14 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jan 2011 18:05:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaa-p/7524392#M2701236</guid>
      <dc:creator>former_member208657</dc:creator>
      <dc:date>2011-01-06T18:05:22Z</dc:date>
    </item>
    <item>
      <title>Re: Can't close Reportdocument class</title>
      <link>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaa-p/7524393#M2701237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ah... good to know. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So likely because for what ever reason the jobs won't close you are hitting that 75 job limit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is your project set to use the 4.0 framework and not the Client version?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Possibly also are you including the various CR components or just adding them to the projects references?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;C# looks like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;using CrystalDecisions.CrystalReports.Engine;&lt;/P&gt;&lt;P&gt;using CrystalDecisions.Shared;&lt;/P&gt;&lt;P&gt;using CrystalDecisions.ReportAppServer.ClientDoc;&lt;/P&gt;&lt;P&gt;using CrystalDecisions.ReportAppServer.Controllers;&lt;/P&gt;&lt;P&gt;using CrystalDecisions.ReportAppServer.ReportDefModel;&lt;/P&gt;&lt;P&gt;using CrystalDecisions.ReportAppServer.CommonControls;&lt;/P&gt;&lt;P&gt;using CrystalDecisions.ReportAppServer.CommLayer;&lt;/P&gt;&lt;P&gt;using CrystalDecisions.ReportAppServer.CommonObjectModel;&lt;/P&gt;&lt;P&gt;using CrystalDecisions.ReportAppServer.ObjectFactory;&lt;/P&gt;&lt;P&gt;using CrystalDecisions.ReportAppServer.DataSetConversion;&lt;/P&gt;&lt;P&gt;using CrystalDecisions.ReportAppServer.DataDefModel;&lt;/P&gt;&lt;P&gt;using CrystalDecisions.ReportSource;&lt;/P&gt;&lt;P&gt;using CrystalDecisions.Windows.Forms;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;Don&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jan 2011 18:09:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaa-p/7524393#M2701237</guid>
      <dc:creator>former_member11696</dc:creator>
      <dc:date>2011-01-06T18:09:47Z</dc:date>
    </item>
    <item>
      <title>Re: Can't close Reportdocument class</title>
      <link>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaa-p/7524394#M2701238</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks David &amp;amp; Don&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My project is NET Framework 4 (not client profile)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i only refernce Crystal engine &amp;amp; shared &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I ran process explorer but no entry with 14. has been found - i only have 13. version of CR running &lt;/P&gt;&lt;P&gt;I ran ProcessMonitor but can't see any error or what else &lt;/P&gt;&lt;P&gt;Only a NAME NOT FOUND for HKCU\Software\Classes\CLSID\{C41BC192-D73F-48F3-89A8-1A3698BA2D2B}&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jan 2011 18:41:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaa-p/7524394#M2701238</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-06T18:41:09Z</dc:date>
    </item>
    <item>
      <title>Re: Can't close Reportdocument class</title>
      <link>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaa-p/7524395#M2701239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CLSID{C41BC192-D73F-48F3-89A8-1A3698BA2D2B} is the class id for commonobjmodel.dll. But just because it came up as Name not found once doesn't mean it wasn't found in another location.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm out of ideas in this case. My next suggestion is for you to purchase some dedicated support because we've gone as far as we can here in the forums. [Purchase a Single Case|http://store.businessobjects.com/store/bobjects/Content/pbPage.CSC_map_countyselector/pgm.67024400?resid=jFmmLgoBAlcAAALO-iYAAAAP&amp;amp;rests=1278687224728].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Before you purchase support I suggest you remove and reinstall Crystal Reports for Visual Studio 2010. It's likely the first step we'd have you do in support anyways.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jan 2011 18:51:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaa-p/7524395#M2701239</guid>
      <dc:creator>former_member208657</dc:creator>
      <dc:date>2011-01-06T18:51:06Z</dc:date>
    </item>
    <item>
      <title>Re: Can't close Reportdocument class</title>
      <link>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaa-p/7524396#M2701240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your help anyway&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Will try to install both CR &amp;amp; VS2010 on a new pc and see ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And if not working will purchase a case &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jan 2011 19:08:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaa-p/7524396#M2701240</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-06T19:08:32Z</dc:date>
    </item>
    <item>
      <title>Re: Can't close Reportdocument class</title>
      <link>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaa-p/7524397#M2701241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One final note also...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the install log in C:\Program Files (x86)\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Common\SAP BusinessObjects Enterprise XI 4.0\logging&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And look for any dll's that could not be installed... Possibly you do have something running that is blocking a successful install to happen...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank again&lt;/P&gt;&lt;P&gt;Don&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Jan 2011 21:26:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaa-p/7524397#M2701241</guid>
      <dc:creator>former_member11696</dc:creator>
      <dc:date>2011-01-06T21:26:54Z</dc:date>
    </item>
    <item>
      <title>Re: Can't close Reportdocument class</title>
      <link>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaa-p/7524398#M2701242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again,&lt;/P&gt;&lt;P&gt;got no errors in log .. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One think i didn't say is that i have same problem in 3 different PC where i developped my app and also all PCs where my app is installed has the same behaviour... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jan 2011 11:34:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaa-p/7524398#M2701242</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-07T11:34:05Z</dc:date>
    </item>
    <item>
      <title>Re: Can't close Reportdocument class</title>
      <link>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaa-p/7524399#M2701243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again,&lt;/P&gt;&lt;P&gt;i just realized that the process works fine on Windows 7 and Windows Server 2008 OS&lt;/P&gt;&lt;P&gt;I only have problem on XP machine.&lt;/P&gt;&lt;P&gt;Even if i compile project on my XP development machine that will work on Win7 and Server 2008 - but crashes in debug, while debugging works fine on windows 7&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can be a Win XP issue ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Will wait a few days and then open a call ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jan 2011 08:26:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaa-p/7524399#M2701243</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-11T08:26:29Z</dc:date>
    </item>
    <item>
      <title>Re: Can't close Reportdocument class</title>
      <link>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaa-p/7524400#M2701244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Believe it or not, but it is good that it fails on one OS and works on another. It gives you something to compare. Use tools like Process Explorer and Modules to compare the runtime environment for the application. You'll want to concentrate on what is different or missing on the Windows XP system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Links&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;[Modules|https://smpdl.sap-ag.de/~sapidp/012002523100006252802008E/modules.zip]&lt;/P&gt;&lt;P&gt;[Process Explorer|http://technet.microsoft.com/en-us/sysinternals/bb896653]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jan 2011 16:17:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/can-t-close-reportdocument-class/qaa-p/7524400#M2701244</guid>
      <dc:creator>former_member208657</dc:creator>
      <dc:date>2011-01-11T16:17:54Z</dc:date>
    </item>
  </channel>
</rss>

