Select Category 
Software SAP ABAP ERP Questions Answers Software SAP ABAP ERP Question Answer Software SAP ABAP ERP Questions Answers Software SAP ABAP ERP Question Answer
What is ITS?
Software SAP ABAP ERP Questions Answers Software SAP ABAP ERP Question Answer Software SAP ABAP ERP Questions Answers Software SAP ABAP ERP Question Answer
What are the merits of ITS?- ITS is a Internet Transaction Server. ITS forms an interface between HTTP server and R/3 system, which converts screen provided data by the R/3 system into HTML documents and vice-versa. Merits of ITS: A complete web transaction can be developed and tested in R/3 system. All transaction components, including those used by the ITS outside the R/3 system at runtime, can be stored in the R/3 system. The advantage of automatic language processing in the R/3 system can be utilized to language-dependent HTML documents at runtime.
Software SAP ABAP ERP Questions Answers Software SAP ABAP ERP Question Answer Software SAP ABAP ERP Questions Answers Software SAP ABAP ERP Question Answer Software SAP ABAP ERP Questions Answers Software SAP ABAP ERP Question Answer Software SAP ABAP ERP Questions Answers Software SAP ABAP ERP Question Answer
Software SAP ABAP ERP Questions Answers Software SAP ABAP ERP Question Answer Software SAP ABAP ERP Questions Answers Software SAP ABAP ERP Question Answer Software SAP ABAP ERP Questions Answers Software SAP ABAP ERP Question Answer Software SAP ABAP ERP Questions Answers Software SAP ABAP ERP Question Answer Software SAP ABAP ERP Questions Answers Software SAP ABAP ERP Question Answer <
 

SAP ABAP Interview Questions Answers

SAP ABAP Interview Question - 46 : -

What is ITS?

SAP ABAP Interview Answer - 46 : -

What are the merits of ITS?- ITS is a Internet Transaction Server. ITS forms an interface between HTTP server and R/3 system, which converts screen provided data by the R/3 system into HTML documents and vice-versa. Merits of ITS: A complete web transaction can be developed and tested in R/3 system. All transaction components, including those used by the ITS outside the R/3 system at runtime, can be stored in the R/3 system. The advantage of automatic language processing in the R/3 system can be utilized to language-dependent HTML documents at runtime.
 

SAP ABAP Interview Question - 47 : -

How to upload data using CATT ?

SAP ABAP Interview Answer - 47 : -

These are the steps to be followed to Upload data through CATT: Creation of the CATT test case & recording the sample data input. Download of the source file template. Modification of the source file. Upload of the data from the source file.
 

SAP ABAP Interview Question - 48 : -

How data is stored in cluster table?

SAP ABAP Interview Answer - 48 : -

A cluster table conatins data from mulitple DDIC tables.
It stores data as a name value pair ( varkey, vardata)
 

SAP ABAP Interview Question - 49 : -

What are logical databases? What are the advantages/ dis-advantages of logical databases?

SAP ABAP Interview Answer - 49 : -

To read data from a database tables we use logical database. A logical database provides read-only access to a group of related tables to an ABAP/4 program. Advantages: i)check functions which check that user input is complete, correct,and plausible. ii)Meaningful data selection. iii)central authorization checks for database accesses. iv)good read access performance while retaining the hierarchical data view determined by the application logic. dis advantages: i)If you donot specify a logical database in the program attributes,the GET events never occur. ii)There is no ENDGET command,so the code block associated with an event ends with the next event statement (such as another GET or an END-OF-SELECTION).
 

SAP ABAP Interview Question - 50 : -

What are the components of SAP scripts?

SAP ABAP Interview Answer - 50 : -

SAP scripts is a word processing tool of SAP which has the following components: Standard text. It is like a standard normal documents. Layout sets. - Layout set consists of the following components: Windows and pages, Paragraph formats, Character formats. Creating forms in the R/3 system. Every layout set consists of Header, paragraph, and character string. ABAP/4 program.
 

SAP ABAP Interview Question - 51 : -

What is the difference between SAP memory and ABAP memory?

SAP ABAP Interview Answer - 51 : -

data sending between main sessions using get parameter and set parameter is sap memory
data sending between internal sessions using import or export parameters is abap memory

sap memory is a global memory whereas abap memory is local memory.

For example, we have four programs in abap memory and assigned some varibles to a particular program in abap memory then those varibles can't be used by anyother program in abap memory i.e., the variables are only for that program and also local to that memory,whereas sap memory can access all the abap memory or else it can perform any kind of modifications.

SAP memory is available to the user during the entire terminal session.
ABAP memory is available to the user during life time of external session.

 

SAP ABAP Interview Question - 52 : -

What is Smart Forms?

SAP ABAP Interview Answer - 52 : -

Smart Forms allows you to create forms using a graphical design tool with robust functionality, color, and more. Additionally, all new forms developed at SAP will be created with the new Smart Form solution.
 

SAP ABAP Interview Question - 53 : -

What is the difference between macro and subroutine?

SAP ABAP Interview Answer - 53 : -

Macros can only be used in the program the are defined in and only after the definition are expanded at compilation / generation. Subroutines (FORM) can be called from both the program the are defined in and other programs . A MACRO is more or less an abbreviation for some lines of code that are used more than once or twice. A FORM is a local subroutine (which can be called external). A FUNCTION is (more or less) a subroutine that is called external. Since debugging a MACRO is not really possible, prevent the use of them (I’ve never used them, but seen them in action). If the subroutine is used only local (called internal) use a FORM. If the subroutine is called external (used by more than one program) use a FUNCTION.
 

SAP ABAP Interview Question - 54 : -

What type of user exits have you written?

SAP ABAP Interview Answer - 54 : -

there are four types
1.function exit
2.menu ixit
3.screen exit.
4.field exit.
these are the user exits
 

SAP ABAP Interview Question - 55 : -

What is Tcode SE16. For what is it used. Explain briefly?

SAP ABAP Interview Answer - 55 : -


SE16 is a T-code for object browser.
Generally used to search the fields of SAP Tables . and respective data.


se16 is a data browse and it is used to view the contents of the table and we cannot change or append new fields to the existing structure of the table as we cannot view the structure level display using the se16

 

SAP ABAP Interview Question - 56 : -

What are domains and data element?

SAP ABAP Interview Answer - 56 : -

Domains:Domain is the central object for describing the technical characteristics of an attribute of an business objects. It describes the value range of the field. Data Element: It is used to describe the semantic definition of the table fields like description the field. Data element describes how a field can be displayed to end-user.
 

SAP ABAP Interview Question - 57 : -

What is table buffer? Which type of tables used this buffer?

SAP ABAP Interview Answer - 57 : -

buffer is nothing but a memory area. table is buffered means that table information is available on application server. when you call data from database table it will come from application server.

transperent and pooled tables are buffered. cluster tables can not buffered.

 

SAP ABAP Interview Question - 58 : -

What is DynPro?

SAP ABAP Interview Answer - 58 : -

DynPro is a Dynamic Programming which is a combination of screen and the associated flow logic Screen is also called as DynPro.