SAP ABAP FOR S4 HANA MCQ1 DUMPS:
Today, in this article we are going to share about SAP ABAP Accenture MCQ1 Multiple Choice Questions and Answers | SAP ABAP Accenture MCQ1 objective type questions and answers.
1. Which attribute is not determined in a domain?
Ans : Header
2. What combination of fields from one or more related tables, but does not contain any data
Ans : View
3. A DO loop is used to unconditionally execute a block of code multiple
lines which keywordhelps to terminate from DO loop?
Ans : Exit
4. Which event is triggered when user clicks on F4 button on selection screen?
Ans : At selection-screen on value-request for <Fields>
5. What type of data is G/L Accounts
Ans : Master Data
6. Which of the following statement is true
Ans : Views can be buffered
7. How many types of tables exist in data dictionary?
Ans : Transparent , Pool , Cluster Table
8. What is true about append structures?
Ans: A) It will add fields in the table at the end
b) it is assigned to just one table
c) it is used to add custom fields in SAP tables and custom tables
9. Which event gets triggered when user press ‘Enter’ in the selection screen
Ans : AT-SELECTION-SCREEN
10.What is check table and value table?
Ans : Check table is used for field level checking
Value table is used for domain level checking
11. Which is a logical partition of the database within an instance?
Ans : LUW
12. What is the significance of Technical settings (specified while creating a
table in the data dictionary)?
Ans : All
To identify the size of the table created and to set whether buffering
needs to be done for the table or not
13.What all values are available while creating search help in option ‘Dialog
type’.
Ans : Display values immediately
Dialog with value restriction
Dialog depends on set of values
14.What are the fields available in the structure of select-options?
Ans : Sign
Option
Low
High
15.Procurement is called as ?
Ans : Material Management
16.What type of data is purchase order
Ans : Transaction Data
17.Which system variable will have loop iteration in while loop?
Ans : Sy-index
18. Which among the following guarantees the integration between all of the application modules and also they are platform-independent
Ans: R/3 basis system
19. Which event is triggered during list processing when a page is ended
Ans: END-OF-PAGE
20. Label of a table field is determined by the field’s
Ans: Data Element
21. How many primary keys can be created in a database table
Ans: 1
22. What is true about table maintenance generators?
Ans: Table maintenance generator is a tool which generate table maintenance program.
23. What is the significance of the Delivery of Class
Ans: The delivery class is responsible for table maintenance
24. What is true about system variables?
Ans: it is populated by systems
It can be used in the program
It is modifiable in a custom program but not recommended
Values for system variables are stored in the SYST table
25. Which message type will allow the program execution to continue after pressing enter after the message is displayed?
Ans : Warning
Success
Information
26. Monitoring customer accounts is an activity under which SAP module
Ans : FI module
27. While executing the program in debug mode, the value of a constant field may be
Ans: Cannot modified
28. What will be the output of the below program if no value is entered in the selection screen?
PARAMETERS p_a TYPE n
AT SELECTIOM-SCREEN ON p_a.
IF p_a IS NOT INITIAL.
MESSAGE ‘Valid’ TYPE ‘S’.
ELSE.
MESSAGE ‘invalid’ TYPE ‘E’.
ENDIF.
Ans : Invalid message will be displayed
29. Among the options choose the one which will not give a pop up message saying ‘Yoh have ENTERED Car’.
Note: Message number 002 already has part of the message text.
Ans: All will work
30. What is true about append structures?
Ans: it will add fields in the table at the end
It is assigned to just one table
It is used to add custom fields in SAP tables and custom tables
31. Different steps of the SAP program are executed by
Ans : Work process
32. Choose the correct options
Ans : All programs are client independent
All printer definition are client independent
33. If you forget to mention WHEN OTHERS clause in CASE statement what will happen?
Ans : Runtime error if no value matches
34. Table is buffered means, data is available in
Ans : Application server
35. What is the output of the below source code
DO 2 TIMES.
WRITE : / sy-index.
WHILE sy-index LE 2.
WRITE : / sy-index.
ENDWHILE.
ENDDO.
Ans : 1 1 2 2 1 2
36. Which attribute is not determined in a domain?
Ans : Field label
37. In the below source code, when SY-SUBRC will become 4?
SELECT SINGLE matnr FROM mara INTO lv_matnr WHERE
matnr=’000000000000000019’
IF sy-subrc = 4.
MESSAGE e000.
ENDIF.
Ans : if the select statement before if condition is not successfully
executed.
38. What is the output of the below source code?
DATA: Iv_count TYPE I VALUE 1,
lv_string TYPE char3 VALUE 'ONE’.
CASE ( lv_count + 1 ).
WHEN 1.
WRITE : ‘ONE’.
CASE lv string.
WHEN ‘ONE’.
WRITE 1.
ENDCASE.
WHEN 2.
WRITE ‘TWO’.
WHEN OTHERS.
WRITE 'Not ONE’.
ENDCASE.
Ans : Two
39. What is true about ERP system
Ans : It provides optimization across all departments.
It helps management by supporting long term business planning.
40. Which of the following may not be modified using ABAP dictionary transaction.
Ans : Function groups
41. Output of following
DATA : lv_num1 TYPE i VALUE 10,
Lv_num2 TYPE i VALUE 20.
WRITE : lv_num1 + lv_num2.
Ans : Syntax Error
42. Open SQL in ABAP programs are converted to native SQL by
Ans : Database interface
43. Search help cannot be attached to
Ans : Types
44. What is the attribute which defines the size of a standard table or a
custom table?
Ans: Size category
45. Choose the correct syntax to assign specific searchelp to the parameter
Ans: Parameter p_input1 type matter match code object name
46. After approval of the requisition, what is created which has details of the items to be purchased, quantity, price etc along with vendor and shipping information address.
Ans: purchase order
47. How many ways we can define values in DOMAIN?
Ans : Single fixed values
Intervals
Value table
48.What will be the output
PARAMETERS p_add RADIOBUTTON group gr1.
Ans : Syntax error
49. Choose the right option about plants
Ans : Multiple plant can be assigned to multiples sales organizations or
assigned to one sales org.
50. DATA : lv_count TYPE i VALUE 2.
DO lv_count TIMES
WRITE lv_count.
lv_count = lv_count + 1.
Exit.
Endif.
Enddo.
Ans : 2 3
51. DATA : lv_count TYPE I VALUE 1.
WHILE lv_count < 5.
WRITE sy-index.
IF sy-index = 4.
EXIT.
ENDIF.
ENDWHILE.
Ans : 1 2 3 4
52. Within ABAP, what is used to access application data in the database,
independent of the corresponding RDBMS
Ans : Open SQL
53. What is true about watch point?
Ans : watch point can be set while debugging
54. What is the output
PARAMETERS lv_a TYPE i DEFAULT ‘1’.
PARAMETERS lv_b TYPE i DEFAULT ‘2’.
PARAMETERS lv_c TYPE DEFAULT ‘+’.
DATA lv result TYPE n.
CASE lv_c.
WHEN ‘+’.
lv_result = Iv_a*lv_b.
WRITE : / ‘Muliplication value is’, Iv_result.
WHEN OTHERS.
WRITE : / ‘Value is’, Iv_result.
ENDCASE.
Ans : run time error.
55. Which option in SE11 should be selected to create ‘Structure’.
Ans : Data type.
Tags
mcq