Explore topic-wise InterviewSolutions in .

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.

Three steps to create a table in a given Data Dictionary?

Answer»

Three steps to create a table in a given DATA Dictionary?
Below are the three easy steps to create a table in any given data dictionary:-
(1)In First step we will create DOMAINS that define field LENGTH, range and data TYPE.
(2)In second step we will create data elements which clarify the properties and type for a data field.
(3)In last step we will move on to creating tables.

2.

Can you define term structure in ABAP Data Dictionary?

Answer»

Can you define term structure in ABAP Data Dictionary?
The structure is one of the data object which is made up of components of various TYPE STORED respectively in the MEMORY. We can also say that structure are just like a user defined data type. And its WORKS like a table for data dictionary which can be addressed from ABAP program. And the structure holds data at RUNTIME.

3.

Write down one of the main difference between Pool and Transparent tables?

Answer»

Write down ONE of the main difference between POOL and TRANSPARENT tables?
One of the main difference between these two is that pool tables have many to one relationship with the database table(N:1 relationship). On the other HAND transparent tables have one to one relationship with the same(1:1 relationship).

4.

Why we use SE01 SE09 and SE10 in SAP?

Answer»

Why we use SE01 SE09 and SE10 in SAP?
Below are the uses of these three
(1)SE01:-It is mainly used for Correction & Transport Organizer. And this will combines features of both SE09 and SE10.
(2)SE09:-It is mainly used for Workbench Organizer. And this can be used as DEVELOPMENT of transports.
(3)SE10:-It is mainly used Customizing Organizer. And when we run SE10 in SAP ERP we will GET same screen as in T-Code SE09 of transport organizer.

5.

Can we debug a Script Form in ABAP?

Answer»

Can we DEBUG a Script Form in ABAP?
Yes we can debug a script form in SAP ABAP below are the 4 steps given below:-
(1)SE71
(2)GIVE the form NAME
(3)Utilities
(4)Activate the debugger

6.

Can you define Get Cursor Field in ABAP?

Answer»

Can you define Get CURSOR Field in ABAP?
The main use of GET CURSOR STATEMENT is to transfer the name of screen element where cursor is positioned during a user action into the variable < f>

And Below is the SYNTAX for that


GEt Cursor Field

7.

What is the main difference between insert and append statement in SAP ABAP?

Answer»

What is the main difference between insert and append statement in SAP ABAP?
When we USE insert statement we can add a RECORD at any SPECIFIC LOCATION. But when we append statement it is used to add a record at the end of internal table in the work AREA.

8.

Write down three main difference between ABAP and SAP memory?

Answer»

Write down three main difference between ABAP and SAP memory?
Below are the three main difference between ABAP and SAP memory
(1)ABAP Memory:-It concern with local memory.
(1)SAP Memory:-And it concern with GLOBAL memory.

(2)ABAP Memory:-In ABAP we can exchange data by using Export/IMPORT.
(2)SAP Memory:-In SAP we can exchange data by using GET/SET.

(3)ABAP Memory:-In ABAP memory data AVAILABLE multiple SESSION within same session.
(3)SAP Memory:-In SAP memory data available across main session.

(4)ABAP Memory:-In ABAP memory all PROGRAM can have access within a session.
(4)SAP Memory:-In SAP memory all SAP GUI sessions have access to it.

9.

Define basic overview of Smart Forms in SAP ABAP?

Answer»

Define BASIC overview of Smart Forms in SAP ABAP?
Smart Forms comes into PICTURE when we need to do mass printing in SAP Systems by using a graphical design tool. So we use Smart Form to ESTABLISH and maintain forms to do mass printing. And output medium that used for this are Fax, Printers, Emails etc. And Smart Forms was first INTRODUCED in 1998 to overcome to barriers of SAP Script.

10.

Major difference between transparent tables and pool tables

Answer»

Major difference between transparent TABLES and pool tables
There is ONE of the major difference between Transparent and Pool tables is that Pool tables have MANY to one relationship with the DATABASE table.
But in Transparent table we have only one to one relationship with the database tables.

11.

Difference between Pooled Tables and Transparent Tables

Answer»

Difference between Pooled Tables and Transparent Tables
Below are MAIN differences between Pooled and Transparent tables
Pooled Tables:-(1)Here table in database has the DIFFERENT NAME as in dictionary.
(2)Transparent table holds application data.
(3)Pooled Tables has many-to-one relation with the table in database or we can say tables have one relation with the tables available in the database
Transparent Tables:-(1)Here table in the database has the same name as in the dictionary.
(2)Pooled table are stored in table pool at database level.
(3)Transparent tables has a one-to-one relation with the table in database or we can say When the tables have one to one relation with the tables available in the database.
(4)Its STRUCTURE corresponds to SINGLE database field.