Вы находитесь на странице: 1из 15

FAQS - Mock Test

1. Search help is assigned to which level of the table?


A. Field
B. Domain
C. Data Element
D. A and C
2. Why + sign is displayed instead of the field description while maintaining the
table
entries using TCode SM30?
A. Short description is not provided for the field
B. Data element Field label is not maintained
C. A and B
D. None of the above
3. Lock object is created with the initial letter ________?
A. A
B. B
C. C
D. E
4. Value table can be assigned to ____?
A. Data Element
B. Domain
C. Field
D. All the above

5. Conversion routine is assigned to ____?


A. Field
B. Domain
C. Data Element
D. None of the above
6. We provide reference table and reference field to which type of fields?
A. Decimal
B. Currency
C. Quantity
D. B and C
7. Can we create transaction code for the table maintenance?
A. Yes
B. No
8. Without maintaining the following, the table cannot be activated:
A. Entry help/Check
B. Technical settings
C. Primary key
D. B and C
9. Difference between table and structure:
1. Table hold data only during runtime of program and structure hold it all the time
2. Structure hold data only during runtime of program and table hold it all the time
3. We need to define the primary keys for the structure and not for the table.
4. We need to define the primary keys for the table and not for the structure.
A. 2 and 4
B. 1 and 2
C. 2 and 3
D. 3 and 4

10. Prerequisite for creating foreign key relationship are_____.


A. The domain of the foreign key field and the primary key of the check table should be
different.
B. The foreign key and the primary key of the check table should have the same domain
C. A value table to the domain must be assigned
D. B and C
11. We can create the table maintenance with below types of screens.
A. Overview screen
B. Single screen
C. A and B
D. None of the above
12. Transaction code for the maintaining table is __________.
A. SM30
B. SM13
C. SE30
D. SM35
13. SAP locks are dependent on database locks?
A. Yes
B. No
C. Can't Say
14. In ABAP, Events must be written in an order.
A. True
B. False
15. Smart forms are client independent & SAP Scripts are client dependent.
A. True
B. False

16. Is Session Method, Asynchronous or Synchronous?


A. Asynchronous
B. Synchronous
C. Synchronous and Asynchronous
D. None of above
17. Which is not a function Of Functional Specifications. ?
A. Requirement
B. Technical Specifications
C. Desired functionality
D. Test cases
18. Which of the below is a modification not enhancement
A. BADI
B. Customer Exit
C. User Exit
D. Screen Exit
19. We need access key to implement customer exit.
A. True
B. False
20. T-Code for purchase order ?
A. VA21
B. VE11
C. ME21N
D. VL01N
21. I have a sales order report which displays list of sales order items, I need to
display sub-total for each sales order, which control break statement should I
use?

A. At First
B. At New
C. At End Of
D. At Last
22. The below Program prints output as:
Report ZSAPN_TEST
write: /1 'TECHMAHINDRA.COM'.
PARAMETER: p_test.
INITIALIZATION.
write: /1 'Init Event'.
START-OF-SELECTION.
write: /1 'OUTPUT'.
A. TECHMAHINDRA.COM
OUTPUT
B. Init Event
Output
C. Init Event
TECHMAHINDRA.COM
D. Init Event
Output
TECHMAHINDRA.COM
23. I have an ABAP program, I wants to know execution time of SQL statements,
which
T-code should I use ?
A. SE30
B. ST05
C. SAT
D. ST22
24. I have an ALV report which displays list of materials, whenever we click on
any material number, it should call MM03 transaction and display that material,
which technique should I use?

A. ABAP Memory
B. SAP Memory

C. Neither SAP nor ABAP


D. Both SAP and ABAP memories
25. BDC is ?
A. Outbound Process
B. Inbound Process
C. Either outbound or inbound process
D. Neither inbound nor outbound process
26. SAP Smart Forms support:
A. Postage optimization
B. Graphics
C. Both
D. Only Graphics
27. In SAPscript a page break is possible for the following windows:
A. Main window
B.Variable window
C. Constant window
D. All of the above
28. In a smart form if a page without main window calls itself as a next page then
SAP system takes the following action:
A. This would trigger an endless loop
B. System does not process the request at all.
C. System automatically terminates after three pages.
D. None of the above.
29. I wants to develop ALV report with only 4 fields of MARA table, we should do?
A. Create a Table
B. Using a Structure
C. Create a Field catalog

D. Using a Layout
30. Which of the below in not true about subtotals in ALV ?
A. Only applicable for currency and quantity fields
B. We must provide sort up property in ALV
C. We must provide Subtot property
D. We must provide sum property using field catalog
31. Predict the output of the below code.
Report Z_TEST
DATA: lv_string TYPE NUMC3 value 787
Lv_output TYPE NUMC2
MOVE lv_string to lv_output
WRITE / lv_output
A. 787
B. 87
C. 77
D. 78
32. Which is the right statement?
A. The default length of data type P is 8.
B. The default length of data type P is 8 and the default length of data 8 F is 4.
C. The default length of data type D is 6.
D. The default length of data type X is 16.
33. How to find the list number in interactive reporting ?
A. Using system variable SY-LSIND
B. Define and Increment flag in each list.
C. With the help of system variable LIST1
D. Using a page number which is stored by SY-CPAGE

34. The system internal table required for dynamic screen modification is?
A. SMOD
B. ITAB
C. SCREEN
D. Selection Screen
35. The Total exceptions are caught in ?
A. SY-REPID
B. SY-LSIND
C. SY-DBCNT
D. SY-SUBRC
36. Which of the below statement is correct ?
A. DATA : WA_MARA TYPE TABLE OF MARA. SELECT SINGLE * FROM
MARA INTO WA_MARA WHERE MATNR = '0001'.
B. DATA : WA_MARA TYPE MARA. SELECT SINGLE * FROM MARA
INTO WA_MARA WHERE MATNR = '0001'.
C. DATA : WA_MARA TYPE TABLE OF MARA. SELECT SINGLE * FROM
MARA INTO TABLE WA_MARA WHERE MATNR = '0001'
D. DATA : WA_MARA TYPE MARA. SELECT SINGLE * FROM MARA INTO
WA_MARA UP TO 1 ROWS WHERE MATNR = '0001'.
37. After DESCRIBE TABLE statement SY-TFILL will contain
A. Number of duplicate rows
B. Number of rows fetched from database.
C. The number of rows in the internal table.
D. None of these.
38. What is the output?
TYPES: BEGIN OF TYPE1,
FLD1,
FLD2,
FLD3,
END OF TYPE1.
DATA: ITAB1 TYPE STANDARD TABLE OF TYPE1.
ITAB1-FLD1 = a.

ITAB1-FLD2 = b.
ITAB1-FLD3 = c.
APPEND ITAB1.
A. The table has one record, with values (a, b, c ).
B. The table has no records.
C. Compilation error due to method of declaration of type.
D. Compilation error due to method of declaration of table.
39. S1 = ABCAB.
S2 = ABCD .
IF S1 CN S2.
WRITE A.
ELSE.
WRITE B.
ENDIF.
What is the output?
A. Blank
B. Syntax error
C. A
D. B
40. what is Transaction code for object navigator?
A. SE51
B. MM01
C. SE80
D. SE11
41. Text table should consist of?
A. All the key fields of main table
B. All the fields of main table
C. SPRAS field for the language key
D. A and C
42. What is the maximum number of structures that can be included in a table or
structure?

A. 9
B. 8
C. 4
D. 7
43. Difference between the projection view and the database view.
A. Projection view can be created using one or more tables and database view be
created using a single table
B. Database view can be created using one or more tables and Projection view be
created using a single table
C. C. None of the above
44. Among the below which is not the valid delivery class.
A. A Application table (Master and transaction data)
B. C Customizing table
C. T - Temporary storage data
D. S System table
45. What will be the output of below code?
REPORT ZSAP_TEST.
PARAMETER p_string TYPE P DEFAULT 20.
WRITE / p_string.
A. 20.00
B. 20.000
C. 20
D. 20.0
46. At runtime, Executable program and its linked Logical database can be
regarded as single ABAP program
A. Yes
B. No
C. Cant say
47. Coding two INITIALIZATION events will cause a syntax error.

A. True
B. False
48. Predict the output of the following code:
REPORT zsap_test.
TYPES: BEGIN OF ty_data,
name(10) TYPE c,
category(3) TYPE c,
END OF ty_data.A
DATA: t_data TYPE STANDARD TABLE OF ty_data,
s_data TYPE ty_data.
s_data-name = 'Patrick'.
s_data-category = 'MGR'.
APPEND s_data TO t_data.
s_data-name = 'Ajay'.
s_data-category = 'SWE'.
APPEND s_data TO t_data.
s_data-name = 'Richard'.
s_data-category = 'CSH'.
APPEND s_data TO t_data.
s_data-name = 'Brown'.
s_data-category = 'GM'.
APPEND s_data TO t_data.
READ TABLE t_data INTO s_data WITH KEY name = 'Patrick' BINARY SEARCH.
WRITE: sy-subrc.
A. 0
B. 1
C. 4
D. Cant determined
49. Which layer is not used in R/3 system?

A. Data base layer


B. Control layer
C. Presentation layer
D. Application layer
50. ABAP Stands for:
A. Application Business Advance Programming
B. Advance Business Additional Programming
C. Application Business Programming
D. Advanced Business Application Programming.
51. EDI stands for:
A. Electronic Data Interchange
B. Effective Data Interchange
C. Error Data Interchange
D. External Data Interchange
52. Migration of SAP script forms into Smart forms is supported in SAP?
A. True
B. False
53. How many windows can be defined as main window in a smart form?
A. 99
B. 2
C. 1
D. 9
54. To display text and data in table format in a smart form you can use:

A. Table
B. Template
C. Both
D. None of these
55. Table for sales order header:
A. EKKP
B. VBAP
C. LIKP
D. VBAK
56. Which of the following is not a component of control break processing when
looping at an internal table?
A. AT NEW
B. AT START OF
C. AT LAST
D. AT END OF
57. What is the field for current page number?
A. SY-PAGNO
B. SY-PAGENUM
C. SY-PAGENU
D. SY-PAGENO
58. During conversion process of databases, the data is copied from temporary
table to the database table using the statement
A. Move
B. Move-corresponding
C. Insert
D. Modify
59. ASYNCHRONOUS UPDATE or SYNCHRONOUS UPDATE which one is faster?

A. Asynchronous
B. Synchronous
C. Both A & B
60. Internally SAPSCRIPTS are stored as ?
A. Xml
B. Table
C. Text
D. Functional groups
61. How many break points we can create for a Debugger?
A. 10
B. 20
C. 30
D. 05
62. colour can be associated in the report screen by?
A. SET COLOR ON
B. FORMAT COLOR ON
C. FORMAT COLORS ON
D. FORMATS COLOR ON
63. GUI status has following structure?
A. Menu bar
B. Standard tool bar
C. Functional tool bar
D. All the above

64. We can create the table maintenance with below types of screens.
A. Over view Screen
B. Single screen
C. Both A & B
D. None of these

65. Can we create Function Module without Function Group?


A. No
B. Yes
66. I have created a lock object EZSTUDENTS for my custom table ZSTUDENTS,
what are the function modules generated ?
A. ENQUE_ZSTUDENTS and DEQUE_ZSTUDENTS
B. ENQUE_EZSTUDENTS and DEQUE_EZSTUDENTS
C. EZSTUDENTS_ENQUE and EZSTUDENTS_DEQUE
D. ZSTUDENTS_ENQUE and ZSTUDENTS_DEQUE
67. User exits are only available in SD module.
A. True
B. False
68. BADI stands for:
A. Batch Application data Interchange
B. Business Addition
C. Business Add Ins
D. Business Application Data Interchange
69. Which of the following is not a message?
A. Continue
B. Error
C. Information
D. Abbend

Вам также может понравиться