<?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: Crystal Report with PHP in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/crystal-report-with-php/qaa-p/7966187#M2845883</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Version 14?! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where did this come from? Are you using the Beta of CRVS2010? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note that CR XI R2 (11.5) was the last version of CR to ship the rdc (craxdrt.dll.). Using the craxdrt.dll from any other version is not within your license agreement... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, even if you go with the RDC, breaking your license agreement, you will never be able to deploy the CR runtime successfully as there are no MSM or MSI files... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Ludek&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Ludek Uher on Jun 13, 2011 6:37 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 13 Jun 2011 13:36:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-06-13T13:36:57Z</dc:date>
    <item>
      <title>Crystal Report with PHP</title>
      <link>https://community.sap.com/t5/technology-q-a/crystal-report-with-php/qaq-p/7966182</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I am new to crystal report. I want to use CR 11 integrated with my web based application. Now as entire application is designed in PHP, I need to use PHP, use COM, to pass parameters and generate PDF report. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have following question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Will I need CR server ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do i actually invoke CR from PHP ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Right now I am doing following&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$my_report = "C:&lt;BR /&gt;Inetpub&lt;BR /&gt;wwwroot&lt;BR /&gt;test&lt;BR /&gt;test.rpt"; &lt;/P&gt;&lt;P&gt;$my_pdf = "C:\Inetpub\wwwroot\test&lt;BR /&gt;MyReport.pdf";&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try  &lt;/P&gt;&lt;P&gt;{  &lt;/P&gt;&lt;P&gt;    $ObjectFactory = new COM ( 'CrystalRuntime.Application' );  &lt;/P&gt;&lt;P&gt;}  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;catch ( exception $e )  &lt;/P&gt;&lt;P&gt;{  &lt;/P&gt;&lt;P&gt;    echo 'caught exception: ' . $e-&amp;gt;getMessage () . ', error trace: ' . $e-&amp;gt;getTraceAsString ();  &lt;/P&gt;&lt;P&gt;}  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$crapp = $ObjectFactory-&amp;gt;CreateObject("CrystalDesignRunTime.Application");&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$creport = $crapp-&amp;gt;OpenReport($my_report, 1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$creport-&amp;gt;Database-&amp;gt;Tables(1)-&amp;gt;SetLogOnInfo("server IP address", "db_name", "username", "password");&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$creport-&amp;gt;EnableParameterPrompting = 0;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$creport-&amp;gt;DiscardSavedData;&lt;/P&gt;&lt;P&gt;$creport-&amp;gt;ReadRecords();&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$creport-&amp;gt;FormulaFields-&amp;gt;Item(1)-&amp;gt;Text = ("'My Report Title'");&lt;/P&gt;&lt;P&gt;$creport-&amp;gt;ParameterFields(1)-&amp;gt;AddCurrentValue ("FirstParameter");&lt;/P&gt;&lt;P&gt;$creport-&amp;gt;ParameterFields(2)-&amp;gt;AddCurrentValue (2000);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$creport-&amp;gt;ExportOptions-&amp;gt;DiskFileName=$my_pdf;&lt;/P&gt;&lt;P&gt;$creport-&amp;gt;ExportOptions-&amp;gt;PDFExportAllPages=true;&lt;/P&gt;&lt;P&gt;$creport-&amp;gt;ExportOptions-&amp;gt;DestinationType=1;&lt;/P&gt;&lt;P&gt;$creport-&amp;gt;ExportOptions-&amp;gt;FormatType=31;&lt;/P&gt;&lt;P&gt;$creport-&amp;gt;Export(false);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$creport = null;&lt;/P&gt;&lt;P&gt;$crapp = null;&lt;/P&gt;&lt;P&gt;$ObjectFactory = null;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but i am getting following error &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;caught exception: Failed to create COM object `CrystalRuntime.Application': Invalid syntax , error trace: #0 C:\Inetpub\wwwroot\cr_test.php(69): com-&amp;gt;com('CrystalRuntime....') #1 &lt;SPAN __jive_macro_name="main"&gt;&lt;/SPAN&gt; Notice: Undefined variable: ObjectFactory in C:\Inetpub\wwwroot\cr_test.php on line 78 Fatal error: Call to a member function CreateObject() on a non-object in C:\Inetpub\wwwroot\cr_test.php on line 78 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will appreciate any help provided in this matter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jun 2011 21:27:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/crystal-report-with-php/qaq-p/7966182</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-10T21:27:26Z</dc:date>
    </item>
    <item>
      <title>Re: Crystal Report with PHP</title>
      <link>https://community.sap.com/t5/technology-q-a/crystal-report-with-php/qaa-p/7966183#M2845879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just a quick update, I am using CR Developer Version 14.0.0.760 RTM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jun 2011 21:29:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/crystal-report-with-php/qaa-p/7966183#M2845879</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-10T21:29:58Z</dc:date>
    </item>
    <item>
      <title>Re: Crystal Report with PHP</title>
      <link>https://community.sap.com/t5/technology-q-a/crystal-report-with-php/qaa-p/7966184#M2845880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Will I need CR server ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- No you will not&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do i actually invoke CR from PHP ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- I have no idea. PHP is not a supported language, thus I have never even seen PHP. However, as you will be using COM, you will have to use the Report Designer Component (RDC) - more bellow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The error:&lt;/P&gt;&lt;P&gt;Failed to create COM object `CrystalRuntime.Application'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and the code indicates that you are not instantiating the Application runtime object correctly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;E.g.; instead of:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;


$crapp = $ObjectFactory-&amp;gt;CreateObject("CrystalDesignRunTime.Application");

try:

$crapp = $ObjectFactory-&amp;gt;CreateObject("CrystalRuntime.Application.11");


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, the above assumes you are using CR XI R1 (11.0). It's usually a good idea to be exact in the version of CR used (See Help | About Crystal... in the CR designer).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Other RDC resources (all will be for VB6).&lt;/P&gt;&lt;P&gt;Sample apps&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sdn.sap.com/irj/boc/businessobjects-samples" target="test_blank"&gt;http://www.sdn.sap.com/irj/boc/businessobjects-samples&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://wiki.sdn.sap.com/wiki/display/BOBJ/Report" target="test_blank"&gt;http://wiki.sdn.sap.com/wiki/display/BOBJ/Report&lt;/A&gt;&lt;EM&gt;Designer&lt;/EM&gt;Component&lt;EM&gt;SDK&lt;/EM&gt;COM+Samples&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sdn.sap.com/irj/boc/index?rid=/library/uuid/00635998-751e-2b10-9cba-f50ee1e4ef81" target="test_blank"&gt;http://www.sdn.sap.com/irj/boc/index?rid=/library/uuid/00635998-751e-2b10-9cba-f50ee1e4ef81&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, please note &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) CR XI R1 (11.0) is out of support, CR XI R2 (11.5) will be out of support end of this month. &lt;/P&gt;&lt;P&gt;2) CR XI R2 is the last version of CR to ship the RDC&lt;/P&gt;&lt;P&gt;3) I would highly recommend updating your install to CR XI R2A. See the blog [Where did all the Crystal Reports XI R1 and R2 fixes go?|http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/24977] &lt;B&gt;[original link is broken]&lt;/B&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ludek&lt;/P&gt;&lt;P&gt;Follow us on Twitter &lt;A href="http://twitter.com/SAPCRNetSup" target="test_blank"&gt;http://twitter.com/SAPCRNetSup&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jun 2011 22:04:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/crystal-report-with-php/qaa-p/7966184#M2845880</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-10T22:04:42Z</dc:date>
    </item>
    <item>
      <title>Re: Crystal Report with PHP</title>
      <link>https://community.sap.com/t5/technology-q-a/crystal-report-with-php/qaa-p/7966185#M2845881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you. Ludek Uher&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just after I posted my update, I realized that there was an error in version I am passing, i actually have version 14.0.0.760 RTM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now my code is like this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
$my_report = "C:\\MyReport.rpt";
$my_pdf = "C:\\MyReport.pdf";

try  
{  
    $ObjectFactory = new COM ( 'CrystalReports14.ObjectFactory.1' );  
}  
catch ( exception $e )  
{  
    echo 'caught exception: ' . $e-&amp;gt;getMessage () . ', error trace: ' . $e-&amp;gt;getTraceAsString ();  
} 
$crapp = $ObjectFactory-&amp;gt;CreateObject("CrystalReports14.ObjectFactory.1");

$creport = $crapp-&amp;gt;OpenReport($my_report, 1);
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and it creating creating Crystal Reports object. Now the problem I am facing is that the method OpenReport() is not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does the RPT file mentioned in $my_report variable should exists when I run this code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The same question also goes for the PDF file I am mentioning in $my_pdf variable.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Jun 2011 18:12:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/crystal-report-with-php/qaa-p/7966185#M2845881</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-11T18:12:07Z</dc:date>
    </item>
    <item>
      <title>Re: Crystal Report with PHP</title>
      <link>https://community.sap.com/t5/technology-q-a/crystal-report-with-php/qaa-p/7966186#M2845882</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;Can you please let me know list of supported languages ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jun 2011 13:25:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/crystal-report-with-php/qaa-p/7966186#M2845882</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-13T13:25:27Z</dc:date>
    </item>
    <item>
      <title>Re: Crystal Report with PHP</title>
      <link>https://community.sap.com/t5/technology-q-a/crystal-report-with-php/qaa-p/7966187#M2845883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Version 14?! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where did this come from? Are you using the Beta of CRVS2010? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note that CR XI R2 (11.5) was the last version of CR to ship the rdc (craxdrt.dll.). Using the craxdrt.dll from any other version is not within your license agreement... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, even if you go with the RDC, breaking your license agreement, you will never be able to deploy the CR runtime successfully as there are no MSM or MSI files... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Ludek&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Ludek Uher on Jun 13, 2011 6:37 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jun 2011 13:36:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/crystal-report-with-php/qaa-p/7966187#M2845883</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-13T13:36:57Z</dc:date>
    </item>
    <item>
      <title>Re: Crystal Report with PHP</title>
      <link>https://community.sap.com/t5/technology-q-a/crystal-report-with-php/qaa-p/7966188#M2845884</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;I have just downloaded Free 30 day Trial version from SAP Crystal Reports Download website, as at my company is planning to purchase and implement it, and made me responsible for this. And this is the version that has been downloaded. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just gone to Help -&amp;gt; About Crystal Report, and this is the version number shown there. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I dont know any further detail about why I have this version. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please give me list of all fully supported languages ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to switch from PHP to one of the fully supported language.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jun 2011 13:54:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/crystal-report-with-php/qaa-p/7966188#M2845884</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-13T13:54:01Z</dc:date>
    </item>
    <item>
      <title>Re: Crystal Report with PHP</title>
      <link>https://community.sap.com/t5/technology-q-a/crystal-report-with-php/qaa-p/7966189#M2845885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With CR 2011, there is not SDK support of any kind. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With CR XIR2A, see:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/7081b21c-911e-2b10-678e-fe062159b453" target="test_blank"&gt;http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/7081b21c-911e-2b10-678e-fe062159b453&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Ludek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jun 2011 15:24:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/crystal-report-with-php/qaa-p/7966189#M2845885</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-13T15:24:33Z</dc:date>
    </item>
    <item>
      <title>Re: Crystal Report with PHP</title>
      <link>https://community.sap.com/t5/technology-q-a/crystal-report-with-php/qaa-p/7966190#M2845886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have gone through the document. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Looks like classic ASP is not one of the supported languages, am I correct on this one ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jun 2011 16:41:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/crystal-report-with-php/qaa-p/7966190#M2845886</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-13T16:41:27Z</dc:date>
    </item>
    <item>
      <title>Re: Crystal Report with PHP</title>
      <link>https://community.sap.com/t5/technology-q-a/crystal-report-with-php/qaa-p/7966191#M2845887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Classic ASP is supported - with the RDC SDK. Lots of info on ASP - type ASP Crystal in the search box at the top right corner of this web page.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Ludek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jun 2011 17:03:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/crystal-report-with-php/qaa-p/7966191#M2845887</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-13T17:03:39Z</dc:date>
    </item>
    <item>
      <title>Re: Crystal Report with PHP</title>
      <link>https://community.sap.com/t5/technology-q-a/crystal-report-with-php/qaa-p/7966192#M2845888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Ludek Uher for your help and quick reply. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will use classic ASP. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for all the help you have provided.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jun 2011 17:10:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/crystal-report-with-php/qaa-p/7966192#M2845888</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-13T17:10:57Z</dc:date>
    </item>
    <item>
      <title>Re: Crystal Report with PHP</title>
      <link>https://community.sap.com/t5/technology-q-a/crystal-report-with-php/qaa-p/7966193#M2845889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just for reference, no, ASP is not supported with any currently supported version of Crystal except for XI R2 and that is only for 2 more weeks (as of June 30th XI R2 is out of support and it is the last version that supports COM/ASP ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jason&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2011 16:13:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/crystal-report-with-php/qaa-p/7966193#M2845889</guid>
      <dc:creator>former_member184995</dc:creator>
      <dc:date>2011-06-17T16:13:26Z</dc:date>
    </item>
    <item>
      <title>Re: Crystal Report with PHP</title>
      <link>https://community.sap.com/t5/technology-q-a/crystal-report-with-php/qaa-p/7966194#M2845890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did anyone ever get PHP-Crystal combination to work using "CrystalReports14.ObjectFactory.1"?&amp;nbsp; I have reached as far as Chaitan Sukhadia on 11 June 2011, and I'm also running into the problem with the OpenReport() method.&amp;nbsp; I am constrained to using PHP per business policy, so going to classic ASP isn't a possibility (yet).&amp;nbsp; Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My code so far:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$ObjectFactory = new COM("CrystalReports14.ObjectFactory.1") or die("CR loading failed");&lt;/P&gt;&lt;P&gt;$crapp = $ObjectFactory-&amp;gt; CreateObject("CrystalReports14.ObjectFactory.1"); &lt;/P&gt;&lt;P&gt;$creport = $crapp-&amp;gt;OpenReport("filename.rpt", 1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not sure whether I'm using the wrong app ID when doing CreateObject(), or something else...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Apr 2015 20:05:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/crystal-report-with-php/qaa-p/7966194#M2845890</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-04-13T20:05:47Z</dc:date>
    </item>
  </channel>
</rss>

