Dumps 2
Dumps 2
A. A and B only
B. A and C only *****
C. B and C only
D. D only
State whether the statement is true or false. Domain can be explicitly assigned fixed values.
A. TRUE ****
B. FALSE
State whether the statement is true or false. The number of decimal places for output can be defined
within a write statement.
A. TRUE****
B. FALSE
State whether the statement is true or false. A subroutine can contain nested form and endform
blocks.
A. TRUE
B. FALSE***
State whether the statement is true or false. MANDT field in a table makes it client independent.
A. TRUE
B. FALSE ****
Which among the following can represent the time a block of code took for execution?
A. SET TIME
B. GET TIME
C. GET RUN TIME ******
D. SET RUN TIME
State whether the statement is true or false. STAT transaction is used to get number of times a
program is executed.
A. TRUE
B. FALSE ****
State whether the statement is true or false. Implicit database commits occur after each screen
change.
A. TRUE *****
B. FALSE
Is it possible to display multiple ALV's in the same screen without using container?
A. Yes ****
B. No
What will be the output of following code? DATA: test_field type C. test_field = 'SAP Test Data'.
Write test_field.
A. Syntax Error
B. SAP Test Data
C. SAP
D. S ****
Several users (transactions) can access locked data at the same time in display mode. A request for
another lock is accepted, even if it comes from another user. What type of lock is being referred to
here?
A. Exclusive
B. Exclusive but not cumulative lock
C. SAP lock
D. Shared lock ****
Which of the following are valid OPEN SQL ways to write data to a table?
A. MODIFY
B. UPDATE
C. INSERT
D. SELECT
A. A and B only
B. A, B, and C only******
C. B and C only
D. A and D only
State whether the statement is true or false. When a program is executed, text pool of a different
language can be loaded using the statement SET LANGUAGE.
A. TRUE ****
B. FALSE
Which transaction can be used to monitor and release Batch Data Communication (BDC) sessions?
A. SE38
B. SE35
C. SM35 ****
D. SM37
State whether the statement is true or false. A Class will have private visibility section by default.
A. TRUE
B. FALSE ****
State whether the statement is true or false. Statement FREE can be used to delete ABAP memory.
A. TRUE ****
B. FALSE
State whether the statement is true or false. A Business Add-In (BADI) can be re-used.
A. TRUE *****
B. FALSE
State whether the statement is true or false. Customer exists can have multiple implementations.
A. TRUE
B. FALSE ******
State whether the statement is true or false. BAPI can be called from ABAP, JAVA, and so on.
A. TRUE *****
B. FALSE
Which transaction can be used to monitor Batch Data Communication (BDC) sessions?
A. SE38
B. SE35
C. SM35 ****
D. SM37
State whether the statement is true or false. When transferring data using Business Application
Programming Interfaces (BAPIs), Legacy System Migration Workbench (LSMW) should only be
used as a mapping tool.
A. TRUE ********
B. FALSE
State whether the statement is true or false. All BAPIs are RFC, but all RFC are not BAPIs.
A. TRUE ******
B. FALSE
State whether the statement is true or false. BAPI will be associated with a Business Object.
A. TRUE *****
B. FALSE
State whether the statement is true or false. BDC_OKCODE is constant and always identifies the
command field in batch input method.
A. TRUE ****
B. FALSE
State whether the statement is true or false. Settings for frames or shading are permitted on the
Output Options tab page in Smart Forms.
A. TRUE ****
B. FALSE
Which among the following will be generated during activation of Smart Forms?
A. Function Group
B. Interface
C. Function Module****
D. Program
State whether the statement is true or false. Smart Forms will have same function module through
SAP landscape.
A. TRUE
B. FALSE *****
Which of the following are parameters of a generated function module or a form interface?
A. Import
B. Export
C. Global data
D. Tables
E. Changing
A. A, B, D, and E only****
B. A, B, and C only
C. B, C, and D only
D. B, D, and E only
State whether the statement is true or false. The size of an image field is always dynamic.
A. TRUE
B. FALSE ******
How to catch an exception, where a function module raises an exception of type cx_fp_api?
A. CASE sy-subrc. When 0. …………… When cx_fp_api. ….. When Others. ENDCASE.
B. DATA: gr_error TYPE REF TO cx_root. CATCH cx_root INTO gr_error.
C. DATA: gr_error TYPE REF TO cx_fp_api. CATCH cx_fp_api INTO gr_error.
D. CATCH SYSTEM-EXCEPTIONS cx_fp_api.
A. A and B only
B. B and C only *****
C. A and D only
D. A, C, and D only
Which of the following statements on the class-based exception concept are true?
A. Use TRY. ... ENDTRY. to prevent dump. *****
B. Choose between sy-subrc or exception objects when exceptions raised by a method.
C. Class-based exceptions can be raised in classes only.
D. Multiple CATCH clauses are possible to react on different exceptions ***********
What would scripting (attached to field A) look like at the event initialization sets the value of field
A to 10?
A. A=10
B. A==10
C. A=10;
D. 7
A. A and B only
B. B and C only
C. A and C only *******
D. B and D only
State whether the statement is true or false. Dynamic contents that "overflows" must be included in
body pages.
A. TRUE****
B. FALSE
State whether the statement is true or false. Keywords of FormCalc are case-sensitive.
A. True
B. FALSE*******
Which of the following are differences between body pages and master pages?
A. Master page defines the orientation and dimension of body page and body page derives those
from master page.
B. Master page represents the pages of a form and body pages is to format the master pages.
C. Master page is to design the layout where as body page is to print content of the page.
D. Body page defines the orientation and dimension of master pages and master pages derives
those from body pages.
A. A and B only
B. B and C only
C. A and D only
D. A and C only ****
State whether the statement is true or false. The COLLECT statement can only be used with internal
tables whose non-key fields are all numeric.
A. TRUE ****
B. FALSE
State whether the statement is true or false. DB05 can be used for constructing indexes.
A. TRUE
B. FALSE *****
State whether the statement is true or false. Based on Primary and Secondary key, SAP
automatically creates a primary index to improve performance for transparent tables.
A. TRUE
B. FALSE******
A. Loop
B. Copy
C. =*********
A rule of thumb states that an index only makes sense if SQL statements that use the index return
less than ____% of the table records.
A. 5
B. 3
C. 1
D. 4
E. 8