SAP Business One
SAP Business One Client | |
Developer(s) | SAP AG |
---|---|
Stable release |
9.2
|
Operating system | Microsoft Windows / SAP HANA (Server), Microsoft Windows (Clients) |
Platform | x86 / x64 |
Type | Enterprise resource planning |
Website | http://www.sap.com/solution/sme/software/erp/small-business-management/overview |
SAP Business One is business management software (ERP) designed for small and medium-sized enterprises, sold by the German company SAP SE. As an ERP solution, it aims to automate key business functions in financials, operations, and human resources.
History
SAP Business One was initially launched in Israel in 1996 under the name "Menahel" or "TopManage" in English. The company was founded by Reuven Agassi (CEO) and Gadi Shamia (VP of sales, marketing and product). The product was designed by Gadi Shamia and the head developer was Hilla Mazinter. In its first years TopManage was sold in the Israeli market only and was the first Windows/Mac business management product to be offered in the Israeli market. In 2000 TopManage started its global expansion into markets in Europe and Latin America. In March 2002, SAP purchased TopManage Financial Systems and branded their system as SAP Business One. TopManage founders Reuven Agassi and Gadi Shamia, took key executive positions at SAP following the acquisition. A year earlier TopManage's sister company TopTier, was also acquired by SAP. TopTier was founded by Reuven Agassi's son Shai Agassi.[1]
The acquisition allowed SAP to reach out to the midmarket through its partners and also to gain additional business from the smaller subsidiaries of its enterprise customers.[1]
Releases
Year | Version | Notable new features |
---|---|---|
2016 | SAP Business One 9.2 | Project management, Browser Access |
2014 | SAP Business One 9.1 | Resources module, Branches |
2013 | SAP Business One 9.0 | Single Signon, Bin Locations, 64 bit client |
2012 | SAP Business One 8.82 | Usability enhancements, SAP HANA Support |
2011 | SAP Business One 8.81 | Multiple Cost centers, Cockpit |
2010 | SAP Business One 8.8 | Crystal Reports integration, Unified codebase |
2008 | SAP Business One 2007 | New reconciliation engine |
2006 | SAP Business One 2005 | Enhanced usability and reporting, Enhanced SDK |
2004 | SAP Business One 2004 | Global Release, SAP Business One SDK |
Prior to SAP Business One 2004 specific country versions called 6.x existed until the first global release in 2004
Features (modules)
SAP Business One is arranged into 14 functional modules, covering the typical functions in a business organization. The most widely used modules are Financials, Sales Opportunities, Sales – A/R, Purchasing A/P, Business Partners, Banking and Inventory.[2]
- Administration', where setup of the various core settings in the application are done
- 'Financials, where definition of Chart of Account are set up and the core Journal Entries can be created
- Opportunities', where Lead generation are used to keep track of potential Sales and Purchases
- 'Sales - A/R, where the sales flow (Quotation > Order > Delivery > Invoice) are managed
- Purchasing - A/P, where the purchase flow (Quotation > Order > Delivery > Invoice) are managed
- 'Business Partners, where master data of Leads, Customer and Supplier are maintained
- Banking, where payment of Incoming (sales) and Outgoing (purchase) payments are created
- 'Inventory, where master data of goods to be sold/purchased are maintained and their quantity/value in warehouses are tracked
- 'Resources', where master data of resources (machines and people) to be used in production are defined (capacity and planning) [only SAP 9.1 and higher]
- 'Production, where Bill of Materials master data are maintained and Production orders are created
- Project Management, where you define projects (what you do when) [only SAP 9.2 and higher]
- Material Requirements planning (MRP), where forecasts of needed items in sales/production are defined in order to make purchase order recommendations
- Service', where management of service contracts are maintained and service calls are created
- Human Resources', where employee master data (Names, contract information, roles, etc.) are maintained
Each module handled specific business tasks on its own, but is linked to the other modules where applicable. For instance, an invoice from the billing transaction of Sales & Distribution would pass through to accounting, where it will appear in accounts receivable and cost of goods sold.
Architecture
SAP Business One is a typical Client–server model software product
- Client software, is primarily the SAP Business One client that is a Microsoft Windows-based product that connects to a back-end server. SAP also offer clients for phones and tablets (iOS and Android) that contain a subset of the full features aimed at sales employees.
- Server software, is run on either a Microsoft SQL Server database (Windows) or SAP HANA database (Linux)
Partners and Community
SAP Business One are delivered through its global partner network (SAP PartnerEdge) consisting of the following partner types:
- Value Added Resellers (VAR), is an SAP partner that sells, implements and supports the product to end customers
- Software Solution Partners (SSP), is an SAP partner that creates horizontal or vertical standard solutions on top of the SAP Business One platform with the SAP Business One SDK and sells them via the VAR partners
- Extended Business Member (EBM), is a smaller partner that sells SAP Business One via a VAR Partner instead of direct partnership with SAP
Extensibility
Custom development (called Add-ons) are done using the SAP Business One SDK.[3] It is COM-based development done in Microsoft Visual Studio with C# or VB.NET.
SAP Business One SDK consist of:
- Data Interface API (DI-API), where you can create new business object around the normal SAP Business One client but still adhere to the core business rules[4]
- User interface API (UI-API), where you can modify existing SAP Business One client screens, create new screens and change/block the normal event flow[5]
- SAP Business One Integration Technology (B1i), where you can visually create Business flows using XML/XSLT[6]
- Service Layer for SAP HANA, where you can, using OData, create business objects[7]
Code samples
Sample #1 - DI-API: Create an A/R Invoice in the system (company)
var invoice = (Documents) company.GetBusinessObject(BoObjectTypes.oInvoices);
//Invoice Header Data
invoice.CardCode = "C20000";
invoice.DocDate = DateTime.Today;
//Invoice Line Data
var lines = invoice.Lines;
lines.ItemCode = "A0001";
lines.Quantity = 2.0;
lines.Price = 200.0;
lines.Currency = "EUR";
//Add invoice to system
invoice.Add();
Sample #2 - UI-API: Add button to existing SAP Business One Screen (form)
var item = form.Items.Add("BTN_UID", BoFormItemTypes.it_BUTTON);
item.Top = 10;
item.Left = 100;
item.Width = 80;
item.Height = 22;
var button = (Button)item.Specific;
button.Caption = "Hello World";
Examples of type of Add-ons developed by VARs and SSPs can be found at the SAP Application Development Center and the SAP Store