SAP Business One 8.82 supports replication?

I have two servers running SAP B1 PL11 in a MS SQL Server 2008 r2 standard and this two servers is running on different locations and i already set up VPN connection in this two locations so that they can reach each other. I'm planning to synchronize their Databases.
Is their any chance to do this? or what kind of MS SQL Server replication is applicable to this?
I hope anyone can help me.

Hi jbrotto,
8.82 has already entered the pre-view phase for partners & Ramp-up is scheduled for mid-October.
You will find highlights of 8.82 & version 9 in the roadmap:
[SAP Business One Product Roadmap 2011-2014|https://websmp203.sap-ag.de/~sapidb/011000358700001336422008E/B1_Roadmap_EN.pdf]
All the best,
Kerstin

Similar Messages

  • SAP Business One - Java Connector

    Hi All,
    <br/><br/>
    We have a SAP Business One Application installed on a laptop. The requirement is to be able to use the SAP Java API to update tables in the system. We are not allowed to connect directly to the database and was advised to use the API instead.
    <br/><br/>
    The downloaded API that we are using is "sapjco30P_6-10005324 32 bit.zip". I have included the dll file contained in this package in the WINDOWS/system32 folder. I am using Eclipse as IDE and already included the "sapjco3.jar" in the classpath.
    <br/><br/>
    First question: Am I using the right Java Connector for SAP Business One?
    <br/><br/>
    I got sample code on how to connect using JCO:
    <br/><br/>
    package sample;<br/><br/>
    import java.io.File;<br/>
    import java.io.FileOutputStream;<br/>
    import java.util.Properties;<br/>
    import java.util.concurrent.CountDownLatch;<br/><br/>
    import com.sap.conn.jco.AbapException;<br/>
    import com.sap.conn.jco.JCoContext;<br/>
    import com.sap.conn.jco.JCoDestination;<br/>
    import com.sap.conn.jco.JCoDestinationManager;<br/>
    import com.sap.conn.jco.JCoException;<br/>
    import com.sap.conn.jco.JCoField;<br/>
    import com.sap.conn.jco.JCoFunction;<br/>
    import com.sap.conn.jco.JCoFunctionTemplate;<br/>
    import com.sap.conn.jco.JCoStructure;<br/>
    import com.sap.conn.jco.JCoTable;<br/>
    import com.sap.conn.jco.ext.DestinationDataProvider;<br/><br/>
    public class StepByStepClient<br/>
    {<br/>
        static String ABAP_AS = "ABAP_AS_WITHOUT_POOL";<br/>
        static String ABAP_AS_POOLED = "ABAP_AS_WITH_POOL";<br/>
        static String ABAP_MS = "ABAP_MS_WITHOUT_POOL";<br/>
        static<br/>
        {<br/>
            Properties connectProperties = new Properties();<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_ASHOST, "localhost");<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_SYSNR,  "06");<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_CLIENT, "000");<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_USER,   "manager"); //sapuser<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_PASSWD, "manager"); //sap1234<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_LANG,   "en");<br/>
            createDataFile(ABAP_AS, "jcoDestination", connectProperties);<br/><br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_POOL_CAPACITY, "3");<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_PEAK_LIMIT,    "10");<br/>
            createDataFile(ABAP_AS_POOLED, "jcoDestination", connectProperties);<br/><br/>
            connectProperties.clear();<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_MSHOST, "localhost");<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_R3NAME,  "SID");<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_CLIENT, "000");<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_USER,   "manager"); //sapuser<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_PASSWD, "manager"); //sap1234<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_GROUP, "GROUP");<br/>
            connectProperties.setProperty(DestinationDataProvider.JCO_LANG,   "en");<br/>
            createDataFile(ABAP_MS, "jcoDestination", connectProperties);<br/>
        }<br/><br/>
        static void createDataFile(String name, String suffix, Properties properties)<br/>
        {<br/>
            File cfg = new File(name"."suffix);<br/>
            if(!cfg.exists())<br/>
            {<br/>
                try<br/>
                {<br/>
                    FileOutputStream fos = new FileOutputStream(cfg, false);<br/>
                    properties.store(fos, "for tests only !");<br/>
                    fos.close();<br/>
                }<br/>
                catch (Exception e)<br/>
                {<br/>
                    throw new RuntimeException("Unable to create the destination file " + cfg.getName(), e);<br/>
                }<br/>
            }<br/>
        }<br/><br/>
        public static void step1Connect() throws JCoException<br/>
        {<br/>
            JCoDestination destination = JCoDestinationManager.getDestination(ABAP_AS);<br/>
            System.out.println("Attributes:");<br/>
            System.out.println(destination.getAttributes());<br/>
            System.out.println();<br/><br/>
            destination = JCoDestinationManager.getDestination(ABAP_MS);<br/>
            System.out.println("Attributes:");<br/>
            System.out.println(destination.getAttributes());<br/>
            System.out.println();<br/>
        }<br/><br/>
        public static void main(String[] args) throws JCoException<br/>
        {<br/>
            step1Connect();<br/>
        }<br/>
    }<br/>
    <br/><br/>
    Each time I run the application I run into an error:
    <br/><br/>
    Attributes:<br/>
    Exception in thread "main" com.sap.conn.jco.JCoException: (102) JCO_ERROR_COMMUNICATION: Connect to SAP gateway failed<br/>
    Connection parameters: TYPE=A DEST=ABAP_AS_WITHOUT_POOL ASHOST=localhost SYSNR=06 PCS=1<br/><br/>
    LOCATION    CPIC (TCP/IP) on local host with Unicode<br/>
    ERROR       connection to partner '127.0.0.1:3306' broken<br/>
    TIME        Mon May 09 10:46:46 2011<br/>
    RELEASE     720<br/>
    COMPONENT   NI (network interface)<br/>
    VERSION     40<br/>
    RC          -6<br/>
    MODULE      gwxx.c<br/>
    LINE        646<br/>
    DETAIL      NiIRead: P=127.0.0.1:3306; L=0.0.0.0:50496<br/>
    SYSTEM CALL GwRead<br/>
    ERRNO       10054<br/>
    ERRNO TEXT  WSAECONNRESET: Connection reset by peer<br/>
    COUNTER     2<br/><br/>
         at com.sap.conn.jco.rt.MiddlewareJavaRfc.generateJCoException(MiddlewareJavaRfc.java:662)<br/>
         at com.sap.conn.jco.rt.MiddlewareJavaRfc$JavaRfcClient.connect(MiddlewareJavaRfc.java:1362)<br/>
         at com.sap.conn.jco.rt.ClientConnection.connect(ClientConnection.java:721)<br/>
         at com.sap.conn.jco.rt.PoolingFactory.init(PoolingFactory.java:103)<br/>
         at com.sap.conn.jco.rt.ConnectionManager.createFactory(ConnectionManager.java:293)<br/>
         at com.sap.conn.jco.rt.DefaultConnectionManager.createFactory(DefaultConnectionManager.java:46)<br/>
         at com.sap.conn.jco.rt.ConnectionManager.getFactory(ConnectionManager.java:262)<br/>
         at com.sap.conn.jco.rt.RfcDestination.initialize(RfcDestination.java:509)<br/>
         at com.sap.conn.jco.rt.RfcDestination.getAttributes(RfcDestination.java:347)<br/>
         at com.sap.conn.jco.rt.RfcDestination.getAttributes(RfcDestination.java:27)<br/>
         at sample.StepByStepClient.step1Connect(StepByStepClient.java:74)<br/>
         at sample.StepByStepClient.main(StepByStepClient.java:304)<br/>
    Caused by: RfcException: [null]<br/>
        message: Connect to SAP gateway failed<br/>
    Connection parameters: TYPE=A DEST=ABAP_AS_WITHOUT_POOL ASHOST=localhost SYSNR=06 PCS=1<br/>
    <br/><br/>
    Second question: What seems to be the problem with my sample application? Do I need to use a different Java Connector for SAP Business One or SAP Business One does not support Java Connector?
    <br/><br/>
    Please help.
    <br/><br/>
    Thank you all.
    Edited by: kevinroy on May 9, 2011 4:51 AM

    Hi,<br/>
    Thank you very much for the reply. I am now able to move forward with what I am doing.<br/>
    I used the following code in connecting but am encountering an error:<br/>
    public class ConnectSAP {
         // company interface
         public ICompany company;
         private SBOErrorMessage errMsg = null;
         public static void main(String[] args) {
              ConnectSAP company = new ConnectSAP();
              company.conn();
         //method make connection andinitialize company instance
         public int conn() {
              int rc = 0;
              try {
                   company = SBOCOMUtil.newCompany();
                   company.setServer("192.168.0.216"); //192.168.0.216
                   company.setCompanyDB("SBODemoUS");
                   company.setUserName("manager");
                   company.setPassword("manager");
                   company.setDbServerType(SBOCOMConstants.BoDataServerTypes_dst_MSSQL2005);
                   company.setUseTrusted(new Boolean(false));
                   company.setLanguage(SBOCOMConstants.BoSuppLangs_ln_English);
                   company.setDbUserName("username"); 
                   company.setDbPassword("password");
                   //company.setAddonIdentifier("...");     
                   //company.setLicenseServer("...");
                   rc = company.connect();
                   if (rc == 0) {
                        System.out.println("Connected!");
                   } else {
                        errMsg = company.getLastError();
                        System.out.println(
                             "I cannot connect to database server: "
                                  + errMsg.getErrorMessage()
                                  + " "
                                  + errMsg.getErrorCode());
              } catch (Exception e) {
                   e.printStackTrace();
                   return -1;
              return rc;
         public void freeConnection(){
              company.disconnect();
    }<br/>
    I am getting the error "Failed to Connect to SBOCommon -111".<br/>
    Error is still the same even if I set UseTrusted to true and comment the DbUserName and DbPassword.<br/>
    Do I need to specify the license? Or login to SAP before connecting?<br/>
    Thank you.

  • Running SAP Business One on a 64-bit server

    One of our clients wants to upgrade their server to a 64-bit server running Windows Server 2008.
    What are the implications of this and do we also need to then use Microsoft SQL Server 2008?
    I went to this web link: https://websmp103.sap-ag.de/smb/sbo/platforms and found some info, but the questions I still have is the following:
    1. If we upgrade to SQL 2008, do we have to buy licenses or can we also just get an installation from SAP with our software (if we've gone live over 2 years ago already on SQL 2000, then upgraded to SQL 2005).
    2. Can we still stay on SQL 2005 or is it better to use SQL 2008 and what is the implications?
    I found the following on the link posted above:
    Mar 11: SAP Business One 2007 now supports Microsoft® SQL Server 2008.
    Microsoft SQL Server 2008 is now fully supported by SAP Business One 2007 A (as of patch 47) and SAP Business One 2007 B (as of patch 10), including SAP-developed add-ons.
    Jan 21: SAP Business One 2007 now supports Microsoft® Windows Server 2008.
    Microsoft Windows Server 2008 is now fully supported by SAP Business One 2007 A (as of patch 46) and SAP Business One 2007 B (as of patch 09), including SAP-developed add-ons. 64-bit and WTS support are still pending and will be announced when available.
    What exactly does the bold part mean?
    Any tips/hints on making this decision will be greatly appreciated!
    Thanks,
    Adele

    Hi Adele,
    "64-bit and WTS support are still pending and will be announced when available" means that Windows 2008 64bit has not been tested working with SAP Business One yet. Thus not supported (yet).
    Same applies to W indows T erminal S erver 32bit and 64bit.
    >
    Adele le Roux wrote:
    > 1. If we upgrade to SQL 2008, do we have to buy licenses or can we also just get an installation from SAP with our software (if we've gone live over 2 years ago already on SQL 2000, then upgraded to SQL 2005
    I am not sure if procedure as described in note [928839|https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMSZ3PTU4ODAwMDAr)/bc/bsp/spn/smb_searchnotes/display.htm?note_langu=E&note_numm=928839] will apply. In order to get excact clarification I have asked the owner of the note to update it reagarding MSSQL 2008 licenses.
    >
    Adele le Roux wrote:
    > 2. Can we still stay on SQL 2005 or is it better to use SQL 2008 and what is the implications?.
    Yes, you can still stay on MSSQL 2005 and upgrade later to MSSQL 2008. The other way around will not work. MSSQL 2008 is currently supported only as of SAP Business One 2007 A PL47 or SAP Business One 2007 B PL10. Refer to [http://service.sap.com/smb/sbo/platforms|http://service.sap.com/smb/sbo/platforms].
    Regards
    Mario

  • 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

  • Approval procedures in SAP Business One starter package

    Hi Experts,
    Does anyone know if SAP Business One starter package supports:
    1. Approval procedures
    2. Drag & relate
    3. Alert Management system
    Thanking you in anticipation
    Golden

    HI
    Yes it support Approval Procedures....
    You can refer this link for full information:
    http://www.sap-b1.com/sapbusinessone/SAP_business_one_starter_package.php

  • Know more detail about the Remote Support Platform for SAP Business One ?

    SAP Business One 9.1 is about to release this year and we can see in the feature enhancements that a significant update is planned in the Remote Support Platform for SAP Business One, more commonly known as RSP. Let’s have a quick look what update is planned for RSP in version 9.1:
    Enhancements planned in Remote Support Platform for SAP Business One 9.1
    RSP is planned to support both SAP Business One on Microsoft SQL Server as well as SAP Business One on HANA Database
    RSP Processes and Reports adapted to SAP HANA Database
    With this plan RSP will help in the areas of Download, Installation, Go-Live Check, Monitoring, Upgrade and Support for SAP Business One both   on SQL Server and HANA.
    But like me (non-SAP B1 Consultant) many of you have the question what is RSP and how it helps in support? Here I have tried to gather all information.
    What is Remote Support Platform for SAP Business One?
    The remote support platform for SAP Business One is designed to protect a SAP Business One installation by providing automated and remote support in a high-volume business.
    The platform monitors the entire SAP Business One environment. By significantly reducing the time between the appearance, identification, and resolution of issues, the remote support platform for SAP Business One minimizes the impact on customer databases and processes.
    Some Key Features of Remote Support Platform:
    Showing alerts to SAP B1 Admin about the events which require their attention, such as low disk space, database backups, etc.
    Incident Reports against the issues identified which require attention of SAP Support
    Company Database Backup and Restore options
    Regular fixes of Company Database inconsistencies
    Check, Download and Install regular updates in SAP Business One
    Upload Logs and required files to SAP Support or to Partner Support on regular basis
    Some details about RSP Backup Management
    Schedule daily, weekly, and monthly backups
    Perform differential and full database backups
    Back up transaction logs
    Back up files to shared folders on a network
    System Status Report through RSP
    From June 1st 2013, it will be mandatory to install, configure and upload the System Status Report (SSR) from Remote Support Platform (RSP) for SAP Business One in order to receive support for messages of a technical nature (upgrades, performance & crashes, etc).
    Database uploads only via RSP
    From June 1st 2013 SAP Business One Support will only accept database uploads to SAP via remote support platform for SAP Business One. In certain exceptional circumstances STFP may be used but this will constitute a minority of cases.
    Microsoft Windows PowerShell Scripting
    In the remote support platform studio, you can create tasks using Microsoft Windows PowerShell scripting. PowerShell enables you to perform remote administrative tasks on customers’ Microsoft Windows operating systems, by providing full access to Component Object Model (COM) and Windows Management Instrumentation (WMI).Some Network Prerequisite for RSP
    To achieve the internet connection test, you must allow port 80 for the RSP external communication
    Disabling antivirus firewall or add the RSP to the trusted zone of the antivirus
    Set the correct proxy
    Disabling Windows firewall in the TP_link Wireless Configuration Utility
    Want to now More about It Click Here :   Remote Support Platform for SAP Business One

    SAP Business One 9.1 is about to release this year and we can see in the feature enhancements that a significant update is planned in the Remote Support Platform for SAP Business One, more commonly known as RSP. Let’s have a quick look what update is planned for RSP in version 9.1:
    Enhancements planned in Remote Support Platform for SAP Business One 9.1
    RSP is planned to support both SAP Business One on Microsoft SQL Server as well as SAP Business One on HANA Database
    RSP Processes and Reports adapted to SAP HANA Database
    With this plan RSP will help in the areas of Download, Installation, Go-Live Check, Monitoring, Upgrade and Support for SAP Business One both   on SQL Server and HANA.
    But like me (non-SAP B1 Consultant) many of you have the question what is RSP and how it helps in support? Here I have tried to gather all information.
    What is Remote Support Platform for SAP Business One?
    The remote support platform for SAP Business One is designed to protect a SAP Business One installation by providing automated and remote support in a high-volume business.
    The platform monitors the entire SAP Business One environment. By significantly reducing the time between the appearance, identification, and resolution of issues, the remote support platform for SAP Business One minimizes the impact on customer databases and processes.
    Some Key Features of Remote Support Platform:
    Showing alerts to SAP B1 Admin about the events which require their attention, such as low disk space, database backups, etc.
    Incident Reports against the issues identified which require attention of SAP Support
    Company Database Backup and Restore options
    Regular fixes of Company Database inconsistencies
    Check, Download and Install regular updates in SAP Business One
    Upload Logs and required files to SAP Support or to Partner Support on regular basis
    Some details about RSP Backup Management
    Schedule daily, weekly, and monthly backups
    Perform differential and full database backups
    Back up transaction logs
    Back up files to shared folders on a network
    System Status Report through RSP
    From June 1st 2013, it will be mandatory to install, configure and upload the System Status Report (SSR) from Remote Support Platform (RSP) for SAP Business One in order to receive support for messages of a technical nature (upgrades, performance & crashes, etc).
    Database uploads only via RSP
    From June 1st 2013 SAP Business One Support will only accept database uploads to SAP via remote support platform for SAP Business One. In certain exceptional circumstances STFP may be used but this will constitute a minority of cases.
    Microsoft Windows PowerShell Scripting
    In the remote support platform studio, you can create tasks using Microsoft Windows PowerShell scripting. PowerShell enables you to perform remote administrative tasks on customers’ Microsoft Windows operating systems, by providing full access to Component Object Model (COM) and Windows Management Instrumentation (WMI).Some Network Prerequisite for RSP
    To achieve the internet connection test, you must allow port 80 for the RSP external communication
    Disabling antivirus firewall or add the RSP to the trusted zone of the antivirus
    Set the correct proxy
    Disabling Windows firewall in the TP_link Wireless Configuration Utility
    Want to now More about It Click Here :   Remote Support Platform for SAP Business One

  • SAP Business One Product Support Landing Pages

    Here we have gather technical and informational notes to assist you to support SAP Business One in the most efficient manner.
    We have created how to guides, help you build a test environment, detailed root cause analysis guides.
    Dividing each support area into topics we can deliver topic specific knowledge on your issue. From here you can select which area your issue relates to as well as the scope of each topic.
    Please visit the web link below:
    http://service.sap.com/~form/sapnet?_SHORTKEY=01100035870000714535&_SCENARIO=01100035870000000183&_ADDINC=011000358700001192682007E&
    Note: This content is only available for SAP Business One Partners.
    Regards
    Rui Pereira

    Hi Jason,
    SAP did not provide special license for support. Support for B1 client can be performed whenever one of the user is taking a leisure time or you must ask one user that using professional user to log out. Assign the license to the support user.
    After the support user have the license, the user can give support. Usually the user code manager is acting as support user
    JimM

  • Does SAP Business One support unicode  especially Chinese language

    Hi Experts
    please let me know the options
    Does SAP Business One support unicode  especially Chinese language
    Thanks & Regards
    Krish

    Hi Krish,
    You can check on SBO portal,
    Thanks
    Sachin

  • Remote support platform 2.3. for SAP Business One

    Hallo,
    Am 29.11.2010 wurde die volle Verfügbarkeit der remote support platform 2.3. for SAP Business One (RSP) auf dem Service Market Place veröffentlicht.
    Hier in Kürze die Neuerungen:
    u2022 Möglichkeit des Hochladens einer Datenbank zum SAP Business One Produkt Support. Damit verbunden ist eine schnellere
      Lösungsfindung für ein geschildertes (Fehl)verhalten von SAP Business One
    u2022 Eingebauter automatischer Updatemechanismus für RSP u2013 kein zusätzlicher Konfigurations oder Wartungsaufwand nach
      einem PL Update der RSP mehr erforderlich
    u2022 Möglichkeit esines automatisierten Transfers von SAP Business One Patches direkt zum Kundenserver.
    u2022 RSP unterstützt nun auch SSL und STAR TLS für das versenden von Emails, somit können u.a. Googlemail, Hotmail oder
      andere bekannte Email Server zum Versenden der Emails benutzt werden
    u2022 Das überarbeitete Berichtslayout ermöglicht auf einfache Art und Weise zu erkennen welche Punkte des Berichts Beachtung
      verdienen. Auch werden im Vergleich zum zuletzt erstellten Bericht, geänderte Werte in Blau dargestellt
    u2022 Möglichkeit mehrere SAP Systemnummern (von Kunden) und Systemtypen (Produktiv-DB, Test-DB, Entwicklungs-DB) auf nur
      einer SQL Serverinstanz
    u2022 Neue Programwizards für bessere Interaktion der Benutzer mit RSP
    u2022 verbesserte E-mail Notifikationen
    u2022 und einiges mehr ...
    Wir möchten SAP Partner einladen unsere Produktseite zu besuchen um mehr über RSP zu erfahren. Für SAP Kunden ist die Seite leider nicht erreichbar, jedoch ist auch im Kundenportal eine entsprechende Informationsmöglichkeit vorgesehen.
    Wie möchten Sie ebenfalls ermutigen, uns Ihr Feedback, Ihre Eindrücke, Ihre Ideen und Anregungen uns für das nächste Release der RSP mitzuteilen.
    Mit freundlichen Grüßen
    Mario Schönberg

    Kevin, 你好。请问我应该如何去下载到这个软件呢。我有一张SBO2007的实施顾问的证书,登录的后,无法可以看到其他的path,但是无法下载RSP。

  • Mobile Work-Station for SAP Business One

    Hello Everyone
    As I am aware that most of you have seen already various mobile solutions that integrate to SAP B1, Amodat Mobile Work-Station is currently the only solution that offers a complete mobile work-station for the four main field functions of SAP Business one: sales/van-sales, service, CRM and warehouse management on PDAs and laptops in on-line/off-line environment.
    We refer to those solutions as workstations, since they provide a COMPLETE working functionality for corporate users in the field with features such as full order, collection and distribution management (including invoicing and supporting multiple price lists), on the go inventory management, service calls dispatch optimization tools, document attachments to accounts and activities, GPS location and much more.
    Although we have numerous R/3 customers, our main focused is the SME market where we can offer robust solutions for a very reasonable price. Since 2001 we have implemented through our partners hundreds of projects ranging from 5 to over 500 users across Europe, North America and Australia.
    I will be happy to provide more information on the solutions and set up live demo if anybody is interested.

    Hi Jai,
    I'll be happy to schedule a demo with you and your customer. I am not sure what is your time zone though and how to communicate directly with you. since we can not send email you could reach me through Linkedin Nir (Matan) Aharon. please add me to your contact list and let me know your email.
    Best Regards,
    Nir

  • Cannot connect SAP Business One with iPad

    Hey all,
    I am new to SAP Business One. And i am exploring SAP Business One Mobile Applicaiton for iPad.
    I've tried to follow the step to set up my both SAP Business One and iPad but failed.
    The message "Connecting to server" keep loading and after few minutes show me "Tje request timed out (-1001)"
    So am I did something wrong? Or miss out something?
    Please advice with this problem.
    Thank you.
    Regards,
    Wai Leng

    Hey Lisa,
    Yes, I've tried what I found in this forum and the Support Portal.
    But it's is failed again.
    As iPad doesn't really need a mobile phone number, so i just simple key in a number for both SAP B1 and my iPad. Is it any problem?
    Another question, I've tested my connection for B1D1, but failed, following is the error message.
    com.sap.b1i.adapter.dia.exception.ConnectionFailedException: Connect to Business One failed.
    (-107) Unable to connect with the specified username and or password
    Anything i miss out?
    Thank you.
    Regards,
    Wai Leng

  • SAP Business One 8.8. Report doesn't show and workstation doesn't respond.

    Hi all,
    We have a customer with:
    SAP Business One 8.8 (8.80.237) PL: 19 HOTFIX1.
    Sql Server 2005
    Crystal Reports 12.1.3.1028
    We have done some reports wich run under server machine but not under workstation.
    Even i've done a dummy report without any data connection and it doesn't run under workstation (server machine works perfectly). This dummy report only show a label with static text "Hola".
    We don't receive any error message, SAP Business One client doesn't respond and in task manager you can see "not responding" message.
    SAP support connected to our customer installation and they suggested us formatting workstations computers. We did it but the problem persists. Thank you very much for your help.
    Kind regards,
    Nauzet Díaz

    Hi,
    In this case, why you not responded to SAP for their suggestion of formatting the workstation?
    If you unfortunately closed the old support ticket, then just raise a new support ticket with reference of the old one too.
    Regards,
    Bala

  • SAP Business one 8.8 Beta 5 version license

    Hi all,
       is there any evalution version on SAp business one 8.8. Because i downloaded and installed SAP Business one 8.8 Beta 5 version on my system, But i was not allow to open any forms. while trying to open  that an error msg appears as License Required
    Please guide me
    Regards
    Sundar

    Hi,
    Since SAP B1 8.8 Beta 5 is in ramp up version,you need to report any kind of bugs to sap support.
    Please follow this link for [Reporting Bugs in SAP B1 8.8|https://websmp105.sap-ag.de/~form/sapnet?_SHORTKEY=01100035870000707558&_SCENARIO=01100035870000000183&_ADDINC=011000358700001192682007E&]
    Anyway before raising ticket to sap,try to stop and restart SAP license manager

  • Minor Release SAP Business One 8.81 Now in Unrestricted Shipment

    Minor release SAP Business One 8.81 is the successor release of major release SAP Business One 8.8.
    SAP Business One 8.81 delivers significant value in:
    - Improved business processes and enhanced business control
    Request for quotation, Recurring transactions, Tax code determination, Purchase confirmation wizard, Cost accounting, SEPA payment method
    - Enhanced reporting and embedded analytics
    International Financial Reporting Standard support, Report filtering based on UDFs, Reference fields enhancements
    - Partner enablement
    SDK enhancements (UI/DI API), Electronic File Manager, Crystal Reports for Add-ons
    - End-to-end integration and collaboration
    One product u2013 Dashboard caching mechanism, B1&B1iC integration (shipped as one package with B1 product or upgrade, integration with installation and upgrade wizards)
    Note that with the unrestricted shipment of SAP Business One 8.81, no more patches will be delivered for SAP Business One 8.8 after April 30. Learn more on the [SAP Business One 8.8 Release Family Central Information page  |http://channel.sap.com/sbo/88] on Channel Partner Portal (for channel partners only)

    Hi Ashish,
    as always, the SAP Business One software can be downloaded by Partners only from the SAP Business One Software Center at [http://service.sap.com/sbo-swcenter] . You will then need to navigate to "SAP Business One Products" and then to either "installations" or "updates", depending if this is a new installation or if you want to upgrade to SAP Business One 8.81.
    Cheers, Marie-Laurence

  • RFID on SAP BUSINESS ONE

    Hello, we are starting a project for making inventory movements using RFID, specially the options "receipts from production" and "sales orders".  I've read about the SAP Auto-ID Infrastructure Device Controller Interface, is this for SAP Business One too, or is it only for another version of SAP? Which solution is there for SAP Business One?, can this be accomplished with the SDK
    I'll appreciate your responses.
    Thanks,
    Vicente

    Hi
    the SAP Auto-ID Infrastructure Device Controller Interface describes the interface between SAP Auto-ID solution and an RFID device controller.
    Configuration Guides:
    http://service.sap.com/scm -> RFID -> Detailed Information
    SAP AII supports the ALE-interface and the so called classic message interface that consists of an XML command messages (send from SAP to the DC) and XML notification messages (send from DC to SAP). Its based on XML/PML, so you can use it with any system with know to handle XML.
    I don't know if the is something special for Business One
    Regards
    Herbert

Maybe you are looking for

  • If condition in a cursor

    Can i use a if condition in a cursor, say like if i declare a parameter and then pass a value to the parameter so that i can do different sets of actions depending on the value of the parameter. I am giving a example as below:- cursor c(x number) is

  • Remote rejected error with git

    I'm trying to get a git public repository installed on server and can't seem to push an update. I have my server local user with ssh access and file transfers seem to go fine. I have git 1.6.0.4 installed on both development iMac PPC (10.5.5) and ser

  • Keyboard producing extra letters when typing and impacting system performance

    I’m having some issues with my Mid-2010 MacBook Pro 15. The Apple tech guy was baffled at the symptoms I was experiencing; he was unable to help (the MacBook Pro itself has not been inspected) so I thought I would see if anyone else had a view as to

  • Installing adobe photoshop cs4 on a windows 8.1 pc

    I am trying to install Photoshop CS4 o a new Windows 8.1 PC, but keep getting a message "The Installer Database is corrupt.  Please contact Adobe Customer Service"  Adobe no longer support CS4 and referred me to this forum.  I have already deactivate

  • The Folder Name Can't Be Used Because It's Reserved By The System.

    I have been unable to rename folders and continually get the finder error message: "The Name (_____) Can't Be Used Because It's Reserved By The System." I have tried several different combinations and it is not a matter of impermissible characters or