Showing posts with label Interview Question. Show all posts
Showing posts with label Interview Question. Show all posts

Thursday, June 16, 2011

SAP Common Interview Questions

Q.       What is SAP R/3?
Ans      SAP R/3 refers to Systems Application and Product for data processing Real-time having a 3 tier architecture i.e. Presentation layer, Application layer and Database layer.
Q.         What are the contents in technical specifications?
Ans      There are five contents in Technical Settings: Data Class, Size Category, Buffering Permission, Buffering Type and Logging.

Q.        What is an instance?
Ans      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.
Q.         What is Function group? Difference between function group and function module?
Ans      Function Groups act as containers for Function Modules that logically belong together.
            Function Groups                                  
1)      These cannot be defined in a Function Module.
2)      It cannot be called.
3)      They are containers for Function Module.
           Function Modules
                1)      These must be defined in a Function Group.
2)      It can be called from any program.
3)      They are not containers for Function Group.           
 Q.         What is the difference between 'Select single * ' and 'Select upto 1 rows'?
Ans      ‘Select single *’ – The result of the selection should be a single entry. If it is not possible to identify a unique entry, the system uses the first line of the selection. For e.g.   
            DATA : ITAB TYPE ZREKHA_EMP. 
            SELECT SINGLE * FROM ZREKHA_EMP INTO ITAB
           WHERE EMPNO = ‘00101’ AND DEPTNO = ‘0010’. 
            WRITE : / ITAB-EMPNO, ITAB-EMPNAME,ITAB-DEPTNO. 
            Select upto 1 rows -
 Q.         What Function does data dictionary perform?
Ans.      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.
Q.         Difference between domain and data element? What are aggregate object?
Ans      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.
             Data Element - Describes the business function of a table field. Its technical attributes are based on a domain, and its business function is described by its field labels and documentation.
            Aggregate Object – Views, Match Code and Lock objects are called aggregate objects because they are formed from several related table.
Q.        What is view? Different types of view. Explain?
Ans      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.
             Different Types of View:
               1)      Maintenance
               2)      Database – It is on more than two tables.
              3)      Projection – It is only on one table.

Q. What is step-loop? Explain all the steps?
Ans A step loop is a repeated series of field-blocks in a screen. Each block can contain one or more fields, and can extend over more than one line on the screen.
Step loops as structures in a screen do not have individual names. The screen can contain more than one step-loop, but if so, you must program the LOOP...ENDLOOPs in the flow logic accordingly. The ordering of the LOOP...ENDLOOPs must exactly parallel the order of the step loops in the screen. The ordering tells the system which loop processing to apply to which loop. Step loops in a screen are ordered primarily by screen row, and secondarily by screen column.
Transaction TZ61 (development class SDWA) implements a step loop version of the table you saw in transaction TZ60.
Static and Dynamic Step Loops
Step loops fall into two classes: static and dynamic. Static step loops have a fixed size that cannot be changed at runtime. Dynamic step loops are variable in size. If the user re-sizes the window, the system automatically increases or decreases the number of step loop blocks displayed. In any given screen, you can define any number of static step loops, but only a single dynamic one.
You specify the class for a step loop in the Screen Painter. Each loop in a screen has the attributes Looptype (fixed=static, variable=dynamic) and Loopcount. If a loop is fixed, the Loopcount tells the number of loop-blocks displayed for the loop. This number can never change.
Programming with static and dynamic step loops is essentially the same. You can use both the LOOP and LOOP AT statements for both types.
Looping in a Step Loop
When you use LOOP AT <internal-table> with a step loop, the system automatically displays the step loop with vertical scroll bars. The scroll bars, and the updated (scrolled) table display, are managed by the system.
Use the following additional parameters if desired:
  • FROM <line1> and TO <line2>
  • CURSOR <scroll-var>
Q. What is the initial value and maximum length of all data type?
Ans
Data Type
Initial field length
Valid field length
Initial value
Meaning
Numeric types
I
4
4
0
Integer (whole number)
F
8
8
0
Floating point number
P
8
1 – 16
0
Packed number
Character types
C
1
1 – 65535
' … '
Text field (alphanumeric characters)
D
8
8
'00000000'
Date field (Format: YYYYMMDD)
N
1
1 – 65535
'0 … 0'
Numeric text field (numeric characters)
T
6
6
'000000'
Time field (format: HHMMSS)
Hexadecimal type
X
1
1 – 65535
X'0 … 0'
Hexadecimal field
Q. What are the different functions used in sap script? What are the parameters used in each Function?
Ans There are three different functions used in SAP Script:
1) OPEN_FORM
2) WRITE_FORM
3) CLOSE_FORM
Parameters in Each Function:
1) OPEN_FORM –
Exporting
Form
Language
2) WRITE_FORM –
Exporting
Element
Window
3) CLOSE_FORM
Q. What is sequence of event triggered in report?
Ans There are 6 events in report:
1) Initialization
2) At Selection-Screen
3) Start-of-Selection
4) Get
5) Get Late
6) End-of-Selection
7) Top-of-Page
8) End-of-Page
9) At Line Selection
10) At User Command
11) At PF (nn)
Q. What are standard layouts sets in the SAP Script?
Ans There are four standard layouts in the SAP Script:
1) Header
2) Logo
3) Main Window
4) Footer
Q. What are the various types of selection screen event?
Ans. SELECTION-SCREEN BEGIN OF BLOCK ABC WITH FRAME TITLE T01.
SELECTION-SCREEN BEGIN OF SCREEN 500 AS WINDOW.
CALL SELECTION-SCREEN 500 STARTING AT 10 10.
Q.       What is a Logical Database?
Ans      Logical Databases are special ABAP programs that retrieve data and make it available to application programs. Use of LDB – is used to read data from database tables by linking them to executable ABAP programs. 
Q.       What are the events used for Logical Database?
Ans      Two Events – 
1)         GET - This is the most important event for executable programs that use a logical database. It occurs when the logical database has read a line from the node <table> and made it available to the program in the work area declared using the statement NODES <table>. The depth to which the logical database is read is determined by the GET statements
 2)        PUT - The PUT statement directs the program flow according to the structure of   the logical database.
Q.       What is the difference between Get and Get Late?
Ans      GET - After the logical database has read an entry from the node <table>.
 GET LATE - After all of the nodes of the logical database have been processed that are below <table> in the database hierarchy.

Saturday, February 6, 2010

mySAP HR Interview Questions, Answers, and Explanations: SAP HR Certification Review

The Ultimate Learning Guide for SAP HR Candidates mySAP HR Certification Questions, Answers, and Explanations.

It' s clear that SAP HR is one of the most challenging areas in SAP. Finding resources can be difficult. SAP HR Interview Questions, Answers, and Explanations guides you through your learning process.

From helping you to assess your HR skills to evaluating candidates for a job, SAP HR Cer tification Questions will put you on the path to understanding what you really need to know. The book is organized around three areas of SAP HR - Configuration and Org. Plan, Troubleshooting, and Production Support.

Each question includes everything you need to know to master the interview or properly evaluate a candidate. More than just a rehash of SAP documentation and sales presentations, each question is based on project knowledge and experience gained on successful high-profile mySAP HR implementations.


Key interview topics include: . The most important HR settings to know . mySAP HR Administration tables and transaction code quick references . SAP HR Certification Examination Questions . Org plan, Compensation, Year End, Wages, and Taxes . User Management, Transport System, Patches, and Upgrades . Benefits, Holidays, Payroll, and Infotypes . Everything an HR resource needs to know before an interview.

Downlaod:

http://rapidshare.com/files/193570664/SAP_HR_Interview_Q_A_amaderforum.rar

Sunday, October 14, 2007

Interview Questions

The following are some sample interview questions I have taken from the internet, sample certification questions, and from my own experience.

1. What is the difference between the stock transfer between two plants belonging to same company code and those belonging to different company code?
2. What are the fields in Purchasing view?
3. What are the steps in automatic account assignment config.
4. How do you create movement types? What are the steps involved? When will you recommend a new movement type?
5. What is meant by access sequence? When it is used?
6. How does the PO pick up the pricing schema?
7. What are the steps involved in creating a pricing procedure?
8. What are the types of special stocks available?
9. What are the types of inforecords?
10. What is meant by consignment stock?
11. What are the steps involved in consignment cycle?
12. Tell me about the subcontracting cycle.
13. How is scrap accounted in subcontracting?
14. How are the byproducts taken care of in subcontracting?
15. Tell me about the various movement types and usage.
16. What is meant by scales? Can scales be used in standard purchase order?
17. What is the difference between a contract and a scheduling agreement?
18. How does the system calculate taxes?
19. How does the system calculate nondeductible taxes?
20. What is meant by batches? How can the batches be searched?
21. How is a shelf-life item managed in SAP? What is the full cycle?
22. What are the settings required for quota arrangement?
23. What is meant by MRP Type and lot sizing?
24. Can it be configured in such a way that the external requisitions can also be taken into account while MRP runs in consumption-based planning if VB is selected as MRP type?
25. What is a reference purchase organization? When can it be used?
26. Explain the concept of split valuation and when can it be used? What are the settings required?
27. What are valuation area, valuation category and valuation class?
28. What is meant by a credit memo?
29. How are free items managed in a PO?
30. What is meant by a release strategy?
31. What are release groups and release codes?
32. What are the differences between release procedure with classification and release procedure without classification? When are they used?
32. Is it possible to have a release procedure without classification for a PO?
33. What is the maximum number of levels available in SAP?
35. Is it possible to have scales in a quotation?
36. What is GR blocked stock? When it can be used?
37. What is the movement type for return to vendor? How to reverse it?
38. How are the variations in subcontracting taken care of in SAP?
39. What are the tools available for data migration in SAP?
40. What is LSMW?
41. What is the difference between LSMW and CATT?
42. How to give specifications for developments?
43. How do you plan for a vendor rating system and move about?
44. What is RTP?
45. What is the movement type used in receipt of RTP?
46. How is an item with serial no. managed?
47. How do you make variants?
48. What are the types of tables in SAP?
49. How to inventory excise duty in SAP?
50. What are the documents generated in the MIGO 101 movement type? What are the accounts hit?

Here are some SAP MM Certification sample questions you should know the answer to:

Question:
You wish to procure a material using a purchase order. You wish to take delivery of the material at different times. A graduated discount scale exists for the material. How do you proceed if you wish to take advantage of the discount arrangement?

Answers:
A) Enter several order items with the same material number and different delivery dates.
B) Enter one order item with the material number and assign the material to different accounts.
C) Enter an order item with the material number and create a number of schedule lines.
D) Enter a number of purchase orders for the material and specify different delivery dates.

Question:
In the purchase order on which the goods receipt is based, you defined a purchase order unit that differs from the purchase order unit. What is the significance of the purchase order price unit and what should you take note of in the case of a goods receipts?

Answers:
A) The purchase order price unit is stored in the material master record or purchasing info record and defines the unit of measure in which the material is ordered.
B) The system establishes the relationship between the purchase order price unit and the purchase order unit conversion in the purchase order.
C) At the time of goods receipt, both the quantity in the purchase order unit and the quantity in the purchase order price unit have to be entered, however, the quantity in purchase order piece unit is calculated by the system. You have to change it when the calculated quantity differs from reality.
D) Both at the time of goods receipt and invoice verification, the material is valuated on the basis of the purchase order unit.

Question:
You enter a goods issue and receive the following message: "W: On , only 0.000 pieces are available". What do you conclude from this?

Answers:
A) No stocks of the material exist anywhere in the entire plant. Therefore, nothing can be withdrawn.
B) Only the specified storage location does not contain any stocks of the material. Therefore, nothing can be withdrawn.
C) The material exist in the specified storage location on the current day, however, it is unavailable, because of other reservations.
D) The message represents a warning which you can ignore by pressing the
ENTER key.

Question:
Which of the following statements on procuring a material of the material type NLAG are correct?

Answers:
A) The purchase order must be account assigned.
B) The goods receipt must always be unvaluated.
C) When you enter an invoice, you can change the account assignment as long as the goods receipt was unvaluated.
D) When the material is for consumption, no document is ever created in Financial Accounting.

Question:
Which of the following stock transfer are relevant to valuation?

Answers:
A) Stock transfer from storage location to storage location in the same plant or company code.
B) Stock transfer from consignment stores of vendor XY to our unrestricted-use stock in storage location 0001.
C) Stock transfer from stock in quality inspection in storage location 001 to stock in quality inspection in storage location 0002 in the same plant.
D) Stock transfer of a material from storage location 0001 from plant 0001
to plant 0002. The plants belong to the same company, however the valuation areas are different (valuation level is plant).