The document discusses various concepts in ABAP debugging and modularization including: what a debugger is used for; different types of breakpoints; the difference between function modules and subroutines; parameter passing styles in functions; modularization techniques; and using tables and forms in ABAP programs.
Download as DOCX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
18 views
Write The Output From Q-19 and Q-20
The document discusses various concepts in ABAP debugging and modularization including: what a debugger is used for; different types of breakpoints; the difference between function modules and subroutines; parameter passing styles in functions; modularization techniques; and using tables and forms in ABAP programs.
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2
1. What is Debbugger?
2. What is Watch Point?
3. What is Difference Between Session Break Point & External Break Point? 4. Difference Between Static Break Point & Dynamic Break Point. 5. What is Modularization Technique? How many Types of Modularization Techniques in Abap? 6. What is Difference Between Function Module & Sub Routine? 7. Difference Between Exporting, Importing & changing parameter of Function Module? 8. Can we create two include with same name in different program ? justify ur answer ? What is the program type for include ? 9. What is the use of exception tab in function module,How Sy-subrc is related to this ? 10. What is pass by value and pass by reference of function module ? 11. Can we change importing parameter value inside a function module ,explain how? 12. What is the difference between using and changing parameter of subroutine ? 13. What is pass by value and return ? 14. What are the objects getting created at the time of function group creation ? 15. How many maximum number of function module can be created inside a function group ? 16. Why it is advise to avoid static break point ? 17. Can we pass tables in importing parameters of function module? Justify your answer. 18. Can we declare parameter statement inside a sub-routine or function module ? justify ur answer ? Write the output from Q-19 and Q-20 19. Do 5 times. Perform display using sy-index. Enddo. Form display using sy-index. Static int type i. Int = int + sy-index. Write: / int. Endform. 20. Report zmaterial. Data : lt_mara1 type table of mara,
Select * from mara into lt_mara1 up to 5 rows. Perform copy_table tables lt_mara1 lt_mara2. If lt_mara2 is not initial. Write : / copied successfully. Else. Write : / unsuccessful copy. Endif. Form copy_table tables pt_mara1 pt_mara2. Pt_mara2 = pt_mara1. Endform.