Вы находитесь на странице: 1из 14

23/10/2014

SAP Certified Development Associate - ABAP with SAP NetWeaver 7.3 - Mini | SAPExam
Welcome jplateros, [ Log out ]

SAP NW CERTIFICATION

SAP ERP CERTIFICATION

SAP HANA CERTIFICATION

...

Home Content 1591 Take

Live Testimonials

VIEW

TAKE

MY RESULTS

JPLATEROS

SAP Certified Development Associate - ABAP with SAP NetWeaver


7.3 - Mini
You got 25 of 40 possible points.
Your score: 63 %

Question Results
Question:

My Premium Exams
My account
Invite Friends
Create content
Testimonial
Log out

Score 1 of 1

Which of the following transactions are integrated in the ABAP workbench tools?
There are 2 correct answers to this question.
Response:
Process overview (SM50)

ABAP editor (SE38)

Overview of job selection (SM37)

Class builder (SE24)

Question:

Score 1 of 1

Which comparison operators can you use in a logical expression related to the WHERE clause
of the SELECT statement?
There are 3 correct answers to this question.
Response:
CP (covers pattern)

EQ (equals)

GT (greater than)

CO (contains only)

LIKE (fits pattern)

Question:

http://www.sapexam.com/node/1591/take

Score 0 of 1

1/14

23/10/2014

SAP Certified Development Associate - ABAP with SAP NetWeaver 7.3 - Mini | SAPExam

You are writing a function module that will be called from external system via remote function
call (RFC). How do you report an error back to the external caller?
Please choose the correct answer.
Response:
Write the error data into TABLES parameters that is passed by reference.

Write the error data into a RECEIVING parameter that is passed by value.

Write the error data into an EXPORTING parameters passed by reference.

Write the error data into a CHANGING parameters passed by value.

Question:

Score 1 of 1

Which of the following tools belong to the ABAP Workbench?


There are 3 correct answers to this question.
Response:
Screen Painter

Class Builder

Easy Access Menu

Function Builder

Form Builder

Question:

Score 0 of 1

How do you embed a subscreen in a main screen?


Please choose the correct answer.
Response:
Use SET SUBSCREEN in a PBO module of the main screen.

Use CALL SUBSCREEN in a PBO module of the main screen

Use CALL SUBSCREEN in the flow logic of the main screen.

Use SET SUBSCREEN in the flow logic of the main screen.

Question:

Score 0 of 1

Which ABAP statement using the local type gty_1 correctly defines a data object?

http://www.sapexam.com/node/1591/take

2/14

23/10/2014

SAP Certified Development Associate - ABAP with SAP NetWeaver 7.3 - Mini | SAPExam

There are 2 correct answers to this question.


Response:
DATA gv_1 TYPE gty_1.

DATA gv_1 TYPE gty_1 DEFAULT '1'.

CONSTANTS gc_1 TYPE gty_1 VALUE '1'.

DATA gv_1 LIKE gty_1.

Question:

Score 0 of 1

Which of the following must you do to be able to use a Business Add-in(BADI)?


There are 2 correct answers to this question
Response:
Write code for methods

Modify the adapter class

Create the BADI implementation

Activate the enhancement project

Question:

Score 1 of 1

You have implemented a class CL_CUSTOMER in which you defined a private attribute. From
where can you access this attribute directly?
There are 2 correct answers to this question.
Response:
From all methods of the class CL_CUSTOMER

From all methods of a class to which CL_CUSTOMER grants friendship

From any program using the class CL_CUSTOMER

From all methods of all subclasses of CL_CUSTOMER

Question:

Score 0 of 1

In an ABAP program you have the following code sequence :


DATA text TYPE string.
DATA Text_ref TYPE REF TO string.
DATA data_ref TYPE REF TO data.

http://www.sapexam.com/node/1591/take

3/14

23/10/2014

SAP Certified Development Associate - ABAP with SAP NetWeaver 7.3 - Mini | SAPExam

FIELD-SYMBOLS <fs> TYPE any


Text = Content of Data Object
GET REFERENCE OF text INTO data_ref.
Which of the following pieces of code can you use to output the content of variable text?
There are 2 correct answers to this question.
Response:
GET REFERENCE OF data_ref->* INTO text_ref.
WRITE text_ref->*.

text_ref ?= data_ref.
WRITE text_ref->*.

WRITE data_ref->*.

ASSIGN data_ref->* TO<fs>


WRITE <fs>

Question:

Score 1 of 1

Where can you set the GUI status and the GUI title for a classical screen (dynpro)?
Please choose the correct answer.
Response:
In a module called from PBO of the screen

In the properties of the related header UI element

In a module called from PAI of the screen

In the attributes of the screen

Question:

Score 1 of 1

You define a formal parameter to a subroutine that accepts only internal table of type standard
and type sorted as actual parameters. Which of the following generic ABAP data types must
you use?
Please choose the correct answer.
Response:
Index table

Standard table

Sorted table

Hashed table

http://www.sapexam.com/node/1591/take

4/14

23/10/2014

SAP Certified Development Associate - ABAP with SAP NetWeaver 7.3 - Mini | SAPExam

Question:

Score 1 of 1

Which of the following transactions can you use to define transparent tables?
Please choose the correct answer.
Response:
SE16N

SE38

SM37

SE11

Question:

Score 1 of 1

Which statement ends a screen sequence and starts from initial screen?
Please choose the correct answer.
Response:
CALL SCREEN

SET SCREEN 0

LEAVE SCREEN

LEAVE TO SCREEN

Question:

Score 1 of 1

Which of the following can you do with the ABAP debugger?


There are 3 correct answers to this question.
Response:
Analyze internal tables

Compare data objects.

Analyze memory usage.

Analyze SQL traces.

Change source code.

Question:

http://www.sapexam.com/node/1591/take

Score 1 of 1

5/14

23/10/2014

SAP Certified Development Associate - ABAP with SAP NetWeaver 7.3 - Mini | SAPExam

What can you use to achieve polymorphism?


Please choose the correct answer.
Response:
Events

Inheritance

Reports

Subroutines

Question:

Score 1 of 1

When do you need to use the GROUP BY clause in the SELECT statement?
Please choose the correct answer.
Response:
If you want to use ORDER BY to specify a sub-order

If you want to use aggregate functions and at least one component in the field list is a column
identifier

If you want to redefine the sequence of the columns in the result set

If you want to use aggregate functions and all components in the field list are aggregate
functions

Question:

Score 1 of 1

What can you create using the ABAP Dictionary?


There are 3 correct answers to this question.
Response:
Transparent tables

Internal tables

Field symbols

Type pools

Domains

Question:

http://www.sapexam.com/node/1591/take

Score 1 of 1

6/14

23/10/2014

SAP Certified Development Associate - ABAP with SAP NetWeaver 7.3 - Mini | SAPExam

What can you change in the ABAP Debugger?


Please choose the correct answer.
Response:
Definition of a structure

Value of a reference variable

Content of an internal table

Value of a constant

Question:

Score 0 of 1

Which objects can share data through context mapping?


Please choose the correct answer.
Response:
Global classes and component controllers

Component controllers and view controllers

Custom controllers and transparent tables

View controller and another view controller

Question:

Score 0 of 1

Which of the following ABAP standard types are numeric?


There are 3 correct answers to this question.
Response:
I

Question:

Score 1 of 1

How do you add fields to an SAP-delivered transparent table without modification?


Please choose the correct answer.

http://www.sapexam.com/node/1591/take

7/14

23/10/2014

SAP Certified Development Associate - ABAP with SAP NetWeaver 7.3 - Mini | SAPExam

Response:
Create an append structure containing the new fields.

Add the new fields to the table definition.

Use the database utility to enhance the definition on the database directly.

Define a structure containing the new fields and include it in the table definition.

Question:

Score 0 of 1

Which of the following are valid combinations of event visibility and handler method visibility?
There are 2 correct answers to this question.
Response:
Private event and public handler

Public event and protected handler

Protected event and public handler

Private event and private handler

Question:

Score 0 of 1

Which statement is used to generically define the data reference variable z1?
Please choose the correct answer.
Response:
data z1 type any

data z1 type ref to data

data z1 type ref to PA0001

data z1 type any table

Question:

Score 0 of 1

You want to develop a validation routine for a selection screen field. If a wrong value is entered
into the field an error message should be displayed and the focus should move to the field.
Which event do you use to achieve this?
Please choose the correct answer.
Response:

http://www.sapexam.com/node/1591/take

8/14

23/10/2014

SAP Certified Development Associate - ABAP with SAP NetWeaver 7.3 - Mini | SAPExam

START-OF-SELECTION

END-OF-SELECTION

AT SELECTION-SCREEN

INITIALIZATION

Question:

Score 1 of 1

Which of the following includes are generated when you create a function group?
Please choose the correct answer.
Response:
LxxxxTOP

LxxxxF01

LxxxxO01

LxxxxUXX

Question:

Score 1 of 1

You add the CREATE PROTECTED addition to a class definition.


From where you can instantiate the class?
There are 3 correct answers to this question.
Response:
From the class itself

From a parent class

From a child class

From a friend class

From any protected class

Question:

Score 1 of 1

Which of the following can you use to enhance SAP standard tables and structures with fields?
There are 2 correct answers to this question.
Response:

http://www.sapexam.com/node/1591/take

9/14

23/10/2014

SAP Certified Development Associate - ABAP with SAP NetWeaver 7.3 - Mini | SAPExam

Customizing includes

Append search helps

Field exits

Append structures

Question:

Score 1 of 1

When should you use a hashed internal table?


There are 2 correct answers to this question.
Response:
When accessing always by primary key

When accessing by secondary key

When accessing using the left-justified part of the key

When accessing mainly single records

When accessing by index

Question:

Score 0 of 1

Which of the following features do you have to consider when you use shared objects?
There are 3 correct answers to this question.
Response:
Data is saved as tables of objects

Data is saved as attributes of objects

Concurrent read accesses are supported

Concurrent write accesses are supported

Memory bottlenecks result in runtime errors and have to be caught

Question:

Score 0 of 1

You are required to add customer source code in the SAP delivered object using the new
enhancement framework without modification. How can you find the available enhancement?
There are 3 correct answers to this question.

http://www.sapexam.com/node/1591/take

10/14

23/10/2014

SAP Certified Development Associate - ABAP with SAP NetWeaver 7.3 - Mini | SAPExam

Response:
Search for a Business Transaction Event in the Customizing tree (transaction SPRO).

Select from the list of application-related BAdIs or enhancement spots in the SAP Application
Hierarchy.

Perform a program-related global search for GET BADI.

Select from the list of freely selected BAdIs or enhancement spots in the Repository Information
System.

Perform a program-related global search for a customer exit.

Question:

Score 1 of 1

You create a function group ZATP. What is the name of the corresponding main program?
Please choose the correct answer.
Response:
SAPLZATP

ZATP

SAPMZATP

SAPFZATP

Question:

Score 1 of 1

Which of the following ABAP standard types are incomplete?


There are 2 correct answers to this question.
Response:
N

STRING

Question:

Score 1 of 1

Why should you bundle database updates in your dialog programs?

http://www.sapexam.com/node/1591/take

11/14

23/10/2014

SAP Certified Development Associate - ABAP with SAP NetWeaver 7.3 - Mini | SAPExam

Please choose the correct answer.


Response:
To process the SAP LUW within the database LUW to ensure data consistency

To be able to rollback database changes performed in the same dialog step

To allow you to use SAP locks to ensure data consistency

To avoid database locks set by an SQL statement that persists until the end of the program

Question:

Score 0 of 1

You want to include an element of type Table in your web dynpro.


What actions add the corresponding columns to the table automatically?
Please choose the correct answer.
Response:
Right click the table and select the CREATE_BINDING option

Bind the table attribute DATA_SOURCE to the context node

Generate a BIND_TABLE method using the web dynpro method wizard.

Include the method BIND_TABLE of IF_WD_CONTEXT_NODE.

Question:

Score 1 of 1

What is the purpose of implicit enhancement points?


Please choose the correct answer.
Response:
To change code in a standard SAP program

To add code to a standard SAP program

To add fields to an SAP database table

To create a secondary index for an SAP database table

Question:

Score 1 of 1

When is a foreign key check performed on an input/output field?


Please choose the correct answer.
Response:

http://www.sapexam.com/node/1591/take

12/14

23/10/2014

SAP Certified Development Associate - ABAP with SAP NetWeaver 7.3 - Mini | SAPExam

If the field refers to the dictionary field for which a check table is defined

If the field refers to the dictionary field for which a value help is defined

If the field refers to the dictionary field for which a search is defined

If the field refers to the dictionary field for which a append search is defined

Question:

Score 1 of 1

What features are provided by the database interface?


There are 3 correct answers to this question.
Response:
Access to SAP table buffers

Syntax check of Native SQL commands

Data consistency check using foreign key relationships

Conversion of Open SQL statements from ABAP statements into the corresponding database
statements

Database independence of application programs

Question:

Score 0 of 1

dbtab is a transparent table. What is declared by the following statement? DATA myvar TYPE
dbtab.
Please choose the correct answer.
Response:
A reference to an internal table

A structure variable

An elementary field

An internal table

Question:

Score 1 of 1

Which of the following can you do with the SAP code inspector?
Please choose the correct answer.

http://www.sapexam.com/node/1591/take

13/14

23/10/2014

SAP Certified Development Associate - ABAP with SAP NetWeaver 7.3 - Mini | SAPExam

Response:
Perform static code checks

Monitor runtime behavior

Analyze runtime data.

Monitor background tasks

Score 0 of 1

Question:

You want to select all the records from a database table where field CITY contains substring
BU in any position. Which WHERE clause can you use in an Open SQL select statement?
Please choose the correct answer.
Response:
WHERE city LIKE _BU

WHERE city LIKE %BU*

WHERE city LIKE +BU+

WHERE city LIKE *BU*

Money Back Guarantee


Privacy Policy

Testimonial
Terms and Conditions

Join Us
FAQs

About Us
Contact Us

All trademarks, service marks, trade names, trade dress, product names and logos appearing on the site are the property of their respective owners.
The site www.sapexam.com is in no way affiliated with SAP AG. Copyright 2014 SAPExam. All rights reserved.

http://www.sapexam.com/node/1591/take

14/14

Вам также может понравиться