Login information for VFP

I am developing a program to use CrystalReportViewer Control of CR SDK for VS2010. I have a report get data from Visual FoxPro via OLE DB and it does not need username and password to access.
When I ran setLogon for that data source, it asked for username and password. What should I do?
Please advise.
Thanks.

Make sure you are using Crystal Reports for Visual Studio 2010, Service Pack 2 (see the sticky thread at the top of this forum)
What version of Crystal Reports was the report created in?
If you add the report to your project and try to view it in the CR Designer - inside the .NET IDE, does it work?
Ludek
Follow us on Twitter http://twitter.com/SAPCRNetSup
Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

Similar Messages

  • I have lost my login information for cellular data account. How do I retrieve it?

    I have lost my login information for cellular data account. How do I retrieve it?

    I called AT&T at 1-800-331-0500 and asked for IPad support. They are going to send me a new SIM card. This will solve the problem. Thanks for  your help.

  • I've stored login information for many sites but on some sites I've to login manually. What to do?

    I'd stored login information for Facebook. Earlier firefox used to fill in the login information but now it doesn't . What to do?

    You could try going into settings, Safari, auto fill then turn on names and passwords.

  • Version 4.0.1 won't remember login information for my financial websites?

    Each new day I have to reenter my login information for my financial websites, e.g. Chase, Citibank, etc. After I power down and turn the computer back on the information is lost. Does not happen with non-financial websites. I think, somehow, the cookies are being erased after powering down.

    What was the exact wording of the error message?  If it said network timeout, try disabling the antivirus and firewall on the computer during the download and update.  Kaspersky is especially bad.

  • Login information for RFC call

    Hi there,
    I would like to know if there is a way to authenticate a user via bsp and get that login information to make the RFC call to different systems.
    i tried the to call an FM via RFC directly from abap and it forces me to login and it works but when i put that code to bsp. I just get a "page cannot be displayed" error.
    I know i can enter an ID and password on sm59 for the connection but i need to let the user login
    I am using this for a user creation tool.. instead of using su01 to create a user it will be done via bsp and would like to reflect the changes done when running the reports from SUIM
    thanks in advance
    Ryan

    Hi Ryan,
    I will assume your RFC Destination already trusted system and using current user logon (see my previous reply).
    However this still prerequisite for the next step.
    Now, please correct me if my understanding is wrong.
    In your reply, you have at least 2 System, right?
    S1 & S2.
    Where S1 has BSP Application (Ex:/ FormRegistration)
    And S2 is where you control the user and Function Module.
    Do you put, generic user for all BSP Service in System S1?
    You can create another BSP Application in System S1 (Ex:/ CallingFM)
    but this time don't put default user in BSP Service.
    And from BSP Application FormRegistration, you create 1 button to call the BSP Application CallingFM.
    I will give you sample code:
    FormRegistration: address:http://systemS1.sap.com/FormRegistration/page1.htm
    HTML Part:
    ===========
    <HTML>
    <input type="button" value="Register the user" onclick="submitUser();">  
    <script>
       function submitUser(){
           document.forms[0].action = 'http://systemS1.sap.com/CallingFM/page1.htm';
           document.forms[0].target = '_new';
            //it will open new window, just put it empty if you don't want to open new window.
           document.forms[0].submit();
    </script>
    </HTML>
    Now, when user click Button "Register the user" it will open the new window.
    But because it doesn't allow you to using default user, it will prompt user id and password.
    After that it will submit the data to CallingFM
    Now in CallingFM we already have the sy-uname = user-B.
    CallingFM: address-> http://systemS1.sap.com/CallingFM/page1.htm
    OnInputProcessing Part:
    =================
    call function 'zcreate_user' destination 'S2'
    Why you need CallingFM BSP application? because you need to re-assign sy-uname in S1 from default user with user-B ID, and use it to connect to System S2, S3, etc.
    Please note: SM59 and User Id must be set before this.
    Because when you call RFC from other destination, SAP will refer to Logon setting in SM59 for that destination.
    Hope this will help you.

  • Missing DataBase Login information for deployed VS2008 w/Crystal Report

    I'm creating a Windows Form application using VS2008 Pro and the basic Crystal Reports (included).</br></br>
    I've successfully added a crystalreportviewer control and a crystal report (.rpt) to my form. I've written the following code in the code behind to programmatically load/bind the report to the viewer. Everything works fine on my development machine (or any machine that has Visual Studio installed). Where I'm encountering problems is when I deploy the application to a machine that does not have VS installed (I have downloaded and installed the "Crystal Reports Basic for Visual Studio 2008 Redistributable Package" for the appropriate processor type on this non development machine) that I'm getting an error . It prompts for "DataBase Login". The ServerName, LoginID and Password are all there, but the "DataBase" field is empty and disable for user input.</br></br>
    Why is the DataBase information missing? How can I solve this problem?</br></br>
    (On a side note, I vaguely remember a property for enabling/disabling the prompting of the database login. I can't remember where this was again to double check if that is the culprit. But I'm pretty sure that I did mark it as to not prompt, since it's supplied in the code behind. Plus it doesn't prompt on the development machines. Only on the non-development machines).</br></br>
    Any help is greatly appreciated! Thanks.</br></br>
    The code executed in the PageLoad event of the form.</br></br>
    this.crystalReportViewer1.RefreshReport();</br>
                ReportDocument reportDocument = new ReportDocument();</br></br>
                #region Load Parameters</br></br>
                ParameterFields paramFields = new ParameterFields();</br></br>
                for (int i = 0; i < _parameterName.Length; i++)</br>
                {</br>
                    ParameterField paramField = new ParameterField();</br>
                    paramField.ParameterFieldName = _parameterName<i>;</br>
                    ParameterDiscreteValue discreteVal = new ParameterDiscreteValue();</br>
                    discreteVal.Value = _parameterValues<i>;</br>
                    paramField.CurrentValues.Add(discreteVal);</br>
                    paramFields.Add(paramField);</br>
                }</br></br>
                crystalReportViewer1.ParameterFieldInfo = paramFields;</br></br>
                #endregion</br></br>
                #region Load Report</br></br>
                string reportUrl = "";</br></br>
                string exePath = Application.ExecutablePath.ToString();</br>
                exePath = exePath.Remove(exePath.Length - 18, 18);</br>
                exePath += _reportName + ".rpt";</br>
                reportUrl = exePath;</br>
                reportDocument.Load(reportUrl);</br>
               #endregion</br></br>
               reportDocument.SetDatabaseLogon("myUserName", "myPassword", "myServer", "myDataBase");</br></br>
                crystalReportViewer1.ReportSource = reportDocument;
    </br></br>
    Edited by: mtech8 on Jan 9, 2010 3:03 PM. Corrected formatting issues to make post readable.

    HI. Ludek,
    Thanks for the tips. I tried both, but the problem presists.
    On a side note, I did get my hands on yet another "non-development machine". This one ran with Window's Vista appeared to work (even with my original code).
    The "non-development machines" that I've tested on are Windows 7 and Window XP machines. On these machines, when I commented out the reportDocument.SetDatabaseLogon line, when I try to load the report, it still prompts for the Database Logon information, however, it also has the "Database name" empty and disabled.
    Since it worked on a non-development machine with Win Vista. I don't think there is a problem with references or the Crystal runtime packages.
    As far as permission for the report to contact the database, I'm guessing there isn't a problem there either because the application does successfully connect to the database.
    I'm connecting to a SQL2005 database and using the SQL Native connection.
    On a side note: as for the enabling prompting, I just remembered that it was an option available when using Crystal Reports with a web project. Thus I couldn't find it here with a Window's Form project.

  • Crystal Report Viewer requests login information for subreport

    I am using CR 11.5 with MSSQL 2000. I have a report that includes a subreport that pulls information from a different database than the main report. When I run the report through my .net application, it requests a password for the secondary database. If I supply the password, the report will run correctly, however, I cannot give out the password to regular users.
    Is there a way to supply the password for the secondary database within the application?
    Thank you,
    David

    Log on subreport code would be something like this:
    crSubreportDocument = crReportDocument.OpenSubreport("Ron")
    crConnectionInfo = New ConnectionInfo
    With crConnectionInfo
    .ServerName = "Rcon1"
    .DatabaseName = "Northwind"
    .UserID = "van"
    .Password = "van"
    End With
    crDatabase = crSubreportDocument.Database
    crTables = crDatabase.Tables
    For Each crTable In crTables
    crTableLogOnInfo = crTable.LogOnInfo
    crTableLogOnInfo.ConnectionInfo = crConnectionInfo
    crTable.ApplyLogOnInfo(crTableLogOnInfo)
    Next
    For more help, see the samples documented in this wiki:
    https://wiki.sdn.sap.com/wiki/display/BOBJ/CrystalReportsfor.NETSDK+Samples
    Recommend vbnet_win_subreport_logon.zip or csharp_win_subreport_logon.zip.
    Ludek
    Edited by: Ludek Uher on Oct 19, 2009 8:38 AM

  • What is the login information for the simulated Ubunto servers? TAC does not know.

    Start the simulation on a server and trying to login.  No joy.  No documentation!!!!  Support is really lacking on a purchased product from Cisco.  TAC says to try cisco/cisco.  OMG...they don't know!  So we are lead to believe we can use the imbedded Ubunto server 14.04 LTS  to generate traffic. 

    I am going to chime in on this also just to add my voice to the disappointment that is documentation with this product.
    I have attempted to implement Craig Brown's solution above, but it is vague in where this configuration change needs to be made.  I have a server node added to my topology.  I select the server, and then open the properties pane for it.  Under Autonetkit, I uncheck auto-generate the configuration.  Under configuration I type in the example code Craig Brown provided.  I save the project and then move to the simulation view.  I right click on the server and click start this node.
    When I attach using VNC, the username and password I set (which for this trial were cisco:cisco), would not work.
    Please get the documentation under control.  I don't believe there is any way that a customer could purchase this product, deploy, read the available documentation, and then be able to deliver it to their users in a workable fashion.  Forum discussions on how to login to a simulated server don't really cut it and I don't believe I should have to spend the time to open a TAC case to figure out how to login to a simulated server.

  • I don't have the login information for my podcast

    I work for a content producer and we're not sure who submitted our podcasts to iTunes years ago.  Right now iTunes says that the creator is "Unknown".  How do I claim these podcasts as my own and manage the account?  I can prove that I own the content, but I have no log in information.  Who do I email about that?

    You don't actually need the account details to manage the podcast. As long as you have access to the server you can simply update the feed and re-upload it, and iTunes will pick up the changes - subscribers will see changes immediately but the Store will usually take a couple of days to catch up.
    If you come to a point where you need the account details you may be stuck. You could email [email protected] and give them the iTunes reference number, but as you can't easily prove that you do indeed own the podcast they well not give you the account details, and almost certainly won't tell you the password (though if you can get the account name you may be able to sign in at http://appleid.apple.com and reset it - this would involve answering pre-set security questions).

  • HT2822 How can I enter my login information for Apple TV?

    I am at a hotel that requires a login to connect to the internet. I don't see any screen that allows me to enter a password.  I can connect easily to the wifi, but can't get past that to iTunes.

    Most hotels require you to log on to a web-page to connect to the Internet, you will not be able to do that with an Apple TV. 

  • Login Information for SMTP has changed

    Why am I continually getting this message.    Once I retype my password all is well for a couple of minutes then up it pops again.

    Did you ever find a solution to this?
    I am having he same issue.
    Thank you

  • I upgraded from 3.6.13 to 10.0 and lost my web site login information for most (all?) of my bookmarked websites.

    Firefox remmembered my logins with 3.6.13. After upgrade, no logins are3 filled in when I go to the site.
    I tried looking at my profile. The only profile I can find is the one created by 10.0 and it obviously doesn't contain my old login info. Is there a backup of the old profile anywhere? I have searched but can't find. Is there a way to restore the missing profile?
    Thank you, G. Hunter.

    Your above posted system details show multiple Java Console extensions.<br />
    You can uninstall and remove Java Console extensions, you do not need them to run Java applets.
    See:
    * http://kb.mozillazine.org/Java#Multiple_Java_Console_extensions
    You can disable the Java Quick Starter extension if you have it.
    * Tools -> Add-ons -> Extensions
    * Control Panel -> Java -> Advanced tab -> Miscellaneous -> Java Quick Starter (disable)
    Do you still see those names in the Password Manager?
    *Tools > Options > Security: Passwords: "Saved Passwords" > "Show Passwords"
    Do you mean names and passwords in the Password Manager or do you mean that you are no longer logged on to (remembered by) websites after closing and restarting Firefox?
    <br />
    There is a difference between remembering the name and password in the Password Manager and a "remember me" check box on a web page to log you in automatically.<br />
    The latter usually involves the creation of a special "remember me" cookie that is stored on your computer and that is send to the server.<br />
    If that "remember me" cookie is removed or gets corrupted or is not send to the server then the server won't remember you anymore and you need to sign in once again.
    * http://kb.mozillazine.org/Cookies
    * http://kb.mozillazine.org/Password_Manager

  • The database logon information for this report is either incomplete

    Hello All
    I have installed a full licensed version of crystal reports server 2008 onto a windows server 2003 virtual server.
    I am getting the following error message when trying to run some reports when i am logged in as the adminstrator
    'The database logon information for this report is either incomplete or incorrect.'
    Some reports work and some dont, I use the same login information for all reports, same username and same password, same machine datasource and all the reports  run fine in crystal designer 2008
    The only difference i can see is that the error mainly occurs with reports that use stored procedures, the ones that dont work fine.
    I not sure how to resolve this problem as i have tested the login and the datasoure and it works fine, just not through crystal reports server

    Further to this i've realized that this only happens with reports which have been updated to use a stored procedure from a query file. And the reports dont use any repository objects

  • Display Last Login Information ?

    I would like display the last login information for user after success login. I expect to show it via add a dialog or a separate JSP.
    Where can I get these information and where to add the code ?
    Thanks.

    Hi,
    Here is an SAP note talking about changing the back ground color.
    I will say take this one as starting point and hope it will help you.
    1291807
    This says...
    Go to
    Program Files\Business Objects Enterprise 12.0\warfiles\WebApps\AdminTools\
    Edit the default.css file with desired values and rename to test.css.
    Copy the test.css to
    Program Files\Business Objects\Tomcat55\webapps\InfoViewApp\res\schema.blue\
    Change the properties of the Infoview application from CMC--> Applications to show the test.css as the style sheet
    Leave the rest of the options as the default
    Restart the webi processing server
    Restart Tomcat
    Regards,
    Bashir Awan

  • Can't get Firefox to forget login information

    I work at a public library. And we have Firefox installed on all of our public computers. One of those computers is not forgetting a particular patron's login information for Yahoo Mail.
    We've set our public computers for Firefox to clear out Cookies, Cache, Active Logins, Forms & Search History, Browsing & Download History, Saved Passwords AND Site Preferences when it closes. We use custom privacy settings, telling Firefox NOT to remember Browsing & Download history, as well as Form & Search History.
    We've tried clearing ALL History, we've cleared all saved passwords. Nothing helps. Every time anyone goes to login for Yahoo on that computer, the other patron's login information is right there (the password is shown as dots, of course, but it's still there).
    Anyone have any ideas on how to clear that information? Any help would be much appreciated.

    You can remove all data stored in Firefox from a specific domain via "Forget About This Site" in the right-click context menu of an history entry ("History > Show All History" or "View > Sidebar > History") or via the about:permissions page.
    Using "Forget About This Site" will remove all data stored in Firefox from that domain like bookmarks, cookies, passwords, cache, history, and exceptions, so be cautious and if you have a password or other data from that domain that you do not want to lose then make sure to backup this data or make a note.
    You can't recover from this 'forget' unless you have a backup of the involved files.
    It doesn't have any lasting effect, so if you revisit such a 'forgotten' website then data from that website will be saved once again.
    You can delete the logins.json file and the signons.sqlite file used in previous Firefox versions if still present.
    Firefox will try to import the passwords from the signons.sqlite file file if the logins.json file is missing and it is possible that the password was saved in a version that still used the signons.sqlite file.
    You can also create a new profile to wipe all data from older releases.
    You can use this button to go to the currently used Firefox profile folder:
    *Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

Maybe you are looking for

  • Procedure that checks for a value in the database and returns related info

    Hi Everyone, I need to create a stored procedure that takes customer info(any of these fname,lname,id,email etc) and looks for it in the database and displays the customer info of that particular customer(kinda search engine). I have to use dynamic s

  • Plant vs Storage Location

    Hey Gurus, Looking for the best practice in this situation. We are brining a new company onboard with SAP. They have one main office with two additional branches for storage and that crews work out of. Should we set the braches up as different plants

  • Macbook pro not booting after software update

    Dear all, Since two days ago my macbook pro hangs at the gray apple screen, the round circle keeps on turning. Kept it running for nights but it does not exit this status. I read on the internet that I could run it in verbose mode, that's what I did,

  • My creative cloud window is blank, any ideas?

    Please help I can't do any updates.

  • Packing proposal in Sales Quotation

    Good afternoon, We are not able to create packing proposal from a sales quotation. We discovered that it if we change the document type from quotation to sales order it becames available. Which is the reason? It seems to be a product error. We urgent