ERP Database - The Unofficial ERP Knowledge Base

Facebook Twitter del.icio.us Digg it
ERP Database contains a huge collection of articles related to ERP System and Software. Many of the articles are specifically related to SAP. All these ERP/SAP articles are freely available to everyone.

If you would like to submit an article or share any document related to ERP or any specific ERP software. Please mail it to support@erpdb.info. Please make sure that the documents are not copyrighted.
Social Bookmarks:

Archive for November, 2007

What is SAP? The Basic Series

Print This Post Email This Post Written by admin on Nov 30th, 2007 | Filed under: Beginners, General

What is SAP? SAP is a global software provider of Enterprise Resource Planning software applications which support business process of all sizes. SAP’s Products focus on Enterprise Resource Planning and the current version is ERP 6.0. While SAP’s products were primarily targets fortune 500 companies and now it is actively targeting small and medium sized enterprises with it’s SAP business one and SAP Business All-in-One.

Following are the different sections which will help you understand what is sap.

  • Who are what is SAP?
  • Cost of SAP Implementation
  • SAP Training
  • SAP Corporate Overview
  • SAP Modules Overview

Who and / or what is SAP? How popular is it?

History of  SAP

What is SAPSAP the company was founded in Germany in 1972 by five ex-IBM engineers. In case you’re ever asked, SAP stands for Systeme, Andwendungen, Produkte in der Datenverarbeitung which – translated to English – means Systems, Applications, Products in Data Processing. So now you know! Being incorporated in Germany, the full name of the parent company is SAP AG. It is located in Walldorf, Germany which is close to the beautiful town of Heidelberg. SAP has subsidiaries in over 50 countries around the world from Argentina to Venezuela (and pretty much everything in between). SAP America (with responsibility for North America, South America and Australia – go figure!) is located just outside Philadelphia, PA.

The original five founders have been so successful that they have multiplied many times over such that SAP AG is now the third largest software maker in the world, with over 17,500 customers (including more than half of the world’s 500 top companies). SAP employs over 27,000 people worldwide today, and had revenues of $7.34 billion and Net Income of $581 million in FY01. SAP is listed in Germany (where it is one of the 30 stocks which make up the DAX) and on the NYSE (ticker: SAP).

There are now 44,500 installations of SAP, in 120 countries, with more then 10 million users and growing everyday. Continue Reading …


SAP System Fields

Print This Post Email This Post Written by admin on Nov 30th, 2007 | Filed under: ABAP, General

SAP System Fields Alphabetical
SAP System Fields Categorised

~ end of post ~

———————
ABAPer, mail: abap.community@gmail.com http://www.erpdb.info


SAP Keyboard Shortcuts : More

Print This Post Email This Post Written by admin on Nov 30th, 2007 | Filed under: General

Shortcut Keys
SAP Business One shortcuts

~ end of post ~

———————
ABAPer, mail: abap.community@gmail.com http://www.erpdb.info


ABAP Programs: Using a dynamic table name

Print This Post Email This Post Written by admin on Nov 30th, 2007 | Filed under: ABAP Programs

REPORT ZSOURCE1110.
* Variables for later use
DATA: TABLENAME(10),
COUNT_ROWS TYPE I.
* Setting the table name dynamically
MOVE ‘CUSTOMERS’ TO TABLENAME.
* Selecting data
SELECT COUNT( * ) FROM (TABLENAME) INTO COUNT_ROWS.
WRITE: TABLENAME, COUNT_ROWS.

~ end of post ~

———————
ABAPer, mail: abap.community@gmail.com http://www.erpdb.info


ABAP Programs: Using Select-Options

Print This Post Email This Post Written by admin on Nov 30th, 2007 | Filed under: ABAP Programs

REPORT CHAP1109.
* Work area
TABLES CUSTOMERS.
* Specifiying a Select-Option
SELECT-OPTIONS SNAME FOR CUSTOMERS-NAME.
* Internal table for later use
DATA ALL_CUSTOMERS LIKE CUSTOMERS OCCURS 100
WITH HEADER LINE.
* Reading table entries according to a Select-Option

SELECT * FROM CUSTOMERS INTO TABLE ALL_CUSTOMERS
WHERE NAME IN SNAME.
* Displaying the reuslt
LOOP AT ALL_CUSTOMERS.
WRITE: / ALL_CUSTOMERS-CITY,
ALL_CUSTOMERS-NAME.
ENDLOOP.

———————
ABAPer, mail: abap.community@gmail.com http://www.erpdb.info