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. |
What Are The Control Break Events In Abap? |
Answer»
|
|
| 2. |
What Are The Different Types Of Locks? |
|
Answer» Read lock (shared lock): Protects read access to an object. The read lock allows other transactions read access but not write access to the locked AREA of the table. Write lock (exclusive lock): Protects write access to an object. The write lock allows other transactions NEITHER read nor write access to the locked area of the table. ENHANCED write lock (exclusive lock WITHOUT cumulation): Works like a write lock except that the enhanced write lock also protects from further ACCESSES from the same transaction. Read lock (shared lock): Protects read access to an object. The read lock allows other transactions read access but not write access to the locked area of the table. Write lock (exclusive lock): Protects write access to an object. The write lock allows other transactions neither read nor write access to the locked area of the table. Enhanced write lock (exclusive lock without cumulation): Works like a write lock except that the enhanced write lock also protects from further accesses from the same transaction. |
|
| 3. |
How Many Types Of Buffering? |
|
Answer» There are three TYPE of buffer: single record->it buffers only records based on select query STATEMENT. generic buffer->it buffers all the records which MATCH to primary key and generic key full buffer :Buffering is use for IMPROVE PERFORMANCE. There are three type of buffer: single record->it buffers only records based on select query statement. generic buffer->it buffers all the records which match to primary key and generic key full buffer :Buffering is use for improve performance. |
|
| 4. |
When Is The Top-of-page Event Triggered? |
|
Answer» After EXECUTING FIRST WRITE STATEMENT in start-of-selection EVENT. After executing first write statement in start-of-selection event. |
|
| 5. |
Which Transaction Code Is Used Executing A Report (type 1 Program)? |
|
Answer» SE38 SE38 |
|
| 6. |
Which Database Object Is Used For Storing The System Variables? |
|
Answer» SYST table. SYST table. |
|
| 7. |
Can You Create A Table With Fields Not Referring To Data Elements? |
|
Answer» YES. Yes. |
|
| 8. |
Open Sql Vs. Native Sql? |
Answer»
|
|
| 9. |
How To Creat Transactions? |
|
Answer» We can USE TC SE93 for CREATING our own TRANSACTION CODE. We can use TC SE93 for creating our own transaction code. |
|
| 10. |
What Is Sql Trace? |
|
Answer» SQL Tracer is a tool used to measure the PERFORMANCE of ABAP PROGRAM. TCODE :st05 SQL Tracer is a tool used to measure the performance of ABAP program. Tcode :st05 |
|
| 11. |
How Many Ways You Can Create Table? |
|
Answer» USER can create a Database table in two ways:
User can create a Database table in two ways: |
|
| 12. |
What Is The Basic Difference Internal Tables And Database Tables? |
|
Answer» The basic difference is database tables are stored in DB serverand the INTERNAL tables are VIRTUAL tables these are created RUN time only Internal tables are created dynamically, the memory of internal tables is not permant memory, for internal tables the memory will be created in the application server and it is EXTERNAL memory and terminates after the PROGRAM termination. The basic difference is database tables are stored in DB serverand the internal tables are virtual tables these are created run time only Internal tables are created dynamically, the memory of internal tables is not permant memory, for internal tables the memory will be created in the application server and it is external memory and terminates after the program termination. |
|
| 13. |
How To Eliminate Duplicate Entries In Internal Tables? |
|
Answer» SORT ITAB. DELETE ADJACENT DUPLICATES FROM itab COMPARING ALL FIELDS. SORT itab. DELETE ADJACENT DUPLICATES FROM itab COMPARING ALL FIELDS. |
|
| 14. |
What Is Lock Object ? |
|
Answer» LockObjects USED to synchornize ACCESS of several USERS using same DATA. LockObjects used to synchornize access of several users using same data. |
|
| 15. |
What Are The Different Types Of Data Dictionary Objects? |
|
Answer» DATA DICTIONARY Objects:
Data Dictionary Objects: |
|
| 16. |
Difference Between Call By Value And Call By Reference? |
|
Answer» Call By Value:creates a new memory location for use WITHIN the subroutine. The memory is freed once it leaves the subroutine, CHANGES made to the variable are not AFFECTED outside the subroutine. Call by Reference : PASSES a pointer to the memory location. Changes to the variable within the subroutine AFFECTS the variable outside the subroutine. Call By Value:creates a new memory location for use within the subroutine. The memory is freed once it leaves the subroutine, changes made to the variable are not affected outside the subroutine. Call by Reference : passes a pointer to the memory location. Changes to the variable within the subroutine affects the variable outside the subroutine. |
|
| 17. |
What Is Meant By Hot Spots? |
|
Answer» A Hot SPOT is a list AREA where the mouse pointer appears as an upright hand SYMBOL. When a user points to that area, a single click does the same thing as a double click. Hot spots are SUPPORTED from R/3 RELEASE 3.0. A Hot spot is a list area where the mouse pointer appears as an upright hand symbol. When a user points to that area, a single click does the same thing as a double click. Hot spots are supported from R/3 release 3.0. |
|
| 18. |
What Is Is A Match Code? |
|
Answer» A MATCH code is a tool tip to help us to search for the data RECORDS in the system. Match codes are an efficient and user FRIENDLY search where key of a record is unknown. A Match code is a tool tip to help us to search for the data records in the system. Match codes are an efficient and user friendly search where key of a record is unknown. |
|
| 19. |
What Is Table Attribute? |
|
Answer» The Table attributes determine who is responsible for MAINTAINING a table and which types of access are allowed for the table. The most important table attributes are:
The Table attributes determine who is responsible for maintaining a table and which types of access are allowed for the table. The most important table attributes are: |
|
| 20. |
What Is Value Table? |
|
Answer» Value table is MAINTAINED at DOMAIN level in SAP. During domain creation, value range of the domain i DEFINED by specifying value table. Value table is maintained at Domain level in SAP. During domain creation, value range of the domain i defined by specifying value table. |
|
| 21. |
How Many Types Of Data Classes Are There In Sap Abap? |
Answer»
|
|
| 22. |
What Is Delivery Class? |
|
Answer» You use the delivery class to control the transport of table data for an installation, upgrade, or CLIENT copy and transports between customer systems. The delivery class is also USED in the extended table maintenance. There are the following DEVELOPMENT classes:
You use the delivery class to control the transport of table data for an installation, upgrade, or client copy and transports between customer systems. The delivery class is also used in the extended table maintenance. There are the following development classes: |
|