You are on page 1of 20

SET: 07

Note: Please dont write anything on the question paper


1. Internal table can be of type:
a) Standard b) Sorted c) Hashed d) All of the above
2. Transaction for creating message class
a) SE93 b) SM12 c) SM37 d) SE91
3. SORT statement can sort
a) external as well as internal table
b) only database table
c) only internal table
4. This selection screen syntax forces the user to input a value:
A: REQUIRED-ENTRY B: OBLIGATORY C: DEFAULT
D: SELECTION-SCREEN EXCLUDE
5. The AT-SELECTION-SCREEN event is triggered when
More than one answer is correct
A. ENTER key is hit on the selection-screen
B. F8 key is hit on the selection-screen
C. Any field on selection-screen is populated
D. F4 key is hit on the selection-screen
6. How would you clear the body of an internal table (with a header line).
More than one answer is correct.
a) Clear ITAB[] b) Refresh ITAB [] c) Clear ITAB d) Refresh ITAB
7. data: field1 type I value 10.
End-of-selection.
Subtract 2 from field1.
Write: / 'field1 =', field1.
Start-of-selection.
Add 5 to field1.
Write: / 'field1 =', field1.
Initialization.
Field1 = 5.
Write: / 'field1 =', field1.

Q.What is the result after executing the above code?
a) field1 = 10 field1 = 8
b) field1 = 8 field1 = 14 field1 = 5
c) field1 = 5 field1 = 3 field1 = 8
d) field1 = 5 field1 = 10 field1 = 8
e) field1 = 8 field1 = 14
8. Many SAP system in SAP landscape can be monitored using
a) ECC b) Solution Manager c) Exchange infrastructure d) Portal
9. For an inequality check between two variables, the symbol used is:
More than one answer is correct.
A.NE B. <> C.>< D.NEQ
10. Which one of the following is true about a function module?
a) Function modules are locally accessible objects.
b) Function modules have inbound and outbound parameters.
c) Function modules have no built-in exception handling.
d) Function modules CANNOT be created by a programmer.
e) Function modules use a shared memory area.
11. data: f1 type I value 1,
F2 type I value 1.
Write: / f1, f2.
Do 2 times.
Perform scope.
Enddo.
Write: / f1, f2.
Form scope.
Data: f1 type I value 2,
F2 type I value 2.
Add: 1 to f1, 1 to f2.
Write: / f1, f2.
Endform.



Q.What is the output of this program after execution?
a) 1 1 b) 1 1 c) 1 1 d) 1 1 e) 1 1
3 3 2 2 3 3 2 2 3 3
4 4 3 3 3 3 3 3 3 3
4 4 1 1 3 3 3 3 1 1
12. Mark the valid values for a checkbox.
More than one answer is correct
A. X B. Space C.1 D.0 E.Any Alpha Character
13. What are IDocs?
a. a) Documentation of executable programs
b. b) Documents used for data-transport between SAP and non-SAP s/w.
c. c) Documents used for data-transport between two different SAP systems
d. d) Both b & c
14. customization changes are ideally done in system
a. a) sand box b. b) production c. c) quality d. d) development
15. When writing a list, what command would allow you to overwrite a line?
A. Back B. Overtype C. Reserve D. Write:/ 1
16. Character data types allows character ( A to Z, a to z) , *
a. a) TRUE b. b) False
17. Which of the following is correct syntax for declaring an internal table?
A. Data itab type mara , occurs 3 with header line.
B. Data itab like mara occurs 3.
C. Data : begin of itab, name(3), end of itab.
D. Data begin of itab occurs 3, name(3), end of itab.
18. Data :Begin of itab occurs 10,
col1 type C,
col2 type I,
end of itab.

Do 2 times.
Append initial line to itab.
itab-col1 = sy-index.
itab-col2 = sy-index ** 2.
Append itab.
Enddo.
Loop at itab.
write:/ itab-col1, itab-col2.
endloop.
Q.What is output?
a. 0 b. 1 c. 0 d. none of the above
1 1 1 1 1 1
1 0 0
2 4 2 4. 2 4.
19. What table is used to store transaction codes?
A.TSTC B. TXNcodes C.TSTCT D.TXN
20. Which of the following is not a output format supported by SAP
a) Printout b) Fax c) ALE d) none of the above
21. While modifying internal table it is always better to use field symbols than using work area.
a. a) TRUE b. b) False
22. Report variant are used for
a. a) Defaulting set of selection criteria for the report
b. b) Group together a set of selection criteria to be used for transaction
c. c) Set up the system so that the selection criteria can not be changed
d. d) All of the above
23. What is the SAP GUI ?
a) SAP transaction for screen enhancement
b) Graphical User Interface
c) Generic Utility Interface
d) None of the above
24. If a list is not to be printed that gets generated during background job. It will not have
a) Print request
b) Spool request
c) Output request
d) None of the above


25. What is output by the following code?
DATA: BEGIN OF itab OCCURS 0,
letter type c,
END OF itab.
itab-letter = 'A'.
APPEND itab.
itab-letter = 'B'.
APPEND itab.
itab-letter = 'C'.
APPEND itab.
itab-letter = 'D'.
APPEND itab.
LOOP AT itab.
SY-TABIX = 2.
WRITE itab-letter.
EXIT.
ENDLOOP.
a. D b. C c . A d. B
26. Where can you see the Tcode for the screen in the SAP window
a) In the menu bar b) In the status field of the status bar
c) Using system -> status menu d) All of the above.
27. What are the main events an interactive report has?
a) Top-of-page during line selection b) At line-selection.
c) At user-command. d) All of the above
28. The statement
IF NUM IS BETWEEN 3 AND 7.
Is a valid syntax?
A. TRUE B. FALSE
29. What system field indicates the list you are on
a. a) Sy-pfkey b. b) Sy-linct c. c) Sy-lsind d. d) Sy-linsz
30. Assuming a pushbutton with function code 'FUNC' is available in the toolbar of a list report,
what event is processed when the button is clicked?
a. a) AT PFn b. b) AT USER-COMMAND c. c) AT SELECTION-SCREEN
d. d) END-OF-SELECTION.
31. In SAP context SCM Stands for
a. a) Supply Chain Management
b. b) Supplier Cost Management
c. c) Source Cost Management
d. d) None of these
32. SAP R/3 Enterprise version is
a. a) 4.6c b. b) 4.7 c. c) ERP 2004 d. d) ECC 6.0
33. Selection screens are special screens that can be defined in executable programs. The
statement is:
a) TRUE b) False
34. Field which distinguishes client dependant data in a table is
a) TMDT b) MANDT c) TMNDT d) MANTD
35. When using Open SQL statements in an ABAP/4 program, you must ensure the following.
a) The database system being addressed must be supported by SAP.
b) The database tables being addressed must be defined in the ABAP/4 dictionary.
c. c) Both a and b d. d) None
36. How do you validate the selection criteria of a report output data with Mouse
Click/anchoring Event?
A.INITIALIZATION B. END-OF-SELECTION
C. AT LINE SELECTION Screen event D. AT SELECTION-SCREEN
37. In regard to HIDE, which of the following is NOT a true statement?
A: Saves the contents of variables in relation to a list line's row number.
B: The hidden variables must be output on a list line.
C: The HIDE area is retrieved when using the READ LINE statement.
D: The HIDE area is retrieved when an interactive event is triggered.
38. Which one of the following SQL statements does NOT lock the affected database
entries?
Select *
A.Insert B.Delete C.select single for update D.modify
39. All formatting options have the default value OFF.?
A.True B. False


40. In regard to a function group, which of the following is NOT a true statement?
A. Combines similar function modules.
B. Shares global data with all its function modules.
C. Exists within the ABAP workbench as an include program.
D. Shares subroutines with all its function modules
41. identify the dictionary type of the field catalog used for the ALV control
A. fieldcat B. catalog C. alv_catalog D. lcv_t_fcat
42. On the UPLOAD function what parameter must be included?
A. FileName B.FileType C.Filesize D.DATA_TAB
43. when using Open SQL statements in an ABAP/4 program, you must ensure the following.
A. The database system being addressed must be supported by SAP.
B. The database tables being addressed must be defined in the ABAP/4 dictionary.
C. Both A and B D. None
44. Interactive reporting helps you to create easy-to-read lists.
You can display an overview list first that contains general information and provide the user with
the possibility of choosing detailed information that you display on further lists.
A.True B. False
45. AT USER-COMMAND Moment at which the user presses a function key.
A. True B. False
46. SY-LSIND Index of the list created during the current event
A. True B. False
47. In the statement
Write:/ 15 (10) lfa1-lifnr.
the values 15 and 11 can also be defined by variables
A.True B. False
48. The processing block following END-OF-PAGE is processed only if you reserve lines for the
footer in the
LINE-COUNT option of the REPORT statement
A . True B. False
49. How would you suppress the display of a parameter on the selection screen?
A.DISPLAY-OFF. B. NO-DISPLAY. C.HIDE-DISPLAY. D.NONE OF THE ABOVE
50. In the standard setting, you cannot create empty lines with the WRITE statement alone .
A. TRUE B. FALSE

SET: 06
Note: Please dont write anything on the question paper
1. Transaction for creating domains is:
a) SE31 b) SE11 c) SM51 d) None of the above
2. What determines if a table is Client Specific versus client independent.
a) The first field is mandt with a domain CLNT but not specified as a key field
b) The option 'Client Specified' is added to the Select statement
c) Depends how Basis has configured the client
d) The first field is mandt with a external data type CLNT and specified as a key field
3. Transaction Code for Creating Function Module is:
a. SE91 b. SE71 C. SE37 d. None of the Above
4. What conditions apply for a LEFT Outer join in OPEN SQL?
A. Only 'Or' can be used as a logical operator in the ON condition
B. A Left Outer Join is not permitted in OPEN SQL
C. A join statement is found to the right of the join operator
D. At least one field from the table on the right is required for comparison in ON Condition.
5. In Data Dictionary Data Class performs organizational data Customizing data that is
defined when the system is installed and seldomly changed.
a. APPL0 b. APPL1 c. APPL2 d. None of the above.
6. If a table does not have MANDT as part of the primary key, it is ____.
A: A structure B: Invalid C: Client-independent D: Not mandatory
7. For an inequality check between two variables, the symbol used is:
a. a) NE b. b) <> c. c) >< d. d) All of the above
8. What is the system field for the current date?
A: SY-DATUM B: SY-DATE C: SY-DATID D: SY-SDATE
9. What is the basic object of data Dictionary
a. a) Domains b. b) Documentation c. c) Data Models d. d) Dynpro
10. What definitions are recommended to be client specific?
More than one answer is correct.
A. Repository B. Application C. Customizing D. Dictionary
11. Which dictionary structure contains system fields.
a. a) SYTAB b. b) SYS c. c) SY d. d) SYST

12. Which statement prevents duplicate internal table entries
a. a) Insert b. b) Delete Duplicates c. c) Append d. d) Collect
13. What requirement exists if a field is defined in the dictionary of type CURR?
a. a) Decimals must be defined in the domain b. b) The field must be numeric
c. c) No other requirement exists d. d) The field must be linked to another field of type CUKY
14. Which is not Aggregate Object in Data Dictionary.
a. View b. Search help c. Table Type d. Lock.
15. Given the two ABAP Dictioary tables below, the Customer number field in table one must
contain
a value from table two. The Customer number field is known as a ____.
a) Secondary Index b) Primary Key c) Foreign Key d) Validation field
16. Following is the modularization technique in ABAP
a) FORM b) METHOD c) FUNCTION d) All the above
17. If a table contains many duplicate values for a field, minimize the number of records
returned by using this SELECT statement addition.
A: MIN B: ORDER BY C: DISTINCT D: DELETE
18. Identify the situation where append structure are not allowed.
More than one answer is correct
A. If the last field has a domain of data type cur
B. If the last field is already an Append Structure
C. If the table contains a field of data type LCHR or LRAW
D. If the table is a pooled or cluster table
19. In regard to field selection, what option of the SELECT statement is required?
a) FOR ALL ENTRIES b) WHERE c) INTO d) MOVE-CORRESPONDING
20. The number of iterations in a 'LOOP' construct can be controlled using sy-tabix field.
a) True b) FALSE
21. What does the DESCRIBE TABLE statement provide to the program?
A.Access Type B. Key Definition C. Key Uniqueness D.Key length
22. Data: pos like sy-index,
index(1).
do 10 times.
Check sy-index between 2 and 6.
Add 1 to pos.
Move sy-index to index.
Write at pos index.
Enddo.
Q.What is the output of the above code after execution?
a) 26 b) 1789 c) 23456 d) 132578910 e) 178910
23. he following statements will clear the header-line of an internal table:
a) DELETE ITAB. b) FREE ITAB. c) REFRESH ITAB. d) CLEAR ITAB
24. What controls the dialog behavior of a search help?
More than one answer is correct
A. Admin data B.DPOS C.SPOS D.LPOS E. Value Range
25. The fastest way to read a value in an internal table is to:
A. Specify key, and do a binary search
B. Specify the table-keys
C. Directly specify the index value
D. Use a work-area with same structure as the internal table.
26. If COLLECT is used on an internal table, which has a non-key character field,
A. The first records value is used in the collected version.
B. The last records value is used in the collected version.
C. Compilation error D. Cannot be predicted
27. Which is the correct syntax for sorting an internal table?
A. SORT ITAB USING key1 key2. B. SORT ITAB BY key1 key2.
C. SORT ITAB WITH key1 key2. D. SORT ITAB key1 key2.
28. When creating a transparent table in the ABAP Dictionary, which step automatically creates
the table
in the underlying database
a. a) Adding technical settings to the table b. b) Checking the table syntax
c. c) Saving the table d. d) Activating the table
29. To read a single line of an internal table, use the following:
a. a) LOOP AT itab. _ ENDLOOP b. b): SELECT SINGLE * FROM itab
c. c) READ itab d. d) READ TABLE itab
30. What is the fastest way to move one internal table to another internal table
(assuming two tables of similar structure)?
a) append lines of table1 to table2.
b) loop at table1.
Move: table1-field1 to table2-field1,
table1-field2 to table2-field2.
Append table2.
Endloop.
c) table2[] = table1[].
d) loop at table1.
Move-corresponding table1 to table2.
Endloop.
e) move table1 to table2.
31. Cardinality CN stands for there may be max number of dependent
records for each record of the check table.
a. True b.False
32. Which is not a valid R3 configuration
a) Three Tier b) Two tier client server c) Central d) Single Database
33. The shared memory of a database consist of
a) SQL cache b) Log buffer c) Data buffer d) All the above
34. data n type i.
do 5 times.
If n > 0 and n < 5.
n = n + 1.
elseif n = 5.
n = n - 5.
else.
n = n - 1.
endif.
enddo.
Write: / n.
If n = 3, what is the output of this code after execution?
a) 2- b) 1- c)0 d)3 e)5
35. When is it better to buffer the table
A. When a table is linked to check tables B. When a table is read infrequently
C. When a table is read frequently and the data seldom changes
D. When a table is read frequently and the data is always changing
36. While modifying in ternal table it is always better to use field symbols than using work area.
a. a) TRUE b. b) False
37. The syntax to concatenate a set of values into one variable is:
A. CONCATENATE source1, source2 INTO target.
B. CONCATENATE source1 source2 INTO target.
C. CONCATENATE source1 and source2 INTO target. D. None of the above.
38. MOVE can be used to copy:
More than one answer is correct
A.One fields contents to another field B.One structures contents to another compatible structure
C. One tables contents to another compatible table D.A part of one field to another field
39.An internal table ICODE contains the following entries:
field1 field2
--------------
John 12345
Alice 23478
Sam 54321
Bob 10000
IF NOT ICODE[] IS INITIAL.
SORT ICODE BY FIELD1 DESCENDING.
READ TABLE ICODE WITH KEY FIELD1 = 'Sam'.
WRITE: / SY-TABIX.
ENDIF.
What is the output of the above code after execution?
a) 1 b) 2 c) 3 d) 4 e) Sam
40. Hash table is internally managed with a hash procedure. All the entries must have a
non unique key.
a. True b. False
41. The DESCRIBE statement on internal tables is used to:
More than one answer is correct
A. Find the number of lines currently in table B. Find initial size of the table
C. Find type of the internal table D. Give the line size, in number of characters, of the table

42. There are 8 elementary data-types, and hence, 64 possible conversions. Of these,
A. Type D and T cannot be inter-converted B. None of the other types can be converted into D and T.
C. D and T cannot be converted into any other type. D.Only C can convert into D/T and vice-versa.
43. To speed up data selection, secondary indexes can be created for the table
a. True b. False
44. In Data Dictionary while creating Database Table
Which delivery class identifies
Table for storing temporary data, delivered empty
a. C b. A c. L d. None of the above
45. What is the difference between F1 Help & F4 help.
a) F1 is for possible values and F4 is for application help
b) F1 is for Application Help and F4 is for Technical Help
c) F1 is for Field Help and F4 is for possible entries. d) None of the above
46. What rules would apply to external data when a standard transfer program is used?
More than one answer is correct
A. Data must be initialized according to it's type B.Data must be in character format
C. External fields shorter than the SAP field must be zero filled
D. User specific settings need to be considered
7. Which of the following are elementary types in ABAP?
a) C,D,F,H,I,N,P,Tb) C,D,F,I,N,P,Q,T c) A,D,F,I,N,P,T,X d) A,D,F,H,N,P,T,X e)C,D,F,I,N,P,T,X
48. What happens when a one to many relationship is encountered with an inner join?
A. Redundant data is not returned to the resultant set
B. Redundant data from the outer table is included
C. run time error D. Redundant data from the inner table is included
49. Data: number type i.
while number < 10.
Add 1 to number.
If number < 8.
Continue.
Else.
Add 4 to number.
Endif.
Endwhile.
Write number.
What does NUMBER equal after executing the above code?
a) 4 b) 8 c) 10 d) 12 e) 14
50. contains the FUNCTION-POOL statement
(equivalent for a function group of the REPORT or PROGRAM statement)
and global data declarations for the entire function group.
a. LfgrpSAP b. LfgrpYYY c. LfgrpTOP d. None of the Above
SET: 05
Note: Please dont write anything on the question paper
1. In data dictionary What is delivery Class Customizing table , maintenance only by Cust , not
Sap Import.
A. A B. C C. L D. None of the Above
2. In data dictionary Delivery Class APPL1 stands for
A. Master Data Transparent Table B. Transaction Data Transparent Table
C. Both A and B. D. None of the Above.
3. Which Function module supports to Upload for Excel Worksheet Data
having file extension XLS.
A. GUI_UPLOAD. B. ALSM_EXCEL_TO_INTERNAL_TABLE.
C. BOTH A and B. D. None of the above
4. what are IDOCs? (ANS B C)
More than one answer is correct
A. Internal document.
B. Documents used for data-transport between SAP and non-SAP s/w.
C. Documents used for data-transport between two different SAP systems
D. Intermediate Document.
5. Which of the following are true?
More than one answer is correct
A.TABLE is used as a synonym for STANDARD TABLE
You can only access a hashed table using the generic key operations.
B.Explicit or implicit index operations
(such as LOOP ... FROM oe INSERT itab within a LOOP) are not allowed.
C.All hashed tables are index tables.
We have to define the hash procedure explicitly for HASHED TABLE.

6. to output SAP script layout sets, in the print program
More than one answer is correct
A. You must always start the output with OPEN_FORM and end it with CLOSE_FORM.
B. Within one transaction, you can use only one
OPEN_FORM and CLOSE_FORM to open and close a layout set.
C. WRITE_FORM can be used without an OPEN_FORM and CLOSE_FORM.
D. WRITE_FORM should be used within an OPEN_FORM and CLOSE_FORM.
7. which method would be used to retrieve data on the presentation server?
A. Read dataset B. Import data
C. Call function gui_upload D. Transfer dataset

8. what are the ways to select the source for a Query?
More than one answer is correct
A. Database Tables B. Views C. Report Program D.File E. Internal
Tables
9. in what manner can lists be saved.
More than one answer is correct
A. Local File to the application server B.SAPOFFICE C.HTML Format on
local PC
D.ABAP Editor E. Report Tree
10. Identify the characteristics of a BAPI.
More than one answer is correct.
A.It is an Object B.Can be a method of an object C.It is implemented as a function
D. Can only be use inside SAP E. It is an interface
11. which command flushes the database buffers
A. $ FREE B. $ INIT C. $TAB
12. the following are true about SAP script control commands.
More than one answer is correct
A.If a control command is unknown or it contains syntax errors,
the line containing it will be printed out as it is.
B.If a control command is unknown or it contains syntax errors,
the line containing it will be treated as a comment line.
C.A maximum of one control command may appear in each line.
D.A maximum of six control commands may appear in each line.
13. what object is not supported by the modification assistant?
A. User exits B. Text Elements C. Functions D. Menus
14. where in a function module XAAA would global data of an enhancement be declared.
A. In the TOP include LxaaaTOP B. In the Include with your other code changes
C. In the TOP include ZxaaaTOP D. In the TAP include LxaaaTAP
15. In Dialog programming Which event supports to get possible values into Drop Down List.
A. POH B. POV C. both A and B C. None of the Above
16. the user-list in a given SAP client can be found using transaction.
A.STO4 B.SE04 C.SM04 D.None of the above
17. to output SAP script layout sets, in the print program
More than one answer is correct
A.You must always start the output with OPEN_FORM and end it with CLOSE_FORM.
B.Within one transaction, you can use only one OPEN_FORM and
CLOSE_FORM to open and close a layout set.
C.WRITE_FORM should be used within an OPEN_FORM and CLOSE_FORM.
D. WRITE_FORM can be used without an OPEN_FORM and CLOSE_FORM.
18. what is true about Functional Areas and User Groups in ABAP Query?
More than one answer is correct
A.A functional area can be assigned to several user groups
B.Several Functional areas can be assigned to one user group
C.The queries of a user group belong only to the person that created the query
D.The user can access only designated queries in a given R
E.Users belonging to the same authorization group have the same query privilege
19. if c_index is a type N variable, what will be output by this code?
CLEAR c_index.
DO 3 times.
Write: c_index no-gap.
c_index = c_index + 2.
ENDDO.
A. 2 4 6 B. 246 C. 02 4 D. 024
20. In Sap Script HEADER DATA is Form Layout Object.
A. TRUE B. FALSE.

21. if you select a record using logical database from the table LFA1
which event will trigger lowest level?
A.Selection-screen validation B.PUT statement C.GET statement D.Check statement E.Parameter
22. In what case will an automatic upgrade take place using the modification
assistant assuming no name or layout conflict exist?
More than one answer is correct.
A. New Function Module is added to a function group B. New tab strip added to a screen
C. Menu function id modified D. Deletion of a collective search help
23. here in a function exit does the customer code get inserted?
A. In the function module itself that corresponds to the enhancement component
B. In the include program that can be found in the function module that
C. Corresponds to the enhancement component
D. In the include of the calling program that calls the function
E. In the program that calls the function module that corresponds to the enhancement component
24. which keyword would you look for in order to determine
if a screen exit has been provided by SAP?
A. CALL SCREEN CUSTOMER B. CALL CUSTOMER-SCREEN
C. CALL CUSTOMER-SUBSCREEN D. CALL SCREEN-EXIT
25. which of the following types of enhancements do not need to be assigned to an enhancement
project? More than one answer is correct.
A. Keyword B. Field exit C. Menu exit D. Screen E. Program exit
26. Identify the valid statement when coding a field exit.
A. MESSAGE I101. B. BREAK-POINT. C. MESSAGE E101. D. SUBMIT RSCA101X.
27. what is true about the enhancement concept?
More than one answer is correct.
A. They are preplanned by SAP B. Enhancement Projects use CI includes
C. A specific enhancement can only be used in one customer project
D. A specific enhancement may be used in more than one customer project
E. A component can be contained in more than one enhancement
28. In ABAP Query tool...
More than one answer is correct
A. Each user can be assigned to several user-groups
B. Each user can be assigned to several functional areas
C. Each functional area can be assigned to several user-groups
D. One user can be assigned only to one user-group.
29. To perform Debug mode active when abap program executes
a. /N b. /H c./D d. None of the above
30. A database commit is triggered by
More than one answer is correct
A. ABAP/4 command COMMIT WORK. B. CALL SCREEN, CALL DIALOG.
C. A Remote Function Call D. CALL TRANSACTION
31. which of the following are true?
A. ABAP queries are created by associating them to a logical database
or through a direct read/data retrieval program.
B. ABAP queries are created from functional areas
that are created from a logical database or through a direct read/retrieval program.
C. ABAP queries are created from user groups attached to the functional areas
that are created from a logical database or through a direct read/retrieval program.
D. ABAP queries are created through the regular report program.
32. to set up a screen field to allow default values to be stored across user sessions:
A. Turn on the field attribute flag for SPA/GPA B.Enter a value in the search-help field attribute
C. Set the field to display only. D. Use the identical names concept.
33. what is not a valid functional area type.
A. LDB B. Sequential Data Set C. Program D. Search Help E. Joined Tables
34 which of the following methods require higher maintenance
when new releases of SAP are installed?
A. Enhancements to the SAP Standard B. Append Structures
C. Customizing D. Modifications to the SAP Standard
35. What attribute in a table control must be defined in order to
activate row selection functionality
A. w/selcolumn B. TOP_LINE C. LINE_SEL_MODE D. Function code
36. All the output types for any document (e.g. billing document) will be stored in the table
A. NASTT B. NAST C. SYST D. None of the Above
37. There are various possibilities of creating/changing an ABAP program
Some of these are: More than one answer
A. Opening programs in the Object NavigatorB. Using the ABAP Editor
C. Using EEWB
D. Using Forward Navigation
38. Which of the following are ways to process large volumes of data in ABAP?
A. Internal Tables B. Extracts C. Database Storage
39. Which of the following are ways to process large volumes of data in ABAP?
A. Internal Tables B. Extracts C. Database Storage
40. From Release 6.10, ABAP supports multi-byte coding for characters in Unicode.
A. True B. False
41. what do the fields SY-SUBRC, CONT and FLAG
contain after the IMPORT statement have been executed?
A. SY-SUBRC=4. CONT='C'. FLAG=''. B. SY-SUBRC=0. CONT='C'. FLAG=''.
C. SY-SUBRC=0. CONT=''. FLAG=''.
42. When would you use one of the F4_IF* functions
A. In the module that perform OKCODE processing
B. In the PAI when Process on Value-Request dialog event is triggered
C. In the PBO when Process on Value-Request dialog event is triggered
D. In the PAI when Process on Help-Request dialog event is triggered
43. Identify the key assignments for function keys in a GUI status.
More than one answer is correct
A. Random Function Keys B. Suggested Function Keys C. Recommended Function Keys
D. Freely Assigned Function Keys E. Reserved Function Keys
44. which fields of the BDCDATA structure are case-sensitive?
A. Program B. DynPo C. Dynbegin D. Fnam E. Fval
45. which of the following are true?
A. COLLECT can only be used with STANDARD TABLE.
B. To use COLLECT, the internal table should be derived
from a database table with an explicit key.
C. If the system finds a numeric component, that is not part of the key,
the numeric fields that are not part of the table key (see ABAP number types)
are added to the sum total of the existing entries.
If it does not find an entry, control
passes on to the next record in the internal table.
D. If the system finds a numeric component, that is not part of the key,
the numeric fields that are not part of the table key (see ABAP number types)
are added to the sum total of the existing entries. If it does not find an entry,
the system creates a new entry instead.
46. which of the following is NOT a valid Batch Input Session Status
A. To be processed B. Incorrect C. Processed D. Released
47. which of the following does not physically exist in the underlying database.
More than one answer is correct
A. Transparent Table B. Internal table C. View D. Structure
48. The following are true about database locking.
More than one answer is correct
A. Database systems set physical locks on all lines affected by a database call.
B Read locks prevent the setting of further read locks for the objects in question.
C. Read locks prevent other transactions from setting write locks for the objects in question.
D. Write locks allow other transactions to set read locks for the objects in question.
49. a logical unit of work (LUW or transaction) begins
More than one answer is correct
A. Each time you start a transaction. B. Each time you end a transaction.
C. When the database changes of the previous LUW have been confirmed (database commit).
D. Before the database changes of the previous LUW have been cancelled (database rollback).
50. Where you will code the F1 Documentation for an SAP object (field).
More than one answer is correct
A. Create word document and build a link with SAP documentation
B. You can maintain in Data element screen
C. Make an include program and assign this as a enhancement in SAP documentation object
D. Make as an include and overwrite on existing SAP documentation object

You might also like