InterviewSolution
This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.
| 1. |
How Many Lists Can A Program Can Produce? |
|
Answer» Each PROGRAM can produce up to 21 lists: one basic LIST and 20 secondary lists. If the user creates a list on the next level (that is, SY-LSIND INCREASES), the system STORES the previous list and displays the new one. Only one list is active, and that is always the most RECENTLY created list. Each program can produce up to 21 lists: one basic list and 20 secondary lists. If the user creates a list on the next level (that is, SY-LSIND increases), the system stores the previous list and displays the new one. Only one list is active, and that is always the most recently created list. |
|
| 2. |
What Will Exactly The Hide Statement Do? |
Answer»
|
|
| 3. |
How Can You Manipulate The Presentation And Attributes Of Interactive Lists? |
Answer»
|
|
| 4. |
How To Pass Data From List To Report? |
|
Answer» ABAP/4 provides three ways of PASSING data:
ABAP/4 provides three ways of passing data: |
|
| 5. |
How The At-user Command Serves Mainly In Lists? |
|
Answer» The AT USER-COMMAND EVENT SERVES mainly to handle own function CODES. In this case, you should create an INDIVIDUAL interface with the Menu Painter and DEFINE such function codes. The AT USER-COMMAND event serves mainly to handle own function codes. In this case, you should create an individual interface with the Menu Painter and define such function codes. |
|
| 6. |
How Can You Access The Function Code From Menu Painter? |
Answer»
|
|
| 7. |
What Are The Events Used For Page Headers And Footers? |
|
Answer» The EVENTS TOP-OF-PAGE and END-OF-PAGE are USED for PAGER HEADERS and FOOTERS. The events TOP-OF-PAGE and END-OF-PAGE are used for pager headers and footers. |
|
| 8. |
How Can You Display Frames (horizontal And Vertical Lines) In Lists? |
Answer»
|
|
| 9. |
When They Get Cursor Command Used In Interactive Lists? |
Answer»
|
|
| 10. |
What Is Meant By Hide Area? |
|
Answer» The hide command temporarily STORES the CONTENTS of the field at the current line in a system-controlled MEMORY called the HIDE AREA. At an INTERACTIVE event, the contents of the field are RESTORED from the HIDE AREA. The hide command temporarily stores the contents of the field at the current line in a system-controlled memory called the HIDE AREA. At an interactive event, the contents of the field are restored from the HIDE AREA. |
|
| 11. |
Can We Display A List In A Pop-up Screen Other Than Full-size Stacked List? |
|
Answer» Yes, we can DISPLAY a LIST in a pop-up SCREEN using the command WINDOW with the ADDITIONS starting at X1 Y1 and ending at X2 Y2 to set the upper-left and the lower-right corners where x1 y1 and x2 y2 are the coordinates. Yes, we can display a list in a pop-up screen using the command WINDOW with the additions starting at X1 Y1 and ending at X2 Y2 to set the upper-left and the lower-right corners where x1 y1 and x2 y2 are the coordinates. |
|
| 12. |
In Which System Field Does The Name Of Current Gui Status Is There? |
|
Answer» The NAME of the current GUI STATUS is available in the system FIELD SY-PFKEY. The name of the current GUI STATUS is available in the system field SY-PFKEY. |
|
| 13. |
Can We Create A Gui Status In A Program From The Object Browser? |
|
Answer» YES. You can CREATE a GUI STATUS in a PROGRAM USING SET PF-STATUS. Yes. You can create a GUI STATUS in a program using SET PF-STATUS. |
|
| 14. |
What Is The Length Of Function Code At User-command? |
|
Answer» Each menu FUNCTION, push button, or function key has an associated function code of length FOUR (for example, FREE), which is AVAILABLE in the system field SYUCOMM after the user action. Each menu function, push button, or function key has an associated function code of length FOUR (for example, FREE), which is available in the system field SYUCOMM after the user action. |
|
| 15. |
What Is Meant By Hotspots? |
|
Answer» A HOTSPOT is a LIST area where the mouse pointer appears as an UPRIGHT hand symbol. When a user points to that area (and the hand CURSOR is active), a single click does the same thing as a double-click. Hotspots are supported from R/3 RELEASE 3.0c. A Hotspot is a list area where the mouse pointer appears as an upright hand symbol. When a user points to that area (and the hand cursor is active), a single click does the same thing as a double-click. Hotspots are supported from R/3 release 3.0c. |
|
| 16. |
Is The Basic List Deleted When The New List Is Created? |
|
Answer» No. It is not DELETED and you can return back to it USING one of the STANDARD NAVIGATION functions like clicking on the back button or the cancel button. No. It is not deleted and you can return back to it using one of the standard navigation functions like clicking on the back button or the cancel button. |
|
| 17. |
What Is Meant By Stacked List? |
|
Answer» A stacked list is nothing but secondary list and is DISPLAYED on a full-size screen UNLESS you have specified its COORDINATES USING the window command. A stacked list is nothing but secondary list and is displayed on a full-size screen unless you have specified its coordinates using the window command. |
|
| 18. |
What Are The Drill-down Features Provided By Abap/4 In Interactive Lists? |
Answer»
|
|
| 19. |
What Are The User Interfaces Of Interactive Lists? |
Answer»
|
|
| 20. |
What Are The Types Of Messages? |
|
Answer» A MESSAGE can have five different types. These message types have the following EFFECTS during list PROCESSING: .A (=ABEND) .E (=ERROR) or W (=Warning) .I (=Information) .S (=Success) A message can have five different types. These message types have the following effects during list processing: .A (=Abend) .E (=Error) or W (=Warning) .I (=Information) .S (=Success) |
|
| 21. |
How To Use Messages In Lists? |
Answer»
Syntax: REPORT <rep> MESSAGE-ID <id>. Syntax: REPORT <rep> MESSAGE-ID <id>. |
|
| 22. |
What Are The Page Headers For Secondary Lists? |
Answer»
|
|
| 23. |
How To Maintain Lists? |
Answer»
|
|
| 24. |
What Are System Fields For Secondary Lists? |
|
Answer» SY-LSIND: Index of the LIST created during the CURRENT event (basic list = 0) SY-LIST1: Index of the list level from which the event was triggered. SY-LILL1: Absolute number of the line from which the event was triggered. SY-LISEL: Contents of the line from which the event was triggered. SY-CUROW: POSITION of the line in the window from which the event was triggered (counting starts with 1) SY-CUCOL: Position of the column in the window from which the event was triggered (counting starts with 2). SY-CPAGE: Page number of the FIRST displayed page of the list from which the event was triggered. SY-STARO: Number of the first line of the first page displayed of the list from which the event was triggered (counting starts with 1). Possibly, a page header occupies this line. SY-STACO: Number of the first column displayed in the list from which the event was triggered (counting starts with 1). SY-UCOMM: Function code that triggered the event. SY-PFKEY: Status of the displayed list. SY-LSIND: Index of the list created during the current event (basic list = 0) SY-LIST1: Index of the list level from which the event was triggered. SY-LILL1: Absolute number of the line from which the event was triggered. SY-LISEL: Contents of the line from which the event was triggered. SY-CUROW: Position of the line in the window from which the event was triggered (counting starts with 1) SY-CUCOL: Position of the column in the window from which the event was triggered (counting starts with 2). SY-CPAGE: Page number of the first displayed page of the list from which the event was triggered. SY-STARO: Number of the first line of the first page displayed of the list from which the event was triggered (counting starts with 1). Possibly, a page header occupies this line. SY-STACO: Number of the first column displayed in the list from which the event was triggered (counting starts with 1). SY-UCOMM: Function code that triggered the event. SY-PFKEY: Status of the displayed list. |
|
| 25. |
Can We Call Reports And Transactions From Interactive Reporting Lists? |
| Answer» | |
| 26. |
How To Create User Interfaces For Lists? |
Answer»
|
|
| 27. |
How To Select Valid Lines For Secondary List? |
Answer»
|
|
| 28. |
What Is Secondary List? |
Answer»
|
|
| 29. |
What Are The Uses Of Interactive Reporting? |
|
Answer» The user can actively control data retrieval and display during the session. INSTEAD of an EXTENSIVE and detailed list, you CREATE a basic list with condensed INFORMATION from which the user can switch to detailed displays by positioning the cursor and entering commands. The detailed information appears in secondary LISTS. The user can actively control data retrieval and display during the session. Instead of an extensive and detailed list, you create a basic list with condensed information from which the user can switch to detailed displays by positioning the cursor and entering commands. The detailed information appears in secondary lists. |
|
| 30. |
What Is Interactive Reporting? |
|
Answer» It helps you to create easy-to-read LISTS. You can display an overview list first that contains general INFORMATION and provide the USER with the possibility of CHOOSING DETAILED information that you display on further lists. It helps you to create easy-to-read lists. You can display an overview list first that contains general information and provide the user with the possibility of choosing detailed information that you display on further lists. |
|