SAP Business One

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]

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

Partners and Community

SAP Business One are delivered through its global partner network (SAP PartnerEdge) consisting of the following partner types:

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:

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

See also

References

External links

This article is issued from Wikipedia - version of the 12/4/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.