Crystal Reports 2008 connecting to R/3

I have a general question for Crystal Reports 2008 for use with R/3.
Crystal Reports 2008 with SAP/R3 Enterprise 4.7
I installed a trial version of Crystal Reports 2008 and connected it to the R/3 instance using a oracle id which has admin rights so the session can see all of R/3 db including 000 client. It can see all tables within the database.
To deploy Crystal Reporting for an R/3 installation - is it advisable to connect directly to db?  how do you maintain proper data element access?  Do you create views for a oracle user id, or is there a delivered product or method for allowing user access using some other type of security that limits table access to say finance tables?
John

Check our site for more info but in general CR fully respects all DB security, if the user does not have permissions on the table used in the report the report will fail to run.

Similar Messages

  • Crystal Reports 2008 connecting to Crystal Server 2011

    Hello SAP Experts,
    I am new with the Crystal Client/Server platform and the only knowledge I have with the infrastructure is from the Crystal Server 2011 documentation I have pulled from SAP's website.  I have looked at a lot of online resources but very few have the answers that I need.
    I built an instance of Crystal Server 2011 running on Windows Server 2008 R2.  Our clients are currently using Crystal Reports 2008 client where they connect directly to a SQL 2008 Data Warehouse to pull reports.
    For security reasons, they want to implement Crystal Server 2011 to connect to the SQL 2008 Data Warehouse as a single point of entry, instead of having several Crystal Reports 2008 clients connecting to the SQL Data Warehouse.
    The idea is to have the clients connect to the Crystal Server; the Crystal Server will then connect to the SQL Data Warehouse so clients can pull reports from it.
    My questions are:
    1.  Is it possible to connect a Crystal Reports 2008 client to Crystal Server 2011?  If so, how do I accomplish this?
    2.  Do I need to create a Universe in order for the Crystal clients to pull data/reports from the SQL 2008 Data Warehouse?  Or is there a way I can create a connection without a Universe?
    Any help offered is greatly appreciated.
    Thank you.

    Check our site for more info but in general CR fully respects all DB security, if the user does not have permissions on the table used in the report the report will fail to run.

  • *Crystal Reports 2008 connection to oracle 11g database error IM003*

    Hi ,
    I am getting the following error when connecting to Oracle 11 g database using Crystal Reports 2008.
    _Logon Failed:Details: IM003:Specified driver could not be loaded due to system error 127 ( Oracle in OraClient11g).
    Datebase Vendor Code:160.
    The Login and Pw that I am using are correct.
    *Could you please let me know any steps that i need to do to resolve this problem.
    Thanks!*

    Hello,
    I haven't seen that error in years... There was a version of Oracles client that did not put the client install into the PATH statement.
    Add the Oracle ...\Bin folder to your System Environment variables and then it should work.
    Thank you
    Don

  • Crystal reports 2008 connection to universe

    Hi ,
    I am trying to create Crystal Reports using universe as a data source. I am able to logon BOE, select universe and then select the objects that I need to build a query. As soon as I click OK button I am getting "Logon Failed".
    If i use SAP BW MDX Query as the connection it works fine.
    i am able to run a webi report based on the same universe.
    we are using BO XI 3.1 sp2
    thanks

    Hi BO-Experts,
    I have exactly the same problem. However, it seems to be unrelated to the authorizations. The connection works perfectly with one of the sample universes (efashion) which has exactly the same authorizations:
    administrator and universe designer-user have full rights, all has no rights
    I am a comlete novice in BO and very grateful for suggestions.
    Thanks,
    Claudia

  • Crystal Reports 2008 - connection info in code not recognized

    Application is vb.net using dynamic cascading parms and has been runnning fine in Crystal XI using VS2005.  We upgraded to VS2008 and CR 2008 for compatibility with Windows 7.  Now all reports do not recognize the data connection assignment that takes place in the code (they revert to the connection used at design time). 
    We set the connection (ci) which is later referenced as myConnectionInfo
              With ci
                    .ServerName =
                    .UserID =
                    .Password =
                    .DatabaseName =
                    .IntegratedSecurity = False
                End With
    And loop thru the tables.
                For Each myTable As CrystalDecisions.CrystalReports.Engine.Table In myTables     
                    Dim myTableLogonInfo As TableLogOnInfo = myTable.LogOnInfo
                    myTableLogonInfo.ConnectionInfo = myConnectionInfo
                    myTable.ApplyLogOnInfo(myTableLogonInfo)               
                Next
    The connection passes a TestConnectivity test.  But rather than see the parameter form, a generic form displays with the ServerName filled and requests login info.  If you do enter that manually(not normal),  the CR parm form displays but dynamic parms do not have their combo box. 
    The report will run fine against the default data connection.  The problem is the report no longer recognizes the coded connection change which is critical to reporting the proper information.

    Hi Ludek,
    I too am facing the same problem. My environment detail is CR2008/VS2008 (Note I have no service pack installed yet). If I have a report with no dynamic parameter the report works fine with connection information provided in code but with dynamic parameter its not working even after the workaround you specified. I am getting the error
    CrystalDecisions.CrystalReports.Engine.InternalException - Failed to retrieve data from the database
    Here is my code:
    protected void logonReport(string dbServerName, string dbName,
                string dbUserId, string dbPwd)
                ConnectionInfo connInfo = null;
                TableLogOnInfo tblLogonInfo = null;
                Tables tbls = null;
                try
                    connInfo = new ConnectionInfo();
                    connInfo.ServerName = dbServerName;
                    connInfo.DatabaseName = dbName;          //not used for Oracle
                    connInfo.UserID = dbUserId;
                    connInfo.Password = dbPwd;
                    tbls = this._crReport.Database.Tables;
                    foreach (Table tbl in tbls)
                        tblLogonInfo = tbl.LogOnInfo;
                        tblLogonInfo.ConnectionInfo = connInfo;
                        tbl.ApplyLogOnInfo(tblLogonInfo);
                    this._crReport.DataSourceConnections[0].SetConnection(dbServerName, dbName, dbUserId, dbPwd);
                catch (Exception ex)
                    throw ex;
                finally
                    if (connInfo != null) connInfo = null;
    Thanks
    Kajal

  • Connect to SAP R/3 using Crystal Reports 2008

    How to connect to SAP R/3 using Crystal Reports 2008 from Crystal Designer?

    thanks, I can get the data from SAP R/3 to crystal report.
    but still dont know how to do the second question mentioned in previous message:
    once the table I want to get the data from is a cluster, and have found the mapping data dictionary of this data cluster, which displayed in crystal report connection as well, however, the data is not what I wanted.

  • Crystal Reports 2008 - Eclipse and JNDI connection.

    I am evaluting Crystal Reports 2008 .
    I want to use JNDI connection that is defined within my app server by Crystal reports so that I'll have better control of the properties defined.
    How do I set up JNDI data source connection in Crystal Reports 2008 ?
    I defined the following parameters u2026
                    JNDI Provider URL : jnp://localhost:1099
                    Initla Context as :  org.jnp.interfaces.NamingContextFactory
    And user name / password  as defined in JBoss setup
    I also have  u201Cjboss\client\jbossall-client.jaru201D in the classpath .     
    But I am getting Cannot instantiate class exception .
    Thanks in Advance for the help.

    Mr. Ted, We can expose JNDI connections from the appserver. Infact the database connection pool resoures are exposed as JNDI resources, JMS factory and connections are exposed as JNDI etc.
    In fact, JNDI is a means of securely exposing the resources managed by the app server to be used by trusted clients.
    We have achieved this on weblogic (8.1 - JDK 1.4.2) but we would like to replicate the same in glassfish app server ver 3.1.2 and would require the proper factory placed inside the rpt as well as the CRConfig.xml.
    Otherwise, (if we are using conventional URL string) when we ship the rpt files, we need to place this only as localhost. This mandates the presence of rpt files to be in the same server as database server and database. We want to avaoid this by creating a JNDI and use that database access resource inside the rpt files.

  • Using Crystal Report Data Connection in Xcelcius 2008

    The documentation does not explain how data to populate row, column and details is passed to SWF.
    Can some-one please point how CR Data Connection when created in Xcelcius 2008 is used in Crystal Report Design time ? Is it through Flash variables? Basically more details are needed for "when setup properly" clause. How to map Crystal Reports Fields to Xcelcius Definitions.
    Thanks
    Harish Tejwani
    From Doc:
    "With the release of Crystal Reports 2008, it is now possible to embed an Xcelsius-generated SWF file into a Crystal Report and have the SWF consume data from that report. When set up properly, refreshing the data in your Crystal Report will update the embedded SWF.
    To configure your Xcelsius SWF to consume data from its Crystal Rport source data, you must open the Data Manager in Xcelsius and add a new Crystal Report Data Consumer connection. After adding the connection, bind the following ranges to your spreadsheet:  Row Headers, Column Headers, Data"
    "Using Crystal Reports 2008, embed the SWF file into the Crystal Report source data file. When designing your Crystal Report, you will determine what fields/data populate the Row Headers, Comumn Headers, and Data ranges that were designated in your Xcelsius SWF. When set up properly, refereshing your Crystal Report will also refresh the data being sent to and consumed by the embedded SWF. See"

    <div class="content">
    <p>
    Please check the following post to see if there is a solution to the issue you are experiencing:
    </p>
    <p>
    <a href="/node/19014"><span style="color: #0063af">http://diamond.businessobjects.com/node/19014</span></a>
    </p>
    </div>

  • Unable to Connect Crystal Reports 2008

    Hii  All,
       Plz help...I am unable to connect to my Crystal Reports 2008 software with SAP Buiseness one.
    When i create new connection from the Database Exoert ->Selected SAP Buiseness One->After Selecting ->Asking Creditintials like License server Server Type,  But when it comes to Company Databae>Drop down the company i am not getting the company list??
    Please let me know the Problem and Solution
    Thanks & Regards
    Cherry

    Good days,
    Because you enter invalid SQL Server authentication.
    Please enter your :
    License Server : localhost
    Database Server Type : (your sql server version)
    Database Server : (your database connection) eg : localhost\SQLEXPRESS
    Click the DOT( . ) button.
    Database User ID : (your sql ID) eg : sa
    Database Password : (your sql Password) eg: p@ssw0rd
    Then click connect server.
    If Successful then
    Company Database : eg : SBODemoUs
    Username : manager
    Password : manager
    Else
    Goto  (Please enter your
    End If

  • Crystal Reports 2008 (v12.3.1): connectivity to OLAP (Essbase)

    Hello,
    how do I connect to Essbase 9.3.1 cubes? By browsing support site I've got an impression that Essbase 9.3 is supported, but when I try to create a connection from Crystal Reports 2008 (v12.3.1) I can only choose Essbase 7.0 or Essbase 7.1 as a data source. Searching available Crystal downloads did not help either - the last available download for essbase support is dated 2003...
    So, could someone let me know if 9.3.1 is really supported and where to get the needed piece of software (driver) to make it happen.
    thanks and regards
    Z.

    Hi,
    As far as i know, the supported version of Essbase 9.3 is of client type and Essbase 7.1 is of server type.
    So, you can use the Essbase 9.3 as a client to connect to the 7.1 Essbase server.
    For more information you can refer the below link:
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/901677cb-8dc0-2c10-c395-c2eadef0835e?quicklink=index&overridelayout=true
    You can refer the "Supported Reporting Data Sources" section.
    -Noor.

  • How to connect Crystal Report 2008 server with SAP BI/BW server

    Hi ,
    I have downloaded the 60 Days trial version of  "Crystal Report 2008 Server' from sap site to my machine. Now i would like to connect this Crystal server with SAP BI and want to use the data of BI Bex queries and Infoproviders.
    Can you please guide me how to connect them?
    Aslo how can i get the free trial version of Intergration kit ..here please provide me the entire full path of site(to download the Integration Kit).....
    Any inputs would be appreciated!!
    Regards,
    Naween

    Hi Michelle,
    Older versions of CR would allow you to run CR from a network share point but you still had to have a license for each user. Current versions of CR do not allow you to do this any more, possibly using a Citrix or Terminal Server would allow this but you still need a license for each user. Older versions had a Network install option.
    And as suggested exporting to PDF or some other format is fine for end users viewing your output. They are not using CR but Adobe Reader or Word etc. to view the reports, they just can't use the Designer to view the reports.
    Hope this is clear now?
    Thank you
    Don

  • Connecting Crystal Report 2008 to SAP SRM

    Hi all,
    I have a customer that would like to use Crystal Reports 2008 to report SAP SRM data.  Is this possible?  We already have the integration kit. 
    What steps must I take?
    I know to connect Crystal to SAP CRM all I have to do is import the ERP transports on to the SAP CRM application server.  Is the process the same with SRM?
    Please advise.
    Thank you in advance for your help.
    Jenny

    Hi Jenny,
    For now I'll move this post to the Integration kit forum. Some of our engineers are getting trained on connecting SAP datasources so for now your best place to get an answer is likely the Integration kit forum.
    Thank you
    Don

  • Crystal Report 2008 IDE - JDBC connection issue

    Hello,
    I'm using Crystal Report 2008 IDE. I've created a report that goes against Oracle 11G database.
    I have installed Oracle Instant Client (32 bit) 11.2.0.2.0.
    I can establish and Oracle connection via the IDE.
    When I attempt to establish a JDBC connection through the database expert wizard, I keep getting JDBC driver not found message.
    I've updated my CRconfig.xml specifically the classpath to point to where my ojdbc5.jar file is located.
    What else do i need to do in order to establish a JDBC connection?

    Hi,
    First of all what is the service pack that you are using for Crystal Reports 2008, because Oracle 11g R2 is supported from Service pack 4 onwards in CR 2008.
    For JDBC connection with CR 2008 you can have a look at this link might this would help you:
    http://www.sheroz.com/articles/crystal-reports-2008-mysql-and-oracle-databases
    Regards,
    Kuldeep G

  • Crystal Report 2008 [CR Developer] version - connectivity issue

    Hi Folks,
    I am not sure this is right forum to post my question, after a long research I found this forum. Year ago I developed proto type reports in Crystal 11.5 version and integrated with Power Builder 11.5 to our client. It took almost a year to get approval from the client.
    Now, I have installed Crystal Report 2008 [CR Developer] version and I am not able to call previously developed reports from power builder 11.5
    Power Builder code to invoke crystal reports:
    g_ole_crx_application = CREATE OLEobject
    gi_return = g_ole_crx_application.ConnectToNewObject('CrystalRuntime.Application.11')
    here gi_return returning -2.
    Questions:
    What is CR Developer version# 12.0.0.683 ?
    Do I need to install Crystal Reprot 2008 server in order to integrated with Power Builder 11.5?
    Should I installed any service packs? If yes, please let me know the path
    What are the runtime dll's should I used to integrate with PB11.5? other than following
    craxdrt.dll CRDesigner.dll CRDesignerCtrl.dll crqe.dll CRViewer.dll
    Please let me know the answers.
    Thanks
    Indra

    Hi Indra,
    Moved your post to the Legacy SDK forum.
    CR 2008 no longer ships the RDC, CR XI R2 is the last version that included the craxdrt.dll. The RDC components were deprecated and no longer available.
    If you want to upgrade you now must use the CR .NET Assemblies.
    Thank you
    Don

  • Not able to get the tables in crystal report 2008

    Hi,
    I am using crystal report 2008 and trying to connect MS SQL using OLE DB (ADO) connection. After giving all DB credentials data base tables are not appearing in the connection. how to get the tables for selection in crystal report 2008.
    Regards,
    Sree

    In the CR Designer, select the connection and press the right mouse button. Select Options in the context menu and check if there is an entry in the Table name fiel. Maybe you have a placeholder there that does not match the names of the tables in the database. Just remove it, close the window by pressing OK and refresh the connection browser (press F5). Unfold the connection again and check if you can see the tables now.
    Regards,
    Stratos

Maybe you are looking for

  • After Update 2006-001 no file or printer sharing?

    After installing Security Update 2006-001 Mac OS X 10.4.5 & iTunes 6.0.4, I'm having an issue. iTunes is shared over my network but I'm not showing anything in Finder>Network. Most importantly, file and printer sharing are not working. My G5 doesn't

  • Cover Flow dose not show album artwork.

    In cover flow the album artwork dose not show up i right clicked it and said get album but nothing happens i have artwork but not in cover flow.

  • Session problem in one out of two jsp

    Dear java guru's I have got jsp page A.jsp.User select few option and this jsp calls B.servlet this takes user input and pass to C.bean which returns vector to B.servlet This servlet put vector in session and dispatch to new jsp D.jsp which calls E.j

  • I am unable to find out how much and what type RAM is supported by HP ( DV6610eo ) laptop

    Hi i want to buy more RAM to my laptop but i am unsure if the motherboard will support 2GB or 4GB and what type, i think it'sDDR2 PC5300 SO DIMM 200pin but again i am not sure, bellow are the details from the service tag, i would be grateful if some

  • BI query Analyzer

    Hi,   BI query analyzer is posing problem when connecting to 2004srelease patch 700 revision 259   when executing  in citrix as it is redirecting to N:\cache\tmp....... if we are doing Execution after   3 or 4 attempts this error occurs     its using