SQL 2005 Authentication for Sol Man 4.0

Hi,
I have used the SQL4SAP.VBS to install SQL 2005 Entp Ed for Sol Man 4.0.
I do not know what authentication  mode has been setup by this script
How do I know this ?
How can i change the mode to mixed mode as reuqired by Sol Man 4.0
I havent started the SAP Inst yet .
Thanks
Uday

Hi,
This is how you need to check.
1.      In the Enterprise Manager, select the server and then choose Action ® Properties.
The SQL Server Properties dialog box opens.
       2.      Select the Security tab.
Here you can see. Hope this solves your problem. Feel free to revert back.
--Ragu

Similar Messages

  • SQL 2005 suppprt for CF 7.02?

    Hello,
    I'm sure that SQL Server 2005 is supported by CF 7.02 but I
    can't find proof on the Adobe site. Is there such a document saying
    this is supported on for 7? Our db guy needs this to start the db
    upgrade process. We'd also like to know if CF can connect to a
    "named instance" of SQL Server.

    I haven't had any issues using the SQL Server driver included
    with CF7 to access a SQL 2005 server. If you're interested in a SQL
    2005 specific driver you can get one from Microsoft.
    http://www.microsoft.com/downloads/details.aspx?familyid=C47053EB-3B64-4794-950D-81E1EC91C 1BA&displaylang=en
    http://kb.adobe.com/selfservice/viewContent.do?externalId=ded4216b
    Note that I think the Adobe article applies to an older
    version of the MS JDBC driver so some filenames, paths may be
    different.
    In my experience the SQL 2000 to 2005 upgrade was painless
    however in 2000 the case sensitivity of SQL passwords was based on
    the server collation and in 2005 all passwords are case sensitive.

  • Kernel Label problem for SOL MAN 4.0

    Hi
    When was installing a Unicode SolMan 4.0 on Win 2003 SQL server 2005.
    I have downloaded a following CD for Kernel -
    51031778_11 NW 2004s SR1 UC-Kernel 7.00 Windows Server on IA32 32bit
    When I give the LABEL.ASC for kernel, it does not accept it and give me following error -
    You entered: E:/nw04s/kernel/DVD_NW_2004s_SR1_Kernel_Windows__LNX_X86/LABEL.ASC
    Found the label SAP:AKK:700:DVD_KERNEL:SAP Kernel 700:D51031778 but need label
    SAP:AKK:700:KERNEL:.WINDOWS_I386:
    I tried all these option from the below link, but it did not work
    Kernel Label problem...
    Does any one have solution for that?
    I appreciate your help
    regards
    kamal

    Hi udo lang,
    I have downloaded the Kernel file 51031778_3 NW 2004s SR1 Kernel 7.00 Windows Server on IA32 32bit today. I will try to fix the problem by using this kernel.
    I also got reply from Sap that solution for this issue is:
    This is most unusual. Due to the currently running RampUp the
    DVD's could have been updated.
    I suggest that you try the following,
    Download both the Unicode and NonUnicode Kernel files from the
    SAP Service Market Place.
    The Kernel DVD 51031778 contains the Kernel for Unicode and for Non-
    Unicode, as you wrote, in directory "", label:
    "SAP:AKK:700:KERNEL::WINDOWS_X86_64:"
    Please check if you start Unicode Installation. Due to an incorrect
    procedure sapinst requireds both Kernel-CD.
    With the next release will be it correct. If you start a Unicode
    installation it will be a unicode.
    51031792_5 NW 2004s SR1 UC-Kernel 7.00 AIX 64bit
    51031792_1 NW 2004s SR1 Kernel 7.00 AIX 64bit
    Etract them to one directory, like:
    <downloadDIR>/
    kernel/
    KN_WINDOWS_I386/
    KU_WINDOWS_I386/
    CDLABEL.ASC
    LABEL.ASC
    LABELIDX.ASC
    When you ware asked for the kernel DVD, please enter
    <downloadDIR>/kernel
    SAPinst should take the right kernel version for the installation
    automatically.
    You may additionally refer to the below note for reference.
    921593 Inst. SAP NetWeaver 2004s SR1 on UNIX
    If the problem is resolved i will let you know. Thanks for your assistance
    regards
    Kamal

  • SAP Crystal Report using SQL Server Authentication and Windows Authenticati

    I'm a SAP Crystal Report, version for Visual Studio 2010 Beginner
    my ingredients are
    1.windows 7 ultimate service pack1
    2.sql server 2008 standard edition
    3.visual studio 2010 pro
    4.SAP Crystal Report, version for visual studio.net
    I was created a report named customersByCity.rpt using OLE DB (ADO) -> Microsoft OLE DB Provider for SQL Server -> I'm supply Server, User ID, Password and Database. I assume me using SQL Server Authentication for my report
    Then, my ASP.NET files as following
    //ASP.NET
    <%@ Page Language="C#" AutoEventWireup="true" CodeFile="viewCustomersByCity.aspx.cs" Inherits="viewCustomersByCity" %>
    <%@ Register Assembly="CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"
        Namespace="CrystalDecisions.Web" TagPrefix="CR" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title></title>
    </head>
    <body>
        <form id="form1" runat="server">
        <div><asp:Label ID="lblMsg" runat="server" BackColor="Yellow" ForeColor="Black"></asp:Label>
     <CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server" AutoDataBind="true"></CR:CrystalReportViewer>
        </div>
        </form>
    </body>
    </html>
    //code-behind
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using System.Collections;
    using CrystalDecisions.CrystalReports.Engine;
    using CrystalDecisions.Shared;
    public partial class viewCustomersByCity : System.Web.UI.Page
        private const string PARAMETER_FIELD_NAME = "city";   
        private ReportDocument customersByCityReport;
        private void ConfigureCrystalReports()
            ConnectionInfo connectionInfo = new ConnectionInfo();
            connectionInfo.ServerName = @"WKM1925-PCWKM1925";
            connectionInfo.DatabaseName = "Northwind";
            connectionInfo.UserID = "sa";
            connectionInfo.Password = "sysadmin25";
            SetDBLogonForReport(connectionInfo);
        private void SetDBLogonForReport(ConnectionInfo connectionInfo)
            TableLogOnInfos tableLogOnInfos = CrystalReportViewer1.LogOnInfo;
            foreach (TableLogOnInfo tableLogOnInfo in tableLogOnInfos)
                tableLogOnInfo.ConnectionInfo = connectionInfo;
        private void SetCurrentValuesForParameterField(ReportDocument reportDocument, ArrayList arrayList)
            ParameterValues currentParameterValues = new ParameterValues();
            foreach (object submittedValue in arrayList)
                ParameterDiscreteValue parameterDiscreteValue = new ParameterDiscreteValue();
                parameterDiscreteValue.Value = submittedValue.ToString();
                currentParameterValues.Add(parameterDiscreteValue);
            ParameterFieldDefinitions parameterFieldDefinitions = reportDocument.DataDefinition.ParameterFields;
            ParameterFieldDefinition parameterFieldDefinition = parameterFieldDefinitions[PARAMETER_FIELD_NAME];
            parameterFieldDefinition.ApplyCurrentValues(currentParameterValues);
        protected void Page_Load(object sender, EventArgs e)
            customersByCityReport = new ReportDocument();
            string reportPath = Server.MapPath("customersByCity.rpt");
            customersByCityReport.Load(reportPath);
            ConfigureCrystalReports();
            ArrayList arrayList = new ArrayList();
            arrayList.Add("paris");
            arrayList.Add("Madrid");
            arrayList.Add("Marseille");
            arrayList.Add("Buenos Aires");
            arrayList.Add("Sao Paulo");
            ParameterFields parameterFields = CrystalReportViewer1.ParameterFieldInfo;
            SetCurrentValuesForParameterField(customersByCityReport, arrayList);
            CrystalReportViewer1.ReportSource = customersByCityReport;
    1st scenario
    When in a runtime, it's keep appear a dialog box. This dialog box ask me to suppy Server, User ID, Password and Database. Once all information is supplied, my report display the data as expected
    2nd scenario
    I change my report using OLE DB (ADO) -> Microsoft OLE DB Provider for SQL Server -> checked on Integrated Security. I just choose Server, and Database. I assume me using Windows Authentication
    When in a runtime, there's no dialog box as above. My report display the data as expected. really cool
    Look's like, when report using SQL Server Authentication there's some problem. but, when report using Windows Authentication, it's fine.
    I'm looking for comment. Please help me

    Hello,
    MS SQL Server 2008 requires you to install the MS Client Tools for 2008.
    Once install then update all of your reports to use the SQL Native 10 as the OLE DB driver.
    The try again, if it still fails search, lots of sample log on code in this forum.
    Don

  • SAP Sol Man 4.0 Config guide

    Can some one tell me where i can find SAP Solution Manager 4.0 config guide?
    Also can some one send me any material for Sol Man certification exam.
    will reward points
    thanks
    PR

    Hi PR,
    please have a look at: www.service.sap.com/instguides -> SAP Components -> SAP Solution Manager -> Release 4.0 for the Configuration Guide and other related Guides such as the Master Guide etc... Here you will also find links to other material.
    For configuring the Solution Manager you need to go to transaction SPRO in your SolMan. Here you'll find the configuration of the Basic Setting, whcih you need to get it running and the scenariospecific settings, which are relevant for the scenarios.
    Best regards,
    Annett

  • SOL man in french

    Hello,
    I look for sol man in french language? for a belgium customer
    Does it exist ?
    Thanks
    georges

    checkout
    https://websmp104.sap-ag.de/localization
    https://websmp104.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&_OBJECT=011000358700002071872003
    on whats possible for french
    Nesimi

  • Unable to create EWA in SOL MAN

    Hi Experts,
    I configured EWA for SOL MAN....
    I successfully generating alerts for satellite systems but not for own SOL MAN
    Alert running successfully with PMS and Refresh sessins with out error
    my RTCCTOOL not showing any errors/requiremwents...
    please suggest...
    version : SAP SOLMAN EHP1
    Regards,
    Siva.
    Edited by: skreddy555 on Jan 30, 2011 1:38 PM

    Hello,
    So you are saying you can generate EWA reports for Satellite systems but not Solman itself?
    That really doesn't give any details to the problem, as what has occured and what has not.
    Is the EWA scheduled? Have you run solman_setup on Solution Manager as the managed system?
    If you want to generate an EWA for Soman itself, then you also need to treat it like a managed system.
    IWhat it the status in solman_ewa_adm? Is it active? If it is ther eand active it should be scheduled and then there should
    be something in DSWP. Is the icon a bottle? 2 Bottles? A Red Flag? A Grey Diamond, a Document?
    Is the maintenace package task scheduled and running with no errors? Are you using the SM_<SID>CLNT<nnn>_BACK RFC or the NONE RFC in SDCN as the back RFC and have you tested them?
    Is SM:EXEC SERVICES finishing or cancelling? If it is cancelling is there a dump?
    These are some things to check. But it is hard to even gues what the problem is because you have been so vague.
    If you can describe what you have done to configure, what is working, and what seems not to be working, this would help to get an idea where & what the problem may be. But you generally need to treat the Solution Manager exactly the same as a satellite system when setting it up for EWA reporting. This make is both a managed and the managing system. So you can't skip any steps just because its the managing system. If you describe the problem in more detail, and if any part in the process is working, and what is not, that is helpful.
    You should see it schedulied in DWSP. If not, then it's not scheduled. But the status in DSWP can tell a lot. A Red Flag means a problem with SDCCN tasks or the RFC, a Grey Diamond means important data is misisng and the report can't be generated, so that is a probelm is data collection, two flasks indicates sm:exec services has not run or is failing.
    So you really need to give more information....unless I have already touch upon your problem, I don't know how helpful people can be but toss out general information.
    I'd like to help more if you can give more details to what you see and don't see that you should.
    Regards,
    Paul

  • Invoke sql 2005 native web services

    Dear all,
    I am trying to  invoke from sap ecc 6.0 a native web services written in sql 2005.
    For instance the web service path is something like http://10.1.0.197:8080/EmployeeXml?wsdl .
    The web method is GetEmployeesXml
    If I try to consume via custom .net application, it works but when I try to do the same in sap
    following this guide
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/802edea6-274e-2e10-fd95-e5e1a8bc0892?QuickLink=index&overridelayout=true
    I get the error http not supported.
    The differnce between an asp.net web services (where everythings works) and this one is regarding the autentication.
    For the first one it is possible to specify anonymous login for second it is necessary to specify the username and password.
    I kindly ask you to give any help to solve this issue, or is there a manual for sm59?
    Thank you very much

    Try with the following:
    <xsd:complexType name="SqlResultStream">
       <xsd:sequence>
          <xsd:element name="SqlRowSet" type="sqlsoaptypes:SqlRowSet" minOccurs="0" maxOccurs="unbounded"/>
          <xsd:element name="SqlXml" type="sqlsoaptypes:SqlXml" minOccurs="0" maxOccurs="unbounded"/>
          <xsd:element name="SqlMessage" type="sqlmessage:SqlMessage" minOccurs="0" maxOccurs="unbounded"/>
          <xsd:element name="SqlRowCount" type="sqlrowcount:SqlRowCount" minOccurs="0" maxOccurs="unbounded"/>
          <xsd:element name="SqlResultCode" type="sqlsoaptypes:SqlResultCode" minOccurs="0" maxOccurs="unbounded"/>
          <xsd:element name="SqlTransaction" type="sqltransaction:SqlTransaction" minOccurs="0" maxOccurs="unbounded"/>
       </xsd:sequence>
    </xsd:complexType>
    You also have to know that this is not a perfect equivalent, as no tag can replace the xsd:choice. The xsd:choice means that only one of the elements can occur, while in xsd:sequence any of the elements can occur. But you should be able to achieve the same with a properly built mapping: create only one of the fields, and leave the rest empty - this is possible thanks to minOccurs="0".
    Hope this helps,
    Greg

  • Windows authentication for SQL 2005 DB connect

    Hi all,
    I'm trying to create a DB connect
    in the connection parameters when I mention a user name and password who is created as a SQL authentication then it is working fine.
    but in my connection parameters if I mention a user name password who have a Windows authentication in the SQL 2005 which we are trying to connect then it gives an error. It is not connecting .
    Can you please tell me how can we connect using a windows authentication.
    Mey

    Solution to solve the actual issue :
    For the SAP system to use standard default NT authentication
    Please refer to this link: http://help.sap.com/saphelp_nw04s/helpdata/en/9c/d736b880c34f76b507bac7751a0474/content.htm
    1.       Database login:
    SQL Server login with System Administrator privileges, that is this login should be member of the sysadmin fixed server role on the target SQL Server. If such a login does not exist, you have to create it on the target SQL Server. The SAP multi-connect mechanism allows both integrated security logins and the use of SQL Server authentication. For security reasons, we highly recommend to use integrated security (Windows authentication). If you use Windows security, leave this field empty.
    2.     &#61601;        Password / Re-enter password :
    If you have decided to use integrated security, leave these fields empty. Otherwise enter the password of the SQL Server login.
    The above pointer was used to solve the login issue but we still had issues in getting the schema visible in SAP BW. As the user ID was left blank we were not able to get the schema view for the <blank> user.
    Note to be applied to solve the Schema issue :
    note 1091929 : &#61664; Link
    so now you can enter the schema to be used in DS creaton screen.

  • How to Create a SQL Agent Job For A SSIS Package with Sql Server Authentication

    Hi ALl,
    I have a SSIS package which basically has a data flow task in which i pull the data from one server and copy it into another server and my source server is the one where i dont have windows authentication and i have to only use a sql server authentication
    . This package runs fine if i click the server connection properties type the password and save it.
    Now, my task is to set up a sql agent job which basically uses a proxy account and takes this package from the file system and runs it.But when i try to run this package, its failing with an error saying 
    "Login Failed For rpt5user" where rpt5user is the username for my sql server authentication of the source connection.
    Can someone please help me with any suggestions on how to do this?
    I have heard that we can achieve it by using xml config file which i have never used and i am trying to google around but for no luck.
    So, If someone can please throw any suggestions or ideas on this it would be great.
    Thanks

    You need to add password as a config item and set it from the file source or sql table
    see this as an example
    http://blogs.msdn.com/b/runeetv/archive/2009/12/22/ssis-package-using-sql-authentication-and-dontsavesensitive-as-protectionlevel.aspx
    Please Mark This As Answer if it solved your issue
    Please Mark This As Helpful if it helps to solve your issue
    Visakh
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • Latest DVDs of Support Package Stack for NW7.0, ERP 6.0, and Sol Man. 4.0

    Hi all,
    I want to request SAP the latest DVDs of Support Package Stack for NW7.0, ERP 6.0, and Sol Man. 4.0, is it possible & how to do it?
    Thanks,
    Toan Do

    Hi Toan,
    It's possible to order them or download them from SAP Marketplace
    http://service.sap.com/swdc
    Regards
    Juan

  • Possible for AIR app connecting to SQL 2005 server

    Is it possible using Flex AIR to connection to SQL 2005
    server and fetch data ?
    If YES, whats step / process we need to follow please.
    We have the DB in sql 2005 and we want to develop desktop
    client and fetch the records from DB to AIR app.

    "kamaljeetsinghsaini" <[email protected]>
    wrote in message
    news:gmsmnc$non$[email protected]..
    > As we know that AIR supports SQlite only but in our case
    we want to fetch
    > data
    > from server that is using SQL 2005 as DB. So are you
    saying we can
    > directly
    > send the HTTP service to that server and fetch data from
    it ?
    You can send the HTTPService request to whatever back end
    technology you are
    currently using to access it. For example, if you are using
    ASP.net, you
    would still use ASP.net, but you would send back something
    that Flex
    understands, such as XML, instead of the HTML that the
    browser client
    understands.

  • How to configure data source for MS SQL 2005 Server.

    Good morning,
    While creating a data source for MS SQL 2005 Server, what are the values I should use for:
    Object Factory, DataSource Type, and CPDS Class Name values ?
    Thanks
    Seenu

    seenuFour wrote:
    Hi,
    I am working on a web application, the backend of which is a MS SQL 2005 server. I am creating a data source on the application server to manage the connection pool.
    Hence I need to give the following values while creating the data source:...
    Hence you need to provide some actual detail about what the context is.
    IIS runs "web applications" but your question would have no meaning in that context. On the other hand it might have some meaning if you were running Tomcat.

  • Database restore from SQL 2000 to SQL 2005 for SBO 2005B

    Hi Everyone,
    I am facing some problems in regards to the restore of SBO Database from SQL 2000 to SQL 2005.
    Let me explain you the problem.
    See I am using SAP B1 2005B with patch level 38 in my laptop with SQL 2000. I have made an company in this and done work in it as a production company and now I want to restore this company in the server which has SQL 2005. How to do it.
    I have taken a backup in my laptop from SAP B1 Server Suite Manager which has SQL 2000 and sucessfully backed up but when I am trying to restore in the server which has SQL 2005 I am getting the following error in SQL 2005 in server :-
    Restore failed for Server 'DXBAP001'.  (Microsoft.SqlServer.Smo)
    System.Data.SqlClient.SqlError: Directory lookup for the file "C:\Program Files\Microsoft SQL Server\MSSQL\data\SBO_DCHAR.mdf" failed with the operating system error 3(The system cannot find the path specified.). (Microsoft.SqlServer.Smo)
    Please let me know the solution for it.
    Thanks in Advance.
    Regards,
    Kawish Junaid Mazhari

    Hi,
    In SQL 2005 create a database and name as the 200 one was (though any name would do).  when you create the database note the location of the .mdb and .ldf file.
    once this had created right click on your new database > tasks > restore database
    in the new window select from device and point it to your .bak file created from your 2000 system, ensure you put a tick in the restore box on the new line.
    in the options tab tick overwrite database, and, change the file locations in the restore as directory to the file locations of the new database.  the file names must be the same too.
    you can change the original file names after the restore.
    that should do the trick.
    thanks,
    mike

  • Sql 2005 standard edition for sql and AS databases with bpc 7.0 sp3 ?

    hello
    Install guide tells that we must use SQL 2005 Enterprise Edition with BPC except for Reporting Services.
    Customer asks wether he could use SQL 2005 Standard Edition for SQL database and Analysis Services ?
    Thanks.

    Hello Sorin. Two more questions, please:
    1) what do you mean by "Also into Application server you need EE because only in this version you have control flow." ?
    Is "control flow"  "business process flow" new functionality ?
    2) On the other hand, I don't think that BPC admin task is able to handle lite or full optimize without an Enterprise Edition Client.
    But customer asks wether it is possible to install on application server
    - SSIS standard edition for SSIS service
    - SSRS standard edition for Reporting Services
    - SQL client Enterprise Edition to let BPC admin task handle lite and full optimize properly.
    Why all this ? Because Enterprise Edition costs ten times more than Standard Edition and in a multi-server configuration, customer has to buy several SQL Server licenses, one per server running at least one SQL server service. (For example, with SQL,SSIS and OLAP on one server, and SSIS and SSRS running on the application server, customer has to buy two SQL servers licenses).
    Thanks. R.

Maybe you are looking for

  • Sap crm(7.0)  datasource test extract error

    hi,all:    I  activate the CRM datasouce 0CRM_CIC_CTI  successfully, but when i did the test extract with T-CODE RSA3,THE error happened. the error description in the below:    Update mode F is not supported by the extraction API    Message no. R3011

  • Gmail doesnt work

    Gmail doesnt work for me Wifi is perfect ? It was after the update.

  • Template form is giving error in R12

    Hi All, We are trying to run the template form from apps R12.But it is giving error as 'frm-40735: On error trigger raised unhandled exception ORA-06508'.we tried out by compiling all .pll and all invalid objects in database .All .pll is compiled by

  • Textfield for date input

    Hello, I would like to have a textfield so that the user can enter a date value in the form 21-Jan-2004 (only input that matches this pattern should be allowed). I know how to do this with a JSpinner but I need to do it with some kind of textfiled. Q

  • MDM MDIS best practices!!!

    Hello Experts, I want know what is the best practices of MDIS when MDM connects/imports data from two different ECC instance, below is issue which we were facing in our project, MDM imports data from two ECC instance, we had maintained two inbound po