Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

req

Former Member
0 Likes
436

hi there every one i have given an interview & i was not able to ans some questions plz can any 1 of u gentelman ans this questions for me i shell b thankful to u . i am new to sap n this was my first interview so i really watnt u guys to help me in this plz

1. where is supervisor information stored?

2. what is development class?

3. what r data dictionary objects?

4. macros used to read the data from infotypes?

5. tables in time results?

6. how to create a table?

7. what r user exits?

8. waht are babis & badis?

9. what is rt table?

10. how to creat a infotype?

3 REPLIES 3
Read only

raviprakash
Product and Topic Expert
Product and Topic Expert
0 Likes
412

2) A Development Class is logical group, which contains or houses the various ABAP objects like DDIC Objects, Programs, Function Modules, Messages, Transactions, Screens, INCLUDEs etc. These Objects together forms an Application or a Product to solve some problem.

3) Data Dictionary objects are objects that are stored in database. These can be seen in se11, eg. Dataelement, Tables, Views, Structures, table Types, Locks, Search helps, domains, etc. These form the building blocks of a Source Code object like Programs, FMs, classes etc.

6) Database tables are created in se11. and internal tables are created using the following statement:-

data: itab type table of <structure>,

itab1 type <table type>,

itab like <another ITAB> etc.

7) User Exits are points in SAP programs, where the user can fit in his codes overriding or using the SAP program's parameters.

😎 BADIs are Business Addins and BAPI is Business Application Prgramming Interface.

Thanks and regards,

Ravi.

Read only

Former Member
0 Likes
412

Hi Rizwan!

Nothing to worry!

Pls find the below answers.

1. where is supervisor information stored?

2. what is development class?

You can say in simple word, Development class is like Folder which will have the collection of objects(Report, class etc) for a assigned Proejcts.

3. what r data dictionary objects?

http://www.sts.tu-harburg.de/papers/1998/MaZi98.pdf

4. macros used to read the data from infotypes?

5. tables in time results?

6. how to create a table?

Ans:

We create a table through transaction SE11.

7. what r user exits?

Ans:

User exits (Function module exits) are exits developed by SAP.

The exit is implementerd as a call to a functionmodule.

The code for the function module is written by the developer.

You are not writing the code directly in the function module,

but in the include that is implemented in the function module.

8. waht are babis & badis?

Ans;

I think its BAPI & BADI. If so…..

BAPI:

BAPI is one of the interface technology provided by sap so that sap systems can be easily integrated with other systems using BAPI Function Modules.

BADI:

BADI's are nothing but User Exits for Enjoy transactions.

SE18 Business Add-Ins: Definitions

SE19 Business Add-Ins: Implementations

You should have knowledge of Object oriented ABAP knowledge using Classes and Interfaces, methods and Events etc.

9. what is rt table?

Ans: The RT (results table) will give you the payroll results for one specific run of payroll. It includes all wage types that were processed during the payroll run.

10. how to creat a infotype?

Ans: Basically as it is an interview question, you should have answered him briefly like you would create it by the Transaction PM01 – create Infotype.

But if you would like to know the step by step procedure, pls follow the link:

http://help.sap.com/saphelp_46c/helpdata/en/4f/d5268a575e11d189270000e8322f96/frameset.htm

Thank you.

Shekar.

Read only

0 Likes
412

thanks ravi for ans my questions