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.
| 151. |
Difference Between Sy-tabix And Sy-index? Where It Is Used? Can You Check Sy-subrc After Perform? |
|
Answer» SY-TABIX - Current line of an internal table. SY-TABIX is set by the statements below, but only for INDEX tables. The FIELD is either not set or is set to 0 for hashed tables. SY-TABIX - Current line of an internal table. SY-TABIX is set by the statements below, but only for index tables. The field is either not set or is set to 0 for hashed tables. |
|
| 152. |
Difference Between Sap Script And Report? |
|
Answer» SAP Script – It is the integrated text management system of the SAP R/3 System.
SAP Script – It is the integrated text management system of the SAP R/3 System.
|
|
| 153. |
What Are The System Fields? Explain? |
|
Answer» The ABAP system fields are active in all ABAP programs. They are filled by the runtime ENVIRONMENT, and you can query their values in a program to find out particular states of the system. Although they are variables, you should not assign your own values to them, since this may overwrite information that is important for the normal running of the program. HOWEVER, there are some isolated cases in which you may need to overwrite a system VARIABLE. For example, by assigning a NEW value to the field SY-LSIND, you can control navigation within DETAILS lists. The ABAP system fields are active in all ABAP programs. They are filled by the runtime environment, and you can query their values in a program to find out particular states of the system. Although they are variables, you should not assign your own values to them, since this may overwrite information that is important for the normal running of the program. However, there are some isolated cases in which you may need to overwrite a system variable. For example, by assigning a new value to the field SY-LSIND, you can control navigation within details lists. |
|
| 154. |
What Are The Various Types Of Selection Screen Event? |
|
Answer» SELECTION-SCREEN BEGIN OF BLOCK ABC WITH FRAME TITLE T01. SELECTION-SCREEN BEGIN OF BLOCK ABC WITH FRAME TITLE T01. |
|
| 155. |
What Are Standard Layouts Sets In The Sap Script? |
|
Answer» There are four STANDARD layouts in the SAP Script: There are four standard layouts in the SAP Script: |
|
| 156. |
What Is Sequence Of Event Triggered In Report? |
|
Answer» There are 6 EVENTS in report:
There are 6 events in report: |
|
| 157. |
What Are The Different Functions Used In Sap Script? What Are The Parameters Used In Each Function? |
|
Answer» There are three different functions USED in SAP SCRIPT:
Parameters in Each FUNCTION:
There are three different functions used in SAP Script: Parameters in Each Function: |
|
| 158. |
Can You Print Decimals In Type N? What Is Difference Between Float And Packed Data Type? |
|
Answer» No, we cannot print DECIMALS in TYPE N because decimal places are not permitted with N data type. FLOAT Data Type: It cannot be declared in Parameters. Packed Number: It can be declared in Parameters. For e.g. PARAMETERS : A(4) TYPE P DECIMALS 2, B(4) TYPE P DECIMALS 2. DATA : C(4) TYPE P DECIMALS 2. C = A + B. WRITE : / ‘THE SUM IS’ , C. No, we cannot print decimals in type N because decimal places are not permitted with N data type. Float Data Type: It cannot be declared in Parameters. Packed Number: It can be declared in Parameters. For e.g. PARAMETERS : A(4) TYPE P DECIMALS 2, B(4) TYPE P DECIMALS 2. DATA : C(4) TYPE P DECIMALS 2. C = A + B. WRITE : / ‘THE SUM IS’ , C. |
|
| 159. |
What Is View? Different Types Of View. Explain? |
|
Answer» View - A view is a virtual table CONTAINING fields from one or more tables. A virtual table that does not contain any data, but instead provides an application-oriented view of one or more ABAP Dictionary tables. View - A view is a virtual table containing fields from one or more tables. A virtual table that does not contain any data, but instead provides an application-oriented view of one or more ABAP Dictionary tables. |
|
| 160. |
Difference Between Domain And Data Element? What Are Aggregate Object? |
|
Answer» Domain - Specifies the technical attributes of a data element - its data type, length, possible VALUES, and APPEARANCE on the screen. Each data element has an underlying domain. A single domain can be the basis for several data elements. Domains are objects in the ABAP Dictionary. Domain - Specifies the technical attributes of a data element - its data type, length, possible values, and appearance on the screen. Each data element has an underlying domain. A single domain can be the basis for several data elements. Domains are objects in the ABAP Dictionary. |
|
| 161. |
What Function Does Data Dictionary Perform? |
|
Answer» Central information repository for APPLICATION and system data. The ABAP Dictionary contains data definitions (METADATA) that allow you to describe all of the data structures in the system (like tables, VIEWS, and data types) in ONE PLACE. This eliminates redundancy. Central information repository for application and system data. The ABAP Dictionary contains data definitions (metadata) that allow you to describe all of the data structures in the system (like tables, views, and data types) in one place. This eliminates redundancy. |
|
| 162. |
What Is Function Group? Difference Between Function Group And Function Module? |
|
Answer» Function Groups ACT as CONTAINERS for Function Modules that logically BELONG together. Function Groups act as containers for Function Modules that logically belong together. |
|
| 163. |
What Are The Contents In Technical Specifications? |
|
Answer» There are five contents in Technical Settings:
There are five contents in Technical Settings: |
|
| 164. |
What Is An Abap Instance? |
|
Answer» When you call a FUNCTION module, an instance of its function group plus its data, is LOADED into the memory AREA of the internal session. An ABAP program can load several instances by calling function MODULES from different function GROUPS. When you call a function module, an instance of its function group plus its data, is loaded into the memory area of the internal session. An ABAP program can load several instances by calling function modules from different function groups. |
|