Archive for the 'Technical' Category

Seven types of SAP R/3 testing

Monday, June 23rd, 2008

Traditionally, the main types of SAP tests include unit, development, scenario, integration, performance, and regression testing. These tests are further described below to provide greater granularity into what each type of test entails.
1. Unit Testing
This is the lowest level of testing at the SAP transaction level. Unit testing includes boundary testing for positive and negative [...]

Popularity: 31% [?]

What is Database Server

Monday, June 9th, 2008

The database server is a set of executables that accept database requests from the application server. These requests are passed on to the RDBMS (Relation Database Management System). The RDBMS sends the data back to the database server, which then passes the information back to the application server. The application server in turn passes that [...]

Popularity: 24% [?]

What is Application Server

Monday, June 9th, 2008

An application server is a set of executables that collectively interpret the ABAP/4 programs and manage the input and output for them. When an application server is started, these executables all start at the same time. When an application server is stopped, they all shut down together. The number of processes that start up when [...]

Popularity: 16% [?]

What is Presentation Server

Monday, June 9th, 2008

The presentation server is actually a program named sapgui.exe. It is usually installed on a user’s workstation. To start it, the user double-clicks on an icon on the desktop or chooses a menu path. When started, the presentation server displays the R/3 menus within a window. This window is commonly known as the SAPGUI, or [...]

Popularity: 22% [?]

What is Client/Server

Monday, June 9th, 2008

Client/server is two programs talking to each other
Here we see Program 1 asking Program 2 for some information. Program 1 is the client and Program 2 is the server. Program 2 serves Program 1 with the information it requested. This is different than a main program calling a subroutine and returning. A program that calls [...]

Popularity: 18% [?]