Crystal Reports and Sharepoint Access Services Connectivity

How do I establish a connection between Crystal Reports and an access database hosted on a Sharepoint Access Services site? I've searched the forums but can't find any guidance.
Thanks in advance,
Angela

Hi Angela,
Through an ODBC connection is about the only way, how to configure it would be up to Share Points help file to describe if it supports it.
Don

Similar Messages

  • Crystal reports and web services

    Do crystal report and xcelcius need webservices?

    No, they don't 'need' web services.  Xcelsius uses Excel for it's data and you can use web services to load the Excel model with data, but it is not required.  CR has a variety of data connection options.
    Web services is a popular method of retrieving the most up-to-date data, but is not a requirement.
    Hope that helps,
    Jake

  • Crystal Reports and Service Desk

    I notice there is some integration between Crystal Report and Service Desk, but I need some assistance on how to get started to create Crystal Reports that will view the Service Desk data.
    Is there any documentationon this functionality?
    Thanks
    Simon

    .

  • Crystal Reports and SAP BW Connectivity for OLAP

    Hello,
    Anybody created Crystal reports off SAP BW Infocubes? For some reason I am not able to create or configure BW sever connection. I installed Crystal reports and SAP enhance cd for OLAP.
    Thanks
    Tom

    Hello,
    I was able to connect and create Crystal report based on Bex query..no connection problem there. But, reporting directly off infocubes, the server type "SAP Business Information Warehouse"(add server option in OLAP connection Browser) not showing up in list of values.
    1. I released Info query for PLE DB for OLAP as per 
       user's guide.
    2. The manual says you have to configure SAP BW server  
       log on? For Bex query(Crystal) all available servers
       automatically available
    Thanks

  • Connection between Crystal Report and SAP ECC

    Hi. can you help me please.
    I'm testing the connection between Crystal Report and SAP ECC. I tried using the tables,
    but by making the links between foreign keys does not bring data. The other way I tried was using an ABAP function module,
    but using this way, Crystal will only works like a Presentation Layer because all the work was did it in ABAP;
    besides that shows the limitation that I can not pass as input a table.
    what is the best practice for reporting on SAP ECC using Crystal Report?
    Thanks.

    Hi,
    Crystal Reports is able to leverage tables, ABAP functions, SAP query and InfoSets.
    what is the issue when using the tables ?
    ingo

  • Crystal Reports and Adobe Flex Connectivity

    Good evening fellow Crystal Reports and SAP experts.
    Im developing a small application in Adobe Flex that after feeding some extra data, allows me to call a Crystal Reports Print Layout that feeds its information from SAP Business One. Does anyone know if its possible to call the print layout directly from my application in Adobe Flex like SAP does for printing?
    If so, could anyone help me with the SDK and code needed?
    I thank everyone in advance.

    Hello,
    Try the Business 1 forum. I've never seen anyone who tried using all 3 parts at one time.
    Thank you
    Don
    PS - sorry I can't move your post.

  • Crystal Reports and SAP BW 7

    Hi,
    I have been reading these posts and got bit confused.
    What do I need to integrate Crystal Reports and SAP BW 7 without BOE. My company has SAP NW license and Crystal Reports Enterprise license and plan to use CR for formatted reporting. Do I still need integration kit into SAP BW in order to create crystal reports on BEx queries and save into BW and view through the SAP NW Portal?
    Or am I fine without integration kit?
    many thanks

    Based on the below Ingo's blog in BI expert we would only need the following:
    You must install Crystal Reports Designer on the client
    You must install the client components for the BusinessObjects Integration Kit for SAP Solutions
    You must install an SAP front end with the SAP NetWeaver BI 7.X Add-On and the SAP BW 3.5 Add-On components on the client when using the connectivity on top of SAP NetWeaver BI
    Users need to have the necessary authorizations in the SAP system. For SAP NetWeaver BI, this means that users require the authorizations to view and execute BI queries. There are additional authorizations for SAP ERP access in authorizations class ZSSI that are specific to the connectivity that BusinessObjects provides.
    You must release the BI queries that you want to use with Crystal Reports for external access. You can set this property in the BI Query Designer.
    So, no mention of BOE.
    http://www.bi-expertonline.com/article.cfm?id=3666

  • Crystal Reports and Business One Problems

    Hello all
    Some questions about Crystal Reports and Business One, I try run some Crystal reports developed in special but for some reason when I ussing Terminal Services this unplug, so, more strange its when the user are not administrators because when are adminstrators this problem is not present.
    Some tip its welcome.
    Thanks a lot

    Hi Ricardo,
    I checked the privileges point to point, even as he opened like to administration, but no response as to assign regular users, that is strange.
    >I didn't  undertstand these statement .What do you mean  by point to point .There is only one place you have to specify was user has access to the group you have defined .As described , it is done in number 4 .(Please refer to that )
    When we are talking about user -there is two user --One is superuser and regular user
    If you are super user , you have to give permission to other users to only crystal report and regular user  doesn't need access to Administration module <referring he opened like to administration> .
    BTW , Are you familiar with crystal report administration in SAP b1 ? You can find several thread poiting towards training material in the forum
    Hope this helps
    Bishal
    Edited by: Bishal Adhikari on Mar 2, 2009 2:43 PM

  • Running Crystal Reports in a batch service.

    Post Author: RichardP
    CA Forum: General
    I have set a Windows service to a run a Crystal Reports, and the code is as follows:-
    Public Class WebForm1
    Inherits System.Web.UI.Page
    Dim crReport As New ReportDocument
    Dim strConn As String = ConfigurationSettings.AppSettings("WebOASISConn")
    #Region " Web Form Designer Generated Code "
    'This call is required by the Web Form Designer.
    <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
    End Sub
    Protected WithEvents CrystalReportViewer1 As CrystalDecisions.Web.CrystalReportViewer
    'NOTE: The following placeholder declaration is required by the Web Form Designer.
    'Do not delete or move it.
    Private designerPlaceholderDeclaration As System.Object
    Private Sub Page_Init(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Init
    'CODEGEN: This method call is required by the Web Form Designer
    'Do not modify it using the code editor.
    InitializeComponent()
    End Sub
    #End Region
    Public Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    'Put user code to initialize the page here
    'CrystalReportViewer1.ReportSource = New WebServ5.STPMBReportService
    'Dim NewServ1 As New WebServ5.service
    Dim crConnectionInfo As New ConnectionInfo
    Dim crConnServer As String = ConfigurationSettings.AppSettings("CrConnServer")
    Dim crConnDbName As String = ConfigurationSettings.AppSettings("CrConnDbName")
    Dim crConnUserId As String = ConfigurationSettings.AppSettings("CrConnUserId")
    Dim crConnPassword As String = ConfigurationSettings.AppSettings("CrConnPassword")
    'Dim err As String
    'Try
    crConnectionInfo.ServerName = crConnServer
    crConnectionInfo.DatabaseName = crConnDbName
    crConnectionInfo.UserID = crConnUserId
    crConnectionInfo.Password = crConnPassword
    'C:\Inetpub\wwwroot\WebServ5
    'crReport.Load("http://localhost/WebServ5/STDPOReportService.asmx")
    crReport.Load("http://localhost/WebServ5/STDPOReportService.asmx")
    ' crReport.Load(Server.MapPath("STDPOReportService.asmx"))
    ' Catch ex As Exception
    'Err = ex.Message
    'End Try
    '(Server.MapPath("STDPOReport.rpt"))
    'Dim reportName As Request.QueryString = "STDPOReport"
    'CrystalReportViewer1.LogOnInfo.Add(CObj(crConnectionInfo))
    'rystalReportViewer1.LogOnInfo.Item()
    SetLogOnInfo(crConnServer, crConnDbName, crConnUserId, crConnPassword, "due_in")
    SetLogOnInfo(crConnServer, crConnDbName, crConnUserId, crConnPassword, "stores_item")
    SetLogOnInfo(crConnServer, crConnDbName, crConnUserId, crConnPassword, "unit_info")
    'CrystalReportViewer1.ReportSource = "http://localhost/WebServ5/STDPOReportService.asmx"
    CrystalReportViewer1.ReportSource = crReport
    Dim myTable As CrystalDecisions.CrystalReports.Engine.Table
    Dim MyLogonInfo As CrystalDecisions.Shared.TableLogOnInfo
    For Each myTable In crReport.Database.Tables
    '&#91;With MyLogonInfo.ConnectionInfo
    'End With
    MyLogonInfo.ConnectionInfo = crConnectionInfo
    myTable.ApplyLogOnInfo(MyLogonInfo)
    Next
    End Sub
    Private Sub SetLogOnInfo(ByVal server As String, ByVal database As String, _
    ByVal userID As String, ByVal password As String, ByVal _
    table As String)
    Dim logOnInfo As New TableLogOnInfo
    logOnInfo = crReport.Database.Tables.Item(table).LogOnInfo
    ' Set the connection information for the table in the report.
    logOnInfo.ConnectionInfo.ServerName = server
    logOnInfo.ConnectionInfo.DatabaseName = database
    logOnInfo.ConnectionInfo.UserID = userID
    logOnInfo.ConnectionInfo.Password = Password
    logOnInfo.TableName = table
    End Sub
    End Class
    But when I attempt to run it I get this message:-
    Server Error in '/WebApp5' Application.
    Load report failed.
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: CrystalDecisions.CrystalReports.Engine.LoadSaveReportException: Load report failed.
    Source Error:
    Line 56:         crConnectionInfo.UserID = crConnUserId
    Line 57:         crConnectionInfo.Password = crConnPassword
    Line 58:         crReport.Load("http://localhost/WebServ5/STDPOReportService.asmx")
    Line 59:
    Line 60:
    Source File: c:\inetpub\wwwroot\WebApp5\WebForm1.aspx.vb    Line: 58
    Stack Trace:
    &#91;LoadSaveReportException: Load report failed.&#93;
       &#91;1&#93;.&#91;1&#93;I(String   , EngineExceptionErrorID  )
       &#91;1&#93;.&#91;1&#93;E(String  , Int32  )
       CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String reportName, OpenReportMethod openMethod, Int16 parentJob)
       CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String reportName)
       WebApp5.WebForm1.Page_Load(Object sender, EventArgs e) in c:\inetpub\wwwroot\WebApp5\WebForm1.aspx.vb:58
       System.Web.UI.Control.OnLoad(EventArgs e)
       System.Web.UI.Control.LoadRecursive()
       System.Web.UI.Page.ProcessRequestMain()
    Version Information: Microsoft .NET Framework Version:1.1.4322.2032; ASP.NET Version:1.1.4322.2032
    Any ideas anyone?

    Hi,
    I came across this and a hundred other problems when
    trying to integrate Crystal into our application
    framework. I agree with the previous post - crystal
    either don't have a testing department for the JRC or
    don't care about us :(
    Anyhow, the solution I found was to create a pretend,
    wrapper JDBC connection driver, which I fix in my
    web.xml to the ODBC name my reports use. When the
    Crystal control transfers to the connect method of my
    driver, I route it to the correct database with
    credentials and return a connection from the real
    JDBC driver. Works a treat.
    Hope this helpsHi,
    How and where do you 'route' your handmade connection to JRC?
    I set the user and password as in the documentaion described to the ConnectionInfo - collection, provide this to the viewer and nothing works...
    When appending user & password info to the jdbc connect url (definied in web.xml, jndi) the report runs. But this solution isn't very flexible ...

  • Crystal Report as a Hosting Service

    Post Author: Shahoo
    CA Forum: General
    Hi friends.
    I have not much info about crystal report. Our company is a web hosting one, and a few of the clients of our windows hosting have requested us to include crystal report in our offered services. I like to know that is it common to do this?! Because I've heard that crystal report eats much resources and is some heavy. Also, our CP is Plesk.
    So briefly, my questions are:1) is it safe to install crystal report in our plesk machine?
    2) is there any lightweight solution? for example, different crystal report versions and choosing one of them...?
    Thank you for any comments.

    Thanks for your response. Unfortunately I do not see a radio button for Web Services. I've read that it should be there too. Could it be a missing plug-in or patch?
    Here are screen shots of what I see when trying to connect to an XML. Any thoughts?
    [http://s26.photobucket.com/albums/c120/hpolit/?action=view&current=wizard1.jpg]
    [http://s26.photobucket.com/albums/c120/hpolit/?action=view&current=wizard2.jpg]

  • Crystal Reports and SAP BO XI 3.1 License purshase

    Dear Professionals,
    My company is looking forward to go for Crystal Reports 2008 from BEx.
    I am looking for link for purchasing license for Crystal Reports and SAP BO XI 3.1 as well.
    Besides the above, i am currently working on a free trial version of Crystal Reportds and also installed Crystal Viewer to publish the reports on the portal, but it was asking for Java Connector license key.
    So, in addition to the above i also want to know the pricing for License of Javas Connector (JCo)
    Your help is appreciated.

    Hi
    the Java connector is available here
    service.sap.com/connectors
    Regarding licenses and pricing I would recommend to contact your local SAP sales office.
    Regards
    Stratos

  • Getting Data from SAP ECC & BI to Crystal Reports and then Broadcasting.

    Hi,
    I need to get the data from SAP ECC & BI to Crystal reports and then after formating data in Crystal reports, my requierment is to send via email (Broadcasting). Is there any option to  Broadcast from Crystal reports?
    I read Ingo Hilgefort blogs, but I need in detail steps such as to verify Integration Kit is installed or not and also how to create connections in between SAP ECC and Crystal. What are the Security setups(User IDs and Authorizations) involved?
    What is best option for email/broadcasting for Crystal Reports?
    Your help is appreciated.
    Thanks.
    SVK.

    Hi,
    I would suggest you then start with the installation and user guide fr the SAP Integration Kit.
    Ingo

  • Display latest instance of Crystal Reports in SharePoint 2010

    Dear Sirs,
    I have BO 4.0 and SharePoint 2010 and Integration Option.
    I need to display latest instance of Crystal Reports in SharePoint webpart.
    I'd like to add "IOMS-Crystal Report Viewer" Web Part and display latest instance.
    But in Settings (in SAPBusinessObjects tab) I need to type only CUID.
    Is it possible to display latest instance of Crystal report in SharePoint Web Part?
    Best regards,
    Emmo

    Dear Sirs,
    I have BO 4.0 and SharePoint 2010 and Integration Option.
    I need to display latest instance of Crystal Reports in SharePoint webpart.
    I'd like to add "IOMS-Crystal Report Viewer" Web Part and display latest instance.
    But in Settings (in SAPBusinessObjects tab) I need to type only CUID.
    Is it possible to display latest instance of Crystal report in SharePoint Web Part?
    Best regards,
    Emmo

  • Crystal Reports and BW Query- Translation

    Hello,
    I'm trying to use Crystal reports with BW Query in the Hebrew Language.
    When i open the Crystal Reports and connect to SAP I'm putting the Hebrew language key in the logon screen. When the crystal report starts i can see the reports info objects but without the Hebrew description. I can see that in the formula fields the Language key is selected but shouldnt i get the info objects description as well?
    Thanks,
    David

    Hi David,
    when I create a new report (using the SAP toolbar) I always get the descriptions for the info objects on the field explorer according to the language I set when I logon on into the SAP system my query resides in. I tried with both english and german language and it works fine. I assume you have installed the hebrew language pack for CR and that the hebrew descriptions are maintained in your SAP system. I also assume that you are talking about creating a report here and not opening an existing one though. In this case the language at creation time defines which descriptions are displayed.
    If the above assumptions are valid, then you may face a hebrew language specific problem here. Opening a support case would probably make sense.
    Regards,
    Stratos

  • Crystal Reports and Xcelsius Installation

    Hi I have a mac book pro and wanted to learn crystal reports and xcelsius in a hands on way. I have created a partition on the laptop and am wondering which OS to install - Windows(if so which one) or Linux. Immediate goal is have an environment where I can use CR and Xcelsius with a non sap data source. My end goal eventually is to have an environment where I can use Crystal report and xcelsius with SAP ECC6.
    I am trying to learn CR, Xcelsius with SAP ECC and SAP BW. Your ideas and isights are welcome.
    Thanks

    Hi Otto,
    Thanks for the link. Your link will be a good start for me in terms of finding out the major components required to accomplish this 'project'. I am definitely interesting in collaborating and discussing the findings and exploring the areas of opportunity, so lets stayi in touch.
    I dont have access to any windows os right now. So I am thinking about installing linux on my mac book pro since its free and probably going to beef up the ram to 3 gb (per my understanding max supported on my 2007 model). Hopefully this will get me going in the right direction.
    Any recommendations on Suse vs Red hat. looking for something that is free.
    Thanks

Maybe you are looking for

  • Is there any way to use a "filmstrip" effect like FCPro X has?

    We use both FCP 7 & X.  Does anyone know, are there any third parties, or Apple for that matter, that would allow us to create the filmstrip transition or effect that we see in X?  They hae a Pan down in X that looks pretty neat. Any similar type eff

  • Getting greensock's draggable spin to work

    hi guys, i am new to edge animate and know virtually no code. i am trying to get greensock's draggable spin feature to work for me in edge animate. watching a paul trani tutorial, i followed his instructions but still no go. + paid to become a "shock

  • Imovie8 : how to variate the level of the different sounds ?

    I look for extracting a sound and variate the level of the sounds of some parts of a clip or an event. Unfortunately, Imovie Help gives replies useful for Imovie HD or Imovie 6 which have a "Visualiseur de la chronologie < extraire l'audio"). But imo

  • Pdf fill is not openning in microsoft word

    pdf fill is not openning in microsoft word

  • Auto file generation on desktop

    One of our FI user, getting files created on his desktop automatically with file name like "sapfewdll_01_0002_01_-896239.err.trc" all files are with extension .err.trc Can anyone faced this type of prob, pl help BS