Different Instances in Application Server
Application Server is a physical server which is used to handle and process the user request. In SAP naming convention we define them as an Instance and it is possible to install more than one instance on a single server provided they are differentiated by the instance number.
Instance number is a 2 digit number that varies between [00 to 97] 98 and 99 are reserved for routing purposes.
Instances is of various types
- Database Instance
- Central Instance.
- Dialogue Instance.
Database Instance
This is the Instance where database is installed.
Central Instance
This is the Instance where Application Server/ Tier/ Layer are installed. There will be only one instance in the entire system.
Dialogue Instance
These are the instances which are used to handle the load on the central instances. We can install as many instances as possible assuming that each instance can serve up to 200 – 500 users depending upon the type of the users.
Instance contains Dispatcher, Queue Mechanism, and Work process, Task Handler with ABAP, SCREEN, and SQL Interpreters. It also contains buffer areas, DB Client and Roll area.
If you like this post, you may as well like these too:
- SAP System and Instances SAP systems are organized into instances, each of which contains one or more clients. Examples of instances are DEV (for development and configuration), QA(for quality assurance) and PRD (for the...
- Internet Transaction Server (ITS) Internet Transaction Server (ITS) is the transaction processing system that connects the web HTTP server and the standard R/3 system. ITS is available since SAP release 3.1G. All the Internet...
- ABAP Program:Transferring data to a file (presentation server) REPORT ZSOURCE2603. * Data declarations for later use PARAMETERS FILENAME(128) DEFAULT 'c:usersdefaulttestfile.dat' LOWER CASE. TABLES CUSTOMERS. DATA ALL_CUSTOMERS LIKE CUSTOMERS OCCURS 100 WITH HEADER LINE. * Get data for file...
- ABAP Programs:Reading data from a file (presentation server) REPORT ZSOURCE2604. * Data declarations for later use PARAMETERS FILENAME(128) DEFAULT 'c:usersdefaulttestfile.dat' LOWER CASE. TABLES CUSTOMERS. DATA ALL_CUSTOMERS LIKE CUSTOMERS OCCURS 100 WITH HEADER LINE. CALL FUNCTION 'WS_UPLOAD' EXPORTING FILENAME...




















Leave a Reply