Você está na página 1de 7

Week 1 Test TAW10 1/2

SAP R/3 Training

TAW10 1/2 Internal Test


Topic: ABAP Workbench Fundamentals
1. Client in R/3 Systems.
a) SAP systems are not client systems
b) Client is a self-contained organizational unit in the system
c) The highest level element of all organizational units is the client
d) All the clients share master data.
2. Mark the correct statements
a) Roles were formerly activity groups
b) Roles are not related to authorizations for the activities defined in menus
c) Roles must be set up using Profile Generator
d) Roles represent the scope of functions that users typically require at their work
station
3. In favorites menu of SAP Easy Access you can
a) Add transactions and reports
b) Set start transaction
c) Add web addresses
d) Personalize the access to the system
4. Mark the correct statements.
a) In SAP systems, each screen is assigned a transaction code
b) You can call a transaction code only from SAP Easy Access
c) You can determine the transaction code by choosing Status in the Help menu
d) /i ends the current transaction
5. Which one of the following provides you field help?
a) F1 for help on fields, menus, functions and messages
b) F1 provides help on parameter ID
c) F1 provides information on what possible values can be entered.
d) F1 provides technical information on fields.
6. Mark the correct statements
a) Processing requests are processed according to last in-first out principle by the dispatcher
b) A user has a fixed work process alloted
c) SAP GUI types include the classic SAP GUI, SAP GUI for HTML and SAP GUI for Windows
d) Amount of data that must be transferred for each screen change when using SAP GUI for
windows is typically several MB
7. The central process in the R/3 application layer is
a) Sap GUI
b) Data base process
c) Work process
d) Dispatcher
8. Which of the following is true in R/3 System
a) Within ABAP, SAP Open SQL is used to access data
b) Native SQL commands can not be used in ABAP
c) When interpreting Open SQL Statement in mySAP.com Database interface checks the
syntax of these statements.
d) Application programs written in ABAP are database independent.
SAP Education Partner

SISL, Hyderabad

Week 1 Test TAW10 1/2

SAP R/3 Training

9. Mark the correct statements


a) Number of work processes depend on the available resources
b) Number of work processes depend on the number of users
c) Message server is used for internal communication
d) Gateway server is used for internal communication
10. Which of the following assertions are not applicable for R/3 instances
a) Each instance has its own SAP buffer areas.
b) A central R/3 System consist of a single instance providing all services.
c) An instance is an administrative unit that combines components providing services
d) You can not use a common instance profile to set parameters for all the components
of an instance
11. ABAP programs run at what level ?
a) Database level
b) Application level
c) Presentation level
d) Dispatcher level
12. Mark the correct statements.
a) Dispatcher coordinates activity within a dialog work process
b) Background work processes are used for dialog free execution of programs
c) In order for the system to execute lock requests, first activate the related lock object already
available in the ABAP dictionary
d) The system generates EQUEUE and DQUEUE function modules when a lock object is
activated
13. SAP Business Workflow is
a) Is a support tool that can be used to optimize the flow of business transactions
b) Control the information process flow according to a predefined model
c) They bring right work in right order at right time to the right people
d) This can be done using an automated mail or a workflow item
14. Mark the correct statements
a) Example of client specific Customizing settings include printer settings
b) Customizing settings in SAP are completely client specific
c) Repository contains all ABAP Dictionary objects
d) Repository contains programs, menus, screens and so on
15. Mark the correct statements
a) A small amount of adjustment may be required at SAP system upgrade when modifications
are done
b) A small amount of customizing may be reuired after an SAP system upgrade
c) All customer developments take place in the SAP namespace
d) Customers cannot add their own developments to the existing objects in the SAP standard
system
16. Following are ABAP Workbench Tools.
a) Screen Painter.
b) Class Builder
c) ABAP Dictionary
d) ABAP builder
SAP Education Partner

SISL, Hyderabad

Week 1 Test TAW10 1/2

SAP R/3 Training

17. Which of the following is the proper Hierarchy


a) Development class Application component Repository objects subobjects
b) Application component Development class Repository objects subobjects
c) Repository objects Development class Application component subobjects
d) Repository objects Development class Dictionary object subobjects
18. If object is not available in the list and you navigate to it by double clicking it is called
a) Forward Navigation.
b) Backward Navigation.
c) Repository Navigation.
d) Object Viewing
19. Unconditional/index controlled loop is
a) DO-WHILE
b) LOOP-ENDLOOP
c) SELECT-ENDSELECT
d) DO-ENDDO
20. In Debugging mode you can
a) Display values for up to 10 variables.
b) Set upto 10 watchpoints
c) Set a break point at any line in the source code
d) Execute the program directly up to the point where the breakpoint is set.
21. Which is true for general ABAP syntax.
a) You may have multiple statements in a single line.
b) You must have single statement in a single line.
c) Each statement must end with a period.
d) The lines between two * are treated as comments.
22. Following are some of the valid additions for Write statement.
a) Write at / word.
b) Write 5 word.
c) Write at (10) word.
d) Data : Len type I value 10.
Write at (Len) word.
23.Which type of message is displayed on next screen
a) W-Warning
b) I-Information
c) E-Error
d) S-Success
24.Select Statement.
a) It reads a selection and/or a summary of data from one or more database tables.
b) Performs its own authorization check.
c) Selects a single record from database.
d) It is an OPEN SQL statement.
25. Select * from spfli into wa .
write : wa-carrid,
wa-connid,
wa-cityfrom,
SAP Education Partner

SISL, Hyderabad

Week 1 Test TAW10 1/2

SAP R/3 Training

wa-cityto.
Endselect.
As a result only one line was printed. This was because.
a) Only one record was available in the database.
b) No / or new-page used while writing.
c) No skip statement was used.
d) The workarea was having different structure than a table.
26.To copy the contents from database table to itab of same structure which commands must be
used.
a) Move
b) Move corresponding
c) Into table itab
d) Append from workarea
27. Which of the following table can be accessed using only keys.
a) Hash table
b) Standard Table
c) Sorted table
d) Index table
28.What will be the result of
Move: 1 to a,b,c,d.
a) It will move 1 to a,b,c&d
b) It will give syntax error.
c) It will move 1 to only a.
d) The correct statement would be
Move 1 to : a, b, c, d.
29. What is not applicable for event blocks in executable program.
a) The sequence in which the events are processed is determined at runtime.
b) Event block ends with start of next event block.
c) Default event block is Line-of-selection
d) Initialization is triggered after the selection screen is sent to presentation server.
30. When you need to pass parameters in subroutine but they need to be changed only when
subroutine completes successfully then you should use
a) Using value (parameter)
b) Using parameter
c) Changing parameter
d) Changing value (parameter)
31. Partial Type check in subroutine interface is done for
a) Type C
b) Type D
c) Type P
d) Type N
32. For trapping the selection done with Function key F2 the event is
a) At F2
b) At selection-screen
c) At lineselection
d) At selectionline
SAP Education Partner

SISL, Hyderabad

Week 1 Test TAW10 1/2

SAP R/3 Training

33. Maximum number of detail lists available are


a) 10
b) 21
c) 16
d) 20
34. Hide
a) Allows hiding the contents of object in basic list
b) Records the name & contents of data object in relation to the line position in current
list
c) Retain contents of object related to current output line & after double click fills those
values
d) the fields to be retained in hide area must be displayed first using write statement.
35. Screen attribute of screen 100 has next screen value 200 . The PAI contains a line set
screen 300. Then control goes to.
a) Call screen statement
b) Screen 200
c) Screen 300
d) Screen 100
36. Which statement declares an internal data object that serves as an interface for the screen
a) DATA
b) PARAMETER
c) TABLES
d) TYPES
37. How do find Fields parameter ID?
a) Press F1 and F4.
b) Press F1 and F9.
c) Press F1 & Application Help.
d) Press F1 & Technical Help.
38. Function Module can access
a) Local parameters defined with in module
b) Global data objects of the function group
c) Subroutines of Function Group
d) Screens present in the function group.
39. BAPIs
a) Are point of entry to R/3 System.
b) Is a defined interface contain the process & data of a business application system
c) have Export parameters
d) Have Exceptions through which an error occurred can be informed
40. To start an executable program
a) CALL TRANSACTION
b) SUBMIT
c) LEAVE TO TRANSACTION
d) SUBMIT ... AND RETURN
41. Mark the correct statements
a) Text elements are multi lingual
SAP Education Partner

SISL, Hyderabad

Week 1 Test TAW10 1/2

SAP R/3 Training

b) Classes can be created locally


c) Line type of an internal table can be another internal table
d) Data from internal table is read using select statement
42.The control of program according to the push button chosen by user is handled by
a) Code in PAI
b) Code in PBO
c) Attribute of screen
d) Type of push button.
43. The construction using INTO CORRESPONDING in a SELECT statement
a) Improves performance of the program
b) Is more run-time intensive than INTO
c) The field list and the structure should have the same number of fields
d) The field list and the structure can have different number of fields
44. The statement MESSAGE can be used to
a) Print messages in the printer
b) Create a system message
c) Display messages on the screen
d) Communicate between two R/3 systems
45. The statement LOOP AT itab . ENDLOOP.
a) Writes into the internal table
b) Does an authorization check on the internal table itab
c) Reads the records from internal table itab
d) Reads the records from the database table itab
46. The statement TABLES is used to
a) Declare data dictionary structures in the program
b) Declare internal tables in the program
c) Global structure which is being used must be a flat structure
d) TABLES structures serve as interfaces for screen fields
47. When the statement CALL SCREEN 300 is executed the control is transferred to
a) The Process After Input Modules (PAI)
b) The Process Before Input Modules(PBO)
c) The first subroutine in the Flow Logic
d) The first function module in the Flow Logic
48. The selection screen for a program is
a) Automatically created by the statements PARAMETERS and SELECT-OPTIONS
b) Automatically created by the statement CALL SELECTION-SCREEN
c) Automatically created by the statement CALL SCREEN
d) Painted using the screen painter
49. BAPIs are
a) Reusable components
b) ABAP dictionary objects
c) Business Objects
d) Methods of a business object
50. Watchpoints are
a) Used for debugging
SAP Education Partner

SISL, Hyderabad

Week 1 Test TAW10 1/2

SAP R/3 Training

b) Break-points that are keyword dependent


c) Break-points that are field dependent
d) Break-points that are subroutine dependent

SAP Education Partner

SISL, Hyderabad

Você também pode gostar