300+[LATEST] Sap Abap Module Pool Interview Questions and Answers

Q1. In The Menu Bar Can You Associate A Function Key To A Button?

 yes

Q2. Why Do I Need To Do Dialog Programming?

To have your own customized screens and processing.

Q3. What Does Dialog Programming Consist Of?

Screens with their corresponding processing code, Menu, module pool program.

Q4. What Is A Transaction?

A transaction is dialog program that change data objects in a consistent way.

Q5. How Does The Dialog Handle User Requests?

  • When an action is performed, the system triggers the PROCESS AFTER INPUT event.The data passed includes field screen data entered by the user and a function code. 
  • A function code is a technical name that has been allocated in a screen Painter or Menu Painter to a menu entry, a push button, the ENTER key or a function Key of a screen. 
  • An internal work field (ok-code) in the PAI module evaluates the function code, and the appropriate action is taken.

Q6. What Are Pbo And Pai?

  • Process before output. Code that is executed prior to the display of a screen.
  • Process after input. Code that is executed after a button on the screen has been pressed.

Q7. Can We Use Flow Logic Control Key Words In Abap/4 And Vice-versa?

The flow control of a dynpro consists of a few statements that syntactically resemble ABAP/4 statements .However, we cannot use flow control keywords in ABAP/4 and vice-versa.

Q8. What Does Pai And Pbo Contain By Default?

PBO – MODULE STATUS_0100 – Key / button definitions

PAI – * MODULE USER_COMMAND_0100 How do you handle the code behind the button that was pressed

Q9. What Is Dynpro? What Are Its Components?

A dynpro (Dynamic Program) consists of a screen and its flow logic and controls exactly one dialog steps. The different components of the dynpro are:

  • Flow Logic: calls of the ABAP/4 modules for a screen.
  • Screen layout: Positions of the text, fields, and pushbuttons and so on for a screenScreen Attributes: Number of the screen, number of the subsequent screen, and others
  • Fields attributes: Definition of the attributes of the individual fields on a screen.

Q10. How Can I Identify Which Button Is Pressed?

“fctcode” attributes of the button.

Q11. What Is To Be Defined For A Push Button Fields In The Screen Attributes?

A function code has to be defined in the screen attributes for the push buttons in a screen.

Q12. If We Do Not Have / Give Menu Bar Than What Will Menu Bar Have By Default?

System , help

Q13. What Are The Requirements A Dialog Program Must Fulfill?

  • A user friendly user interface.
  • Format and consistency checks for the data entered by the user.
  • Easy correction of input errors.
  • Access to data by storing it in the data bases.

Q14. How Does The Interaction Between The Dynpro And The Abap/4 Modules Take Place?

  • A transaction is a collection of screens and ABAP/4 routines, controlled and executed by a Dialog processor. 
  • The Dialog processor processes screen after the screen, thereby triggering the appropriate ABAP/4 processing of each screen .
  • For each screen, the system executes the flow logic that contains the corresponding ABAP/4 processing. 
  • The control passes from screen flow logic to ABAP/4 code and back.

Q15. What Is Gui Status? How To Create /edit Gui Status?

A GUI status is a subset of the interface elements used for a certain screen.

The GUI status for a transaction may be composed of the following elements:

  • Title bar.
  • Menu bar.
  • Application tool bar
  • Push buttons. 

To create and edit GUI status and GUI title, use the Menu Painter (SE 41).

Q16. Can We Use Write Statements In Screen Fields? If Not How Is Data Transferred From Field Data To Screen Fields?

No,. The system instead transfers data by comparing screen fields names with ABAP/4 variable names. If both names are the same, it transfers screen fields values to ABAP/4 programs fields and Vice Versa.This happens immediately after displaying the screen.

Q17. How Are The Function Codes Handled In Flow Logic?

  • When the User selects a function in a transaction ,the system copies the function code into a specially designated system field called SY-UCOMM.
  • This field is Global in ABAP/4 Module Pool.The F-CODE can then be evaluated in the corresponding PAI module. 
  • The function code is always passed in exactly the same way, regardless of whether it comes from a screen push button, a menu option, function key or other GUI element.

Q18. Difference Between The Normal Report / Program And Module Pool Program?

  • Normal report can be run straight away by executing it and usually has selection criteria –Attributes: 1 online program
  • Module pool program cannot be run straight away. 
  • It first needs to display a screen – attributes: M module pool program.

Q19. The Function Code Currently Active Is Ascertained By What Variable?

SY-UCOMM Variable.

Q20. What Are The Basic Components Of Dialog Program?

  • Screens (Dynpros)
  • ABAP/4 module Pool. 
  • Transaction code.

Q21. How Many Pbo And Pai Modules Are Allowed For A Screen?

one PBO and one PAI