Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

difference

Former Member
0 Likes
609

what is an application server and presentation server.

and what is the difference between them.

4 REPLIES 4
Read only

Former Member
0 Likes
586

Hi Hemal,

SAP works on three tier architecture, DB level, application server and presentation server hence it is SAP R/3.

The application server is where all the data is fetched from DB and all the processing done.

Presentation server is your desktop which has only GUI and you will be connected to application server from here.

Reward points if useful.

Regards,

Atish

Read only

0 Likes
586

Presentation server is basically the maching on which SAP GUI is installed , so to put it simply the machine from which you access the SAP system i.e. your machine. To access data from presentation server you can use GUI_UPLOAD , GUI_DOWNLOAD function modules.

Application server is basically the SAP Server , to access data from this you need to user OPEN Dataset , close dataset , Read Dataset e.t.c commands,

Please refer to the help for each for more info.

Check out these sample programs to understand the same

http://www.sapdevelopment.co.uk/file/file_downloadsap.htm ( Application Server )

http://www.sapdevelopment.co.uk/file/file_updownpop.htm ( Presentation Server)

Read only

Former Member
0 Likes
586

Hi,

Presentaion Server- Where SAP GUI have.

Application Server - Where SAP Installed.

Database Server - Where Database installed.

In General,

<b>Presentation server</b> is basically the maching on which SAP GUI is installed , so to put it simply the machine from which you access the SAP system i.e. your machine. To access data from presentation server you can use GUI_UPLOAD , GUI_DOWNLOAD function modules.

<b>Application server</b> is basically the SAP Server , to access data from this you need to user OPEN Dataset , close dataset , Read Dataset e.t.c commands.

Check out these sample programs to understand the same

http://www.sapdevelopment.co.uk/file/file_downloadsap.htm ( Application Server )

http://www.sapdevelopment.co.uk/file/file_updownpop.htm ( Presentation Server)

Regards,

Padmam.

Read only

Former Member
0 Likes
586

Hi,

Files are stored in the presentation server means they are stored in your Desktop system... within the code you will find FM GUI_DOWNLOAD/GUI_UPLOD/WS_UPLOAD/WS_DOWNLOAD to determine the same..

Files are stored in the application server means they are stored in R/3 application server ... within the code you will find Open dataset, read dataset , transfer dataset or close dataset

Regards