Technology Blogs by Members
Explore a vibrant mix of technical expertise, industry insights, and tech buzz in member blogs covering SAP products, technology, and events. Get in the mix!
cancel
Showing results for 
Search instead for 
Did you mean: 
Former Member

Hi Guys,

We all might have come across of many architectural information on various SAP component.

Work process is one of the main component of SAP WEB AS architecture and today I would like to share some information on work process...their architecture and dialog step.

Work Process Architecture: Work process architecture comprise 3 main components as shown in the figure below

  1. Dialog Interpreter
  2. ABAP Processor
  3. Database Interface


  • Task Handler: It coordinates the activities within a work process. It manages the loading and unloading of the user session context at the beginning and end of each dialog step. It also communicates with the dispatcher and activates the Dynpro interpreter or the ABAP processor as required to perform its tasks.

  • ABAP processor: Is in charge of executing the ABAP programs

  • Dialog interpreter: (Also known as the Dynpro processor) is in charge of interpreting and executing the logic of R/3 screens.

  • Database interface: It establishes and terminates connection between the work process and database. It also allows to Access to database tables, access to Repository objects , Controlling transactions (commit and rollback handling)

What is a Dialog Step:



  1. The dispatcher classifies the request and places it in the appropriate request queue
  2. The request is passed in order of receipt to a free dialog work process
  3. The subprocess “taskhandler” restores the user context in a step known as “roll in”. The user context contains mainly data from currently running transactions called by this user and its authorizations
  4. The taskhandler calls the Dynpro processor to convert the screen data to ABAP variables
  5. The ABAP processor executes the coding of the “Process after Input” module (PAI module) from the preceding screen, along with the “Process before Output” module (PBO module) of the following screen
  6. It also communicates, if necessary, with the database
  7. The Dynpro processor then converts the ABAP variables again to screen fields. When the Dynpro Processor has finished its task, the taskhandler becomes active again
  8. The current user context is stored by the taskhandler in shared memory (roll out)
  9. Resulting data is returned through the dispatcher to the front end

That's all folks !!!!!

Please feel free to add/correct the information placed above. Thank you.

Regards,

Prithviraj.

2 Comments
Labels in this area