Crystal Reports and salesforce integration question

I have a question about Crystal Reports connectivity to salesforce.  We are running Crystal Reports version 14.0.4.738 RTM.  When you create a new report and use the Database Expert, you can select www.salesforce.com as the data source.  I would like to know if the built-in connection to salesforce is secure.  Is our data secure in transit from salesforce to Crystal?  Is my password passed in clear text?  That kind of thing...
Thanks!
Message was edited by: Ludek Uher

Pete,
As any SAP product Crystal Reports is going through users data security check before any new release. It includes any bult-in connection that comes as a part of product installation. Unfortunately I do not have any document for a reference, but your user password is not exposed in CR connectivity.
I think I should mention that prior to Crystal reports 2013 (version 14.1....) we used our own java based driver, but starting from CR 2013 we are outsourcing the driver to a third party and it is ODBC driver. It means the SFDC driver will automatically change if you decide to update your CR 2011.
    Hope it helps,
Vitaly

Similar Messages

  • Crystal Reports and BI integration

    Hi All,
    Could anyone tell me what are the best practices adopted while integrating Crystal Reports with BI 7.0?
    I have SAP BI and BEx on my laptop. Which version of crystal reports is advisable? What software should I install on my system?
    I have read about the SAP integration kit. Where is this to be installed on individual laptop or on the server? If on server then how is it accessible to the crystal report software on my laptop?
    Are there any other settings needed for accessing BI data from Crystal Reports?
    Please help me on this.
    Thanks,
    Smruti

    Hi Smruti,
    For better assistance on these questions I would request you to post this question on SAP Business One category.
    Regards,
    Sumit Kanhe

  • Crystal Reports and SAP Integration Issue

    Gurus,
    I am in the process of reinstalling my SAP B-One(2007 A) Server, after SQL Server and SAP Server and Client installtions and its related patch PL10. My machine is fully loaded and to go, but I am stuck with Crystal Reports Basic 2008 installtion.
    After installting the below for Crystal Reports:
    1) .NetPlatform SP1 setup (dotnetfx35sp1)
    3) Crytatl Runtime
    4) Crystal Setup
    5) Crystal SAP Viewer
    6) CR2008_SP3
    My integration between SAP and CR are fine but after first log off and log on of SAP B-One.
    Shows the below messages:
    - "The new version of Add-on Crystal Reports for SAP Business One is
    installed. Upgrade the Add-on in the current Common DB."
    followed by the below one.
    "Wrong Executable digital signature for Add-On".
    Any advices on how can I upgrade the Common DB.
    Faisal

    Hi  Faisal,
    Is this issue realted to the previous thread you have posted. It looks similiar.
    Re-installation meaning that you had installed aprevious version and now upgrading or is it a full installation.
    Regards,
    Rakesh N

  • Crystal report and SAP system question

    Hi,
    I try to report off the SAP system using crystal reports without installation of the BOE server. But with very few knowledge of the SAP system, I am not clear of how and what to do. The following is what I have done:
    1. From the client machine, I open the crystal report 2008
    2. click "SAP" button and then click "Create New Report from a Query"
    3. Select the system and enter the login user name/ password information
    4. A dialog "Select Query for your Crystal Report" displayed.
        But under "Favorites", no entry found
        Under "Roles", no entry found
        Under infoAreas,  there is a "Technical content" on top level and "Exchange Rate Type" is under it. I select this exchange rate type in the report, but it is an empty table.
    If I use the same user name/ password to  log on the SAPGUI, I am able to see lots of data.
    Does anyone know what are the appropriate configuration steps to make the tables/views in the SAP system visible in the crystal reports? Could you please give me the details? Any help is appreciated.
    Thanks,
    Vicky

    Hi,
    are you trying to report on top of a BW query (mentioned in step 1 and 2) or you trying to create a report on top of tables (mentioned further down).
    Ingo

  • Crystal report and SQL 2000  Integration to BW?

    HI All,
    We have following two requirements to be implemented
    1) We need crystal reports to be integrated with BW system.Please guide about the prerequisites as well as the procedure to be followed so as to generate Crystal reports once the plugins are in place.
    2) We need SQL 200 server to be interfaced with our BW system.Pleas do let me know apart from DB2 connect is there any other method that can be implemented and aslo If we use DB2 how should we go about handeling Delata.

    Hi
    1, once you setup the SAP Plugins you can connect to the BW system and view the tables and objects such as Query etc.
    then you build the report (Crystal Rep) using this data source.
    My experiance is that the performance is quite bad, so good luck to you.
    2, we use a data base level access in our BW.
    it means that the user has access rights on the DB level and then we can
    access the db using MS Query Analyzer.
    Reg's
    Edan

  • Crystal report link Salesforce

    I use the crystal report 2008. When I  link the crystal report to salesforce, it need to input the server , user name and password. But I can't log in use my salesforce user name and password.
    The server name: www.salesforce.com
    Maybe the server name must be modified.
    How can I link them? Thanks!

    Hi David
    Please see the documentation for connecting to salesforce from crystal reports 2008 in the CR 2008 user guide.
    To see the guide visit the following link
    http://help.sap.com/businessobject/product_guides/cr2008/en/xir3_cr_usergde_en.pdf
    or search for the cr 2008 user guide in the following link:
    http://help.sap.com/
    Hope this helps!!!
    Regards
    Sourashree

  • Select multiple items from a list box as values for a parameter of crystal report and Oracle procedure

    -  I have a  Product list box (asp.net) used as multiple selected values for  a parameter. 
    - The Product ID is defined in the Oracle procedure as NUMBER data type. 
    -  In my crystal report, I have a parameter field allow multiple values as p_product_id type as Number.  This is the code in my Record Selection Formula for the report:
    ({?p_product_id}[1] = -1 OR {Procedure_name.product_id} in {p_product_id})
    -  In C#, this is my code
    List<decimal?> productUnit = new List<decimal?>();
    int counter = 0;
    decimal prod;
    for (int i = 0; i < lstProducts.Items.Count; i++)
                  if (lstProducts.Items[i].Selected)
                                if (decimal.TryParse(lstProduct.Items[i].Value, out prod))
                                    productUnit.Add((decimal?)prod);                              
                                    counter++;
           if (counter == 0)
                       productUnit.Add(-1);                      
    ReportingDAO rDataFactory = new ReportingDAO();
    retVal = rDataFactory.GetProductReport(productUnit);
    public CrystalDecisions.CrystalReports.Engine.ReportDocument GetProductReport(List<decimal?> productUnit)
              CrystalDecisions.CrystalReports.Engine.ReportDocument retVal = new rptProductDownload();
              ReportLogon rptLog = new ReportLogon();
             rptLog.Logon(retVal, "RPT_PRODUCT_DOWNLOAD");
             retVal.SetParameterValue("p_product_id", productUnit); 
    I keep having the "Value does not fall within the expected range" when I debug.  My question is, is the data type I used for procedure/Crystal report/ and C# correct ?  I always have problem with the data type.  Any help would be
    appreciated
    Thank you

    Hi progGirl,
    Thank you for your post, but Microsoft doesn't provide support for CrystalReport now. Please post your question in SAP official site here:
    http://forums.sdn.sap.com/forum.jspa?forumID=313
    Thank you for your understanding.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • 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

  • 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 MII 11.5

    Are there any documents out there on the pros and cons of integrating Crystal Reports with MII?  Can it be done.  If so, how can my company do this?

    Hi,
    The Software Crystal Report is a software for creating reports very good and the MII is a software for creating reports and integrate your manufacturing and more ...
    Is possible integrate the two system, but I'm not view very advantages, because if you have installed MII in your company is much simpler to create the reports within the SAP MII.
    That depends on your business if uses the reports to Crystal Reports and want to keep this software integrates the software, if your company wants more intelligence use SAP MII I think much better.
    I not view documents in SDN about Crystal Reports and SAP MII.
    See also on Xcelsius other tool very good.
    Hope this helps...
    Danilo

  • 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

  • Crytal Reports and Salesforce Error message

    I have the following applications loaded
    Java: Java Plug-in 1.6.0_07
    Using JRE version 1.6.0_07 Java HotSpot(TM) Client VM
    Crystal Reports: Crystal Reports 2008 12.0
    Driver: Salesforce Driver 3.0
    Everytime I try to connect crystal reports thru salesforce I get the following error message:
    Invalid argument provided, java server startup failure, verify the path (jdk), classpath,and IORfilelocation in the crconfig.xml file, In addition verify you are using JDK 1.5
    I have tried backing up the Crconfig.xml file, and then deleting it, then deleting any old drivers I had and loading the SFDC 3.0 Driver, that did not seem to work. I also have removed crystal reports and downloaded again, that didnt seem to work either. I have also searched this forum for similar issues to no avail
    Here is what the CRconfig.xml file looks like on my machine (note - I took out the product key code for security reasons)
    <?xml version="1.0" encoding="utf-8" ?>
    - <CrystalReportEngine-configuration>
      <reportlocation>../..</reportlocation>
      <timeout>10</timeout>
    - <ExternalFunctionLibraryClassNames>
      <classname />
      <classname />
      </ExternalFunctionLibraryClassNames>
      <keycode>keycode</keycode>
    - <Javaserver-configuration>
    - <DataDriverCommon>
      <JavaDir>C:\Program Files\Business Objects\javasdk\bin</JavaDir>
      <Classpath>C:\Program Files\Business Objects\Common\4.0\java/lib/crlovmanifest.jar;C:\Program Files\Business Objects\Common\4.0\java/lib/CRLOVExternal.jar;C:\Program Files\Business Objects\Common\4.0\java/lib/CRDBJDBCServer.jar;C:\Program Files\Business Objects\Common\4.0\java/lib/CRDBXMLServer.jar;C:\Program Files\Business Objects\Common\4.0\java/lib/CRDBJavaBeansServer.jar;C:\Program Files\Business Objects\Common\4.0\java/lib/external/CRDBXMLExternal.jar;C:\Program Files\Business Objects\Common\4.0\java/lib/external/log4j.jar;C:\Program Files\Business Objects\Common\4.0\java/lib/CRDBSForceServer.jar;C:\Program Files\Business Objects\Common\4.0\java/lib/external/CRDBSForceExternal.jar;$</Classpath>
      <IORFileLocation>$</IORFileLocation>
      <JavaServerTimeout>1800</JavaServerTimeout>
      <JavaServerStartupTimeout>30</JavaServerStartupTimeout>
      <JVMMaxHeap>64000000</JVMMaxHeap>
      <JVMMinHeap>32000000</JVMMinHeap>
      <NumberOfThreads>100</NumberOfThreads>
      </DataDriverCommon>
    - <JDBC>
      <CacheRowSetSize>100</CacheRowSetSize>
      <JDBCURL />
      <JDBCClassName />
      <JDBCUserName />
      <JNDIURL />
      <JNDIConnectionFactory />
      <JNDIInitContext>/</JNDIInitContext>
      <JNDIUserName>weblogic</JNDIUserName>
    - <GenericJDBCDriver>
    - <Default>
      <ServerType>UNKNOWN</ServerType>
      <QuoteIdentifierOnOff>ON</QuoteIdentifierOnOff>
      <StoredProcType>Standard</StoredProcType>
      <LogonStyle>Standard</LogonStyle>
      </Default>
    - <Sybase>
      <ServerType>SYBASE</ServerType>
      <QuoteIdentifierOnOff>OFF</QuoteIdentifierOnOff>
      <DriverClassName>com.sybase.jdbc2.jdbc.SybDriver</DriverClassName>
      <StoredProcType>Standard</StoredProcType>
      <LogonStyle>MySQL</LogonStyle>
      </Sybase>
      </GenericJDBCDriver>
      </JDBC>
    - <XML>
      <CacheRowSetSize>100</CacheRowSetSize>
      <PreReadNBytes>4096</PreReadNBytes>
      <MaxCacheXMLSize>153600</MaxCacheXMLSize>
      <XMLLocalURL />
      <SchemaLocalURL />
      <XMLHttpURL />
      <SchemaHttpURL />
      <RepositoryPath>C:\Program Files\Business Objects\Common\4.0\java/lib/external</RepositoryPath>
      <ExternalNamespace>C:\Program Files\Business Objects\Common\4.0\java/xsd/wsdl.xsd;C:\Program Files\Business Objects\Common\4.0\java/xsd/wsdl_encoding.xsd</ExternalNamespace>
      <SocketTimeout>60000</SocketTimeout>
      </XML>
    - <JavaBeans>
      <CacheRowSetSize>100</CacheRowSetSize>
      <JavaBeansClassPath />
      <CallBackFunction>CrystalReportsLogoff</CallBackFunction>
      </JavaBeans>
    - <SForce>
      <CacheRowSetSize>100</CacheRowSetSize>
      <QueryBatchSize>2000</QueryBatchSize>
      <SocketTimeout>600000</SocketTimeout>
      <UseProxy>FALSE</UseProxy>
      <ProxyAddress />
      <ProxyPort />
      <BatchLookupCacheJoinSize>200</BatchLookupCacheJoinSize>
      </SForce>
      </Javaserver-configuration>
      </CrystalReportEngine-configuration>
    Any help would be greatly appreciated!

    See if someone in the Java Development forum will be able to help or redirect to the correct forum. Link to the Java Development forum:
    SAP Crystal Reports, version for Eclipse
    Ludek

  • Crystal Report Server 2008 integration with java application

    Hi All,
    Any of you having complete document about Crystal Report Server 2008 integration with java application....like source code and what are all the jar files needed? Or tell me that the implementation is same as Crystal Report Server XI R2?
    Thanks

    Have you looked at the BusinessObjects Enterprise XI 3.x Java Developer Guide?
    [http://www.sdn.sap.com/irj/boc/sdklibrary]
    Sincerely,
    Ted Ueda

  • Crystal Report and Log4net error 1.2.10

    Hi at all,
    I have problem on Crystal Report and log4net.
    It happens when I deploy the Web applications on the server.
    I'm using Visual studio 2013 update 2, and I'm using log4net 2.0.3 (1.2.13) and I'm using CRforVS2013_13_0_10, the last.
    When I deploy my application on the target machine, where I have also installed the runtime 64 bit for Crystal Report, I found this error:
    ERROR 2014-07-31 16:26:42,721 1528053ms 8Euro                  - IP:192.168.0.38    - HOST:192.168.0.38 DumpWebRequest                           -  ERROR: Exception of type 'System.Web.HttpUnhandledException' was thrown.
    Exception StackTrace:   at System.Web.UI.Page.HandleError(Exception e)
      at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
      at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
      at System.Web.UI.Page.ProcessRequest()
      at System.Web.UI.Page.ProcessRequestWithNoAssert(HttpContext context)
      at System.Web.UI.Page.ProcessRequest(HttpContext context)
      at ASP.pages_reportviewer_aspx.ProcessRequest(HttpContext context)
      at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
      at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
    ERROR: The type initializer for 'CrystalDecisions.CrystalReports.Engine.ReportDocument' threw an exception.
    ERROR: Could not load file or assembly 'log4net, Version=1.2.13.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)
    Exception StackTrace:   at CrystalDecisions.Shared.SharedUtils..cctor()
    ERROR: Could not load file or assembly 'log4net, Version=1.2.10.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)
    Not able to extract code, error:Value cannot be null.
    Parameter name: source
    Exception StackTrace:
    On my local Visual studio it works, works fine.
    But when I'm deploying on Server, 2008 win 64 bit, I found this error.
    I've tried everything, I've installed also the runtime 64 bit on the target/server machine.
    The problem is that the log4net is not registered in the windows\assembly directory on the target server ? Do I have to use the Gac util to register the log4net dll assembly ?
    Please help me, It one day that I'm facing this error, but I'm not able to solve.
    Regards
    Vittorio

    Hi Vittorio
    Please enter the search string 'log4net crystal net' into the search box in the top right corner. When the results come up, click on the Support Notes link. That will filter for the KBAs that you want to have a look at.
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

Maybe you are looking for

  • Idoc status 53

    hello all, i have received an Inbound IDOC with Error Status 53. what could be the solution.please help me out santosh

  • Are there changes that need to be done to the template?

    I am working on a Supplier Workplace application and attempting to print a delivery. A pdf file is generated in the same browser window. When I try pressing the back button in the browser, the system dumps with the message "An error message had been

  • Standard Texts using SO10

    Hi, I am using SO10 for Interview letters, Rejection letters..etc with Text ID 'PALT'. But when ever I try to create a new text in SO10 or even display and change,it opens with a DOC/RTF format rather than the normal SAP script editor. Due to this I

  • Best way to import from iPhoto 6 with albums ?

    Hello All ! I have a large collection of photos (well, only about 5500 pics) in my old iPhoto 6 library sitting on my (also) old Mac Book Pro from 3 or 4 years ago, and today I would like to import all that to my (new) iPhoto 09 on my iMac. What's th

  • Trackpad click and drag workaround

    The click feature of my trackpad is broken. To click on a button I would tap, but to click and drag, I have no workaround. Please help. Thanks.