Wednesday, January 20, 2016

200 [UPDATED] SAP ABAP Interview Questions and Answers pdf free download for experienced

SAP ABAP Interview Questions and Answers pdf free download for experienced :-

1. What is the typical structure of an ABAP/4 program?
ANSWER :-
   HEADER ,BODY,FOOTER.

2. What are field symbols and field groups.?
    Have you used "component idx of structure" clause with field groups?

ANSWER :-
    Field symbols:-

    Field groups :-

Can any body explain me what is field group?

Field groups are groups similar fields together into one name. Field group works in conjuction with

INSERT f1 f2 INTO fg
EXTRACT fg
SORT BY fg
LOOP ... ENDLOOP

INSERT f1 f2 INTO fg
---------------------

The insert statement is used to create a field group dynamically by inserting the field into it. Only global data fields can be inserted and not local data fields eg : in form modules.

EXTRACT fg
----------

This will combine all the fields in the fieldgroup and write them to a sequential dataset as a single record.

SORT BY fg
----------

Sorting of sequential dataset by field group.

LOOP AND ENDLOOP
---------------

LOOP.
  AT ***
......
....
ENDAT.
  AT ***
.....
....
ENDAT.
ENDLOOP.                        

3. What should be the approach for writing a BDC program?
ANSWER :-
STEP 1: CONVERTING THE LEGACY SYSTEM DATA TO A FLAT FILE to internal table CALLED "CONVERSION".
STEP 2: TRANSFERING THE FLAT FILE INTO SAP SYSTEM CALLED "SAP DATA TRANSFER".
STEP 3: DEPENDING UPON THE BDC TYPE i)call transaction(Write the program explicity)
         ii) create sessions (sessions are created and processed.if success data will transfer).

4. What is a batch input session?
ANSWER :-
BATCH INPUT SESSION is an intermediate step between internal table and database table.
Data along with the action is stored in session ie data for screen fields, to which screen it is passed,program name behind it, and how next screen is processed.

5. What is the alternative to batch input session?
ANSWER :-
Call transaction.

6. A situation: An ABAP program creates a batch input session.
    We need to submit the program and the batch session in back ground. How to do it?
ANSWER :-
     go to SM36 and create background job by giving
     job name,job class and job steps (JOB SCHEDULING)

8. What are the problems in processing batch input sessions?
    How is batch input process different from processing online?
ANSWER :-
PROBLEMS:-
 i) If the user forgets to opt for keep session then the session will be automatically removed from the session queue(log remains).  However if session is processed we may delete it manually.
ii)if session processing fails data will not be transferred to SAP database table.

10. What are the different types of data dictionary objects?
ANSWER :-
tables, structures, views, domains, data elements, lock objects, Matchcode objects.


11. How many types of tables exists and what are they in data dictionary?
ANSWER :-
4 types of tables
i)Transparent tables - Exists with the same structure both in dictionary as well as in database exactly with the same data and fields.   Both Opensql and Nativesql can be used.
ii)Pool tables & iii)Cluster tables -
These are logical tables that are arranged as records of transparent tables.one cannot use native sql on these tables
(only opensql).They are not managable directly using database system tools.

iv)Internal tables - .

12. What is the step by step process to create a table in data dictionary?
ANSWER :-
   step 1: creating domains(data type,field length,range).
   step 2: creating data elements(properties and type for a table
field).
   step 3: creating tables(SE11).

13. Can a transparent table exist in data dictionary but not in the data base physically?
ANSWER :- NO.
TRANSPARENT TABLE DO EXIST WITH THE SAME STRUCTURE BOTH IN THE DICTIONARY AS WELL AS IN THE DATABASE,EXACTLY WITH THE SAME DATA AND FIELDS.

14. What are the domains and data elements?
ANSWER :-
DOMAINS : FORMAL DEFINITION OF THE DATA TYPES.THEY SET ATTRIBUTES SUCH  AS DATA TYPE,LENGTH,RANGE.
DATA ELEMENT : A FIELD IN R/3 SYSTEM IS A DATA ELEMENT.

15. Can you create a table with fields not referring to data elements?
ANSWER :-
YES.  eg:- ITAB LIKE SPFLI.here we are referening to a data object(SPFLI) not data element.

16. What is the advantage of structures? How do you use them in the ABAP programs?
ANSWER :-
Adv:- GLOBAL EXISTANCE(these could be used by any other program without creating it again).

17. What does an extract statement do in the ABAP program?
ANSWER :-
Once you have declared the possible record types as field groups and defined their structure, you can fill the extract dataset using the following statements:
EXTRACT <fg>.

When the first EXTRACT statement occurs in a program, the system creates the extract dataset and adds the first extract record to it. In each subsequent EXTRACT statement, the new extract record is added to the dataset

EXTRACT HEADER.

When you extract the data, the record is filled with the current values of the corresponding fields.

As soon as the system has processed the first EXTRACT statement for a field group <fg>, the structure of the corresponding extract record in the extract dataset is fixed. You can no longer insert new fields into the field groups <fg> and HEADER. If you try to modify one of the field groups afterwards and use it in another EXTRACT statement, a runtime error occurs.

By processing EXTRACT statements several times using different field groups, you fill the extract dataset with records of different length and structure. Since you can modify field groups dynamically up to their first usage in an EXTRACT statement, extract datasets provide the advantage that you need not determine the structure at the beginning of the program.

18. What is a collect statement? How is it different from append?
ANSWER :-
If an entry with the same key already exists, the COLLECT statement does not append a new line, but adds the contents of the numeric fields in the work area to the contents of the numeric fields in the existing entry.

19. What is open sql vs native sql?
ANSWER :- by Madhukar
Open SQL , native SQL are the interfaces to create the database applicatons.
Open SQL is consistant across different types of existing Databases.
Native SQL is the database language specific to database.Its API is specific to the databse.
Open SQL API is consistent across all vendors

20. What does an EXEC SQL stmt do in ABAP? What is the disadvantage of using it?
ANSWER :-

21. What is the meaning of ABAP/4 editor integrated with ABAP/4 data dictionary?
ANSWER :-

22. What are the events in ABAP/4 language?
ANSWER :-
Initialization, At selection-screen,Start-of-selection,end-of-selection,top-of-page,end-of-page, At line-selection,At user-command,At PF,Get,At New,At LAST,AT END, AT FIRST.

23. What is an interactive report?
What is the obvious diff of such report compared with classical type reports?
ANSWER :-
An Interactive report is a dynamic drill down report that produces the list on users choice.
diff:-
a)  THE LIST PRODUCED BY CLASSICAL REPORT DOESN'T allow user to interact with the system
    the list produced by interactive report allows the user to interact with the system.
b)  ONCE A CLASSICAL REPORT EXECUTED USER LOOSES CONTROL.IR USER HAS CONTROL.
c)  IN CLASSICAL REPORT DRILLING IS NOT POSSIBLE.IN INTERACTIVE DRILLING IS POSSIBLE.

24. What is a drill down report?
ANSWER :-
Its an Interactive report where in the user can get more relavent data by selecting explicitly.

25. How do you write a function module in SAP? describe.
ANSWER :-
creating function module:-
called program - se37-creating funcgrp,funcmodule by assigning attributes,importing,exporting,tables,exceptions.
calling program - SE38-in pgm click pattern and write function name- provide export,import,tables,exception values.

26. What are the exceptions in function module?
ANSWER :-
COMMUNICATION_FAILURE
SYSTEM_FAILURE

27. What is a function group?
ANSWER :-
GROUP OF ALL RELATED FUNCTIONS.

28. How are the date and time field values stored in SAP?
ANSWER :-
DD.MM.YYYY.  HH:MM:SS

30. Name a few data dictionary objects? //rep//
ANSWER :-
TABLES,VIEWS,STRUCTURES,LOCK OBJECTS,MATCHCODE OBJECTS.

31. What happens when a table is activated in DD?
ANSWER :-
It is available for any insertion,modification and updation of records by any user.

32. What is a check table and what is a value table?
Check table will be at field level checking.
Value table will be at domain level checking ex: scarr table is check table for carrid.

33. What are match codes? describe?
ANSWER :-
It is a similar to table index that gives list of possible values for either primary keys or non-primary keys.

34. What transactions do you use for data analysis?
ANSWER :-

35. What is table maintenance generator?
ANSWER :-

36. What are ranges? What are number ranges?
ANSWER :-
    max,min values provided in selection screens.

37. What are select options and what is the diff from parameters?
ANSWER :-
select options provide ranges where as parameters do not.

SELECT-OPTIONS declares an internal table which is automatically filled with values or ranges
of values entered by the end user. For each SELECT-OPTIONS , the system creates a selection table.

SELECT-OPTIONS <SEL> FOR <field>.

A selection table is an internal table with fields SIGN, OPTION, LOW and HIGH.
The type of LOW and HIGH is the same as that of <field>.
The SIGN field can take the following values: I Inclusive (should apply) E Exclusive (should not apply)
The OPTION field can take the following values: EQ Equal GT Greater than NE Not equal BT Between LE Less
than or equal NB Not between LT Less than CP Contains pattern GE Greater than or equal NP No pattern.
diff:-
PARAMETERS allow users to enter a single value into an internal field within a report.
SELECT-OPTIONS allow users to fill an internal table with a range of values.

For each PARAMETERS or SELECT-OPTIONS statement you should define text elements by choosing
Goto - Text elements - Selection texts - Change.

Eg:- Parameters name(30).
when the user executes the ABAP/4 program,an input field for 'name' will appear on the selection screen.You can change the comments on the left side of the input fields by using text elements as described in Selection Texts.

38. How do you validate the selection criteria of a report?
And how do you display initial values in a selection screen?
ANSWER :-
validate :- by using match code objects.
display :- Parameters <name> default 'xxx'.
               select-options <name> for spfli-carrid.

39. What are selection texts?
ANSWER :-

40. What is CTS and what do you know about it?
ANSWER :-

The Change and Transport System (CTS) is a tool that helps you to organize development projects in the ABAP Workbench and in Customizing, and then transport the changes between the SAP Systems and clients in your system landscape.
This documentation provides you with an overview of how to manage changes with the CTS and essential information on setting up your system and client landscape and deciding on a transport strategy. Read and follow this documentation when planning your development project.
For practical information on working with the Change and Transport System, see Change and Transport Organizer and Transport Management System.

41. When a program is created and need to be transported to prodn does selection texts always go with it? if not how do you make sure? Can you change the CTS entries? How do you do it?
ANSWER :-

42. What is the client concept in SAP? What is the meaning of client independent?
ANSWER :-

43. Are programs client dependent?
ANSWER :-
    Yes.Group of users can access these programs with a client no.

44. Name a few system global variables you can use in ABAP programs?
ANSWER :-
SY-SUBRC,SY-DBCNT,SY-LILLI,SY-DATUM,SY-UZEIT,SY-UCOMM,SY-TABIX.....
SY-LILLI IS ABSOLUTE NO OF LINES FROM WHICH THE EVENT WAS TRIGGERED.

45. What are internal tables? How do you get the number of lines in an internal table?
How to use a specific number occurs statement?
ANSWER :-
 i)It is a standard data type object which exists only during the runtime of the program.
They are used to perform table calculations on subsets of database tables and for re-organising the contents of database tables according to users need.
ii)using SY-DBCNT.
iii)The number of memory allocations the system need to allocate for the next record population.

46. How do you take care of performance issues in your ABAP programs?
Performance of ABAPs can be improved by minimizing the amount of data to be transferred.
The data set must be transferred through the network to the applications, so reducing the amount OF time and also reduces the network traffic.

Some measures that can be taken are:

- Use views defined in the ABAP/4  DDIC (also has the advantage of better reusability).
- Use field list (SELECT clause) rather than SELECT *.
- Range tables should be avoided (IN operator)
- Avoid nested SELECTS.

i)system tools

ii)field symbols and field groups.
ANSWER :-
Field Symbols : Field symbols are placeholders for existing fields. A Field Symbol does not physically reserve space for a field,but points to a field which is not known until runtime of the program.
eg:-  FIELD-SYMBOL <FS> [<TYPE>].

Field groups :  A field group combines several fields under one name.At runtime,the INSERT command is used to define which data fields are assigned to which field group.
There should always be a HEADER field group that defines how the extracted data will be sorted,the data is sorted by the fields grouped under the HEADER field group.

47. What are datasets?
ANSWER :-
The sequential files(ON APPLICATION SERVER) are called datasets. They are used for file handling in SAP.

48. How to find the return code of a statement in ABAP programs?
ANSWER :-
Using function modules.

49. What are interface/conversion programs in SAP?
ANS :
CONVERSION : LEGACY SYSTEM TO FLAT FILE.
INTERFACE  : FLAT FILE TO SAP SYSTEM.

50. Have you used SAP supplied programs to load master data?

SAP ABAP Interview Questions and Answers pdf free download for experienced freshers



51. What are the techniques involved in using SAP supplied programs?
Do you prefer to write your own programs to load master data? Why?
52. What are logical databases? What are the advantages/disadvantages of logical databases?
ANSWER :-
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.

adv:-
The programmer need not worry about the primary key for each table.Because Logical database knows how the different tables relate to each other,and can issue the SELECT command with proper where clause to retrieve the data.
i)An easy-to-use standard user interface.
ii)check functions which check that user input is complete,correct,and plausible.
iii)meaningful data selection.
iv)central authorization checks for database accesses.
v)good read access performance while retaining the hierarchical data view determined by the application logic.

disadv:-
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).

53. What specific statements do you using when writing a drill down report?
ANSWER :-
AT LINE-SELECTION,AT USER-COMMAND,AT PF.

54. What are different tools to report data in SAP? What all have you used?
ANSWER :-

55. What are the advantages and disadvantages of ABAP/4 query tool?
Frequent Asked Questions on SAP Query SQ01

56. What are the functional areas? User groups? and how does ABAP/4 query work in relation to these?
What Is SAP Queries

57. Is a logical database a requirement/must to write an ABAP/4 query?

59. What are Change header/detail tables? Have you used them?

60. What do you do when the system crashes in the middle of a BDC batch session?
ANSWER :-
we will look into the error log file (SM35).

61. What do you do with errors in BDC batch sessions?
ANSWER :-
We look into the list of incorrect session and process it again. To correct incorrect session we analyize the session to determine which screen and value produced the error.For small errors in data we correct them interactively otherwise
modify batch input program that has generated the session or many times even the datafile.

62. How do you set up background jobs in SAP? What are the steps? What are the event driven batch jobs?
ANSWER :-
go to SM36 and create background job by giving job name,job class and job steps(JOB SCHEDULING)

63. Is it possible to run host command from SAP environment? How do you run?

64. What kind of financial periods exist in SAP? What is the relavent table for that?

65. Does SAP handle multiple currencies? Multiple languages?
ANSWER :-
Yes.

66. What is a currency factoring technique?

67. How do you document ABAP/4 programs? Do you use program documentation menu option?

68. What is SAPscript and layout set?
ANSWER :-
The tool which is used to create layout set is called SAPscript. Layout set is a design document.

69. What are the ABAP/4 commands that link to a layout set?
ANSWER :-
control commands,system commands,

70. What is output determination?

71. What are IDOCs?
ANSWER :-
IDOCs are intermediate documents to hold the messages as a container.

72. What are screen painter? menu painter? Gui status? ..etc.
ANSWER :-
dynpro - flow logic + screens.
menu painter -
GUI Status - It is subset of the interface elements(title bar,menu bar,standard tool bar,push buttons) used for a certain screen.
The status comprises those elements that are currently needed by the transaction.

73. What is screen flow logic? What are the sections in it? Explain PAI and PBO.
ANSWER :-
The control statements that control the screen flow.
PBO - This event is triggered before the screen is displayed.
PAI - This event is responsible for processing of screen after the user enters the data and clicks the pushbutton.

74. Overall how do you write transaction programs in SAP?
ANSWER :-
Create program-SE93-create transcode-Run it from command field.

75. Does SAP has a GUI screen painter or not? If yes what operating systems is it available on? What is the other type of screen painter called?

76. What are step loops? How do you program pagedown pageup in step loops?
ANSWER :-
step loops are repeated blocks of field in a screen.

77. Is ABAP a GUI language?
ANSWER :-
Yes.
ABAP IS AN EVENT DRIVEN LANGUAGE.

78. Normally how many and what files get created when a transaction program is written?
What is the XXXXXTOP program?
ANSWER :-
ABAP/4 program.
DYNPRO

79. What are the include programs?
ANSWER :-
When the same sequence of statements in several programs are to be written repeadly they are coded in include programs (External programs) and  are included in ABAP/4 programs.

80. Can you call a subroutine of one program from another program?
ANSWER :-  Yes- only external subroutines Using 'SUBMIT' statement.
81. What are user exits? What is involved in writing them? What precations are needed?

82. What are RFCs? How do you write RFCs on SAP side?

83. What are the general naming conventions of ABAP programs?
ANSWER :-
Should start with Y or Z.

84. How do you find if a logical database exists for your program requrements?
ANSWER :-
SLDB-F4.

85. How do you find the tables to report from when the user just tell you the transaction he uses? And all the underlying data is from SAP structures?
ANSWER :-
Transcode is entered in command field to open the table.Utilities-Table contents-display.

86. How do you find the menu path for a given transaction in SAP?
ANSWER :-

87. What are the different modules of SAP?
ANSWER :-
FI,CO,SD,MM,PP,HR.

89. How do you get help in ABAP?
ANSWER :-
HELP-SAP LIBRARY,by pressing F1 on a keyword.

90. What are different ABAP/4 editors? What are the differences?
ANSWER :-

91. What are the different elements in layout sets?
ANSWER :-
PAGES,Page windows,Header,Paragraph,Character String,Windows.

92. Can you use if then else, perform ..etc statements in sap script?
ANSWER :-
yes.

93. What type of variables normally used in sap script to output data?

94. How do you number pages in sapscript layout outputs?

95. What takes most time in SAP script programming?
ANSWER :-
LAYOUT DESIGN AND LOGO INSERTION.

96. How do you use tab sets in layout sets?

97. How do you backup sapscript layout sets? Can you download and upload? How?

98. What are presentation and application servers in SAP?
ANSWER :-
The application layer of an R/3 System is made up of the application servers and the message server. Application programs in an R/3 System are run on application servers. The application servers communicate with the presentation components, the database, and also with each other, using the message server.

99. In an ABAP/4 program how do you access data that exists on a presentation server vs on an application server?
ANSWER :-
i)using loop statements.
ii)flat

100. What are different data types in ABAP/4?
ANSWER :-
     Elementary -
          predefined C,D,F,I,N,P,T,X.
          userdefined TYPES.
 ex: see in intel book page no 35/65

     Structured -
         predefined    TABLES.
         userdefined Field Strings and internal tables.

101. What is difference between session method and Call Transaction?
ANSWER :-

102. Setting up a BDC program where you find information from?
ANSWER :- Question About BDC Program

103. What has to be done to the packed fields before submitting to a BDC session.
ANSWER :-
     fields converted into character type.

104. What is the structure of a BDC sessions.
ANSWER :-
      BDCDATA (standard structure).

105. What are the fields in a BDC_Tab Table.
ANSWER :-
      program, dynpro, dynbegin, fnam, fval.

106. What do you define in the domain and data element.
Technical details like

107. What is the difference between a pool table and a transparent table and how they are stored at the database level.
ANSWER :-
ii)Pool tables is a logical representation of transparent tables.  Hence no existence at database level. Where as transparent tables are physical tables and exist at database level.

108. What is cardinality?
For cardinality one out of two (domain or data element) should be the same for Ztest1 and Ztest2 tables. M:N
Cardinality specifies the number of dependent(Target) and independent (source) entities which can be in a relationship.

SAP ABAP Interview Questions and Answers pdf free download for experienced freshers

Friday, January 8, 2016

What are the different databases Integrities?

a)      Semantic Integrity

b)      Relational Integrity

c)      Primary Key Integrity

d)      Value Set Integrity

e)      Foreign Key Integrity

f)      Operational Integrity

What are different types of parameters? How can you distinguish between different kinds of parameters?

The different types of parameters are

a)      Formal Parameters:  It is defined during the definition of subroutine with the ‘FORM’ statement

b)      Actual Parameters:  It is specified during the call of a subroutine with the ‘PERFORM’ statement

You can distinguish different kind of parameters by their functionality.  Input parameters are used to pass data to subroutines, while output parameters are used to pass data from subroutines.

How can you create callable modules of program code within one ABAP/4 program?

a)      By defining Macros

b)      By creating include programs in the library.

Explain the benefits of modularization technique?

By using modularization techniques, you can avoid redundancy if the program contains the same or similar blocks of statements or it is required to process the same function several times.  By modularizing the ABAP/4 programs, we make them easy to read and improve their structure.  Modularized programs are also easier to maintain and update.

What is the difference between a ‘Database index’ and a ‘Match code’?

‘Database Index’ contains fields from one table while ‘Match Code’ contain fields from several tables. Match code objects can be built on cluster tables, transparent tables and pooled tables.

Mention what are the two methods of modifying SAP standard tables?

There are two methods for modifying SAP standard tables

a)      Append structures

b)      Customizing includes

What is dispatcher?

A control agent referred as SAP dispatcher, manages resources for the R/3 applications.

In the ‘select’ statement what is ‘group by’?

To fetch the data from the table by the specified field Group by Clause is used.

What are the ways you can do the tuning? What are the major steps will you use for these?

Tunning can  be done in three ways disk i/o, sql tunning  and memory tunning.  Before tunning, you have to get the status of your database using oracle utility called statpack and tkprof .

What are different types of data dictionary objects?

The different types of data dictionary objects are:

a)      Tables

b)      Views

c)       Domain

d)      Data Element

e)      Type Groups

f)       Search Helps/Matchcode Objects

g)      Lock Objects

h)      Structures

i)        Table Types

How can you debug a script form?

To debug a script form, you have to follow

SE71–>give the form name->utilities->activate debugger

How data is stored in cluster table?

A cluster table contains data from multiple DDIC tables.  It stores data as name value pair.

What is lock object?

To synchronize access of several users using same data Lock objects are used.

Explain the difference between dialog program and a report?

A report is an executable program; dialog is a module pool program. It has to be executed via a transaction only.  Dialog programming is used for customizations of screens.

What are the different ABAP/4 editors? What are the differences?

The 2 editors are SE38 and SE80 and both have the ABAP editor in place.   In SE38 , you can create programs and view online reports and basically do all the development of objects in this editor.  In SE80, there are additional features such as creating packages, function group, module pool, classes, programs and BSP applications.

What is the difference between ‘Type’ and ‘Like’?

‘Type’:  You assign data type directly to the data object while declaring.

‘Like’:  You assign the data type of another object to the declaring data object.

‘Type’ refers the existing data type while ‘Like’ refers to the existing data object.

What is the use of ‘pretty printer’?

To format the ABAP code ‘pretty printer’ is used.

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

Over here, buffer means memory area, table buffer means the table information is available on the application server.  When you call data from database table, it will come from application server.  Transparent tables and pool tables are buffered, while cluster table cannot be buffered.

Mention the difference between ABAP and OOABAP? In what situation do you use OOABAP?

ABAP is used to develop traditional programs in R/3, while OOABAP is used to develop BSP/ PCUI applications and also anything that an involved object oriented like BADI’s and SmartForms etc.

When do we use End-of-selection?

End of the selection event is mostly used when we are writing HR-ABAP code.   In the HR-ABAP code, data is retrieved in the start of selection event and printing on the list and all will be done at the end of the selection event.

Mention what is ALV programming in ABAP? When is this grid used in ABAP?

ALV stands for Application List Viewer.  To enhance the output of the report, SAP provides a set of ALV function modules which can be used, and it also improves the functionality and readability of any report output.  It is an efficient tool used for arranging the columns in a report output.

Explain the difference between Template and Table?

The difference between the table and template is that, table is a dynamic and template is a static.

How can you format the data before write statement in the report?

By using the loop event the reports output can be formatted

a)      .at first

b)      .at new

c)       .at last

How to create ‘table cluster’?

a)      In ABAP dictionary, select object type Table,  enter a table name and choose create

b)      A field maintenance screen for the table is displayed. Table type Transparent table, set it as a default

c)       Make the necessary entries in the short description and delivery classified on the Attributes page. Then define the fields of the table.

d)      Proceed as when creating a transparent table. Now save your entries

e)      Now choose EXTRASàChange table category

f)       When a dialogue box appears you have to select the table type ‘Pooled table’ or ‘Cluster table’

g)      After selecting the table, return to the field maintenance screen for the table. Field pool or cluster name is displayed on the Attributes tab page in addition to the standard fields.

h)      Now enter the name of the table cluster or table pool to which you want to assign the cluster table.

What are the components of SAP scripts?

For SAP, SAP scripts are a word processing tool. It has a function like standard text and layout sets. Its layout set consists of: Windows and pages, Character formats, Paragraph formats etc.

In ABAP what are the differences between table and structure in data dictionary?

The difference between structure and table is

a)      Data can be stored physically in Table, but a structure cannot

b)       Structure does not have primary key but table can have

c)       Table can have the technical attribute but the structure does not have

10)   What is Smart Forms?

Smart forms allow you to create forms using a graphical design tool.

What is a foreign key relationship?

To ensure the consistency of data, foreign keys are used. The relationship established between the tables and must be explicitly defined at field level. Data entered should be checked against the existing data to ensure that there is no contradiction. Cardinality has to be specified while defining foreign key relationship.

List down the functional modules used in sequence in BDC?

There are 3 functional modules which are used in sequence to perform data transfer successfully using BDC programming.  They are

a)      BDC_OPEN_GROUP

b)      BDC_INSERT

c)       BDC_CLOSE_GROUP

What are the internal tables?

Internal table exists only when the program is run. It is used for performing table calculations on subset of database tables and also for re-organizing the content of database tables as per the users need.

Describe the data classes?

The data classes are classified into following classes

Master Data: The data in this class seldom change

Transaction Data: The data can be changed often in this class

Organization Data:  This data is a customized data and is entered in the system when the system is configured. It is rarely changed.

System Data:  This data is used by R/3 system itself

What do you mean by BDC (Batch Data Communications) programming?

It is an automatic procedure to transfer large or external data into SAP system. ‘Queue file’ is the central component of the transfer, which receives the data through batch input programs and groups that are associated into ‘sessions’.

Explain the difference between pool tables and transparent tables?

Transparent tables:  It has one to one relation with the table in the database.  Its structure corresponds to single database field.

Pooled tables: It has many to one relation with the table in the database.  Pooled tables are stored at the database level.

a)      Basic List: For simple reports

b)      Statistics:  For Percentage, Average etc.

c)       Ranked List : For analytical reports

What do you mean by an ABAP data dictionary?

To describe the logical structures of the objects that are used in application development ABAP/4 data dictionary is used.  It is also used to show the underlying relational database in tables.

What is SAP ABAP?

SAP is a type of software known as ERP (Enterprise Resource Planning) that large company use to manage their day to day affairs. ABAP (Advanced Business Application Programming) is the coding language for SAP to develop RICEFW objects. (Reports, Interfaces, Extensions, Forms and Workflows).