Integrating Java into SAP Business One Via DI Server and the B1WS

Hello Everyone
We are using the B1WS to call the Web Services from our web application. We are able to Generate the WSDL files using the Generator application and now wish to test the connection between our web server and the DI server However I am getting a 404 error from the web service endpoint in the WSDL files (/B1WS/Service.asmx)
I've created a login request from the WSDL which all seems sound, but it's still getting 404 errors when it tries to connect to the endpoint. I've passed the request through tcpmon so I can see the content of it, and the request looks good, but isn't getting any response.  Is there any other SAP configuration that needs to be done to publish these services? I have read the Detailed B1WS Word Document and everything seems fine from that standpoint.
In hope,  I've made the following configuration changes to the web services application, but am still getting a 404 error:
- Given the ASPNET user and the NETWORK SERIVCE group the required permissions for the SBODI_Server in DCOM configuration.
- Changed the virtual directory home of "B1WS" from
   C:\Program Files\SAP\SAP Business One Web Services\B1WS\App_Code to
   C:\Program Files\SAP\SAP Business One Web Services\B1WS
This directory has a web.config file, and has the bin files etc, but still seems to be missing a Service.asmx file (this missing , I don't know if that's all that's missing as I don't have any reference application to compare it to as I am using Java.
As usual your help is much appreciated.
Regards
Richard

Hello everyone,
I've had the same problem with the "missing" Service.asmx.
In my case, it helped to activate "Active Server Pages" and "ASP.NET" in the Web Services Configuration in the Internet Services Manager, which were both deactivated by default.
Maybe this can help you along.
Regards,
Andreas
Edited by: Andreas Mantel on Dec 17, 2008 4:51 PM

Similar Messages

  • Adding Invoices into SAP Business One via web service.

    Hello!
    I am partially done with my project. However, I am down to a couple of problems which hinders the progress of my project.
    When I create an invoice with 2 items it will be inserted perfectly into the SAP Business One. However, when a second invoice with another 2 items is created the newly inserted invoice will reflect 4 items. 2 from the first invoice and the remaining 2 from the current invoice.
    May I know what is the problem? I have been debugging for the past 2 nights and i couldn't find any headways.
    Your help will be greatly appreciated.
    Thank you!
    Here are the codes:
                    oCompany = Session("g_CompanyConnection")
                    oDocument = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oInvoices)
                    oDocument.DocType = SAPbobsCOM.BoDocumentTypes.dDocument_Items
                    oRecSet = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
                    oPay = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oIncomingPayments)
                    drOrdHeader = dtOrdHeader.Rows(0)
                    'Set values to the fields
                    oDocument.CardCode = drOrdHeader("CardCode")
                    oDocument.HandWritten = SAPbobsCOM.BoYesNoEnum.tNO
                    Dim j As Integer = 0
                    Dim count As Integer = 0
                    While dtOrdLines.Rows.Count > j
                        drOrdLines = dtOrdLines.Rows(j)
                        If count > 0 Then
                            oDocument.Lines.Add()
                        End If
                        'item lines - set value to the first line
                        oDocument.Lines.ItemCode = drOrdLines("ItemCode").ToString()
                        oDocument.Lines.Price = drOrdLines("Price").ToString()
                        oDocument.Lines.Quantity = drOrdLines("Quantity").ToString()
                        count = count + 1
                        j = j + 1
                    End While
                    lngRetVal = oDocument.Add

    Thanks for your reply Li!
    dtOrdLines was all along set as a local variable. Perhaps i should show the whole chuck of codes here.
    Public Function CreateItemOrder(ByVal OrderDataSet As DataSet) As String
            Dim lngRetVal As Long
            Dim retVal As Long
            Dim strReturn As String = ""
            Dim strReturn1 As String = ""
            Dim oDocument As SAPbobsCOM.Documents = Nothing
            'Dim oUDF As SAPbobsCOM.UserFields
            Dim dtOrdHeader As DataTable = Nothing
            Dim dtOrdLines As DataTable = Nothing
            Dim dtPayment As DataTable = Nothing
            Dim drOrdHeader As DataRow
            Dim drOrdLines As DataRow
            Dim drPayment As DataRow
            Dim oCompany As SAPbobsCOM.Company
            Dim oRecSet As SAPbobsCOM.Recordset
            Dim oPay As SAPbobsCOM.Payments
            Dim IngRow As Long = 0
            Try
                SetConnectionParam("S10033973", "SBO_Innova", "manager", "manager", "sa", "P@ssw0rd")
                dtOrdHeader = OrderDataSet.Tables("OnlySalesInvoice")
                dtOrdLines = OrderDataSet.Tables("OnlyInvoiceItem")
                dtPayment = OrderDataSet.Tables("PaymentTerm")
                If ConnectToDatabase() Then
                    oCompany = Session("g_CompanyConnection")
                    oDocument = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oInvoices)
                    oDocument.DocType = SAPbobsCOM.BoDocumentTypes.dDocument_Items
                    oRecSet = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
                    oPay = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oIncomingPayments)
                    drOrdHeader = dtOrdHeader.Rows(0)
                    'Set values to the fields
                    oDocument.CardCode = drOrdHeader("CardCode")
                    'oDocument.DocDueDate = Today
                    'oDocument.Address2 = drOrdHeader("ShipTo")
                    'oDocument.Address = drOrdHeader("BillTo")
                    'oDocument.DocDate = Today
                    'oDocument.CardName = drOrdHeader("CardName").ToString()
                    oDocument.HandWritten = SAPbobsCOM.BoYesNoEnum.tNO
                    Dim j As Integer = 0
                    Dim count As Integer = 0
                    While dtOrdLines.Rows.Count > j
                        drOrdLines = dtOrdLines.Rows(j)
                        If count > 0 Then
                            oDocument.Lines.Add()
                        End If
                        'item lines - set value to the first line
                        oDocument.Lines.ItemCode = drOrdLines("ItemCode").ToString()
                        'oDocument.Lines.LineTotal = drOrdLines("LineTotal").ToString()
                        'oDocument.Lines.ItemDescription = drOrdLines("Desc").ToString()
                        oDocument.Lines.Price = drOrdLines("Price").ToString()
                        oDocument.Lines.Quantity = drOrdLines("Quantity").ToString()
                        count = count + 1
                        j = j + 1
                    End While
                    Dim k As Integer = 0
                    Dim count1 As Integer = 0
                    While dtPayment.Rows.Count > k
                        drPayment = dtPayment.Rows(k)
                        oPay.CardCode = drOrdHeader("CardCode")
                        oPay.CashSum = 0
                        oPay.TransferAccount = "161016"
                        oPay.TransferSum = 0
                        oPay.Checks.CheckSum = drPayment("Price") - drPayment("Change")
                        oPay.Checks.BankCode = drPayment("BankCode")
                        k = k + 1
                    End While
                    retVal = oPay.Add()
                    If retVal = 0 Then
                        Session("g_LastErrorMsg") = " "
                        oCompany.GetNewObjectCode(strReturn1) 'get last doc
                    Else
                        Session("g_LastErrorMsg") = oCompany.GetLastErrorDescription
                    End If
                    lngRetVal = oDocument.Add '<----- the same document is added here, here is where the document should actually be added
                    'Check the result
                    If lngRetVal = 0 Then
                        Session("g_LastErrorMsg") = " "
                        oCompany.GetNewObjectCode(strReturn) 'get last doc
                    Else
                        Session("g_LastErrorMsg") = oCompany.GetLastErrorDescription
                    End If
                    oRecSet.DoQuery("UPDATE OINV Set ReceiptNum = " & strReturn1 & " Where DocEntry=" & strReturn)
                    'oRecSet.DoQuery("UPDATE OINV SET PaidToDate = ")
                    oRecSet.DoQuery("UPDATE OINV SET IsICT = 'Y' WHERE IsICT =" & strReturn)
                End If
            Catch ex As Exception
                Session("g_LastErrorMsg") = ex.Message
                strReturn = ex.Message.ToString()
            Finally
                oDocument = Nothing
            End Try
            Return strReturn
        End Function

  • Installation error of SAP Business One Client after server disconnection

    Hello,
    While installing the SAP Business One Client to my laptop, the SAP server network connection accidentally interrupted and my installation breaks off. I did cancel the setup and try to remove the SAP Business One DI API using uninstaller. After removing the corrupted application I tried to run again the setup.exe from the server but I got this error:
    Previous version of SAP Business One DI API uninstallation failed:
    sapserver\B1_SHR\Client\SAP DIAPI Installation\setup.exe
    SAP Business One Client installation will be aborted.
    I also tried to remove the registry files using some registry cleaner but still I got the error.
    Encountered something like this before? Need some help, thanks in advance!
    Regards,
    Ren

    Hi All,
    Sorry to re open this thread, but I am having a similar issue in attempting to upgrade a 2007 installation to 8.81.
    When attempting the upgrade Server Tools, SDK, and even Client wont uninstall from either the upgrade process or manually from control panel.
    I have conducted all the mentioned solutions as well as running registry cleaner all to no effect.
    I have even attempted re installing the 2007 application but this returns a 1612 install shield error.
    Any advice would be higher appreciated.
    Matthew

  • I have just purchased a macbook pro. I downloaded two sd cards, one via lightroom 4 and the other via iPhoto. I can't find the latter card when I try to import via LR4. In fact i can't find it at all unless i open iPhoto. where is it?

    Good Evening, I have just purchased a Macbook Pro, and have downloaded two SD cards of a trip to USA and Canada last September.  One via Lightrooom 4 and the other via iPhoto. I tried to import the SD card via iPhoto into Lightroom 4 but could not find it. I tried to find this "folder"? via other means with no success. however when I open iPhoto, there it is, so it must be on the Hard Drive somwhere??? I am new to Apple having decided to jump ship from Windows. Would be grateful for any help.

    iPhoto is a - like Lightroom - Photo Manager. It's a database. Like any db to get data out you have to export it.
    File -> Export
    and in this case set the Kind to Original.
    iPhoto is a $15 app, LR is somewhat more expensive. As they both want to manage the photos there's no good usage scenario where you use both. Pick one horse and ride, essentially.
    This User Tip
    https://discussions.apple.com/docs/DOC-4921
    has details of the options in the Export dialogue.

  • I have a MacBook Pro 15" and my warranty just ran out! I partitioned my harddrive into two partitions, one with Snow Leopard and the other with microsoft.This morning I turned on my Macbook Pro and it will not boot into Snow Leopard.

    Good Morning,
    I have a MacBook Pro 15" and my warranty just ran out! I partitioned my harddrive into two partitions, one with Snow Leopard and the other with microsoft.This morning I turned on my Macbook Pro and it will not boot into Snow Leopard. I shut it off took out the battery, reinstalled the battery. Then I put in the Snow Leopard CD and booted up to disk utility and The Snow Leopard partion would not show up?? I do see the microsoft partion.
    I also rebooted holding down the shift key and still no Snow Leopard
    Could you please tell me what I can do, what keys do I press on restart any advice to get Snow leopard back.
    thank you.

    Have you restarted holding down the Opt key?  That procedure should give you a gray screen with all of the partitions that exist.  Then select the SL partition for boot.  Also go to System Preferences and Startup Disk, unlock the lock and select the SL partition as the default boot partition, then relock.

  • Looking to switch career from Java to SAP Business One

    Hi All,
    I have around 4 yrs of experience in JAVA/J2EE application development.I am planning to switch my career into SAP(in Technofuctional module).Actually, I want to switch my career from coding to functional domain(in SAP) but i don't know how to get into it.I want to work as close as to the business and get use of my technical background because that's all I got so far. Please guide me which SAP module i would choose to build my career and what steps i should  take .
    Thank You

    Hi SunnyB
    SAP Business one is an intergrated solution with all domains in one application.  Things like purchasing, materials, finance, crystal reports etc comes into one single application called SAP Business One.  Historically SAP Business One developmed by a software firm based in Israel and SAP AG acquired the company and renamed it like SAP Business One.  My suggestion would be it is a good application suitable for small and medium type businesses where business processes are not complicated.  However, if you want to make career in one specific domain listed below, you need to look into SAP's ERP modules:
    1.Materials Management
    2.Financials(Financial Accounting)
    3.Controlling(Cost & Management Accounting)
    4. BI(Business Intelligence is a reporting tool and data mining tool)
    5. HR
    6. Basis(Technical module where installation and authorisation including system security etc are taken care of)
    7. Travel Management(Application for employee/non-employee expense claims)
    8. ABAP(Advanced Business Appln.Programming owned by SAP AG)
    9. Project Systems
    10. Others that I donno at this stage but exists.
    My suggestion would be to go for anything as per your interest and not purely financial.  Of course you'll be rewarded good with any of the above modules but learn based on your interest.
    Good luck!
    Mohammed.

  • Has some one Integrated File System & SAP Business One using B1iSN?

    I have to create a Proof of Concept where, I have to pick up a file from A file System, do some transformation & then call SAP B1 APIs to post documents in SAP Business One.
    I am new to B1iSN Technology and  was wondering if this is feasible. If Yes, I would appreciate if you can give me some logical steps to follow.
    Thanks,
    Yogesh

    Hi Yogesh,
    You find all of the available documentation for B1iP SAP Business One Integration for SAP NetWeaver (B1iSN) [original link is broken] [original link is broken].
    Additionally, I can mail you some BFD samples to give you and idea of B1iP coding.  If Edward or another SAP employee can send you the IPO samples, that would be ideal, since I believe that they have an implementation of a basic file adapter proto-type.
    HTH,
    Dhruv

  • HOW TO INSTALL SAP Business One to Windows Server 2008

    Hi everybody, anyone can help me how to install SAPB1 in windows server 2008? last night i try to install SAPB1 to my sever windows 2008 but after installation i cannot find for the shortcut SAP business one in my desktop but usaully in default installation can create shortcut to the destop. in windows server 2003 there is no problem in the installation? and also it is support windows server 2008? when i try SAP popup notice that my MSQL is outdated... please help me...thanks...

    Dear Raffy,
    unfortunetly SAP B1 is still not supported under Windows Server 2008.
    For further information about supported plataforms please refer to
    the following site:
    https://service.sap.com
    > SAP Channel Partner Portal ¦ Existing Users - Login
      > Solutions ¦ SAP Business One
       > Product Availability
        > Supported Platforms
    Best regards,
    Tomas Black

  • Error while installing SAP Business One 9.0 Server Tool

    Hi,
    Here is my landscape idea: I would like to have License server and application server installed separately. I had License server 9.0 PL09 and application server already installed.
    I uninstalled the server tool from my license server machine and tried to install PL10 server tool. However, i am getting a screen where I have to select a filename for SLD backup and hen I click on browse, its all blank. Please could you help?
    I have attached the screenshot of the same.

    Hi,
    Me too faced the same issue
    Open regedit find for SAP
    Dont forget to check match whole string only. And click find.
    HKEY_LOCAL_MACHINE--> Software --> Wow6432node--> SAP
    Delete the sap folder then it works fine
    Regards,
    Siva

  • Installation of B1 Integration Component in SAP Business One 9.0 PL 08

    Hi Experts
    I have trouble with installing B1 integration component
    Below is the specs of the system
    1. SAP 9.0 PL 08
    2. SQL 2008 R2
    3. Windows 7 32 Bit
    Initially this system was with installed with SAP 9.0 PL 05 and later upgraded to PL 08
    During the installation of PL05, I tried installing the Integration Component and it failed, so I skipped it that time
    Now the Customer is in need of configuring the Dash Board and Mobile Apps
    So now its a must install situation for me
    When I try to install from the package it creates the attached error log file in desktop with the message stating "multiple launches of this installer is not allowed. it will quit now."
    (find attached file for the error details)
    Please let me know if any more information needed
    Thanks
    Regards
    Vinodh

    Hi Bastian
    Thanks for the reply,
    Actually, I did not have B1if Installation in place, so I did not uninstall anything after your reply
    But I saw the .com.zerog.registry.xml file located in C:\Program Files\Zero G Registry, and I deleted the whole folder, since there are no other program files
    Cleared the temp folder as well, restarted the machine, but it still din work
    I have some clarifications as well
    1. Do I need to install from the PL08 Package this is an upgrade version
    2. OR do I need to install it from the PL05 Package, as this is an Installation version
    FYI, I have tried both still no avail
    I first tried inslattion from a external hard disk, and later copied the installation file in the local drive and tried, does it makes a difference ?
    Any way thanks again for your reply
    Regards
    Vinodh

  • SAP Business One on Ipad

    Dear All,
    I installed SAP Business One 8.81 PL04 (on Server) and SQL server 2005.
    My questions are
    1) i install B1 integration component, when i am opening the integration framework i am getting a windows security dialog box in which it is mentioned that "The server 127.0.0.0 at B1iP_dummy requires a user name and password.
    Warning: The server is requesting that your user name and password be sent in the insecure mannar(basic authentication without a secure connection.
    User Name :B1iadmin
    Password:xxxxxx
    Here my question is that if i provide username and password, Integration Solution for SAP Business One is opened but is not reflecting any data when i am clicking on SLD, Scnarios, Maintaining, Control Centre.......etc.
    2) I want to connect to the server through the ipad.
    I put the user as mobile user, i have given UDID number of Ipad, phone no of mobile user in SAP Business One.
    I have given the server details like IP add: 000.000.000.000:8080 and kept SSL On and given DB Name as SBODemoIN and username as 'ABC'.
    When i am entering the password it is reflecting me an error "an ssl error has occurred and a secure connection to the server cannot be made. [-1200]'.
    I want to know where i have done the mistake.
    Note: i tried by giving ip with B1 port number like : 000.000.000.000:30000 again its reflecting same error.
    Can any body help me out.

    Lets try to keep it together ...
    1.) in SAP Business One you have to set the following settings for the user you want to connect with
    a.) checkbox "mobile user" is checked
    b.) mobile-number (must be digit by digit the same as you set it in the settings of the App)
    c.) UDID of the iPad/iPhone (this is a 40 (!!!) digit alphanumerical number of the device)
    ATTENTION - since SBO App. v.1.6.0, the UDID is no longer in use, now yo have to set the W-LAN MAC Adress here
    d.) the User has a limited or a professional user license
    e.) the user has a B1i licence
    2.) settings in the iPad/iPhone App
    a.) Server: IP Adress of the Bi1 Integration Server followed by :8443 (e.g.: 91.55.110.15:8443)
    8080 is the http port (unsecure), while 8443 is the https port (secure)
    b.) SSL: is on
    c.) Company DB: the database Name of the company you wanted to connect to (and where you have made the user setting above) (e.g.: SBODemoIN)
    d.) Usercocode: the log in name of the user you made the above settings for (e.g.: manager)
    e.) Phonenumber: digit by digit the same as above 1.).b.)
    f.) Demosystem: needless to say, this is Off
    3.) network settings
    a.) certainly the port 8443 must be available from outside the network
    b.) VPN connection to the network must be possible
    c.) the VPN connection setting has to be set in the iPad(iPhone
    If this all is set and done,
    1.) you first have to establish a VPN connection with your iPad/iPhone
    2.) and now/than you should be able to connect to the company with the iPad/iPhone App
    Hope this helps and make it e little bit clearer how this all works.
    The SBO App is "nothing else" as an WebService-Call-Interface from the iPad/iPhone to the B1i Server. Every form/view you are filling in the App, is a WebService call/request to SAP Business One. To Send this WebService Request to the B1i Server, you first have to connect into the company network (via VPN) otherwise you call cannot reach the B1i Server ...
    regards from Hamburg,
    Heiko

  • SAP Business One 8.8 - Reviews & Videos

    The Orchestra Team has a centralized place for previews and reviews of SAP Business One 8.8
    If your customers or prospects are interested in getting an honest "first impression", this is a great start.
    [Your Resource for Information About SAP Business One 8.8|http://www.orchestrateam.com/content/sap-business-one-88]
    Welcome to Orchestra's SAP Business One 8.8 preview! The following pages are going to be a review of features for the new SAP Business One 8.8 release going into ramp-up this fall. Also, we'll be sharing with you our opinions of the new feature set and sharing some videos with you on the new product.
    Here are links to all the videos and resources we have compiled thus far.
    [SAP Business One 8.8 - New Features and First Impressions|http://www.orchestrateam.com/sap-kb/sap-business-one-88-new-features-and-first-impressions]
    [SAP Business One 8.8 - New Skin and UI Design|http://www.orchestrateam.com/sap-kb/sap-business-one-88-new-skin-and-ui-design]
    [SAP Business One 8.8 - Crystal Reports Integration|http://www.orchestrateam.com/content/sap-business-one-88-crystal-reports-integration]
    [SAP Business One 8.8 - Data Archiving Preview|http://www.orchestrateam.com/content/sap-business-one-88-data-archiving-preview]
    [SAP Business One 8.8 - Orchestra Takes Part in SAP's Official Review|http://www.orchestrateam.com/sap-kb/sap-business-one-88-orchestra-takes-part-saps-official-review]
    To stay fully up to date with SAP Business One 8.8, you can subscribe to our [RSS Feed|http://www.orchestrateam.com/rss.xml]
    Brad Windecker
    [Orchestra Team|http://www.orchestrateam.com]

    Hi Gordon,
    Yes I know you can select u2018OKu2019 and move on with the entering of a marketing document, however this is an extra click and when you are entering a large number of documents a day this can become painfully and that is the feedback from the customers, is there a reason why this could not be an option in the company settings? I know this will not happen overnight and this is why I posted the question of the development collaboration forum.
    Kind regards,
    Johnathon

  • SAP Business One 8.8 Preview Program

    Hi All,
    Anybody has Idea about the latest status for starting of SAP Business One 8.8 Preview Program ?
    Today I see on the SAP BUSINESS ONE 8.8
    CENTRAL INFORMATION page on SAP SMP site, there it is mentioned that SAP Business One 8.8 Preview Program will start beginning of May 2009.
    BR
    Samir Gandhi

    For anyone interested in an additional source of info on SAP Business One 8.8, we have a section of our website dedicated to it.  You can find information about it below.
    [The Orchestra Team|http://www.orchestrateam.com] has a centralized place for previews and reviews of SAP Business One 8.8
    If your customers or prospects are interested in getting an honest "first impression", this is a great start.  If there is anything specific you want us to review, we're happy to take requests and will get it into our weekly updates on the new version.  Check back periodically or subscribe to the [rss feed|http://www.orchestrateam.com/rss.xml] to keep up to date also.
    [Your Resource for Information About SAP Business One 8.8|http://www.orchestrateam.com/content/sap-business-one-88]
    Welcome to Orchestra's SAP Business One 8.8 preview! The following pages are going to be a review of features for the new SAP Business One 8.8 release going into ramp-up this fall. Also, we'll be sharing with you our opinions of the new feature set and sharing some videos with you on the new product.
    We'll be starting with a few video links and posts about our impressions of the 8.8 preview version and moving on to a more in-depth look at all of the new bells and whistles. Updates are available via our rss feed.
    Check out the bottom navigation links to navigate to more information.
    [SAP Business One 8.8 - New Features and First Impressions|http://www.orchestrateam.com/sap-kb/sap-business-one-88-new-features-and-first-impressions]
    [SAP Business One 8.8 - New Skin and UI Design|http://www.orchestrateam.com/sap-kb/sap-business-one-88-new-skin-and-ui-design]

  • SAP Business One System Requirement

    Hi,
    I have a client who is currently in SAP Business One 8.81 with PL 08.
    There are 12 SAP Users and they have three active companies in SAP Business one,  Two companies is integrated with Website , one company is using Zedit Ecommerce application and another is using Comgine ecommerce application. These two application create orders\invoice into SAP Business one which were placed through website.
    Third company have the add-on which imports the EDI files and post invoices into SAP Business One. Each EDI file contains about 1000 invoices, all the thousand invoices get imports into SAP Business One in AR side as well as AP side (add-on create AP invoice and AR invoice).  They also have add-on which create incoming payment for thousand of invoices.
    Their current working process is one or two user imports the EDI file, one or two users makes payment other user correct the due date for the invoices or cancel and create new invoice(by creating credit memo) to correct error in invoice. On an average 6 users works at same time.
    Company 1 and 2 work fine, but since more users are working on company three and EDI import and cash apply process continously using transaction tables two users always get clash, so sometimes we are receiving the deadlock error from SQL also many transactions are getting failed with different errors from SDK (these errors were related to SQL). I assume transaction getting failed because while one user is trying to create the invoice other user is accessing the same table. I see it always happen when SQL memory get above 70%.
    Do any one have suggestion what is the recommended system configuration for this type of environment for both on client and server side? Do i need to host the SQL server in seperate machine and SAP server on different machine?
    Client current system configuration is as follows.
    SAP Business One 8.81 PL:08
    Hardware Configuration of Server:-
    Windows Edition : - Windows Server 2008 R2 Standard
    Processor: Intel(R) Xenon(R) CPU E5645 @ 2.40 GHZ 2.39 GHz (4 Processors)
    RAM : 12 GB
    System Type : 64 - Bit Operating System
    Your suggestion will be higly appreciated.
    Regards,
    Raja

    Hi,
    Are your users using one license at a time?.
    I agree with idea to separate the 3rd company that using EDI import.
    Create another Database server and restore the database. This will
    allow faster transaction since database is already separated and add-on
    consume much RAM.
    With regards to your client you just change the Current Server from Choose Company log-on
    and call the SQL server name.
    You can separate you license and database server also.
    Regards,
    Clint

  • SAP Business One 8.8 Database

    I am using SAP Business One 8.8.
    In the middle of working in SBO 8.8, it suddenly shut down. When I tried to log in again, the list of companies dissapeared. Seems like there's no database connection. The server and database (Ms SQL server) seem to be up and running. We turn off and on Ms SQL server and it seemed to work now.
    According to our source, it indicated this has something to do with the policy in Ms SQL Server. Apparently, we took some companies within the database online and offline. This somehow trigger to lock the 'sa' access and disconnect the database. How do I prevent this from happening again? If this has to post in a different forum, i.e. Ms SQL Server, i will post there accordingly. Thanks.

    Hi Gordon,
    I checked the log files and it seems like user 'sa' was trying to access the database numerous times. This somehow trigger the Ms SQL Server policy and completely locked out ALL companies in the database. No one is using sa in the company.
    The only thing I can think of is when I test crystal report, it prompted 'sa' by default at the database login screen. I normally select 'integrated security' to bypass that screen. However, I was doing that for the past few months and never had problems until yesterday. The 'blank' screen of company list has happened twice.
    In SQL Server, I checked off 'enforce password security' for user sa. Will that be enough to fix the problem?

Maybe you are looking for

  • HT1853 my ipod will no longer syn songs from my library why ?

    My ipod has been working fine for the last 2 yrs. but now when I purchase Itunes and try to drag them to the playlists on my Ipod it says there is a Sync error. Please help !

  • No Mac OSX DVD in the box of my macbook air

    Hi, I've just bought in Miami App Store, a new MacBook Air 13" with Lion installed. I've been looking for a CD, DVD, or USB key containing Mac OSX in the box, but i found nothing. Is that normal? I need this CD, in cases where my computer needs a res

  • Who mainatined the entries in sap table

    Hi, Can someone please tell me how do I find which user mainatined the entries in table B006 or any sap table. Also how will I know who has authorization to maintain the entries.

  • Best practice recmmendations for backups

    Hi, I wanted advise from senior basis consultants on backup strategy. Here is a summary of our environment: We have 6 SAP servers, with more than 1 SAP system installed per server. The SAP systems include CRM, SRM, XI, Portal, Solution Mgr, ERP , R/3

  • Complex fill problem. I think.

    I'm playing a game. It's fun. So I like to chart where planets are in each solar system using Numbers 10 or whatever the latest one is. I have a buddy helping me by charting some of the solar systems as well. Here's what he gave me: Is there a way to