ABAPTM Interview Questions (6)

TolyHuang發表於2007-11-24
General[@more@]

101. If a break-point statement is written in an ABAP program and the program is run in the background mode, which of the following is true.
a) Break-point statement will be ignored and program will complete the execution.
b) System generates a Sys log message
c) Program will create a short dump
d) None of the above

102. When a program is created and transported the selections texts are always transported along with the program.
a) True
b) False
c) Not Applicable
d) Not Applicable

103. Programs and reports are client dependent.
a) True
b) False
c) Not Applicable
d) Not Applicable

104. Which transaction code is used for creating a background job?

a) SM37
b) SM35
c) SM36
d) SM38

105. Can variants be transported across systems?

a) Yes
b) No
c) Not Applicable
d) Not Applicable

106. Are variants client dependent?
a) Yes
b) No
c) Not Applicable
d) Not Applicable

107. What are the functions in the editor command line?
a) F1
b) F4
c) F3
d) F8

108. What does the transaction code /i1 do?
a) Shifts to the first session of the user
b) This terminates the first session of the user
c) Terminates the current session of the user
d) No transaction with this code exists.

109. Which transaction code is used for deleting the user lock on tables?
a) SE12
b) SE11
c) SM12
d) SM11

110. What transaction is used to create background jobs?
a) SM30
b) SM35
c) SM36
d) SM37
111. Which one of the following transaction types is INVALID?
a) Area
b) Modal
c) Variant
d) Report

112. Which one of the following statements are TRUE?
a) After a TRANSPORT REQUEST is released, no further changes to its' objects are allowed.
b) Development classes can be viewed by using transaction SE80.
c) Local objects CANNOT be transported to another instance. .
d) A TRANSPORT REQUEST contains objects that can be transported to Quality or Production SAP instances.

113. Which one of the following statements are FALSE about Inactive objects in SAP?
a) Development Objects are always saved as inactive versions.
b) An inactive version of a Development Object is written to developer’s pc
c) In DISPLAY mode, other users can NOT access the code of inactive version of a developer
d) Generating a runtime object is same as activating a development object.

Dialog Programming
114. Program specs call for screen 100 to appear in a modal dialog box.

Process After Input.
module do_something.

module do_something.
If field1 = 'X'.
Call screen '0100'.
Endif.
Endmodule.

Why does the above code fail to produce a modal box?
a) The code must occur in the PBO.
b) The screen is of the wrong type.
c) The screen should be numbered 900.
d) Screens are not called within modules.

115. Which one of the following statements would occur in the PBO of a dialog program using table control?
a) module user_command.
b) set screen '0100'.
c) loop at itab.
d) loop at itab with control itab_tc.

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9437124/viewspace-983768/,如需轉載,請註明出處,否則將追究法律責任。

相關文章