Crystal report Java Beans Connectivity

Hi
My name is Bach Ong. I.m currently migrating Crystal reports 10 to Crystal reports 2008 using Java Beans Connectivity. Using ResultSet as dataset. all results are return alright, EXCEPT for string type fields. The data for STRING type fields are some how suppressed. But if i executed the beans within eclipse the the string field is populated with data.
can someone assist me with this issue.
Thanks
Bach Ong

Some suggestions I would give for this are:
1. It may be a fault with the data itself.  Specifically, if you have a string field that contains invalid or null data (Instead of an empty string), it may be causing an error to be thrown when the report engine tries to process the string fields - and it thus fails on all string fields.
So please try this with some data where all fields contain valid non-null, non-empty data and see if it works.
2. One of the difficulties with javabeans is that they don't give proper error messages.  However, there is a way to kick off the javabean java process in the crystal report designer which allows you to debug your javabean inside the report designer.  I have attached a sample that shows how to do that - and that should get you the real error message of what is going wrong.
Note: Due to the way these forums work - it will only let me attach a file if it is named with the .txt extension.  You will need to extract the txt file and then rename it to .zip (annoying I know).
Shawn

Similar Messages

  • Java bean connectivity -

    Hi,
    There are some issues while I am using webservice connection from crystal report.(I am using webservice with ws security but my cr doesn't support this. This create problem while I am calling cr from my java application).
    I tried Java bean connectivity .. but facing some problems - I would like to write a java bean which will retrieve data from my webservice and need to return to cr. Webservice return data as "soap xml", how can I convert this to resultset. Can I add my data directly to the xml before passing to the cr? Or can I use any other return type from my java bean.
    Could I provide a struts application url(action url) as a datasorce to the cr? If so how can I achieve this and what should be the return type.  Please advise the better datasource connection to resolve this issue?
    I want to call the report from java application and need to deploy the same in the Crystal enterprise server
    Thanks in advance
    Thomas

    Please re-post if this is still an issue or purchase a case and have a dedicated support engineer work with your directly

  • CE-AdHoc Reporting-Java bean connnectivity

    Hi,
    I'm creating ad-hoc reporting utility, using CE xi. And i need to set Java Bean as data source.
    Can anyone please specify the procedure for that?
    My bean is in c:\testJava.
    I've specified <JavaBeanClassPath> and <JavaDir> in CRConfig.xml
    following is the JSP, which is giving 'Invalid Pointer' error.
    <%@page contentType="text/html"%>
    <html>
    <head><title>JAVA BEAN</title></head>
    <body>
    <%@ page import= "java.net.*, java.util.Locale,
    com.crystaldecisions.sdk.occa.report.application.ReportClientDocument,
    com.crystaldecisions.sdk.occa.report.lib.PropertyBag,
    com.crystaldecisions.sdk.occa.report.lib.Strings,
    com.crystaldecisions.sdk.occa.report.lib.PropertyBagHelper,
    com.crystaldecisions.sdk.occa.report.reportsource.IReportSource,
    com.crystaldecisions.sdk.occa.report.data.*,
    com.crystaldecisions.report.web.viewer.CrystalReportViewer"
    %>
    <%
    //Create a report document object
    ReportClientDocument rptDoc = new ReportClientDocument();
    //assume RAS service is running on the same machine as RAS SDK -
    //and attach this report to the local machine
    InetAddress ip = InetAddress.getLocalHost();
    rptDoc.setReportAppServer(ip.getHostName());
    //instead of opening an existing .rpt, create a new empty report
    rptDoc.newDocument();
    //Create two table objects
    Table tblA = new Table();
    //Create a connection info object and property bag for the connection
    ConnectionInfo ci = new ConnectionInfo();
    PropertyBag pb = new PropertyBag();
    //place all of the database connection information into the property bag
    pb.put(PropertyBagHelper.CONNINFO_DATABASE_DLL, "crdb_JavaBeans.dll");
    pb.put(PropertyBagHelper.CONNINFO_DATABASE_NAME, "CR9SampleDataSourceBean.class");
    pb.put(PropertyBagHelper.CONNINFO_SERVER_NAME, "c:/xxtestJava");
    pb.put(PropertyBagHelper.CONNINFO_SERVER_TYPE, "Java Beans Connectivity");
    //attach the property bag to the connection info object
    ci.setAttributes(pb);
    ci.setUserName("");
    ci.setPassword("");
    ci.setKind(ConnectionInfoKind.CRQE);
    //set the names of the tables to be added
    tblA.setName("getResultSet");
    //attach the tables to the connection info object
    tblA.setConnectionInfo(ci);
    //Use the Database Controller to add the two tables to the report
    rptDoc.getDatabaseController().addTable(tblA, null);
    %>
    </body>
    </html>

    Hi,
    I'm creating ad-hoc reporting utility, using CE xi. And i need to set Java Bean as data source.
    Can anyone please specify the procedure for that?
    My bean is in c:\testJava.
    I've specified <JavaBeanClassPath> and <JavaDir> in CRConfig.xml
    following is the JSP, which is giving 'Invalid Pointer' error.
    <%@page contentType="text/html"%>
    <html>
    <head><title>JAVA BEAN</title></head>
    <body>
    <%@ page import= "java.net.*, java.util.Locale,
    com.crystaldecisions.sdk.occa.report.application.ReportClientDocument,
    com.crystaldecisions.sdk.occa.report.lib.PropertyBag,
    com.crystaldecisions.sdk.occa.report.lib.Strings,
    com.crystaldecisions.sdk.occa.report.lib.PropertyBagHelper,
    com.crystaldecisions.sdk.occa.report.reportsource.IReportSource,
    com.crystaldecisions.sdk.occa.report.data.*,
    com.crystaldecisions.report.web.viewer.CrystalReportViewer"
    %>
    <%
    //Create a report document object
    ReportClientDocument rptDoc = new ReportClientDocument();
    //assume RAS service is running on the same machine as RAS SDK -
    //and attach this report to the local machine
    InetAddress ip = InetAddress.getLocalHost();
    rptDoc.setReportAppServer(ip.getHostName());
    //instead of opening an existing .rpt, create a new empty report
    rptDoc.newDocument();
    //Create two table objects
    Table tblA = new Table();
    //Create a connection info object and property bag for the connection
    ConnectionInfo ci = new ConnectionInfo();
    PropertyBag pb = new PropertyBag();
    //place all of the database connection information into the property bag
    pb.put(PropertyBagHelper.CONNINFO_DATABASE_DLL, "crdb_JavaBeans.dll");
    pb.put(PropertyBagHelper.CONNINFO_DATABASE_NAME, "CR9SampleDataSourceBean.class");
    pb.put(PropertyBagHelper.CONNINFO_SERVER_NAME, "c:/xxtestJava");
    pb.put(PropertyBagHelper.CONNINFO_SERVER_TYPE, "Java Beans Connectivity");
    //attach the property bag to the connection info object
    ci.setAttributes(pb);
    ci.setUserName("");
    ci.setPassword("");
    ci.setKind(ConnectionInfoKind.CRQE);
    //set the names of the tables to be added
    tblA.setName("getResultSet");
    //attach the tables to the connection info object
    tblA.setConnectionInfo(ci);
    //Use the Database Controller to add the two tables to the report
    rptDoc.getDatabaseController().addTable(tblA, null);
    %>
    </body>
    </html>

  • Xcelsius - Crystal Report Data Consumer connection Issues

    Sorry for the long post but i hope with the full explaination, i can get a quick answer & solution.
    Using Crystal Reports 2008 and Xcelsius 2008 Engage, SQL 2008 stored procedure.
    I have tested the Crystal Reports Data Consumer connection within the Xcelsius program, using the following steps :
    1. Create a stored procedure that returns the Continent Name and the Count of Projects within each Continent.
    2. Create a Crystal Report using the stored procedure, 2 columns in the Details section, column names in the Page Header section.
    3. Save and export this as an Excel spreadsheet.
    4. Open the Xcelsius program, new file and import spreadsheet. Column A is the Continent Name, Column B is the Count.
    5. Without altering the spreadsheet, I created a graph using the data imbedded. i.Bar Graph, series and row selections. Ii. Pie chart with row data selection. Iii.Column data as series and row selections.
    6. Created a Crystal Report Data Consumer connection using the data imbedded within then spreadsheet. The column A as the u201CRow Headersu201D & column B as the u201CDatau201D. Took quite a while to get the right combination of selected components so that the preview actually showed the data and the corresponding data labels. The Legend still hasnu2019t shown up.
    7. Save and Export as Flash (swf) file.
    8. Close Xcelsius and open Crystal Reports.
    9. Open the same report used to create the spreadsheet and Insert -> Flash, choosing the newly created swf file.
    10. Link the data displayed On the Crystal Report to the Flash file now embedded, using the Flash Expert. Have tried both with the data listed on the Report, and the data listed as the result of the stored procedure.
    11. Previewed and the Data shown on the Graph does match the data listed within the Details section of the Report.
    12. I then altered the stored procedure to add u201C1u201D to all counts, and refreshed the Crystal Report. (I cannot add new data to the underlying database/tables, due to various other folks & projects using that same database.)
    13. The listed data does change to match the changes within the procedure.
    14. The Data labels on the Graph do change to match the changes within the procedure.
    15. The Actual Displayed Data within the Graph Does Not change to match the changes within the procedure.
    I have attempted this with a pie chart, a bar and column charts with the same affect.
    I have searched the web, printed out 4 different examples on how to make this work and still it is hit or miss. I still can not get the legend to show up, either in the preview or the within the Crystal Reports. When I preview the graph before adding the Crystal Report Data Consumer connections, it does work.
    Please someone tell me, What am I missing here ? 
    Thanks in advance for your help.

    http://www.****************/Tutorials/BI/Xcelsius/Index.htm
    http://www.resultdata.com/Company/News/Newsletter/2008/aug/Articles/Xcelsius/Using%20the%20Xcelsius%20Crystal%20Report%20Data%20Consumer.htm
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/10161e25-c158-2c10-3086-ad502098b36b?QuickLink=index&overridelayout=true
    http://codesforprogrammers.blogspot.com/search/label/How%20to%20suppress%20blank%20row(s)%20in%20detail%20section%20of%20the%20report%3F
    http://www.businessobjects.com/pdf/product/catalog/crystalreports/cr_xc_integration.pdf

  • SAP Crystal Reports data source connection problem using sap business one

    Hi,
    I m facing a problem regarding: SAP Crystal Reports data source connection problem using sap business one
    I am trying to create a Crystal report but when I try to configure a new connection it does not work.
    I select Sap Business One data source and try to complete the information required to connection but it does not list my companies databases, what is the problem?
    Our Current SAP related software details are as follows:
    OS: Windows Server 2008
    SAP B1 Version: SAP B1 9 (902001) Patch 9
    SAP Crystal Report Version: 14.0.4.738 RTM
    Database: MS SQL Server 2008 R2
    I have also added some screenshots of the issues.
    Please have a look and let me know if you have any questions or any further clarifications.
    I m eagerly waiting for a quick and positive reply.

    Hi,
    There is problem with SAP Business One date source.
    I had faced same problem, I used OLEDB Data-source, and it worked fine for me.
    So, try to use OLEDB.
    Regards,
    Amrut Sabnis.

  • Barcode not displaying/printing in Crystal Report java viewer

    We have written a Crystal report (in Developer XI release 2 with service pack 4 installed) which produces barcode labels.  The barcodes are Code 39 barcodes and are generated by printing the string \*data_field\* in a Code 39 barcode font.  The asterisk is the character used for the Code 39 start/stop sequence in the barcode font.
    In Developer everything works fine and prints out and scans correctly. When we make the report available to our end users in the Crystal Reports java viewer all we get where the barcode should appear is white space on screen or when we print.  (The rest of the report behaves correctly). 
    We have tried a few things and have found that if both asterisks or the starting or ending asterisk is left in a different font (i.e. not the barcode font) then the rest of the string displays and prints in the barcode font.  (unfortunately without bot asterisks you don't get a scanable barcode).
    Has anyone got any suggestions on how to fix this?
    (In case it might be relevant the barcode font we are using is this one: http://www.barcodesinc.com/free-barcode-font/)
    Thanks
    Trevor

    Hello Ludek,
                    I have found that the issue is caused by the bold attributes of my field.
                    You can try the following and you should encounter the same issue:
                                    - Create a Report
                                    - Create a formula with many characters
                                    - Put you field in Times New Roman bold 8.
                    The following Font Size in  Times New Roman are in issue: 5 u2013 8 u2013 11- 14
                    The following Font Size in  Arial are in issue: 8 u2013 11 u2013 12 u2013 14
    Thank you.
    Charles
    Edited by: Charles Gagnon on May 2, 2011 5:38 PM

  • Crystal Report Java Reporting Component Query

    Hi,
    If I am using the Crystal Report Java Reporting Component, do I need any other Crystal Report software to be installed during run time?
    Thanks.

    Hi Ron,
    the desired guides can be found here:
    http://help.sap.com/javadocs/cr/xir2/index.html
    http://devlibrary.businessobjects.com/businessobjectsxi/en/en/JRC_SDK/default.htm
    The reason why you might not find the guide is as of Crystal Reports 2008 the JRC was integrated into the Crystal Reports for Ecplise package and is not availble separately anymore. See also the What' new-guide of Crystal Reports 2008 here:
    http://87.229.26.143/download/crystal/doc/cr_2008_whats_new.pdf
    Regards,
    Harald

  • Defining multiple Crystal Report Data Consumer connections?

    I am creating a Xcelsius object that uses data from Crystal Reports.
    To do that, I define Crystal Report Data Consumer connection. With this I can use Crystal to connect to the data source, create table of data (crosstab) and pass it to the flash object.
    But I can only define one such connection. Why can't I define more that one?
    I would like to pass two different sets of data and use them in different parts of the dashboard. Trying to get all the data into a single crosstab may not be possible.
    Is there another way to do this?
    Thanks.
    Tim

    I have found that I can pass any number of tables of data from CR to XC using flashvars, either XML or CSV.
    XML is easy, but you chew up 17 chars (64 bytes) in XML chars per column marker. And with a 64KB string max, you're left with at most 1K data points, and that's with no data!
    CSV is old school XC 4.5, converting an array in to a row-order string, not nearly as convenient as a Crystal Report Data Consumers, but it works and you have only a 4 byte overhead per column (the comma.)
    Converting cross-tabs to strings, though, can be a bear because cross-tabs are evaluated column-order and you may not know how many columns you are going to have.
    So use the Crystal Reports Data Consumer for the intricate cross-tab and CSV flashvars for the other tables.
    And then hope it all loads in less than 7 seconds.
    Tim

  • Java Bean Connectivity and Closing Connections (XI 3.0)

    Hi guys,
    We have existing Java Beans that we would like to use with Crystal Reports. Our current Java beans return a disconnected GridModel and explicitly close the connection immediately after so that they can be returned to the connection pool (Oracle).
    Once we modified these beans to return ResultSets we found that closing the connection also closes all the associated ResultSets and Statements.
    What is the best practice here?
    Modify the Java bean to close the connection in the finally block?
    Will Crystal clean up after itself?
    I also see there is something called a CachedRowSet which is disconnected:
    http://java.sun.com/j2se/1.5.0/docs/api/javax/sql/rowset/CachedRowSet.html
    Is this supported by Crystal?
    Thanks,
    Kevin D Lee =)

    Hello Kevin,
    Enterprise XI 3.0 CRConfig.xml points to Java JRE 1.5 provided with the install, so you should be ok with the CachedRowSet. 
    It's used by other customers for disconnected operation.
    Since you're going to Oracle, you'd likely encounter issues mapping Oracle fields to POJO property types.
    Furthermore, POJO Factory libraries that were shipped with Crystal Reports XI Release 2 aren't shipped with Enterprise XI 3.0, so you'd not find that an out-of-the-box option. 
    Another alternative to CachedRowSet is to define callback method in your JavaBeans class that Crystal will call when it's done with the data source. 
    This has been implemented in XI 3.0 (track ADAPT00877915) - excerpt from the track note:
    <JavaBeans>
        <CacheRowSetSize>100</CacheRowSetSize>
         <JavaBeansClassPath>c:\javabeans\</JavaBeansClassPath>
         <CallBackFunction>CrystalReportsLogoff</CallBackFunction>
    </JavaBeans>
          Customer can configuration the <CallBackFunction/> to let CR know
          which function should be invoked when loging off.
    Advantage of CachedRowSet is that you can immediately close it after you've read all the data, disadvantage would be the default implementation stores all data in memory.
    Advantage of the callback method is that it would use the JavaBean you've supplied (and not load all data immediately in memory), but callback won't be called immediately, but only after the report is done with.
    Sincerely,
    Ted Ueda

  • Problems with Java-Beans-Connectivity

    Post Author: dweise
    CA Forum: JAVA
    I'm new in crystal reports and try to connect a sample bean class to the java beans conectivity. Problem is that i only get JavaServerType=JavaBeans|JavaBeanName= for selection. Can anyone tell me what the problem is with my configuration. I followed the steps of the POJOTutorial.doc and the Configuration-Infos of the java_beans_connectivity.My System is w2k professional and for Crystal Reports i use the developer installation with Product Version 11.5.0.313 Thanks by now

    Post Author: pabhijit
    CA Forum: JAVA
    Could you send me the detailed steps and what point you are stucked.? I recently did something simillar and may be I would be able to help.

  • Crystal Reports 2011 cannot connect to Salesforce - Unexpected Error

    I am unable to connect to salesforce from Cystal Reports 2011. I get a dialogue saying
    Failed to Open the connection
    Details:Unexpected Error
    -I have increased the JVMMaxHeap in CRCONFIG.XML to 512000000
    -I have appended the security token to the password
    -I am not going through a proxy server
    I am able to login successfully to the salesforce account using Crystal Reports 2008.
    In order to narrow the issue down and exclude any issues related to custom objects on our corporate acount I created a clean , out of the box dev account on salesforce. Again I can connect to it with 2008 but not 2011 on whcih I get the same error
    I can verify that a login succesfully occured in salesforce, the login in history shows the connections are being made.
    In order to reproduce simply create a salesforce dev account, install CR 2011 SP02 and attempt to create a database connection to the salesforce account
    Crystal Reports Log is as follows
    011-9-30-15-14-27     10176     .\xml.cpp     112     Leaving DllMain()      20
    2011-9-30-15-14-27     10176     .\jdbc.cpp     172     Leaving DllMain()      20
    2011-9-30-15-14-27     10176     .\crdb_sforce.cpp     127     Leaving DllMain()      20
    2011-9-30-15-14-27     10176     .\javabeans.cpp     113     In DllMain()      20
    2011-9-30-15-14-27     10176     .\javabeans.cpp     136     Leaving DllMain()      20
    2011-9-30-15-14-27     10176     .\xml.cpp     112     Leaving DllMain()      20
    2011-9-30-15-14-27     10176     .\jdbc.cpp     172     Leaving DllMain()      20
    2011-9-30-15-14-27     10176     .\crdb_sforce.cpp     127     Leaving DllMain()      20
    2011-9-30-15-14-27     10176     .\javabeans.cpp     113     In DllMain()      20
    2011-9-30-15-14-27     10176     .\javabeans.cpp     136     Leaving DllMain()      20
    2011-9-30-15-14-32     10176     .\crdb_sforce.cpp     464     The ErrorArray exception thrown from the function DbLogonServer()     1
    2011-9-30-15-14-32     10176     .\crdb_sforce.cpp     661     In DbFreeLogonInfo()     20
    2011-9-30-15-14-32     10176     .\crdb_sforce.cpp     667     Leaving DbFreeLogonInfo()     20
    2011-9-30-15-14-32     10176     .\crdb_sforce.cpp     2567     In DbFreeErrorInfo()     20
    2011-9-30-15-14-32     10176     .\crdb_sforce.cpp     2570     Leaving DbFreeErrorInfo()     20
    2011-9-30-15-14-32     10176     ..\cserrinf.cpp     523     Error 31837 (..\..\src\data\queryenghelp.cpp, 554): Failed to open the connection.: Unexpected error     1
    2011-9-30-15-14-51     10176     .\javabeans.cpp     113     In DllMain()      20
    2011-9-30-15-14-51     10176     .\javabeans.cpp     136     Leaving DllMain()      20
    2011-9-30-15-14-51     10176     .\crdb_sforce.cpp     127     Leaving DllMain()      20
    Any other ideas on what I can try here?

    Hi Vitaly
    I did some further playing based on the information you provided; that it should not differ between 2008 and 2011. I currently have both Crystal 2008 SP3 and 2011 SP2 installed so I went through and looked at the CRConfig files for both applications and could not see any major differences other then where they configure as the JVM and classpath.
    I have managed to get Crystal 2011 to connect to salesforce after making one small edit to the 2011 CRConfig, changing the classpath to use the 2008 version of CRDBSForceServer.jar
    I removed the entry within classpath for the CR2011 CRDBSForceServer.jar
    F:\Program Files (x86)\SAP BusinessObjects 4
    SAP BusinessObjects Enterprise XI 4.0\java/lib/CRDBSForceServer.jar;
    and replaced it to point at the 2008 version
    F:\Program Files (x86)\Business Objects\Common\4.0\java/lib/CRDBSForceServer.jar;
    When I do this I am able to establish a connection to the salesforce DB without any other changes in the CRConfig. This does not solve my problem as I am still unable to run a deployed version of the report as I assume the latest 2011 version of the JAR is also part of the BO4 server and is getting the same connection problem on the server side but this may narrow it down enough for you to be able to provide further clarification on what the issue is.
    thanks,
    Brendan

  • Crystal Reports - Oracle server connection

    Hi Guys,
    I'm back to struggling with Crystal Reports XI Release 2.
    I'm trying to display a report that retrieves a set of data from an oracle database.
    I've got the following scenarios:
    - If I build a report using a JDBC connection and setting its properties from the crystal reports designer It works perfectly
    - If i build the same report using a connection type called Oracle Server and check the option SAVE DATA WITH REPORT works fine
    - The failure scenario is, creating the same report by using an Oracle server connection and disabling the SAVE DATA WITH REPORT option. I get the error message: Database logon failed. Database Vendor Error Code: 17002
    I've set a JDNI datasource in Tomcat already, and still getting the same error, as well as including this tag in my application web.xml
    <resource-ref>
    <description>Oracle Datasource example</description>
    <res-ref-name>oraclevt</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
    </resource-ref>
    Please, let me know if you have any hint regarding this issue as I've run out of ideas to sort it out.
    Thank you.
    Esteban.

    Hey evnafets how r u doing? Thanks very much for your reply.
    I checked the TNSName and looks fine, and it does match the JNDI name I created through the Tomcat Administration Tool.
    I tested the JNDI connection a couple of days ago and it didn't come through, it keeps giving me an error, even though I've verified everything is properly set and configured. The error message is:
    org.apache.commons.dbcp.SQLNestedException: Cannot create JDBC driver of class '' for connect URL 'null'
    This is the snipped code, si quite simple actually.
    System.out.println("Starting initial context");
                   Context initCtx = new InitialContext();
                   Context envCtx = (Context) initCtx.lookup("java:comp/env");
                   DataSource ds = (DataSource)
                   envCtx.lookup("jdbc/OFIC09FL");
                   Connection conn = ds.getConnection();
                   //... use this connection to access the database ...
                   conn.close();
    I've googled this issue and have not found a helpful solution. I guess this all the Crystal connection issue, don't you think? Any hints to make the jsp-jndi test work?
    Regards,
    Esteban.

  • Crystal report - and oracle connections

    hi to everyone
    i installed client  of oracle
    and after that - the crystal report 2008 sp3
    when i open new (blank page) - and looking for a oracle connection
    its look like he doesnt exist.
    please if someone know why i cant see the connection to oracle/
    yossi bar

    Hello,
    CR looks for the Oracle \bin folder in the PATH statement. If it can't find it then the option to select Oracle native driver will not show.
    Thank you
    Don

  • Crystal Reports, SAP B1 - connect OINV, OPCH (A/R Invoice, A/P Invoice)

    What I need to do is to connect the two SAP B1 v9.0 tables listed above (A/P Invoice OINV, and A/R Invoice OPCH) in a Crystal report WITHOUT SQL.  How do you connect these tables?  Purpose of report is for sales commissions.  Existing customer report combines SAP B1 data from these tables but is done manually in Excel.  Attempting to create report in Crystal for automation purposes.  Will also include INV1 and PCH1 for detailed line item marketing document information.  Thanks for any assistance.

    Since the picture doesn't show what is actually linked to what, here is a written description of the links I used between tables (with 2 alternates in case I'm wrong):
    OPRJ.PrjCode left join INV1.Project
    INV1.BaseEntry left join RDR1.DocEntry
    INV1.BaseLine left join RDR1.LineNumber
    INV1.DocEntry left join OINV.DocEntry
    INV1.ObjType left join OINV.ObjType
    INV1.ItemCode inner join OITM.ItemCode
    OINV.CardCode inner join OCRD.CardCode
    OINV.SlpCode left join OSLP.SlpCode
    OITM.ItmsGrpCod left join OITB.ItmsGrpCod
    RDR1.DocEntry left join ORDR.DocEntry
    RDR1.DocEntry left join DLN1.BaseEntry
    RDR1.LineNum left join DLN1.LineNum (s/b BaseLine?)
    RDR1.DocEntry left joing POR1.BaseEntry
    RDR1.LineNum left join POR1.LineNum (s/b BaseLine?)
    RDR1.ObjType left join ORDR.ObjType
    POR1.DocEntry left join OPOR.DocEntry
    POR1.ObjType left join OPOR.ObjType
    POR1.DocEntry left join PCH1.BaseEntry
    POR1.LineNum left join PCH1.BaseLine
    PCH1.DocEntry left join OPCH.DocEntry
    PCH1.ObjType left join OPCH.ObjType
    DLN1.DocEntry left join ODLN.DocEntry
    DLN1.ObjType left join ODLN.ObjType

  • Ports Crystal Reports uses when Connecting to a Universe as a Data Source

    I have a couple of Crystal Reports that use universes as a data source.  On my Windows 7 machine I am getting an error message that "Logon Failed", rather opening and running the same report on my Windows XP machine, I get the results from the universe as expected.  I have tried multiple universes that report against different databases (Oracle, SQL Server, Sybase, etc) and I am getting the same vague error message on my Windows 7 machine with Crystal Reports 12.3.0.601. 
    Can someone please tell me what ports are being used within Crystal Reports (other than 6400) when connecting to the CMS and pulling back data from a universe?  The odd thing, is that I can connect to the CMS, see the universes that I have permissions too and even see the objects within the universe, but I cannot view the results.  This is a pretty high priority for us, so I would appreciate any feedback possible.

    Hello,
    "Seems contrary to the concept of isolating users (in this case designers) from connection details. I can only be hopeful that report users will not also have to have connections configured on the local workstations to view these reports ;-)"
    As long as you use/set Saved Data with the reports then they don't need the client installed. If they hit Refresh to update the data then obviously they need to be able to connect to the data source, how else are they going to get it.
    Think about it, you sit down to write a report off of a database you don't have access to? How are you going to create a report....
    If you planning on sending out reports for viewing only then export them to PDF or some other type, then DB connections are not an issue, the PDF's are for viewing only.
    Another concept is DB Security. Using NT Authentication or DB Authentication unless that user hitting the refresh button has access to the DB it won't prompt for log on info or if they don't provide the correct log on info they can't see new data.
    It's all about security, CR does not save the Password in the RPT file, if we did anyone could get it and hack your database.
    Not sure what your post has to do with Ports?
    If you have questions then please post, in this forum we assume post that are answered are closed.
    Don

Maybe you are looking for