<?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: Problem with Synonyms in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/problem-with-synonyms/qaa-p/6279433#M2301227</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The underlying issue was different for the OLE driver in comparison with the JDBC.  Both require special handling for synonyms, and that's what the track for JDBC resolved, since the Oracle thin driver did provide adequate metadata.  The OLE didn't.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sincerely,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ted Ueda&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 03 Nov 2009 14:26:33 GMT</pubDate>
    <dc:creator>ted_ueda</dc:creator>
    <dc:date>2009-11-03T14:26:33Z</dc:date>
    <item>
      <title>Problem with Synonyms</title>
      <link>https://community.sap.com/t5/technology-q-a/problem-with-synonyms/qaq-p/6279422</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, &amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;we are developing designing our reports on an Oracle database in a certain schema. To be able to run those reports at our customers we have written software which replaces our database schema by the one the customer uses besides other functionality. Often the tables used in the reports are at our customersu2019 databases synonyms on tables in yet another schema. &amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;Until we switch to the .NET SDK this was no problem. But if I now switch the table location to a synonym the report looses all internal information about the fields of the table. Thus all information about links to parameters and joins of tables are also gone.&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;If I save the report after replacing the table locations and open the saved copy in the Crystal Designer, I can only see tables without any fields in the Database Expert.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;Iu2019m modifying the table location with code like in the following example:&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;code&amp;gt;&lt;/P&gt;&lt;P&gt;ReportDocument rdReport = new ReportDocument();&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;rdReport.Load(sReportName, OpenReportMethod.OpenReportByTempCopy);&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;CrystalDecisions.ReportAppServer.ClientDoc.ISCDReportClientDocument rcDocument = rdReport.ReportClientDocument;&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;for (int i = 0; i &amp;lt; rdReport.Database.Tables.Count; ++i)&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;{&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;    CrystalDecisions.ReportAppServer.DataDefModel.ISCRTable rctTable = rcDocument.DataDefController.Database.Tables&amp;lt;i&amp;gt;;&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;    CrystalDecisions.ReportAppServer.DataDefModel.ISCRTable rctNew = new CrystalDecisions.ReportAppServer.DataDefModel.Table();&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;    rctNew.Name = rctTable.Name;&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;    rctNew.Alias = rctTable.Alias;&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;    rctNew.QualifiedName = rctTable.QualifiedName.Replace("OLD_SCHEMA","NEW_SCHEMA");&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;    rctNew.ConnectionInfo = rctTable.ConnectionInfo.Clone(true);&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;    CrystalDecisions.ReportAppServer.DataDefModel.PropertyBag pbAttr = rctNew.ConnectionInfo.Attributes;&amp;lt;br&amp;gt;    &lt;/P&gt;&lt;P&gt;    pbAttr[sAttrDBDll] = "crdb_ado.dll";&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;    pbAttr[sAttrDBName] = sDBName;&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;    pbAttr[sAttrDBType] = "OLE DB (ADO)";&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;    pbAttr[sAttrServerDesc] = sServerName;&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;    pbAttr[sAttrSQLDB] = "True";&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;    pbAttr[sAttrSSO] = "False";&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;    CrystalDecisions.ReportAppServer.DataDefModel.PropertyBag pbLogOnProp = (CrystalDecisions.ReportAppServer.DataDefModel.PropertyBag)pbAttr[sAttrLogOnProp];&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;    pbLogOnProp.RemoveAll();&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;    // set new connection string&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;    pbLogOnProp.FromString(sConnectStr);&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;    // set user/pwd&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;    rctNew.ConnectionInfo.UserName = sUserId;&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;    rctNew.ConnectionInfo.Password = sPwd;&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;    // apply changes&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;    rcDocument.DatabaseController.SetTableLocation(rctTable, rctNew);&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;}&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/code&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;Does anybody know if there is a workaround so that I can modify the table location to a synonym without loosing the field information?&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Oct 2009 10:16:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/problem-with-synonyms/qaq-p/6279422</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-30T10:16:17Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Synonyms</title>
      <link>https://community.sap.com/t5/technology-q-a/problem-with-synonyms/qaa-p/6279423#M2301217</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Before you do this using any APIs, can you do it in the CR designer? 99% of the time, if it can not be done, or if it is an issue in the designer, the same will hold at runtime. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The symptom of the fields disappearing is indicative of the report not understanding the schema, or the schema not matching what the report is expecting. You may also want to try enabling the option Verify on First refresh and Verify Stored Procedure on First Refresh. You can do this in the designer, or code. &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>Fri, 30 Oct 2009 14:49:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/problem-with-synonyms/qaa-p/6279423#M2301217</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-30T14:49:20Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Synonyms</title>
      <link>https://community.sap.com/t5/technology-q-a/problem-with-synonyms/qaa-p/6279424#M2301218</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ludek,&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;If I use the Set Datasource Location in the designer and replace the original tables by synonyms (which point to the original tables), the designer can also find no field information. It is also not possible to build a report based on synonyms.&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;I don't know how it is with other databases, but it seems that Oracle does not provide any meta information about the original object in synonyms.&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;But the old COM-Api didn't seem to care about the missing field information, and I could switch from a table to a synonym.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;Greetings&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Nov 2009 08:09:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/problem-with-synonyms/qaa-p/6279424#M2301218</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-02T08:09:30Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Synonyms</title>
      <link>https://community.sap.com/t5/technology-q-a/problem-with-synonyms/qaa-p/6279425#M2301219</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Ron; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since this is also happening in the CR designer, I really think it will be best to get an answer from the CR database guys in the Data Connectivity - Crystal Reports forum; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_community" href="https://community.sap.com/" __jive_macro_name="community" modifiedtitle="true" __default_attr="2073"&gt;&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once it is working in the designer, see how it goes at runtime. &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, 02 Nov 2009 14:38:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/problem-with-synonyms/qaa-p/6279425#M2301219</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-02T14:38:58Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Synonyms</title>
      <link>https://community.sap.com/t5/technology-q-a/problem-with-synonyms/qaa-p/6279426#M2301220</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The issue sounded familiar, so searching internally, there was an issue investigated using Oracle OLE DB to synonyms, and the problem (ADAPT00503823) was narrowed down to problems with how the Oracle OLE DB driver exposes the metadata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does this issue happen if you use a different driver?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sincerely,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ted Ueda&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Nov 2009 14:43:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/problem-with-synonyms/qaa-p/6279426#M2301220</guid>
      <dc:creator>ted_ueda</dc:creator>
      <dc:date>2009-11-02T14:43:03Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Synonyms</title>
      <link>https://community.sap.com/t5/technology-q-a/problem-with-synonyms/qaa-p/6279427#M2301221</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I get the same problem whether I use the Microsoft OLE DB Provider for Oracle or the Oracle Provider for OLE DB.&lt;/P&gt;&lt;P&gt;Using an ODBC connection to the Oracle Database on the other hand works fine.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Nov 2009 14:55:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/problem-with-synonyms/qaa-p/6279427#M2301221</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-02T14:55:16Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Synonyms</title>
      <link>https://community.sap.com/t5/technology-q-a/problem-with-synonyms/qaa-p/6279428#M2301222</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't know about the Microsoft OLE DB driver, but I do know that the issue in what I referred to was something to do with the Oracle OLE DB driver.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sincerely,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ted Ueda&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Nov 2009 15:01:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/problem-with-synonyms/qaa-p/6279428#M2301222</guid>
      <dc:creator>ted_ueda</dc:creator>
      <dc:date>2009-11-02T15:01:00Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Synonyms</title>
      <link>https://community.sap.com/t5/technology-q-a/problem-with-synonyms/qaa-p/6279429#M2301223</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Ted,&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;can you tell me where I can find the issue ADAPT00503823?&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;With best regards,&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;Ron&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Nov 2009 15:09:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/problem-with-synonyms/qaa-p/6279429#M2301223</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-02T15:09:46Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Synonyms</title>
      <link>https://community.sap.com/t5/technology-q-a/problem-with-synonyms/qaa-p/6279430#M2301224</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've found a note regarding the issue.&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;If I understand the status correctly, the patch was released in November 2008. &amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;But this note only mentions the JDBC driver, so I presume that this issue hasn't been fixed to work with the Oracle OLE DB driver or the MSDAORA OLE DB driver.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Nov 2009 16:02:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/problem-with-synonyms/qaa-p/6279430#M2301224</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-02T16:02:14Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Synonyms</title>
      <link>https://community.sap.com/t5/technology-q-a/problem-with-synonyms/qaa-p/6279431#M2301225</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The JDBC issue I'm pretty familiar with, since I'd encountered it directly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's a different issue - the CR JDBC driver didn't support synonyms at all (i.e., it wasn't a issue with the Oracle JDBC thin driver).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The ADAPT's are internal tracking numbers - it's used as reference to issues, but not available externally.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sincerely,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ted Ueda&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Nov 2009 16:34:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/problem-with-synonyms/qaa-p/6279431#M2301225</guid>
      <dc:creator>ted_ueda</dc:creator>
      <dc:date>2009-11-02T16:34:56Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Synonyms</title>
      <link>https://community.sap.com/t5/technology-q-a/problem-with-synonyms/qaa-p/6279432#M2301226</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I also tried to use the Oracle Server connection using the crdb_oracle.dll. With this connection the meta information of the synonyms are read correctly and my problem described above does not appear. &amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;The question now is, is that a bug of Crystal Reports or a bug of Oracle/Microsoft?&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;The similar bug in the JDBC driver was solved by Crystal, wasn't it? This would be a reason to file a bug report here.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;/P&gt;&lt;P&gt;Sincerely,&lt;/P&gt;&lt;P&gt;Ron&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Nov 2009 08:50:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/problem-with-synonyms/qaa-p/6279432#M2301226</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-03T08:50:26Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Synonyms</title>
      <link>https://community.sap.com/t5/technology-q-a/problem-with-synonyms/qaa-p/6279433#M2301227</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The underlying issue was different for the OLE driver in comparison with the JDBC.  Both require special handling for synonyms, and that's what the track for JDBC resolved, since the Oracle thin driver did provide adequate metadata.  The OLE didn't.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sincerely,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ted Ueda&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Nov 2009 14:26:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/problem-with-synonyms/qaa-p/6279433#M2301227</guid>
      <dc:creator>ted_ueda</dc:creator>
      <dc:date>2009-11-03T14:26:33Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Synonyms</title>
      <link>https://community.sap.com/t5/technology-q-a/problem-with-synonyms/qaa-p/6279434#M2301228</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am having a similar problem with synonyms in crystal 2008 designer connecting to a sql server 2005 database using OLE DB provider.  I can connect and the synonym shows in the field explorer with a plus sign but it doesn't allow you to expand the plus sign to show the fields and use them in a report!  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Additionally if i design the report against the original table then run it in java crystal for eclipse subbing out the the database for a database where the synonym is present instead of the table it runs but finds no data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas with these two problems?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2010 16:16:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/problem-with-synonyms/qaa-p/6279434#M2301228</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-19T16:16:44Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Synonyms</title>
      <link>https://community.sap.com/t5/technology-q-a/problem-with-synonyms/qaa-p/6279435#M2301229</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have reported this behavior to SAP as a bug in November.&lt;/P&gt;&lt;P&gt;I finally got today the message:&lt;/P&gt;&lt;P&gt;"The issue is planned to be fixed in CR 2008 SP3 and Release of SP3 would be(tentative) in May or June."&lt;/P&gt;&lt;P&gt;So we have no choice than to wait until SP3 is released.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2010 16:32:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/problem-with-synonyms/qaa-p/6279435#M2301229</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-19T16:32:56Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Synonyms</title>
      <link>https://community.sap.com/t5/technology-q-a/problem-with-synonyms/qaa-p/6279436#M2301230</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Jeremy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As Ron points out, the OLE DB issue is scheduled for SP3 for both Oracle and SQL Server - the developer worked around the limitation of the OLE DB driver.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Java issue - are you using JDBC connectivity?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sincerely,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ted Ueda&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2010 17:29:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/problem-with-synonyms/qaa-p/6279436#M2301230</guid>
      <dc:creator>ted_ueda</dc:creator>
      <dc:date>2010-01-19T17:29:07Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Synonyms</title>
      <link>https://community.sap.com/t5/technology-q-a/problem-with-synonyms/qaa-p/6279437#M2301231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah Im running jdbc using the jtds sql driver.  I design the report against the original table, then run the report in java using setTableLocation code to point to a database where this table is just a synonym.  The synonym works for command based reports but not when i design against the original table like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jeremy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2010 17:37:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/problem-with-synonyms/qaa-p/6279437#M2301231</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-19T17:37:52Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Synonyms</title>
      <link>https://community.sap.com/t5/technology-q-a/problem-with-synonyms/qaa-p/6279438#M2301232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You may want to post a new forum question on the Crystal Reports Java forum - don't want to lengthen this one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sincerely,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ted Ueda&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2010 18:17:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/problem-with-synonyms/qaa-p/6279438#M2301232</guid>
      <dc:creator>ted_ueda</dc:creator>
      <dc:date>2010-01-19T18:17:42Z</dc:date>
    </item>
  </channel>
</rss>

