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 December, 2007

SAP 4.7 Installation Guide

Print This Post Email This Post Written by admin on Dec 20th, 2007 | Filed under: ABAP, Installation

Installation Complete

Thanks to Nagaraju for mailing the complete Installation Document.


ABAP Programs: Working with get events

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

REPORT ZSOURCE1504.
* Work areas
TABLES BOOKINGS.
* Reading data
GET BOOKINGS.
WRITE / BOOKINGS-FLDATE.



ABAP Programs : Using the events start-of-selection and end-of-selection

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

REPORT ZSOURCE1503.
* Work area
TABLES BOOKINGS.
* Initial processing
START-OF-SELECTION.
WRITE / ‘Start’.
* Reading data
GET BOOKINGS.
WRITE: AT /3 BOOKINGS-FLDATE.
* Final processing
END-OF-SELECTION.
WRITE / ‘Finished’.



ABAP Programs: Using a Logical Database

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

REPORT ZSOURCE1502.
* Work areas
TABLES: CUSTOMERS, BOOKINGS.
* Reading data
GET CUSTOMERS.
WRITE / CUSTOMERS-NAME.
GET BOOKINGS.
WRITE: AT /3 BOOKINGS-FLDATE.


ABAP Programs: Using select statements

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

REPORT ZSOURCE1501.
* Work areas
TABLES: CUSTOMERS, BOOKINGS.
* Reading data
SELECT * FROM CUSTOMERS.
WRITE / CUSTOMERS-NAME.
SELECT * FROM BOOKINGS
WHERE CUSTOMID = CUSTOMERS-ID
AND FLDATE > ’19990501′
AND ORDER_DATE = ’19990101′.
WRITE: AT /3 BOOKINGS-FLDATE.
ENDSELECT.
ENDSELECT.