Enterprise Resource Planning (ERP)
Enterprise Resource Planning (ERP)
Enterprise Resource Planning (ERP)
(ERP)
PRESENTED BY-
MONALISHA KARMAKAR (02228)
AHELEE BHATTACHERJEE (02229)
NAWAZ AHMED (02230)
ANIRBAN MAITY (02231)
MD IZHAR AKHTER (02232)
A new company Rashtriya Ispat Nigam Limited (RINL) was formed on 18 February 1982. Visakhapatnam
Steel Plant was separated from SAIL and RINL was made the corporate entity of Visakhapatnam Steel
Plant in April 1982.
INFRASTRUCTURE
3. Rack Mount Server
4. Web Server
SAN
(STORAGE TYPES RACE
MOUNT
OF
AREA
SERVER
5. Blade Server NETWORK)
6. Quorum Server
SERVER
Visakhapatnam Steel Plant (VSP) presently is having IBM 3090 catering the
need of various computer applications running on it, for the entire plant.
This Mainframe computer system is associated with its SNA network for
catering the needs of mainframe connection to various units of plant. As this
system is old and outdated the entire Mainframe system is being replaced
with new computer system of open standard (i.e. client server system).
ABAP programs reside in the SAP database and are edited using the ABAP
Workbench tools. They are compiled, debugged and run within the context of
the SAP basis component, which is typically implemented as part of the SAP
Web application server.
20
DR. B. C. ROY ENGINEERING COLLEGE , DURGAPUR (INFORMATION TECHNOLOGY)
Comparison between ABAP & C language
Module Pool :
A module pool can contain all possible declarative statements. All processing blocks are supported except for the reporting
event blocks and function modules.
Include Programs :
They are exclusively used to organize program texts into small editable units which can be inserted at any place in other ABAP
programs using the INCLUDE statement.
Subroutine Pools :
Subroutine pools are created using the ABAP Editor and are introduced with the PROGRAM statement. Subroutine pools are
loaded by externally calling their subroutines from within other ABAP programs.
Contain a single table. Used to They are used to hold a large They are used to hold data
store master data number of very small from a few number of large
tables(stores customizing data tables.(stores system data)
or system data)
It has a one-to-one It has a many-to-one It has a many-to-one
relationship with a table in the relationship with a table in the relationship with table in the
database database database
For each transparent table It is stored with other pooled Many cluster tables are stored
there is one associated table in tables in a single table called in a single table in the
the database table pool in the database database called a table cluster
The database table has the The database table has The database table has
same name, same number of different name, different different name, different
fields and the fields have the
number of fields and fields number of fields and fields
same names have different names have different names
There is only a single table Table pools contain more Contains less tables than table
tables than table clusters pools
Single table can have one or Primary key of each table does Primary key of each table
more primary key not begin with same fields or begins with same fields or
fields fields
DR. B. C. ROY ENGINEERING COLLEGE , DURGAPUR (INFORMATION TECHNOLOGY) 23
ABAP Sample Program
Coding:
REPORT ZLOOPS .
do.
exit.
endif.
enddo.
24
DR. B. C. ROY ENGINEERING COLLEGE , DURGAPUR (INFORMATION TECHNOLOGY)
DR. B. C. ROY ENGINEERING COLLEGE , DURGAPUR (INFORMATION TECHNOLOGY) 25