This is a mock up exam covering week1-4 of the course. This test no way should be associated with the real exam, it just give you a feeler and gauge your current knowledge.
All the Best Passing this test no way guarantees that you will pass the actual exam you still need to read the books and study more till See morethe exam
Best of Luck
SN
Human Capital Management System
Class Builder
Easy Access Menu
Screen Painter
Function Builder
Rate this question:
With the ABAP debugger, you can edit internal tables(for example append lines, delete lines, change contents
With ABAP debugger you can change the definition of the structure at run time
With the ABAP debugger you can create new data objects even if they are structures or internal tables.
Rate this question:
Data types can be defined only in ABAP dictionary
Data type can be used to define a variable of constants.
Data types can be defined in the program.
Data types can be defined in ABAP dictionary
Rate this question:
A
B
C
D
The Friend concept
The Interface concept
The Event concept
Rate this question:
You need to program the check at the event AT SELECTION-SCREEN, if there is any error an E type MESSAGE must be output.
You need to program the check at the event END-OF-SELECTION, if there is any error an E type MESSAGE must be output.
You need to program the check at the event AT SELECTION-SCREEN, if there is any error , processing must be interrupted with a STOP statement and an message type I must be output.
Rate this question:
You have to define a structure where you put in the field travel_agency in and include this structure in the SAP table sbook.
You have to create an append structure where you can define an appropriate field with name zztravel_agency
You have to extend the SAP table sbook by adding the field travel_agency directly into the definition of the table sbook.
Rate this question:
MODIFY
INSERT
DELETE
SORT
Rate this question:
To unit the appropriate database in pool table
To define indexes for the appropriate database tables
To use table buffering for appropriate database tables
To put the appropriate database table in a special fast access tablespace of the database
Rate this question:
SAPLZATP
SAPTZATP
SAPFZATP
SAPMZATP
ZATP
Rate this question:
The CANCEL fumction must have function code BACK
No special action required
There is no way to do this, you need to always fill in the required fields
You must temporarily switch of the required entry fields for the concerned input field within LOOP AT SCREEN... ENDLOOP.
The CANCEL function should be of type 'E' and must be handled in the module AT EXIT-COMMAND.
Rate this question:
Enhancements
Modifications
Corrections
Personalization
Repair
Rate this question:
INITIALIZATION, LOAD-OF-PROGRAM,START-OF-SELECTION, AT SELECTION-SCREEN.
INITIALIZATION, AT SELECTION-SCREEN, LOAD-OF-PROGRAM, START-OF-SELECTION
INITIALIZATION, LOAD-OF-PROGRAM, AT SELECTION-SCREEN, START-OF-SELECTION
LOAD-OF-PROGRAM, INITIALIZATION, AT SELECTION-SCREEN, START-OF-SELECTION.
Rate this question:
FORM check_booking USING VALUE(p_book = TYPE sbook ).
FORM check_booking CHANGING VALUE(p_book) TYPE sbook
ORM check_booking CHANGING p_book type sbook ON RETURN
FORM check_booking USING p_book TYPE sbook.
Rate this question:
Documentation of the domain z_char_3.
Documentation of the data element z_carr_id
Documentation of the field carrid of the table zcarr.
Rate this question:
At the event TOP-OF-PAGE.
In the PBO module of corresponding screen
In the PAI module of corresponding screen
In the attribute of corresponding screen
Rate this question:
R_desc = cl_abap_typedescr=>describe_by_data( wa_material ).
R_desc ?= cl_abap_typedescr=>describe_by_data( wa_material ).
R_desc != cl_abap_typedescr=>describe_by_data( wa_material ).
Rate this question:
In one SAP NetWeaver Application Server there can be installed either an ABAP stack or JAVA stack , but never both the stacks.
In one SAP NetWeaver Application Server there can be installed either a stand alone ABAP stack or a stand alone JAVA stack or combination of ABAP and JAVA stack
In one SAP NetWeaver Application Server there can be installed either a stand alone ABAP stack or combination of ABAP and JAVA stack but never a stand alone JAVA stack.
Rate this question:
ABAP WebDynpro applications
ABAP Executable Program.
ABAP subroutine
ABAP Include program.
Rate this question:
Database view with more than 1 table
Maintainence View
Projection view with 1 table
Rate this question:
The HELP view
The DATABASE view
The MAINTAINENCE view
Rate this question:
Select * from bkpf INNER JOIN bpos on bkpf.belnr = bpos.belnr into wa WHERE bkpf.belnr = '1000'.
Select * from bkpf RIGHT OUTER JOIN bpos on bkpf~belnr = bpos~belnr into wa WHERE bkpf~belnr = '1000'
Select * from bkpf INNER JOIN bpos on bkpf~belnr = bpos~belnr into wa WHERE bkpf~belnr = '1000'.
Rate this question:
A Search Help can be attached directly to a field of structure or table
A Search help can be attached to a check table of the ABAP dictionary field
A Search Help can be attached to the data element.
A Search Help can be attached to the domain.
Rate this question:
Number_of_list is public static functional method of the class cl_list.
Number_of_list is public static attribute of class cl_list
Number_of_list is public instance functional method of class cl_list
Number_of_list is public instance attribute of class cl_list
Rate this question:
Define an interface for BADI
Implement a class which implements BADI
Create an enhancement project with CMOD
Call a BADI
Rate this question:
Check if the field with the ok code attribute in the screen 100 contains the value 'SAV'
Check if p_save-okcode equals to 'SAV'.
Check if field SY-OKCODE contains the value 'SAV'.
Check if p_save-ACTIVE = 1.
Rate this question:
Support Package
Repair
HotFix
Modification
Rate this question:
The text table zdepartmentt is linked with table zdepartment by a foreign key of type key fields of text table.
The text table zdepartmentt as atleast one text field which is not a key field.
The text table zdepartmentt is a cluster tables
The text table zdepartmentt has same key fields as zdepartment plus one additional key field of data type LANG.
Rate this question:
Table Enhancement
Menu Enhancement
Functional Enhancement
Data Element Enhancement
Screen Enhancement
Rate this question:
Definition of method parameters.
Definition of subroutine parameters
Definition of parameters for PBO modules
Definition of selection screen parameters.
Rate this question:
The ABAP dispatcher takes over the entire execution of the ABAP program and gets the user context of the program from roll area
The program components for the individual dialog steps are usually executed in various dialog work processes that are released once the program components has been processed (while screen display on the front end).
The entire program is processed in exactly one dialog process. This dialog process is reserved for that program while the screen is displayed on the front end.
Rate this question:
Hide Individual Columns
Specify color of the list rows
Set the output characteristics of a column position or width
Influence the format properties of column contents, such as number of decimal places or the alignment of the content cell.
Rate this question:
Declare the work area containing fields MATNR, ENAM and EDAT and use select matnr ename edat from MARA into wa. ENDSELECT.
Declare the work area of type MARA and use select* from MARA into wa.ENDSELECT.
Declare the work area of type MARA use select matnr ename edat from MARA into wa.ENDSELECT.
Declare the work area containing fields MATNR, ENAM and EDAT and use select* from MARA into correspodnig fields of wa.ENDSELECT.
Rate this question:
View Controllers
Exactly one Component Controller
User Controller
Window Controller
Rate this question:
To simplify the upgrade to new versions
To avoid performance problems
To ensure smooth support from SAP
To protect SAP's intellectual property.
Rate this question:
In th event block GET SCARR.
In the PBO module of the selection screen
In the event block AT USER-COMMAND
In the event block AT SELECTION-SCREEN.
Rate this question:
The main purpose of SAP NetWeaver is to integrate people, information and process to provide platform for applications.
SAP ERP is part of SAP NetWeaver
The Industrial Solution Utilities(ISU) is part of SAP NetWeaver
SAP NetWeaver can be used to integrate non-SAP application systems.
The Bank Analyzer is part of SAP NetWeaver
SAP NetWeaver provides tools to integrate a hetrogeneous software landscape.
Rate this question:
Because you cannot read beyond the non character data within the structure using offset notations
Because the result of offset calculations depends on the Unicode codepage used.
Because the integer has 8 bytes
Because of the Unicode systems, offsets are allowed for unstructured data objects only.
Rate this question:
You have direct access to the attribute name from all methods of the class cl_customer itself
You have direct access to the attribute name from the main part of the program.
You have the direct access to the attribute name of all methods of all the subclasses of cl_customer
You have direct access to the attribute name from all the methods of a class cl_friend, where cl_customer grants friendship to the class cl_friend.
Rate this question:
Create a combi view that contains two viewcontainerui element controls. Embed the combi view in a window and the other two views in the viewcontainerui element . Then connect the outbound plug of selection view to the inbound plug of result view and the outbound plug of result view to inbound plug of selection view.
Embed each view in its own window . Then connect the outbound plug of the selection view to the inbound plug of result view and the outbound plug of result view to inbound plug of selection view.
Embed both the views in same window, within the window connect the outbound plug of selection view to the inbound plug of result view and the outbound plug of result view to inbound plug of selection view.
Create a combi window that contains two Viewcontainerui element , Embed these two view in two viewcontainerui element. The connect outbound plug of selection view to the inbound plug of result view and the outbound plug of result view to inbound plug of selection view.
Rate this question:
Maintain SCARR as the value table of the domain of SPFLI-CARRID.
Implement a search help that ensures that user can enter only correct values.
Implement a PAI module that check the user have entered correct values.
Define SCARR-CARRID as foreign key with check table SPFLI and foreign key as MANDT and CARRID
Define SPFLI-CARRID as foreign key with check table SCARR with foreign key as MANDT and CARRID
Rate this question:
Use the statement TABLES: SDYN_CONN to declare the structure named SDYN_CONN in the top include of your program.
Use the statement GET FIELD SDYN_CONN in the PAI module user_command_100.
Use DATA statement to declare a structure SDYN_CONN in the top include of your program.
Use the statement GET FIELD in the PAI logic of the Dynpro.
Rate this question:
Subscreens have their own ok code fields
Subscreens may have their own PBO and PAI logic
You call subscreen using ABAP command CALL SUBSCREEN
You call subscreen using SCREEN command CALL SUBSCREEN.
Rate this question:
Define a local class in which event DOUBLE_CLICK is redefined and raised.
Write a handler method for the event DOUBLE_CLICK of the class CL_GUI_ALV_GRID, which calls the dialog box.
Register for the event DOUBLE_CLICK by using SET_HANDLER statement.
Catch the Event DOUBLE_CLICK with the CATCH statement under which the dialog box call is implemented
Rate this question:
Watch point is always related to the data object of the debugged program . No matter how you define the watch point, the system will always stop the execution if the contents of related data objects is changed and issues a message “Watchpoint reached”
Several watchpoints can be combined using AND or OR
Watchpoint can be created using ABAP menu Goto->create watch point.
You can define the watchpoint only from within the debugger.
Rate this question:
The name of Append structure should start with ZZ or YY.
An Append structure can be assigned to more than 1 table
The fields of the Append structure should start with ZZ or YY
Append structures must be compared with the SAP original in release upgrade
Append structures are not possible for tables containing long field
Rate this question:
Define a append structure with these two fields and assign the append structure to both the tables.
Define two fields separately in both the tables.
Define structure with these two fields and include the structure in both the database tables.
Functional method can have any number of importing and exporting parameters
You can use functional methods directly in arithmetic expressions
A functional methods needs atleast one return statement.
A functional method has exactly one returning parameter.
Rate this question:
Quiz Review Timeline (Updated): Mar 22, 2023 +
Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.
Wait!
Here's an interesting quiz for you.