You are on page 1of 187

7/12/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.

50 - Full | ERPPrep

SAP Certified Development Associate - ABAP with SAP


NetWeaver 7.50 - Full

You got 32 of 80 possible points.


Your score was: 40 %

Question Results

Question: Score 0 of 1

Which statements are true?


There are 5 correct answers to this question.

Response:

The ALV Object Model can define a sort criteria for initial display.

The ALV Grid requires a table refresh after programmatically changing the ALV.

The ALV Grid uses a reference to the data table for display.

The ALV Object Model requires a table refresh after programmatically changing the
ALV.

The ALV Object Model uses a reference to the data table for display.

The ALV Grid can define a sort criteria for initial display.

Question: Score 0 of 1

Which of the following tasks does the BADI implementing class perform?
Please choose the correct answer.

Response:

Sequencing

Filtering

Deleting
http://www.erpprep.com/node/13104/myresults/704556 1/34
7/12/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Full | ERPPrep

Inserting

Question: Score 1 of 1

With what can you simulate multiple inheritance?


Please choose the correct answer.

Response:

CLASS CATEGORY

INHERITING FROM

REDEFINITION

INTERFACES

Question: Score 1 of 1

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


modification?
Please choose the correct answer.

Response:

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

Create an append structure containing the new fields.

Add the new fields to the table definition.

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

Question: Score 0 of 1

Which of the following variables is the self-reference variable in ABAP OO?


Please choose the correct answer.

Response:

ME

http://www.erpprep.com/node/13104/myresults/704556 2/34
7/12/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Full | ERPPrep

SUPER

THIS

SENDER

Question: Score 1 of 1

What is the allowed length of the ABAP Dictionary data type DF34_RAW?
Please choose the correct answer.

Response:

The allowed length is 34 digits.

The allowed length is between 1 and 31 digits.

The allowed length is between 0 and 33 digits.

The allowed length is between 1 and 34 digits.

Question: Score 0 of 1

You want to define two database tables with different structures. Both tables
should contain the fields CHANGE_DATE and CHANGE_TIME.

How do you implement this in order to minimize the maintenance effort?

Please choose the correct answer.

Response:

Define a structure with these two fields and include this structure in both database
tables.

Define the two fields in each database table separately.

Define the two fields in one database table and copy them to the other database
table.

Define an append structure with these two fields and assign this append structure
to both database tables.

http://www.erpprep.com/node/13104/myresults/704556 3/34
7/12/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Full | ERPPrep

Question: Score 0 of 1

Each ABAP program that actually contains executable statements…

There are 2 correct answers to this question.

Response:

Assigns every executable statement to a processing block regardless of it being in a


processing block.

Only assigns executable statements in a processing block to a processing block.

Can be tested from the ABAP Workbench by pressing (F8).

Has declarative statements outside of processing blocks that are considered local.

Uses event blocks to trigger events in ABAP.

Is divided into processing blocks.

Has declarative statements inside of processing blocks that are considered local.

Question: Score 1 of 1

How can you improve the performance when accessing a large data volume
database table?
Please choose the correct answer.

Response:

Switch the database table to fully buffered.

Apply the appropriate data class and size category.

Change the table type in the dictionary

Define appropriate indexes for the database table.

Question: Score 0 of 1

The software component for a customer package can be...


Please choose the correct answer.

Response:

http://www.erpprep.com/node/13104/myresults/704556 4/34
7/12/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Full | ERPPrep

Application Layer

Any SAP software component (i.e., SAP_APPL, SAP_BASIS, SAP_HR, etc.)

Database layer

HOME

Question: Score 1 of 1

You want to loop over an internal table without copying each table row to a work
area.

How can you achieve this using a field symbol?

Please choose the correct answer.

Response:

LOOP AT <itab> ASSIGNING <field_symbol>. ENDLOOP.

LOOP AT <itab> TRANSPORTING INTO <field_symbol>. ENDLOOP.

LOOP AT <itab> REFERENCE INTO <field_symbol>. ENDLOOP.

LOOP AT <itab> INTO <field_symbol>. ENDLOOP.

Question: Score 1 of 1

Using the screen system table, what can you modify through a LOOP AT SCREEN
… ENDLOOP construct?

Please choose the correct answer.

Response:

Values of screen elements

Screen status

Attributes of screen elements

Function code of buttons

http://www.erpprep.com/node/13104/myresults/704556 5/34
7/12/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Full | ERPPrep

Question: Score 1 of 1

A work process…
Please choose the correct answer.

Response:

Becomes inactive while waiting for a user.

Uses a common memory area called shared memory.

Becomes active while waiting for a user.

Stays linked toa screen through the dispatcher.

Question: Score 1 of 1

Which of the following actions can be performed in the Process After Input (PAI)
processing block?

Please choose the correct answer.

Response:

Set the GUI status of the screen.

Modify screen attributes dynamically.

Check the function code.

Set the title bar.

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:

CO (contains only)

EQ (equals)

http://www.erpprep.com/node/13104/myresults/704556 6/34
7/12/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Full | ERPPrep

CP (covers pattern)

GT (greater than)

LIKE (fits pattern)

Question: Score 0 of 1

Which of the following statements dynamically changes the data type of field z1?
Please choose the correct answer.

Response:

Assign z1 to <fs>

Assign z1 to <fs> casting

Move z1 to <fs>

Unassign <fs>

Question: Score 0 of 1

You can use the logical expression IS SUPPLIED for any formal parameter
passed to which modularization unit?

There are 3 correct answers to this question.

Response:

Function module

Subroutine (FORM routine)

Static method

Instance method

Question: Score 1 of 1

Each ABAP program starts with an introductory statement. Which statements


are correct?

http://www.erpprep.com/node/13104/myresults/704556 7/34
7/12/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Full | ERPPrep

There are 2 correct answers to this question.

Response:

The introductory statement must be the first line in the program.

The introductory statement can be modified.

The introductory statement must be the first statement in the program.

The introductory statement must never be modified.

Question: Score 0 of 1

Which of the following enhancement options does not require any preparation
from SAP?
Please choose the correct answer.

Response:

Explicit enhancement sections

Explicit enhancement point

New BAdIs

Implicit enhancement point

Question: Score 1 of 1

How do you use a sorted internal table?

There are 2 correct answers to this question

Response:

You use APPEND to insert records at the correct position

You can resort the table with SORT

You need to specify a key in the table declaration

You can read the records by index or key

http://www.erpprep.com/node/13104/myresults/704556 8/34
7/12/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Full | ERPPrep

Question: Score 0 of 1

Which options are available for a JOIN in ABAP Open SQL?

There are 3 correct answers to this question

Response:

INNER JOIN

RIGHT OUTER JOIN

CROSS JOIN

FULL JOIN

LEFT OUTER JOIN

Question: Score 1 of 1

After which statement will the runtime system initialize the ABAP memory
Please choose the correct answer.

Response:

SUBMIT

CALL TRANSACTION

LEAVE TO TRANSACTION

SUBMIT… AND RETURN

Question: Score 0 of 1

How is an ABAP program with several dialog steps executed?


Please choose the correct answer.

Response:

The program is always executed in just one dialog work process without roll out

Usually, dialog steps are assigned to different dialog work processes.

The ABAP dispatcher takes over the entire execution without assigning any work
http://www.erpprep.com/node/13104/myresults/704556 9/34
7/12/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Full | ERPPrep

process.

The program is always executed in just one dialog work process with roll out.

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:

Customizing includes

Append structures

Field exits

Append search helps

Question: Score 0 of 1

In which modularization units can you use parameters?


There are 3 correct answers to this question.

Response:

Dialog modules such as PBO modules

Function modules

Subroutines

Methods

Event blocks such as START-OF-SELECTION

Question: Score 1 of 1

When you define local classes in ABAP, which syntactical sequence must you
follow?

http://www.erpprep.com/node/13104/myresults/704556 10/34
7/12/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Full | ERPPrep

Please choose the correct answer.

Response:

The order is handled automatically.

PUBLIC SECTION, PROTECTED SECTION, PRIVATE SECTION

PRIVATE SECTION, PROTECTED SECTION, PUBLIC SECTION

The order doesn’t matter.

Question: Score 0 of 1

Which data element property do you set so that the system logs changes to the
content of fields with this data element?

Please choose the correct answer.

Response:

Input history

Change document

Documentation

PARAMETER ID

Question: Score 0 of 1

Which type of view cannot be used in a search help?


Please choose the correct answer.

Response:

Maintenance view

Candidates key view

Help view

Database view

http://www.erpprep.com/node/13104/myresults/704556 11/34
7/12/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Full | ERPPrep

Question: Score 0 of 1

DOG is a subclass of ANIMAL. You have created a variable of type ANIMAL that
references an instance of the DOG class. Which of the following statements can
you use to copy this reference to a new variable of type DOG?

Please choose the correct answer.

Response:

MOVE-CORRESPONDING…… TO……

WRITE……TO……

MOVE…. TO…..

MOVE……?TO……

Question: Score 0 of 1

What is the best order to provide an event handler for an ALV?


Please choose the correct answer.

Response:

Write the handler, register for the event, create the ALV, display the ALV

Register for the event, write the handler, create the ALV, display the ALV

Create the ALV, write the handler, register for the event, display the ALV

Write the handler, create the ALV, register for the event, display the ALV

Write the handler, create the ALV, display the ALV, register for the event

Question: Score 0 of 1

If you are using external debugging (debugging of HTTP and RFC


requests, which arrive in your ABAP system), what will the Debugger do?

Please choose the correct answer.

Response:

Never stop; external breakpoints operate on users other than your own.

http://www.erpprep.com/node/13104/myresults/704556 12/34
7/12/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Full | ERPPrep

Do not stop when the external breakpoint is reached.

May or may not stop, depending on external factors.

Always stop when the external breakpoint is reached.

Question: Score 0 of 1

Which events can exist in all types of programs that actually contain
executable statements?

Please choose the correct answer.

Response:

AT LINE-SELECTION

AT USER-COMMAND

INITIALIZATION

LOAD-OF-PROGRAM

START-OF-SELECTION

AT PF##

Question: Score 0 of 1

You have to overwrite spaces in a string with the letter ‘A’.

Which of the following statements can you use?


There are 3 correct answers to this question

Response:

SHIFT LEFT

CONDENSE

REPLACE

TRANSLATE

http://www.erpprep.com/node/13104/myresults/704556 13/34
7/12/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Full | ERPPrep

OVERLAY

Question: Score 1 of 1

When starting the Debugger, what circumstance causes the runtime


error DEBUGGING_NOT_POSSIBLE?

Please choose the correct answer.

Response:

When more than five sessions are already associated with this login user

Starting a non-exclusive mode in a productive system

When more than six sessions are already associated with this login user

When the number of debugging sessions on the server exceeds the value defined
by the profile parameter rdisp/wpdbug_max_no

Question: Score 0 of 1

Which of the following customer modifications options are available in the table
maintenance generator?

There are 2 correct answers to this question.

Response:

Events

Search helps

Append searches

Maintenance screens

Question: Score 1 of 1

In an ABAP program, you to assign an initial value to an elementary data object


when you define it. Which addition must you use?

Please choose the correct answer.

http://www.erpprep.com/node/13104/myresults/704556 14/34
7/12/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Full | ERPPrep

Response:

OBLIGATORY

DEFAULT

READ-ONLY

VALUE

Question: Score 1 of 1

Which action on the underlying dictionary objects triggers a database table


conversion?
Please choose the correct answer.

Response:

Reducing the size of the field.

Inserting an APPEND structure

Changing the order of non-key fields

Inserting a field of type reference

Question: Score 0 of 1

Which of the following ABAP data types are compatible with the generic
character-type CLIKE?
There are 3 correct answers to this question.

Response:

STRING

XSTRING

DECFLOAT

http://www.erpprep.com/node/13104/myresults/704556 15/34
7/12/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Full | ERPPrep

Question: Score 0 of 1

Which options do you have to read data from multiple tables while using a
SELECT statement?
There are 3 correct answers to this question.

Response:

Database views

Nested select statements

Nested loop statements

Pooled tables

Join statements

Question: Score 1 of 1

Where should the labels for fields be stored?


Please choose the correct answer.

Response:

Table

Domain

Field

Structure

Data element

Question: 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:

Class builder (SE24)

http://www.erpprep.com/node/13104/myresults/704556 16/34
7/12/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Full | ERPPrep

ABAP editor (SE38)

Process overview (SM50)

Overview of job selection (SM37)

Question: Score 0 of 1

You are writing an ABAP declaration using the data element S_CARR_ID.

Which of the following statements correctly define a data object?

There are 2 correct answers to this question

Note: Answers of this question are not verified by our experts, please study yourself and
select the appropriate answers.

Response:

DATA gv_id TYPE s_carr_id

DATA gv_id TYPE s_carr_id DEFAULT ‘QF’

CONSTANTS gc_qf TYPE s_carr_id VALUE ‘QF’

DATA gv_id LIKE s_carr_id

Question: Score 0 of 1

Which of the following is correct?


Please choose the correct answer.

Response:

The screen attributes can be modified in the PROCESS BEFORE OUTPUT and
PROCESS AFTER INPUT event blocks.

None of the above.

The screen attributes can be modified in the PROCESS BEFORE OUTPUT event
block.

The screen attributes can be modified in the PROCESS AFTER INPUT event block.

http://www.erpprep.com/node/13104/myresults/704556 17/34
7/12/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Full | ERPPrep

Question: Score 0 of 1

Which actions release a database lock?


There are 7 correct answers to this question.

Response:

The display of a dialog message type A

The display of an SAP screen

ROLLBACK WORK

A call to a function module

A SUBMIT

A CALL TRANSACTION

An “/n” in the command field

ENQUEUE_

The display of a dialog message type E

DEQUEUE_

COMMIT WORK

Question: Score 1 of 1

What transactions can be used to carry out modification adjustments after a


system upgrade?

There are 2 correct answers to this question

Response:

Modification Adjustment: Dictionary Object Selection (Transaction SPDD) to adjust


ABAP Dictionary objects

Modification Adjustment: Object Selection (Transaction SPAU) to adjust ABAP


Repository objects

Object Navigator (Transaction SPAU_ENH) to adjust ABAP Dictionary objects

http://www.erpprep.com/node/13104/myresults/704556 18/34
7/12/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Full | ERPPrep

Spool Administration: Initial Screen (Transaction SPAD) to adjust ABAP Repository


objects

Question: Score 0 of 1

What is required to fully specify a Table Type in the ABAP Dictionary?


There are 3 correct answers to this question.

Response:

Table key

Access type

Table size

Header line

Line type

Question: Score 0 of 1

You want to select data from two tables and store the result in as structure.

Table PARTNER contains the fields PART_ID and KIND.


Table CONTRACT contains the fields CONT_ID, CONT_TYPE and DIVISION.
The structure is defined as follows
DATA: BEGIN OF wa_result,
Part_id type partner-part_id, cont_id type contract-cont_id,
Cont_type TYPE contract-cont_type,
END of wa_result,
Lt_result type table of wa_result.

How can you replace the following SELECT statement with an outer join?

SELECT part_id from partner INTO wa_result WHERE kind = ‘Residential’.


SELECT cont_id from CONTRACT into wa_result-cont_id WHERE part EQ
wa_partner-part_id And DIVISION eq ‘Water’.
Append wa_result to lt_result.
ENDSELECT.
If sy-subrc<>0. CLEAR wa_result-cont_id
APPEND wa_result TO lt_result. ENDIF.
ENDSELECT.

Please choose the correct answer.

Response:

http://www.erpprep.com/node/13104/myresults/704556 19/34
7/12/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Full | ERPPrep

SELECT part_idcont_id from partner AS A LEFT JOIN contract AS b ON a~part_id =


b~part_id INTO CORRESPONDING FIELDS OF TABLE lt_result WHERE kind =
‘Residential’ and AND division EQ ‘Water’.

SELECT part_idcont_id from partner LEFT JOIN contract on partner-part_id =


contract-part_id AND partner-kind EQ ‘Residential’ INTO CORRESPONDING FIELDS
OF TABLE lt_result WHERE division eq ‘Water’.

SELECT part_idcont_id from partner LEFT JOIN contract on partner-part_id =


contract-part_id AND contract-division EQ ‘Water’ INTO TABLE lt_result WHERE kind
EQ ‘Residential’.

SELECT part_idcont_id from partner AS A LEFT JOIN contract AS b ON a~part_id =


b~part_id AND b~division EQ ‘Water’ INTO TABLElt_result WHERE kind =
‘Residential’

Question: Score 1 of 1

Which rules do you have to consider when working with pooled tables?

There are 2 correct answers to this question

Response:

All fields can be used in indexes

Only key fields should be used in WHERE condition

Only key fields should be used in ORDER BY clauses

An append structure can be created

Question: Score 1 of 1

You want to use a BAdI to extend the functions of an SAP program. Which of the
following tasks is necessary?

Please choose the correct answer.

Response:

Call the BAdI

Create an enhancement project using a customer exit.

http://www.erpprep.com/node/13104/myresults/704556 20/34
7/12/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Full | ERPPrep

Implement a class that implements the BAdI interface.

Define an interface for the BAdI.

Question: Score 0 of 1

A transport company keeps track of this availability in two tables, table


VEHICLES and table TRANSPORT. To accept a new transport of a certain capacity
must be found in table VEHICLES. If a record is found, a record is created in
table TRANSPORT. The capacity is then adjusted in table VEHICLES.\

You have four function modules at your disposal.

UPD_VEHI_A and UPD_VEHI_B update a matching report in table VEHICLES. If


an error occurs both issue a message of type X. If no error occurs only
UPD_VEHI_A issues a message of type X. If no error occurs UPD_VEHI_A issues
a message of type I.

UPD_TRAN_A and UPD_TRAN_B create a single record in table TRANSPORT. If


an error occurs both issues a message of type X. If no error occurs only
UPD_TRAN_A issues a message of type I.

Which of the following function module calls ensures a single logical unit of
work?
Please choose the correct answer.

Response:

1. UPD_TRAN_B
2. UPD_VEHI_B

1.UPD_VEHI_A
2.UPD_TRAN_A

1.UPD_VEHI_A
2.UPD_TRAN_B

1. UPD_TRAN_A
2. UPD_VEHI_B

Question: Score 0 of 1

Which parameter types can be used in the signature of a functional method?


There are 2 correct answers to this question.

Response:

http://www.erpprep.com/node/13104/myresults/704556 21/34
7/12/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Full | ERPPrep

EXPORTING

CHANGING

RETURNING

IMPORTING

Question: Score 0 of 1

You have created the following repository objects:

- A class with an event definition


- A handler class with a method ON_EVT which handles this event
- A report that instantiates the handler class

The report does not react to the event.

How do you analyze this issue?


There are 3 correct answers to this question.

Response:

Check if the event is triggered by setting a breakpoint at the RAISE EVENT


statement

Check if the event is triggered by setting a breakpoint at the MESSAGE … RAISING


statement.

Check if the handler method ON_EVT is defined in a subroutine of the report.

Check if the implementation of the handler method ON_EVT contains the correct
logic

Check if the handler method is registered

Question: Score 1 of 1

Where can you define global data types that are visible system-wide?
There are 3 correct answers to this question.

Response:

In a method of a global class

http://www.erpprep.com/node/13104/myresults/704556 22/34
7/12/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Full | ERPPrep

In the ABAP Dictionary

In a global class

In a global interface

In a function module

Question: Score 0 of 1

Which must a search help do?


There are 4 correct answers to this question.

Response:

Determine the values for selection by the user

Be used from a screen

Have a dialog with the user

Allow the user to select a response

Use a table or a view for data selection

Question: Score 0 of 1

What is the SAP recommended naming convention for append structures of


standard SAPtables?
Please choose the correct answer.

Response:

The name of the append structure must start with ZZ or YY.

The name of the append structure must start with ZA.

The components of an append structure should start with Z or Y.

The components of an append structure should start with ZZ or YY.

http://www.erpprep.com/node/13104/myresults/704556 23/34
7/12/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Full | ERPPrep

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 PAI of the screen

In the properties of the related header UI element

In a module called from PBO of the screen

In the attributes of the screen

Question: Score 1 of 1

Which of the following characters is the first of a menu exit function code?
Please choose the correct answer.

Response:

&

Question: Score 0 of 1

For a given date(variable lv_date), you want to find all the connections from
Frankfurt to Sydney with exactly one stopover. You want to fly from the
stopover city to Sydney on the same day you arrive in the stopover city.

Table ZFLIGHTS hold the following information about flights.

-flightid: primary key


-cityfrom:departure city
-datefrom: departure date
-timefrom:departure time
-cityto:destination city
-dateto:destination date
-timeto:destination time

http://www.erpprep.com/node/13104/myresults/704556 24/34
7/12/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Full | ERPPrep

Which of the following Open SQL Queries can you use to find all the possible
stopover cities?

Please choose the correct answer.

Response:

SELECT DISTINCT cityfrom INTO TABLE lt_cities FROM zflights AS destination


WHERE cityfrom IN (SELECT cityto FROM zflights WHERE dateto =
destination~datefrom AND timeto < destination~timefrom AND cityfrom =
‘FRANKFURT’ AND datefrom = lv_date ) AND destination~cityto = ‘Sydney’

SELECT cityfrom INTO TABLE lt_cities FROM zflights AS destination WHERE cityto
IN (SELECT DISTINCT cityfrom FROM zflights WHERE dateto =
destination~datefrom AND timeto < destination~timefrom AND cityfrom =
‘FRANKFURT’ AND datefrom = lv_date ) AND destination~cityto = ‘Sydney’

SELECT DISTINCT cityto INTO TABLE lt_cities FROM zflights AS destination


WHERE cityfrom IN (SELECT cityto FROM zflights
WHERE dateto = destination~datefrom AND
timeto < destination~timefrom AND
cityfrom = ‘FRANKFURT’ AND
datefrom = lv_date )
AND destination~cityto = ‘Sydney’

SELECT cityto INTO TABLE lt_cities FROM zflights AS destination


WHERE cityfrom IN (SELECT DISTINCT cityto FROM zflights
WHERE dateto = destination~datefrom AND
timeto < destination~timefrom AND
cityfrom = ‘FRANKFURT’ AND
datefrom = lv_date )
AND destination~cityto = ‘Sydney’

Question: Score 0 of 1

Which of the following rules must you follow when creating subscreens?

There are 2 correct answers to this question.

Response:

Subscreens CANNOT have a field of type OK.

Subscreens can have a dialog module containing SET PF-STATUS.

Subscreens CANNOT have an AT EXIT-COMMAND module.

Subscreens can call other subscreens.

http://www.erpprep.com/node/13104/myresults/704556 25/34
7/12/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Full | ERPPrep

Question: Score 0 of 1

You need to create a piece of code that can be used by multiple programs. Which
of the following techniques for modul arization does SAP recommend?

There are 2 correct answers to this question

Response:

A method in a local class

A subroutine in a program

A function module in a function group

A method in a global class

Question: Score 1 of 1

What is the default selection screen number for the ABAP program?
Please choose the correct answer.

Response:

1100

1000

100

None of the above

Question: Score 0 of 1

Which of the following controller types can exist only once in a Web Dynpro
component?

There are 2 correct answers to this question.

Response:

Component controller

http://www.erpprep.com/node/13104/myresults/704556 26/34
7/12/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Full | ERPPrep

View controller

Configuration controller

Window controller

Question: Score 0 of 1

When are the changes to the VB* table transferred to the database?
Please choose the correct answer.

Response:

When an update function module is executed

When the main program is executed

When the enqueue work process is executed

When the update work process is executed

Question: Score 1 of 1

can you search for suitable classic Business Add-Ins(BAdIs)?

There are 2 correct answers to this question

Response:

Search for suitable entries in the relevant component in the Implementation Guide
(IMG)

Search in the Repository Information System and choose Enhancements -


>Customer Exits

Search in an application program for the method GET_INSTANCE of class


CL_EXITHANDLER

Use the SAP menu Tools -> ABAP Workbench -> Development -> Business Object
Builder

Question: Score 0 of 1
http://www.erpprep.com/node/13104/myresults/704556 27/34
7/12/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Full | ERPPrep

Which statements are allowed for processing internal tables?


There are 3 correct answers to this question.

Response:

DELETE

SELECT

INSERT

UPDATE

MODIFY

Question: Score 1 of 1

Why should you bundle database updates in your dialog programs?


Please choose the correct answer.

Response:

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

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

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

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

Protected event and public handler

Public event and protected handler

http://www.erpprep.com/node/13104/myresults/704556 28/34
7/12/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Full | ERPPrep

Private event and private handler

Question: Score 1 of 1

To benefit from the hash algorithm when accessing a hashed internal table, how
do you specify the key?

Please choose the correct answer.

Response:

Fully qualified

Any key

Under-qualified

Left aligned, gap free

Question: Score 0 of 1

Which statements are true about a class that has granted friendship to another
class?

There are 4 correct answers to this question.

Response:

The friend has access to public attributes.

All classes that inherit from the friend (subclasses) also have the same access.

The friend has access to protected attributes.

The friend has access to private attributes.

All classes the friend has granted friendship access status to also have the same
access.

Question: Score 0 of 1

http://www.erpprep.com/node/13104/myresults/704556 29/34
7/12/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Full | ERPPrep

Which of the following generic types can you use to define a field symbol that
will be assigned to a character string?

There are 3 correct answers to this question

Note: Answers of this question are not verified by our experts, please study yourself and
select the appropriate answers.

Response:

Type xsequence

Type any table

Type clike

Type csequence

Type any

Question: Score 1 of 1

The Internet Communication Manager (ICM)…


Please choose the correct answer.

Response:

Replaced SAP ITS.

Allows the ABAP stack and the Java stack to exchange data.

Allows SAP NetWeaver Application Server to process HTTP requests.

Can not replaced SAP ITS.

Question: Score 0 of 1

What are characteristics of a hashed internal table?

There are 2 correct answers to this question.

Response:

It must have a unique key.

It can have a non-unique key.


http://www.erpprep.com/node/13104/myresults/704556 30/34
7/12/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Full | ERPPrep

It can be accessed using the key.

It can be accessed using the index.

Question: Score 0 of 1

Which class is used to define a reference for an instance of the ALV Object
Model?

Please choose the correct answer.

Response:

Class CL_SALV_TABLE

Class CL_GUI_BDC_GRID

Class CL_GUI_CUSTOM_CONTAINER

Class CL_GUI_ALV_GRID

Question: Score 1 of 1

You use Unified Modelling language (UML) to design your classes. You want to
describe the message exchange between objects. Which diagram can you use?

Please choose the correct answer.

Response:

Object diagram

Class diagram

Component diagram

Sequence diagram

Question: Score 0 of 1

Which of the following is a true statement?


There are 3 correct answers to this question.

http://www.erpprep.com/node/13104/myresults/704556 31/34
7/12/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Full | ERPPrep

Response:

Repository objects and cross-client customization objects are assigned to the


workbench request.

Inactive objects can be transported.

Client-specific customization objects are assigned to the customizing request.

All transportable objects have to be assigned to a package.

Local repository objects can be transported.

Question: Score 1 of 1

Which assignment will lead to a conversion error?


Please choose the correct answer.

Response:

A type C data object with the value '123' to a type C data object with length 2
DATA.gv_c3(3) TYPE c VALUE '123', gv_c2(2) TYPE c. gv_c2 = gv_c3.

A type C data object with the value '1.50E4' to a type I data object DATA.gv_c(6)
TYPE c VALUE '1.50E4', gv_i TYPE i. gv_i = gv_c.

A type P data object to a type F data object DATA.gv_p TYPE p VALUE '15000', gv_f
TYPE f. gv_f = gv_p.

An XSTRING type data object to a STRING type data object DATA.gv_xstring TYPE
xstring, gv_string TYPE string. gv_xstring = 'AF00'. gv_string = gv_xstring.

Question: Score 0 of 1

Function modules provide which types of parameters?


There are 4 correct answers to this question.

Response:

Exceptions

Input

http://www.erpprep.com/node/13104/myresults/704556 32/34
7/12/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Full | ERPPrep

Output

Input/output (changing)

Return values

Question: Score 0 of 1

Each work process is assigned a type of task that can be performed. Which
statements related to this are true?

There are 3 correct answers to this question.

Response:

A work process can communicate directly with an external system through a


Remote Function Call.

All work processes have the same structure.

All work processes communicate with the database.

It is possible to have multiple enqueue work processes on an SAP NetWeaver


Application Server.

To switch a work process type requires a restart of the SAP NetWeaver Application
Server ABAP.

It is possible to have multiple spool work processes on an ABAP application server.

All work processes communicate with the dispatcher.

Question: Score 0 of 1

Which of the following statements are true?


There are 2 correct answers to this question.

Response:

A conversion routine can be assigned to a data element.

A conversion routine can be assigned to a domain.

You define the value range in the data element.


http://www.erpprep.com/node/13104/myresults/704556 33/34
7/12/2018 SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50 - Full | ERPPrep

You can enter documentation for the data element in the ABAP Dictionary.

Question: Score 0 of 1

Which of the following standard types is numeric?


There are 3 correct answers to this question.

Response:

Decfloat32

Money Back Guarantee Testimonial FAQs Privacy Policy Terms and Conditions About Us Join Us
Contact Us

http://www.erpprep.com/node/13104/myresults/704556 34/34
1Question:

When is an ENDSELECT not required for a SELECT?


There are 3 correct answers to this question.

Response:

When you specify into a table

When you do a SELECT SINGLE

When you specify appending a table

When you specify a join of tables

When the FROM is a view

Score 1 of 1

2Question:

You display the content of an internal table using an ALV grid control. The content of the
internal table changes during the program. Which CL_GUI_ALV_GRID class method can you use
to display the changed content?

Please choose the correct answer.

Response:

SET_TABLE _FOR_FIRST_DISPLAY in module PBO

REFRESH_TABLE_DISPLAY in module PBO

SET_TABLE_FOR_FIRST_DISPLAY in module PAI

REFRESH_TABLE_DISPLAY in module PAI

Score 1 of 1

3Question:

Which of the following controller types can exist only once in a Web Dynpro component?

There are 2 correct answers to this question.

Response:

View controller

Configuration controller

Component controller
Window controller

Score 1 of 1

4Question:

In the CALL CUSTOMER-FUNCTION 'nnn' statement, nnn is a three-digit number used in SAP
programs for which of the following types of enhancement?

Please choose the correct answer.

Response:

Business add-ins

New BAdIs

Customer exits

User exits

Score 0 of 1

5Question:

Which of the following data types are predefined ABAP data types?

There are 3 correct answers to this question.

Response:

XSTRING

STRING

DECFLOAT34

DECIMALS

FLOAT

Score 0 of 1

6Question:

You want to use a BAdI to extend the functions of an SAP program. Which of the following
tasks is necessary?

Please choose the correct answer.

Response:

Call the BAdI


Implement a class that implements the BAdI interface.

Define an interface for the BAdI.

Create an enhancement project using a customer exit.

Score 1 of 1

7Question:

Which options are available for a JOIN in ABAP Open SQL?

There are 3 correct answers to this question

Response:

CROSS JOIN

FULL JOIN

LEFT OUTER JOIN

INNER JOIN

RIGHT OUTER JOIN

Score 1 of 1

8Question:

Which of the following conditions must be fulfilled when using a GROUP BY clause in a SELECT
statement?

There are 2 correct answers to this question.

Response:

The SELECT statement must also have a WHERE clause.

The fields after GROUP BY must have a character type.

All fields in the SELECT clause that are not part of an aggregate function must be listed after GROUP
BY.

The table in the FROM clause must be a transparent table.

Score 0 of 1

9Question:

What process is used to establish the automatic transport of data between the view controller's
context-attributes and the UI element in its layout?

Please choose the correct answer.

Response:
View assembly

Context mapping

Data binding

Data migration

Score 1 of 1

10Question:

After which statement will the runtime system initialize the ABAP memory
Please choose the correct answer.

Response:

SUBMIT… AND RETURN

LEAVE TO TRANSACTION

CALL TRANSACTION

SUBMIT

11Question:

An executable ABAP program contains a standard selection screen and uses the event blocks
AT SELECTION SCREEN, AT SELECTION-SCREEN OUTPUT, INITIALIZATION, START-
OFSELECTION.

In which sequence will ABAP runtime call these event blocks?

Please choose the correct answer.

Response:

1. INITIALIZATION
2. AT SELECTION-SCREEN
3. AT SELECTION-SCREEN OUTPUT
4. START-OF-SELECTION

1. INITIALIZATION
2. AT SELECTION-SCREEN OUTPUT
3. START-OF-SELECTION
4. AT SELECTION-SCREEN

1. INITIALIZATION
2. AT SELECTION-SCREEN OUTPUT
3. AT SELECTION-SCREEN
4. START-OF-SELECTION

1. AT SELECTION-SCREEN OUTPUT
2. INITIALIZATION
3. AT SELECTION-SCREEN
4. START-OF-SELECTION

12.The USER has the following fields: ID, FIRST_NAME, LAST_NAME. FIRST_NAME, LAST_NAME
have the same basic type and length. You want to compare fields FIRST_NAME, LAST_NAME to
each other.

Which of the following SELECT statements can you use?

There are 2 correct answers to this question.

Response:

SELECT*FROM users INTO TABLE It_users WHERE first_name = users last_name

SELECT*FROM users AS a INTO TABLE It_users WHERE a first_name = last_name.

SELECT*FROM users AS a INTO TABLE It_users


WHERE a»first_name = a»last_name

SELECT*FROM users INTO TABLE It_users


WHERE first name = users »last_name.

13.You want to translate dynamic text in a web dynpro. From which abstract class should you
inherit?

Please choose the correct answer.

Response:

CL_WD_COMPONENT_ASSISTANCE

CL_WD_CONTEXT_SERVICES

CL_WD_CONFIGURATION_MODEL

CL_WD_COMPONENT_SERVICES

14.What is the Web Dynpro programming model is based on?


Please choose the correct answer.

Response:

Business Server Pages (BSPs)

Internet Transaction Server (ITS)

Classic Dynpro programming

Model View Controller (MVC)

15Question:

You need to perform a downcast. What should you do?


There are 2 correct answers to this question.

Response:

Assign a subclass reference to a superclass reference.

Use the operator “=“.

Perform the downcast only if an upcast has already been done for the object reference.

Catch the exception CX_SY_MOVE_CAST_ERROR.

16.When starting the Debugger, what circumstance causes the runtime


error DEBUGGING_NOT_POSSIBLE?

Please choose the correct answer.

Response:

When more than six sessions are already associated with this login user

When more than five sessions are already associated with this login user

When the number of debugging sessions on the server exceeds the value defined by the profile
parameter rdisp/wpdbug_max_no

Starting a non-exclusive mode in a productive system

17Question:

What are characteristics of a hashed internal table?

There are 2 correct answers to this question.

Response:

It can be accessed using the index.

It must have a unique key.

It can have a non-unique key.

It can be accessed using the key.

18Question:

The order of fields for a transparent table in the database…


Please choose the correct answer.

Response:
Is created in the order of the Data Dictionary.

Is allowed to be different than the ABAP Dictionary.

Needs to match the ABAP Dictionary.

Is created in the order of the ABAP Dictionary.

19Question:

Which of the following functions does the ABAP Dispatcher perform?

There are 2 correct answers to this question.

Response:

It communicates with other instances in the system.

It distributes user requests among available work processes.

It directs HTTP requests from an SAP system to a web server.

It enables communication between SAP systems and external application systems.

20Question:

You want to define data structures to hold two fields with data elements s_carr_id and
s_carrname. Which of the following declarations can be used to define this data structure?

There are 2 correct answers to this question.

Response:

TYPES: BEGIN OF gs_flight,

TYPES: BEGIN OF gty_flight

DATA BEGIN OF gs_flight,

DATA: BEGIN OF gs_flight,

21Question:

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:
CO (contains only)

EQ (equals)

GT (greater than)

CP (covers pattern)

LIKE (fits pattern)

Score 1 of 1

22Question:

Your colleague has asked you to analyze and ABAP program that does not behave correctly
when a button is pressed on the initial screen. You want to start Debugger when the button is
pressed so that you can perform your analysis.

What do you type in the command field?


Please choose the correct answer.

Response:

/n

/hx

/h

Jdbg

23Question:

Which of the following rules must you follow when creating subscreens?

There are 2 correct answers to this question.

Response:

Subscreens can have a dialog module containing SET PF-STATUS.

Subscreens CANNOT have an AT EXIT-COMMAND module.

Subscreens can call other subscreens.

Subscreens CANNOT have a field of type OK.


24Question:

Which data type is allowed for the reference field of the Currency field?
Please choose the correct answer.

Response:

CURR

UNIT

CUKY

DEC

25Question:

Which of the following statements are true?


There are 2 correct answers to this question.

Response:

A conversion routine can be assigned to a data element.

You can enter documentation for the data element in the ABAP Dictionary.

A conversion routine can be assigned to a domain.

You define the value range in the data element.

26Question:

Which of the following structures is created when you use a table type to define one of its
components?

Please choose the correct answer.

Response:

Deep structure

Nested structure

Append structure

Flat structure

27Question:

What must you do to define a database view using the ABAP Dictionary?
There are 3 correct answers to this question.

Response:
Define selection criteria for the view.

Choose the database tables from where the view acquires data.

Define the join conditions between the tables.

Define buffering settings for the underlying database tables.

Choose the fields from the tables that should be part of the view.

28Question:

Which of the following steps are required to set up a shared memory area?
There are 3 correct answers to this question.

Response:

Enable multiple versions of an area root class

Set the root object

Call the attach_for_write method of area root class

Generate an area root class

Declare a catalog object

Score 1 of 1

29Question:

Which of the following ABAP statements throws an error at the syntax check?
Please choose the correct answer.

Response:

DATA variable(5) TYPE p.

DATA variable(5) TYPE n.

DATA variable(5) TYPE t.

DATA variable

Score 1 of 1

30Question:
dbtab is a transparent table. What is declared by the following statement? DATA myvar TYPE
dbtab.

Please choose the correct answer.

Response:

An internal table

A reference to an internal table

An elementary field

A structure variable

31Question:

Each ABAP program starts with an introductory statement. Which statements are correct?

There are 2 correct answers to this question.

Response:

The introductory statement must never be modified.

The introductory statement can be modified.

The introductory statement must be the first line in the program.

The introductory statement must be the first statement in the program.

32Question:

Which options do you have to read data from multiple tables while using a SELECT statement?
There are 3 correct answers to this question.

Response:

Join statements

Nested select statements

Nested loop statements

Pooled tables

Database views

33Question:

What is the purpose of the enqueuer work process?


Please choose the correct answer.

Response:

It translates Open SQL statements

It processes update requests

It processes user entries

It manages logical locks in the lock table

34Question:

Which of the following statements are true?


There are 3 correct answers to this question.

Response:

Implicit enhancement can be used to enhance SAP objects developed prior to SAP NetWeaver 7.0.

None of the above.

Implicit enhancement options allow you to enhance interface parameters for function modules and
methods without modifying the repository object.

An implicit enhancement point can be used to insert code in an SAP program and is always available to
the customer.

35Question:

Which of the following features do you have to consider when you use shared objects?
There are 3 correct answers to this question.

Response:

Concurrent write accesses are supported

Data is saved as tables of objects

Data is saved as attributes of objects

Concurrent read accesses are supported

Memory bottlenecks result in runtime errors and have to be caught

36Question:

The Internet Communication Manager (ICM)…


Please choose the correct answer.

Response:
Allows SAP NetWeaver Application Server to process HTTP requests.

Can not replaced SAP ITS.

Replaced SAP ITS.

Allows the ABAP stack and the Java stack to exchange data.

37Question:

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:

INITIALIZATION

AT SELECTION-SCREEN

END-OF-SELECTION

START-OF-SELECTION

38Question:

You are using the new debugger and you want to change the content of an internal table.
Which actions are allowed?
There are 3 correct answers to this question.

Response:

Change row content and press Enter (<ENTER>).

Delete the selected rows.

Delete the entire contents of a table.

Delete table from memory.

Change row content and press Save (<CTRL> + S).

39Question:

What do enhancement spots manage?

There are 3 correct answers to this question

Response:

Classic BAdIs
Explicit enhancement points

Implicit enhancement points

Explicit enhancement sections

New BAdIs

40Question:

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

Response:

LxxxxUXX

LxxxxF01

LxxxxO01

LxxxxTOP

41.Value help can be supplied from which of the following?

Please select all the correct answers that apply.

Response:

Fixed values

Search help for table or structure fields

Search help for a screen field

Process On Value request

Key values of a check table

Search help for a data element

Search help from a text table

Search help for a check table


42Question:

ABAP is a programming language that…


There are 4 correct answers to this question.

Response:

Executes on all three levels of the three-tier architecture.

Processes and formats data.

Separates program code from language text.

Interacts with the user.

Controls the business logic.

43Question:

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 a friend class

From a child class

From the class itself

From a parent class

From any protected class

44.Question:

Which of the following types of SQL statements always bypass the SAP table buffers?
There are 2 correct answers to this question.

Response:

SELECT … UP TO 1 ROW

SELECT … INNER JOIN…


SELECT SINGLE

SELECT SUM (sales)

45Question:

You are asked to enhance the GUI status of an SAP standard application How do you identify
which menu exit function code you can use?

Please choose the correct answer.

Note: Answers of this question are not verified by our experts, please study yourself and select the
appropriate answers.

Response:

It start with a plus (+)

It starts with a dollar($)

It starts with an asterisk (*)

It starts with an ampersand (&)

46Question:

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 private handler

Protected event and public handler

Public event and protected handler

Private event and public handler

47Question:

How do you embed a subscreen in a main screen?


Please choose the correct answer.

Response:

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

Use SET SUBSCREEN in a PBO module of the main screen.

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


Use CALL SUBSCREEN in a PBO module of the main screen

48Question:

Which actions release a database lock?


There are 7 correct answers to this question.

Response:

A CALL TRANSACTION

ENQUEUE_

COMMIT WORK

ROLLBACK WORK

The display of a dialog message type E

The display of an SAP screen

The display of a dialog message type A

An “/n” in the command field

DEQUEUE_

A call to a function module

A SUBMIT

Score 0 of 1

49Question:

You have created a Web Dynpro view that shows data for airline connections between cities.
You want to display flight data for a specific date in a different view after the user select a date
and presses a button. Which of the following actions you must perform?

There are 2 correct answers to this question.

Response:

Set the interface property for key fields

Add a client-side event in the view

Edit the handler method in the view controller

Create and link plugs between the views


50.Which elementary field types are considered a character type?

There are 5 correct answers to this question.

Response:

STRING

XSTRING
X
51Question:

Which of the following are incorrect statements?


There are 2 correct answers to this question.

Response:

TYPES: date_ty TYPE D LENGTH 10.

TYPES: werks TYPE C LENGTH 4.

TYPES: Str TYPE STRING LENGTH 20.

TYPES: carrid_ty LIKE spfli-s-carr_id.

52Question:

You are writing an ABAP declaration using the data element S_CARR_ID.

Which of the following statements correctly define a data object?

There are 2 correct answers to this question

Note: Answers of this question are not verified by our experts, please study yourself and select the
appropriate answers.

Response:

DATA gv_id TYPE s_carr_id

DATA gv_id TYPE s_carr_id DEFAULT ‘QF’


DATA gv_id LIKE s_carr_id

CONSTANTS gc_qf TYPE s_carr_id VALUE ‘QF’

A,d may be

53Question:

Which action on the underlying dictionary objects triggers a database table conversion?
Please choose the correct answer.

Response:

Inserting a field of type reference

Inserting an APPEND structure

Changing the order of non-key fields

Reducing the size of the field.

54Question:

Each button on a Dynpro (screen) requires the assignment of a function code. This function
code…

Please choose the correct answer.

Response:

Prevents the function code from be assigned to a menu item.

Prevents the function code from be assigned to a category item.

Can be used to identify when the button is clicked by looking for the function code in the screen’s
OK_CODE field.

Is used to define global variables that receive a value when the button is clicked.

55Question:

FORM routines (subroutines) can be used in which program types?

There are 4 correct answers to this question.

Response:

Module pools

Interface pools

Subroutine pools
Function groups

Type groups

Executables

Class pools

56Question:

Which of the following steps are required to set up a shared memory area?
There are 3 correct answers to this question.

Response:

Declare a catalog object

Enable multiple versions of an area root class

Set the root object

Call the attach_for_write method of area root class

Generate an area root class

Score 1 of 1

57Question:

Which of the following statements are correct?


There are 4 correct answers to this question.

Response:

Only public methods can be addressed outside the class.

Static methods can be defined in both the public and private visibility section of the class.

Class methods assigned to the public visibility section can be accessed outside the class using the
static component selector and the class name.

You can call private methods within the public methods without reference to the object or class.

None of the above

58Question:

The following piece of code is used

DATA: def TYPE abc,


Ghi LIKE xyz.
Which of the four elements are data types and which are data objects?
Please choose the correct answer.

Response:

abc - data type


def, ghi ,xyz - data objects

abc - data type


def, ghi - data objects
xyz - data type or data objects

abc, xyz - data type


def, ghi - data objects

def, ghi - data objects


abc, xyz - data type or data object

59Question:

How is an ABAP program with several dialog steps executed?


Please choose the correct answer.

Response:

The program is always executed in just one dialog work process without roll out

The program is always executed in just one dialog work process with roll out.

The ABAP dispatcher takes over the entire execution without assigning any work process.

Usually, dialog steps are assigned to different dialog work processes.

60Question:

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:

Create the BADI implementation

Write code for methods

Modify the adapter class

Activate the enhancement project

61Question:

Identify the ways to map context structures.


There are 2 correct answers to this question.

Response:
Direct context mapping

Dynamic context mapping

External context mapping

Static context mapping

Score 0 of 1

62Question:

What is the allowed length of the ABAP Dictionary data type DF34_RAW?
Please choose the correct answer.

Response:

The allowed length is between 1 and 34 digits.

The allowed length is between 0 and 33 digits.

The allowed length is 34 digits.

The allowed length is between 1 and 31 digits.

63Question:

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 a child class

From a friend class

From the class itself

From a parent class

From any protected class

Score 1 of 1

64Question:

Which of the following enhancement options does not require any preparation from SAP?
Please choose the correct answer.

Response:
Explicit enhancement sections

Explicit enhancement point

New BAdIs

Implicit enhancement point

Score 0 of 1

65Question:

Which of the following tools belong to the ABAP Workbench?


There are 3 correct answers to this question.

Response:

Class Builder

Easy Access Menu

Function Builder

Form Builder

Screen Painter

Score 1 of 1

66Question:

You have located a new (kernel) Business Add-in(BAdI) in an SAP standard application?

What must you create to implement the BAdI, and in which order?

Please choose the correct answer.

Note: Answers of this question are not verified by our experts, please study yourself and select the
appropriate answers.

Response:

- Enhancement Project
- BAdI Implementation

- BadI Implementation
- Enhancement Project

- Enhancement Spot Implementation


- BAdI Implementation

- BAdI Implementation
- Enhancement Spot Implementation

Score 1 of 1
67Question:

Which of the following are true statements?


There are 3 correct answers to this question.

Response:

The technical attributes of the data element can be defined by a domain, that is, the data type, the
field length, and the number of decimal places.

Field labels are defined for the domain.

Reference data types can be used to define the data type of the data element.

You can also select predefined data types to define the data type of the data element.

Score 1 of 1

68Question:

Which selection screen elements allow user input in ABAP Reports?

There are 2 correct answers to this question

Response:

SELECT-OPTIONS

SELECTION-SCREEN COMMENT

SELECTION-SCREEN BLOCK

PARAMETERS

Score 1 of 1

69Question:

Where are fixed values for fields stored?


Please choose the correct answer.

Response:

Table

Field

Data element

Structure

Domain

Score 0 of 1
70Question:

Which type of transport task is used when you modify SAP standard objects?
Please choose the correct answer.

Response:

Development/Correction

Workbench

Repair

Transport of copies

Score 0 of 1

71Question:

You define a generic variable that can hold the ABAP types C, D, N, STRING, and T. You want to
restrict the use of other ABAP types. Which generic data type must you use in the definition?
Please choose the correct answer.

Response:

SIMPLE

CLIKE

DATA

CSEQUENCE

72Question:

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 a module called from PAI of the screen

In the properties of the related header UI element

In the attributes of the screen

73Question:

What is the default length of the type P data type?


Please choose the correct answer.

Response:
64

1-16

Score 1 of 1

74Question:

You want to select data from two tables and store the result in as structure.

Table PARTNER contains the fields PART_ID and KIND.


Table CONTRACT contains the fields CONT_ID, CONT_TYPE and DIVISION.
The structure is defined as follows
DATA: BEGIN OF wa_result,
Part_id type partner-part_id, cont_id type contract-cont_id,
Cont_type TYPE contract-cont_type,
END of wa_result,
Lt_result type table of wa_result.

How can you replace the following SELECT statement with an outer join?

SELECT part_id from partner INTO wa_result WHERE kind = ‘Residential’.


SELECT cont_id from CONTRACT into wa_result-cont_id WHERE part EQ
wa_partner-part_id And DIVISION eq ‘Water’.
Append wa_result to lt_result.
ENDSELECT.
If sy-subrc<>0. CLEAR wa_result-cont_id
APPEND wa_result TO lt_result. ENDIF.
ENDSELECT.

Please choose the correct answer.

Response:

SELECT part_idcont_id from partner AS A LEFT JOIN contract AS b ON a~part_id = b~part_id

AND b~division EQ ‘Water’ INTO TABLElt_result WHERE kind = ‘Residential’

SELECT part_idcont_id from partner LEFT JOIN contract on partner-part_id = contract-part_id

AND contract-division EQ ‘Water’ INTO TABLE lt_result WHERE kind EQ ‘Residential’.

SELECT part_idcont_id from partner LEFT JOIN contract on partner-part_id = contract-part_id

AND partner-kind EQ ‘Residential’ INTO CORRESPONDING FIELDS OF TABLE lt_result

WHERE division eq ‘Water’.

SELECT part_idcont_id from partner AS A LEFT JOIN contract AS b ON a~part_id = b~part_id

INTO CORRESPONDING FIELDS OF TABLE lt_result WHERE kind = ‘Residential’ and

AND division EQ ‘Water’.

75Question:
Each work process…
There are 3 correct answers to this question.

Response:

Uses a pool of database connections established when the SAP NetWeaver Application Server ABAP
started.

Can only make database changes within a single database LUW.

Can make database changes spanning multiple database LUWs.

Uses a database connection to a work process established when the SAP NetWeaver

Application Server ABAP started.

Is independent of other work processes.

76Question:

What is the ALV Object Model?


Please choose the correct answer.

Response:

A group of classes that apply Grid as a whole and inherit from a multiple class

A group of hierarchal classes that describe the ALV Grid as a whole but do not inherit from a single
class

A group of classes that describe the BDC Grid as a whole and inherit from a single class

A group of classes that describe the ALV Grid as a whole and inherit from a single class

77Question:

Which statements are true about a class that has granted friendship to another class?

There are 4 correct answers to this question.

Response:

All classes the friend has granted friendship access status to also have the same access.

The friend has access to private attributes.

The friend has access to protected attributes.

The friend has access to public attributes.

All classes that inherit from the friend (subclasses) also have the same access.

78Question:
You have 2 objects: O1 of type class C1 and O2 of type class C2.

Class C2 is a subclass of class C1. Which of the following statements implements an up cast?

Please choose the correct answer.

Response:

O2 ?= O1.

MOVE O1 ?TO O2.

O1 = O2.

MOVE O1 TO O2.

79Question:

Which of the following types of SQL statements always bypass the SAP table buffers?
There are 2 correct answers to this question.

Response:

SELECT … UP TO 1 ROW

SELECT … INNER JOIN…

SELECT SUM (sales)

SELECT SINGLE

80Question:

Which statements about ABAP are true?


Please choose the correct answer.

Response:

Each statement cannot begin with a keyword.

Each statement must begin with a keyword.

ABAP keywords and additions must be in uppercase.

Each statement must end with a period.

81Question:

What is the difference between SAP Basis and SAP NetWeaver?


Please choose the correct answer.

Response:
All versions of SAP NetWeaver include the ability to handle HTTP requests.

There is no difference; the name change was driven by marketing alone.

All versions of SAP NetWeaver require the use of UTF-8.

All versions of SAP NetWeaver require the use of Unicode.

82Question:

What is the result of the following arithmetic operation?

DATA: intTYPEI.
int=5*(3/10).

Please choose the correct answer.

Response:

1.5

83Question:

Which of the following customer modifications options are available in the table maintenance
generator?

There are 2 correct answers to this question.

Response:

Append searches

Maintenance screens

Search helps

Events

84Question:

Which of the following statements are true?


There are 3 correct answers to this question.

Response:
Implicit enhancement options allow you to enhance interface parameters for function modules and
methods without modifying the repository object.

None of the above.

An implicit enhancement point can be used to insert code in an SAP pro- gram and is always availabl
to the customer.

Implicit enhancement can be used to enhance SAP objects developed prior to SAP NetWeaver 7.0.

Score 0 of 1
85Question:

Which assignment will lead to a conversion error?


Please choose the correct answer.

Response:

A type C data object with the value '1.50E4' to a type I data object DATA.gv_c(6) TYPE c VALUE
'1.50E4', gv_i TYPE i. gv_i = gv_c.

A type C data object with the value '123' to a type C data object with length 2 DATA.gv_c3(3) TYPE
VALUE '123', gv_c2(2) TYPE c. gv_c2 = gv_c3.

An XSTRING type data object to a STRING type data object DATA.gv_xstring TYPE xstring, gv_string
TYPE string. gv_xstring = 'AF00'. gv_string = gv_xstring.

A type P data object to a type F data object DATA.gv_p TYPE p VALUE '15000', gv_f TYPE f. gv_f =
gv_p.

86Question:

What is a plug?
There are 4 correct answers to this question.

Response:

Can be defined as a startup

Forms the basis of navigation within a Web Dynpro

Can be defined as an exit

Can be defined as inbound, outbound, or both

Can be defined as default inbound

Can be assigned to multiple views

Can be defined as outbound controlling multiple inbound plugs


Can be defined as inbound and be controlled by multiple outbound plugs

Score 0 of 1
87Question:

What is variable-length structure called?


Please choose the correct answer.

Response:

Flat structure

Nested link structure

Nested structure

Link structure

88Question:

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 an EXPORTING parameters passed by reference.

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

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

89Question:

To generate the function modules for a lock object for a custom table
(ENQUEUE_<lock_object> and DEQUEUE_<lock_object>), which tool would you use?

Please choose the correct answer.

Response:

Text Elements (Transaction SE32)

ABAP Dictionary (Transaction SE11)

Function Builder (Transaction SE37)

Reuse Library (Transaction SE83)

General Table Maintenance Dialog (Transaction SE54)


90Question:

You want to add a field ZZPRICE to the SAP standard transparent table EKKO.

Which of the following actions result in an enhancement of the SAP standard?

There are 2 correct answers to this question.

Response:

Create an append structure and add ZZPRICE to it.

Insert ZZPRICE into an SAP structure for the table

Insert ZZPRICE at the end of the table

Add ZZPRICE to the customizing include for the table

Score 0 of 1
91Question:

Which of the following is correct?


Please choose the correct answer.

Response:

None of the above.

The screen attributes can be modified in the PROCESS BEFORE OUTPUT event block.

The screen attributes can be modified in the PROCESS AFTER INPUT event block.

The screen attributes can be modified in the PROCESS BEFORE OUTPUT and PROCESS AFTER INPUT
event blocks.

92Question:

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

Response:

Analyze runtime data.

Perform static code checks

Monitor background tasks

Monitor runtime behavior

Score 0 of 1
93Question:
What types of changes to the repository does SAP provide?
There are 3 correct answers to this question.

Response:

Transports

Deployments from SDN.SAP.COM

Enhancement Packages

Support Packages

SAP Notes

Score 1 of 1
94Question:

What is mandatory for automatic data transport between a variable and an input field on a
classical screen (dynpro)?

Please choose the correct answer.

Response:

The property OUTPUT of the input field must be set.

The variable must be declared using the DATA statement.

The variable must be declared using the TABLES statement.

The name of the variable and the name of the input field must be identical.

Score 0 of 1
95Question:

To benefit from the hash algorithm when accessing a hashed internal table, how do you specify
the key?

Please choose the correct answer.

Response:

Any key

Fully qualified

Left aligned, gap free

Under-qualified
Netweaver 7.5 questions(C_TAW_750)

1>database object create in abap dictionary (2)

a>foreign key relationship


b>index,
c>ldb,
d>views

2>predefined INCOMPLETE abap type (3) (This was repeated twice)

a>x,
b>n,
c>t,
d>p,
e>d

3>which enhancement can provide screen exit (3)

a>explicit enhancement point,


b>explicit enhancement section,
c>new badi,
d>classic badi,
e>customer exit

4>how can you read the line in an internal table (3)

a>specific line index,


b>specific secondary table key,
c>specific where condition,
d>specific free table key
e> regular expression.

5> my_class Definition


public section.
method do_something.
events state_change.
class-methods static1.
private section.
types t_table type standard table of t001 with non-unique key.
constants gc-const type i value 1.
endclass.
Which component of of the class can static method static1 access directly? (2)

a>do_something,
b>gc_constant,
c>t_table,
d>state_change

6>function of abap dispatcher (3)

a>distributes request among wp,


b>saves processing request in the request queue,
c>it requests data from the database or the buffer ,
d>it performs the roll in or roll out of user context,
e>it integrates the presentation layer

7>which of the following can you define in both structure and internal table in abap (2)

a>enhancement category,
b>size category,
c>fk relationship,
d>storage type

8>create data object (3)

a>parameters,
b>types,
c>class,
d>constant,
e>class-data

9>You have been asked to review the following expr’s which processes character strings.
result = find(val = ‘abapABAP’
sub = ‘A’
occ = 2
CASE = ‘X’.....) (1 correct answer)
a>4
b>2
c>1
d>6
10. You want the develop a processes character type data . When you implement the program
, you can either use the classical string statements or the newer string expressions and
functions.

What are the main benefits of using string expressions and string functions ?

Note : There are 2 correct answers to this question.

 You can write that is very easy to read and understand .


 You can improve the performance significantly .
 You can reduce the number of intermediate variables .
 You can write compact syntax instead of long sequence of statements.

11>dictionary can refer domain(1 correct)

Structure

Table type

Data element

12. What can be defined using an implicit enhancement option ?


Note : There are 3 correct answers to this question.

 Additional exceptions in SAP function modules.


 Replacements for SAP function modules.
 Additional parameters in SAP function modules.
 Additional attributes if global SAP classes.
 Overwritten for global SAP methods.

13 how is data shared between web dynpro controlled?(1 correct)

 Using context mapping from view controller to component controller


 Data binding from view to another view
 Using context mapping from view to another view
 Using context mapping from view to custom controller

14. Which of the following action can you perform for breakpoints(1 correct)
A. breakpoint at statement

B. watch point variable

C. create breakpoint spetial message

D.breake point spe line.

15 which addition of parameter statement can be used to input field selected screen on
suggested value (2 correct)

Modified

Default

Value-check

Memory id

16. what must exist before you can create a new transportable function module?(3)

A. Package

B. Functional group

C. Change request

17.Which of the following elements can a string template contain?

• Function method calls

• Function module calls

• Literals

• String processing statements

18.Advantages of modularization.(3)(The options for this was in a statement format)

• A. Reusability
• b. Tranparency
• c. Maintainability
19.What transaction can be used to carry out modification adjustments after a system
upgrade?(2)

A. SPAU

B. SPUA

C. SPDD

D. SPAD

20.What abap statemts can you use to create a instance of class


CL_GUI_CUSTOM_CONTAINER in an ABAP program?(1)(don’t remember the other options)

DATA: go_container TYPE REF TO CL_GUI_CUSTOM_CONTAINER.

CREATE OBJECT go_container.

21.What are the tasks of databse interface?

You write a program that updates a data record in the database using the following the
statements. :

UPDATE scar FROM Is_scarr.

which of the following task daes the database interface perform ... (select 2 )

A. It applies a logical lock to the updated data record.

B. It restrict the access to the log-on clients.


C. It translate the statement to native sql.

D. It checks the outhorization of the current user.

22.What can be a part of the Signature of the instance constructor contain? (select 2)

A. Changing Parameters

B. Import parameters

C. Export parameters.
D. Exceptions
23.which additions to the parameters statement can u use to fill the input field on the
selection screen with a suggested value?

DEFAULT

EX: parameters p1 type i DEFAULT 10.

24.The code of an executable program does not contain any event keywords what event block
does the code belong to?

• INITIALIZATION

• AT SELECTION SCREEN

• START OF SELECTION

• LOAD OF PROGRAM

25.Field symbol assigned to a character.

Which of the following Generic types can you use to define a field symbol that will be assigned
to a character string. ? (select 3 )

A. Type Xsequence

B. Type Clike

C. Type any Table

D. Type any
E. Type csequence

26.Advantages of Open SQL? (select 2)

A. It can be used with any DBMS

B. All standard SQL commands can be used

C Syntax is checked at designed time

27.You created a class by inheriting from a super class. The super class contains a public
instance method do_something. you want to redefine the method?
SIGNATURE CANNOT BE CHANGED

HAS TO BE REDEFINE IN SAME VISIBILITY

28.what processes can we set when you run the code inspector?(options were somewhat
different then these)(3)

• Background job

• Check variant

• Object set name

• Work process name

• Inspection name.

29.What type of method is generated automatically when you assign an action to a button UI
element?

OR.

What type of method is generated by WD explorer when you assign an action to a button UI
element?(question was somewhat the same but not exactly same words were used as given
above but the meaning could be depicted to be the same)

A. EVENT handler

B. Supply function

C. Ordinary methods.

D. Standard hook methods

30. You write a report that displays mass data in a table.You decide to use tha ALV Grid
control (Class CL_GUI_ALV_GRID) instead of a classical list display with write statements.

Which of the following functions can you offer to the user without doing any specific
programming.(2)

• Sort and filter the data by any column.

• Display details by double-clicking on a row.


• Convert currency amount columns.

• Change column width and sequence.

31.In which of the following source code block can you define local data objects? (select 3)

A. Static method

B. Subroutine

C Function module

32.Incomplete data types.(this was repeated once again)


C, N , P, X

33. You need to create a piece of code that can be used by multiple programs. which of the
following techniques for modularization does SAP recommend?(2)

A. A Method in a global interface.(class was replaced by interface)

B. A function module in a function module.

C. A method in a local class

D. A Subroutine in a program

34.In Which order you implement a new Badi?(1)

A. 1.Enhancement spot Implementation

2. BADI Implementation

35.What are the Components of SAP Netweaver AS ABAP 7.1x and higher?(2)

• ICM

• MESSAGE SERVER

• SAP GUI FOR JAVA


• Work Process
36.How will you search for a classical badi in a program?(2)

A. Search the repository information system and chose engancement--> Customar exits.

B. Search for suitable entries in the relevant componant in the implementation guide (IMG).

C. use the sap menue tools--> ABAP work bench --> Development --> buiness object builder.

D. Search in application program for the method GET_INSTANCE of class CL_EXITHANDELER.

37.You have been asked to a customer to develop open SQL code to convert the value of
argument “arg” into the ABAP Dictionary specified.

• CAST ( arg FOR type)

• CASTING (arg AS type)

• CAST(arg AS type)

• CASTING (arg FOR type)

38.Which of the following you can assign a search help.(3)

• Structure component.

• Table type.

• Check table.

• Domain.

• Data element.

39.What happens if the application sends a type E message during the check_CB module
processing?

A. The screen is display again and the PBO flow logic is processed. only field B and C are ready
for input.

B . The screen is display again without processing PBO flow logic. only fields B and C are ready
for input.

C. A. The screen is display again without processing PBO flow logic. All fields are ready for
input.
40.what are the standard hook methods?

OR

Standard hook methods in webdynpro called at Runtime ? (Select 2)(the question could be
depicted to be the same but not exactly the same words)

A. WDDOINIT

B. WDDOEXIT

41.Static constructor rules?(3)(not directly asked as the same but was related to static
constructor)

A. You CANNOT use parameters .

B. You can ONLY define static constructors in the public section

C. You must name the method CLASS_CONSTRUCTOR

D. You can use ONLY importing parameters or exceptions

E. You must name the method CONSTRUCTOR

42.Your program uses the class CL_GUI_ALV_GRID to generate a classic ALV Grid Control
what do you need in your program to react to a double clicking a row in the ALV Grid?(3)

(there was an option somewhat the same as last one with the word double-click event)

• A method call to refresh the display

• A handler class
• A SET HANDLER statement to register the handler to the event.

• A method call to create the event handler.

• A handler method for the double-click event.

43.What are new features of open SQL 7.5?(2)

• Full join

• Case expression
• String expression
• Intersections

44.You define a Database view A and Maintenance View B in the ABAP dictionary.

What restrictions apply to these views.(select 2) (dumps 63)

A. Only B can have either a left outer join or an inner join.

B. The tables joined in B must have foreign key relationship.

C. Only A can be used in the FROM clause of a SELECT statement.

D. The tables joined in A must have foreign key relationship.

45.what are the things that enhancements spot will manage? (3 selection)

A. Classic BADIs

B. Explicit enhancement points

C. Implicit enhancement points

D. Explicit enhancement sections.

E. New BADIs.

46.Exporting parameter named PARAM1 .

You enhance an sap standard global class by defining a post method for an sap method. The
original sap method has an EXPORT parameter named PARAM1.

what parameter does the post-method have? (the question was same in meaning but asked in
different manner)

A. An EXPORT parameter named PARAM1.

B. A CHANGING parameter named PARAM1.

C. AN IMPORT parameter named PARAM1.

D. A RETURNING parameter named PARAM1.

47.You call a lock module which exceptions could the lock module raise when a logical lock
CANNOT be set?
• FOREIGN_LOCK

• SYSTEM_FAILURE

48.In which event block can you overwrite the default value of a parameter field on the
selection screen?

INITIALIZATION

49. What must you do to create a singleton class? (2 select)

A. set the class instantiation to private.

B. Instantiate the class in a static method of class itself.

C. Define the class as abstract.

D. Define the class as final.

50.Which of the elementary data types is deep?

• DECFLOAT34

• N

• X

• STRING

51.How data types can be used throughout the system?

A. In a Method

B. In a function module

C. In the ABAP dictionary.

D. In a global class

52.You build a dialog screen with an input field in an ABAP program.


How do you ensure that the contents of the screen field can be accessed in the program?
• Use a MOVE statement in a PAI module to copy the data to a data object

• Use the GET statement in the program to transport the data from the screen field

• Enter the name of a data object in the Parameter ID attribute of the screen field

• Define a data object in the program with the same name as the screen field

53.A user runs an ABAP program enters an incorrect value on a selection screen and chooses
executes which event block must send the error message in order to display the selection
screen again?

A. At Selection screen

54.Which tables could be use in this code (don’t exactly remember the questions )(3)

Answers sorted table index table and standard table.

55.A customer has asked that you improve performance for a small table with frequency read
access. What buffering do you recommend?

A. FULL

B. PRIMARY KEY

C. GENERIC

D. SINGLE COLUMN

56.Advantages of defining text symbols in executable programs? (select 2)

A. They facilitate multilingual functionality

B. The same text symbol can be used by other program

C. They are easier to maintain than literals

D. They can store upto 256 characters.


57.You want to loop over an itab without copying each table row to a workarea. How can you
achieve this using a field symbol?

LOOP AT ITAB ASSIGINING <FS>

58.(A class is given)Super class definition is given From which components can be addressed
directly from a subclass CLASS lcl_airplane?(this was given in the form of program but
answers are same)

PUBLIC,PROTECTED

59.HOW do you create lock objects and lock modules for use the ABAP program that access
the database ?

A. Use the ABAP dictionary to crate the locl objects. The lock module are created
automatically.

60. where can you defined data types that can be used throughout the system.

A. in method

B. in global CLASS

C. in abap dictionary

D. in functional module

61. You are asked to enhanced the GUI ststus of an Standard application.
How do you identify which menue exit function can you use? (select 1)

A. It starts with a plus (+)

B. It starts with an ampersand (&)

C. Is starts with an asterisk(*)

D. It starts with a dollar($)

62. You have created ZTAB and you want to create a forign key relationship to table SAPTAB
. Under which condition is this possible ?(question was same but words were somewhat
elaborated and even the answers )
Answer-->> BOTH TABLE FIELDS SHOULD HAVE SAME DOMAIN

63. Which of the following can you perform in both ABAP editor and ABAP
debugger?(related to breakpoint) (select 1)

Answer -->>

A. Breakpoint

B. Watchpoint

C. Both breakpoint and watchpoint

64. Purpose of Enqueue process?(context of the question is same but questions and answers in
different format)

Answer -->>LOCK MANAGEMENT

65.purpose of ddic?

(Answers were not direct like tables and views but it was somewhat related to functionality)

66. You have created the following repository objects :

 A class with and an event definition.


 A handler class with a method ON_EVT which handles this event.
 A report that instiates the handler class.

The report does not react to the event .

How do you analyze this issue ?

Note : There are 3 correct answers to this question.

 Check if the handler method is registered .


 Check if the handler method ON_EVT is defined in a subroutine
 Check if the implementation of the handler method ON_EVT contains the correct logic.
 Check if the event triggered by setting a breakpoint at the RAISE EVENT statement.
 Check if the event is triggered by setting a breakpoint at the MESSAGE…..RAISING statement.
67. What is data binding ?
 Connecting an outbound plug of one view to the inbound plug of another view .
 Connecting one Web Dynpro component to another Web Dynpro component.
 Connecting a context node in one controller to a context node in another controller.
 Connecting the values of user interface elements to the context attributes of the
corresponding controller.

68.. You are making changes to a program that already has a transaction code linked to it. Your
colleague is testing the transaction in your development system.
At point can the changed version of the program be tested ?(1)
 When you save the program.
 When you activate the program.
 When you perform a syntax check on the program.

69. After which statement will the runtime system initialize the ABAP memory ?
 LEAVE TO TRANSACTION
 SUBMIT
 CALL TRANSACTION
 SUBMIT….AND RETURN

70. You are writing an ABAP declaration using the datat element S_CARR_ID.
Which of the following statements correctly define a data object ?(2)
Note : There are 2 correct answers to this question .
 DATA gv_id TYPE s_carr_id DEFAULT’QF’.
 DATA gv_id LIKE s_carr_id.
 DATA gv_id TYPE s_carr_id.
 CONSTANTS gc_qf TYPE s_carr_id VALUE’QF'

71. What do you need to consider when creating a secondary index on a table ?
Note : There are 2 correct answers to this question .
 The most frequently selected fields should be at the first positions in the index.
 The table will be updated more quickly if you create more indexes.
 The index can be created for specific database systems only.
 The index must always be unique.

72. An ABAP program processes the following expression r = a/ b + c.


Which of the following data declarations would cause the runtime environment to use fixed-point
arithmetic for the above expression.(options were changed only with data type but r & c must have the
same data type so choose that one and a & b are same as given)
Note : There are 2 correct answers to this question.

 Data : r TYPE F,
a TYPE I VALUE 201.
b TYPE I VALUE 200.
c TYPE f.

 DATA: r TYPE p DECIMALS 2,


a TYPE i VALUE 201,
b TYPE i VALUE 200,
c TYPE f.

 DATA r TYPE p DECIMALS 2.


a TYPE i VALUE 201,
b TYPE i VALUE 200.
c TYPE P.

 DATA : r type p,
a TYPE i VALUE 201,
b TYPE i VALUE 200,
c TYPE i.

73. You define a database view A and a maintanence view B in the ABAP dictionary.

What restrictions apply to these views ?


Note : There are 2 correct answers to this question.

 Only B can hav either a left outer join or an inner join.


 The tables joined in B must have foreign key relationships.
 Only A can be used in the FROM clause of a SELECT statement.
 The tables joined in A must have foreign key relationships.

74. You have to overwrite spaces in a string with the letter ‘ A ‘.


Which of the following statements can you use ?
Note : There are 3 correct answers to this question.

 REPLACE
 SHIFT LEFT
 OVERLAY
 TRANSLATE
CONDENSE

75. You write the following ABAP statement:

SELECT SINGLE carrid connid cityfrom cityto


FROm spfli
INTO gs_spfli
WHERE carrid = pa_car
AND connid = pa_con.
How are the fields in the field list of the SELECT statement copied to the target structure gs_spfli ?
 They are copied from left to right.
 They are copied to fields with the same name .
 They are copied to fields with same type .
 They are copied from right to left.

76. How do you discard update requests ? (3 Options)


 Message type A
 Message type E
 Message type W
 Message type X
 Rollback work
SAP certified Development
Associate C_TAW12_750
SAP Certified Development Associate - ABAP
with SAP NetWeaver 7.50

Thank You for Downloading C_TAW12_750


Updated Exam Questions

https://www.exams4success.com/sap/c_taw12_750-pdf-exam-dumps

https://www.exams4success.com/
Product Questions:
334

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

Question #:1

Which controller types can exist within a Web Dynpro component? There are 3 correct answers to this
question.

A. Window controller

B. View controller

C. User controller

D. Application controller

E. Component controller

Answer: A B E

Question #:2

You can empty the body of the internal table itab with a header line using the CLEAR itab statement.

A. True

B. False

Answer: B

Question #:3

ABAP now has predefined functions that behave like functional methods.

A. FALSE

B. TRUE

Answer: B

Question #:4

What is the allowed length of the ABAP Dictionary data type DF34_RAW?

A. The allowed length is between 1 and 34 digits.

B. The allowed length is 34 digits.

C. The allowed length is between 1 and 31 digits

D.

100% Success with DumpsPedia.com 1 ofthe


99 waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

D. The allowed length is between 0 and 33 digits.

Answer: B

Question #:5

Both the classic Debugger and the new Debugger can be used on all ABAP code without restriction.

A. False

B. True

Answer: A

Question #:6

Which of the following is a true statement? Select all that apply.

A. Repository objects and cross-client customization objects are assigned to the workbench request.

B. All transportable objects have to be assigned to a package.

C. Inactive objects can be transported.

D. Local repository objects can be transported

E. Client-specific customization objects are assigned to the customizing '—' request

Answer: A B E

Question #:7

There can only be one level in the inheritance tree

A. True

B. False

Answer: B

Question #:8

The statements CALL BADI and GET BADI are used for which type of BAdls?

A. Classical BAdl

B. None of the above

100% Success with DumpsPedia.com 2 ofthe


99 waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

C. New BAdl

Answer: C

Question #:9

In a local class, it is possible to declare an instance constructor in all visibility sections of the class.

A. False

B. True

Answer: B

Question #:10

Buffering data can speed access to data up to 100 times when compared to reading it from the database.

A. False

B. True

Answer: B

Question #:11

What does Software Layer Aware Debugging allow you to do? Select all that apply.

A. Trace executing cod

B. Debug only a small portion of code

C. Bypass authorization objects

D. Debug a large portion of code

E. Specify as much or as little code to debug

Answer: B D E

Question #:12

Which of the following features does the ABAP Test Cockpit offer that the ABAP code Inspector does NOT
Offer? There are 2 correct answers to this question.

A. Documented checks

100% Success with DumpsPedia.com 3 ofthe


99 waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

B. Configuration of check variants

C. Flexible schedule of check runs

D. Enhanced distribution of results

Answer: C D

Question #:13

In the technical settings for a transparent table, buffering is switched on and single record buffering is selected.
Which statement uses the buffered data assuming that the WHERE clause contains restrictions for all key

fields? Please choose the correct answer.

A. SELECT ... . ENDSELECT.

B. SELECT ... INTO TABLE ... .

C. SELECT SINGLE ... FOR UPDATE.

D. SELECT SINGLE... .

Answer: D

Question #:14

Which tools can you use to provide input data for the SQL performance tuning work list (Transaction SWLT)?
There are 3 correct answers to this question.

A. Code inspector (transaction SCI)

B. ABAP test cockpit (transaction ATC)

C. Data base performance monitor (transaction DB50)

D. SQL Trace (transaction ST05)

E. SQL monitor (transaction SQLM)

Answer: A B E

Question #:15

Which of the following statements regarding search helps are true? Select all that apply.

A. You can use a database view for the search help selection method.

B.

100% Success with DumpsPedia.com 4 ofthe


99 waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

B. You can use transparent tables for the search help selection method.

C. You can use a maintenance view for the search help selection method.

D. Help views can also be used for the selection method for search help.

Answer: A B D

Question #:16

You cannot use the INSERT statement to insert lines into a standard internal table.

A. False

B. True

Answer: A

Question #:17

The predefined data types are defined locally in the ABAP program.

A. True

B. False

Answer: B

Question #:18

Data types store data and occupy memory.

A. True

B. False

Answer: B

Question #:19

Which of the following statements are correct? Select all that apply.

A. The SELECT-OPTIONS statement creates an internal table with a header line. '—' The internal table is
also known as the selection table.

B. You can only specify default values for the LOW and HIGH fields of the •—I SELECT-OPTIONS input
field.

100% Success with DumpsPedia.com 5 ofthe


99 waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

C. The structure of the selection table created with SELECT-OPTIONS has four •—I components: SIGN,
OPTION, LOW, and HIGH

D. You can use the addition NO-DISPLAY to hide the input field on the selection '—' screen

Answer: A C D

Question #:20

A selection screen can only be defined in an executable program.

A. False

B. True

Answer: A

Question #:21

The system class CL_ABAP_MATH contains constants for maximum and minimum values for the numeric
data type

A. False

B. True

Answer: B

Question #:22

In addition to closing the result set, what does the CLOSE method of the CL_SQL_RESULT_SET class when
using ABAP Database Connectivity (ADBC) do? Please choose the correct answer.

A. Update resources

B. Release resources

C. Update packages

D. Release packages

Answer: B

Question #:23

Which of the following are performance recommendations when using SAP HANA? There are 2 correct

100% Success with DumpsPedia.com 6 ofthe


99 waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

answers to this question.

A. Define indexes on the columns that are used in calculations.

B. Avoid transferring large result sets between database and client applications.

C. Filter data in lower layers.

D. Move data-intensive calculations from the database to an application server.

Answer: B C

Question #:24

The Debugger is entirely self-contained and requires no external transactions.

A. True

B. False

Answer: B

Question #:25

Which statements are true regarding ABAP inheritance? Select all that apply.

A. The static constructor can be overwritten as part of inheritance.

B. You can access the superclass component with the prefix SUPER->.

C. Overloading allows a method to have several definitions with different signatures.

D. Polymorphism requires the developer to specify which method to use with inheritance.

E. The instance constructor can be overwritten as part of inheritance.

F. Static constructors do not need to call the superclass's constructor

G. Instance constructors must call the superclass's constructor.

Answer: B E F G

Question #:26

Which class is used to define a reference for an instance of the ALV Object Model?

A. Class CL_GUI_ALV_GRID

B.

100% Success with DumpsPedia.com 7 ofthe


99 waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

B. Class CL_GUI_CUSTOM_CONTAINER

C. Class CL_SALV_TABLE

Answer: C

Question #:27

You can call the constructor method directly.

A. . True

B. False

Answer: B

Question #:28

What is a plug? Select all that apply.

A. Can be assigned to multiple views

B. outbound, or both

C. Can be defined as default inbound

D. Can be defined as outbound controlling multiple inbound plugs

E. Can be defined as an exit

F. Forms the basis of navigation within a Web Dynpro

G. Can be defined as inbound and be controlled by multiple outbound plugs

H. Can be defined as a startup

Answer: E F G H

Question #:29

What do you need to consider when creating a secondary index on a table? There are 2 correct answers to this
question.

A. The index can be created for specific database systems only

B. The most frequently selected fields should be at the first positions in the index

C. The index must always be unique

100% Success with DumpsPedia.com 8 ofthe


99 waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

D. The table will be updated more quickly if you create more indexes

Answer: B C

Question #:30

Your program performs a data base update by calling function modules in an update task. Which ABAP
statements can be used in the program to discard all update requests for the current SAP logical unit of work

(LUW)?

A. MESSAGE TYPE A

B. MESSAGE TYPE W

C. MESSAGE TYPE

D. ROLLBACK WORK

E. MESSAGE TYPE E

Answer: A C D

Question #:31

Name some perspectives that are available in the SAP HANA Studio? There are 3 correct answers to this
question

A. The technology & innovation perspective

B. The Information perspective

C. The Resources perspective

D. The SAP HANA Modeler perspective

E. The Administration Console perspective

Answer: C D E

Question #:32

Which code-to-data capability supports- Extended view definitions and Better SQL- 92 standard support in
open

SQL?

100% Success with DumpsPedia.com 9 ofthe


99 waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

Please choose the correct answer.

A. SAP HANA specific features

B. Database for sophisticated analysis

C. New SQL parser used in model

D. Database oriented programming model

Answer: D

Question #:33

Explain the Enterprise Information System of - SAP HANA Implementation Scenarios?

There are 3 correct answers to this question

A. HANA Accelerators

B. Business Suite on HANA / BW on SAP HANA

C. All HANA Combinations on one platform

D. HANA Modeling

E. All SAP applications on one SAP HANA platform

Answer: A B E

Question #:34

Dynpros can be placed in which program types? Select all that apply.

A. Module pools

B. Function groups

C. Class pools

D. Executables

Answer: A B D

Question #:35

What is the result of the following arithmetic operation?

100% Success with DumpsPedia.com 10 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

DATA: int TYPE I int = 5 /10 {1 Richtig}

A. 0

B. 5

C. 1

Answer: C

Question #:36

Internal tables cannot have a deep or nested structure in their line type

A. False

B. True

Answer: A

Question #:37

ABAP Push Channels (APC) can only use the WebSocket protocol.

A. False

B. True

Answer: A

Question #:38

How do you define an internal table in a private method of a class? There are 3 correct answers to this
question.

A. DATA It_itab TYPE TABLE OF <Dictionary Table > WITH HEADER LINE

B. DATA It_itabTYPE <Table Type>

C. DATA It_itab TYPE <Dictionary Table>

D. DATA It_itab TYPE TABLE OF <Structure Type>

E. DATA It_itab TYPE TABLE OF < Dictionary Table >

Answer: B D E

100% Success with DumpsPedia.com 11 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

Question #:39

What are the two layers of ABAP system interacts with its database? There are 2 correct answers to this
question.

A. The Client database interface

B. The Database specific library

C. The Data Storage interface

D. The Database independent interface

Answer: B D

Question #:40

Which of the following folder is essential to relate to Smart Data Access and also combines data from remote

sources?

Choose the correct answer

A. Content folder

B. Provisioning folder

C. Security folder

D. Administration folder

Answer: B

Question #:41

Which statements about ABAP are true?

A. ABAP keywords and additions must be in uppercase.

B. Each statement must begin with a keyword

C. Each statement must end with a period.

Answer: C

Question #:42

Which of the following statements about the Object Navigator are true? Select all that apply. (S 105.) {4

100% Success with DumpsPedia.com 12 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

Richtig}

A. Screens can be displayed and edited in the Object Navigator.

B. You can create BAdl implementations in the Object Navigator.

C. ABAP programs can be displayed and edited in the Object Navigator.

D. Menus can be displayed and edited in the Object Navigator.

E. The ABAP Dictionary can be maintained in the Object Navigator

F. You can create customer projects (Transaction CMOD) in the Object Navigator.

Answer: A C D E

Question #:43

Which of the following enhancements calls a customer function module. There are 2 correct answers to this
question.

A. Business Add-in (BADIs)

B. User exit

C. Business Transaction event

D. Customer exit

Answer: A D

Question #:44

What all are the factors involved in Working with ADT There are 3 correct answers to this question.

A. ABAP Class

B. ABAP programs

C. Module interface

D. ABAP interface

E. Workbench programs

Answer: A B D

Question #:45

100% Success with DumpsPedia.com 13 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

Nested source code enhancement allows you to enhance the source code plug-in.

A. True

B. False

Answer: A

Question #:46

A replacement object can be defined for a pooled table.

A. True

B. False

Answer: B

Question #:47

Each work process is assigned a type of task that can be performed. Which statements related to this are true?
Select all that apply.

A. All work processes communicate with the dispatcher.

B. All work processes communicate with the database.

C. A work process can communicate directly with an external system through '—' a Remote Function Call

D. It is possible to have multiple enqueue work processes on an SAP NetWeaver Application Server.

E. It is possible to have multiple spool work processes on an ABAP application '—' server

F. All work processes have the same structure.

G. To switch a work process type requires a restart of the SAP NetWeaver AS for •—I ABAR

Answer: A D E F

Question #:48

An SAP LUW differs from a database LUW in that it allows for multiple screens to be processed.

A. True

B. False

100% Success with DumpsPedia.com 14 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

Answer: B

Question #:49

You want to select data from two tables and store the result in as structure.

Table PARTNER contains the fields PARTJD and KIND.

Table CONTRACT contains the fields CONTJD, CONT_TYPE and DIVISION.

The structure is defined as follows

DATA: BEGIN OF wa_result,

Part_id type partner-partjd, cont_id type contract-cont_id,

ConMype TYPE contract-cont_type,

END of wa_result,

Lt_result type table of wa_result.

How can you replace the following SELECT statement with an outer join?

SELECT partjd from partner INTO wa_result WHERE kind = 'Residential'.

SELECT contjd from CONTRACT into wa_result-cont_id WHERE part EQ

wa_partner-part_id And DIVISION eq 'Water'.

Append wa_result to lt_result.

ENDSELECT.

If sy-subrc<>0. CLEAR wa_result-cont_id

APPEND wa_result TO lt_result. ENDIF.

ENDSELECT.

Please choose the correct answer.

SELECT partjdcontjd from partner AS A LEFT JOIN contract AS b ON a-partjd = b-partjdAND b-division
EQ 'Water' INTO TABLEIt_result WHERE kind = 'Residential'

SELECT partjdcontjd from partner LEFT JOIN contract on partner-partjd = contract-partjd AND partner-kind
EQ 'Residential' INTO CORRESPONDING FIELDS OF TABLE lt_result WHERE division eq 'Water'.

SELECT partjdcontjd from partner AS A LEFT JOIN contract AS b ON a-partjd = b-partjd INTO
CORRESPONDING FIELDS OF TABLE lt_result WHERE kind = 'Residential' and AND division EQ

100% Success with DumpsPedia.com 15 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

'Water'.

SELECT partjdcontjd from partner LEFT JOIN contract on partner-partjd = contract-partjd AND
contract-division EQ 'Water' INTO TABLE It result WHERE kind EQ 'Residential'.

Question #:50

The FIELD statement with the ON REQUEST addition calls the ABAP dialog module if any value is entered
in the screen field.

A. True

B. False

Answer: A

Question #:51

What does a view do? Select all that apply.

A. Contains windows

B. Contains other views

C. Contains a view controller

D. Can be contained in a window

E. If entered by an inbound plug, can cause an event handler method to be

Answer: A C D E

Question #:52

It is not possible to test a function module if another function module of the same function group contains a
syntax error.

A. False

B. True

Answer: B

Question #:53

Which steps do you have to perform when defining a view using core data services (CDS)? There are 3 correct

100% Success with DumpsPedia.com 16 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

answers to this question.

A. Specify the name of the SQL view in ABAP Dictionary

B. Create a data definition in your ABAP package

C. Use the DDL statement DEFINE VIEW and SQL like Syntax

D. Create a proxy object for the defined view.

E. Define the type mapping between ABAP and SAP HANA

Answer: A B C

Question #:54

The source code editor in ADT provides many helpful features. What are these helpful features? There are 2
correct answers to this question.

A. Creating Method Implementations from the Method Definition

B. Creating Method Definitions from Implementation Parts

C. Creating interface from Method Calls

D. Creating Parts for Interface Methods

Answer: A B

Question #:55

How many work areas are available in the Debugger?

A. 12

B. 15

C. 7

D. 9

Answer: A

Question #:56

Which of the following statements are true? Select all that apply.

A. A conversion routine can be assigned to a domain.

100% Success with DumpsPedia.com 17 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

B. A conversion routine can be assigned to a data element.

C. You define the value range in the data element.

D. You can enter documentation for the data element in the ABAP Dictionary.

Answer: A D

Question #:57

(F1) help on the screen field displays the data element documentation

A. True

B. False

Answer: A

Question #:58

What is the event block that all of your code changes belongs to if you do not explicitly code any event blocks
in an executable program? Please choose the correct answer.

A. START-OF-SELECTION

B. LOAD-OF-PROGRAM

C. AT SELECTION-SCREEN OUTPUT

D. INITIALIZATION

Answer: A

Question #:59

What is the difference between a value table and a check table?

A. A check table is defined in the domain, whereas a value table is defined in '—' the data element

B. A value table is defined in the domain, whereas a check table is defined in '—' the data element.

C. A value table is a check table after a foreign key is defined

D. No difference; they are the same thing.

E. A value table does not exist

100% Success with DumpsPedia.com 18 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

Answer: C

Question #:60

You want to include an element of type 'Table' in your web dynpro. What actions add the corresponding
columns to the table automatically?

A. Bind the table attribute 'DATA_SOURCE' to the context node.

B. Include the method BIND_TABLE of IF_WD_CONTEXT_NODE.

C. Right click the table and select the 'CREATE_BINDING' option.

D. Generate a 'BIND_TABLE' method using the web dynpro method wizard.

Answer: B

Question #:61

The Debugger displays a maximum of eight data objects at one time.

A. True

B. False

Answer: A

Question #:62

The ABAP Messaging Channels (AMC) uses the WebSocket protocol to gain two-way communication instead
of HTTP.

A. True

B. False

Answer: B

Question #:63

In which circumstances is a table considered to be a text table? Select all that apply

A. The entire key of this data table is included as the key to this table.

B. This table only has one character-based data field.

C. This table has a foreign key to the data table as a text table.

100% Success with DumpsPedia.com 19 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

D. This table has an additional language key field.

E. The ABAP runtime system determines that the relationship exists.

Answer: A C D

Question #:64

Which events can exist in all types of programs that actually contain executable statements?

A. AT USER-COMMAND

B. AT PF##

C. INITIALIZATION

D. LOAD-OF-PROGRAM

E. AT LINE-SELECTION

F. START-OF-SELECTION

Answer: D

Question #:65

SAP enhancements for customer exits are managed by which transaction?

A. Transaction SMOD

B. Neither transaction listed here

C. Transaction CMOD

Answer: A

Question #:66

What does SAP recommend that you use a hashed table? Please choose the correct answer.

A. When a table must be sorted automatically by key in ascending order

B. When a table must be accessible by both index and key

C. When a table is very large and you want to access the table by index only

D. When a table is very large and you want to access the table by key only

100% Success with DumpsPedia.com 20 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

Answer: D

Question #:67

What is variable-length structure called? Please choose the correct answer.

A. Nested structure

B. Nested link structure

C. Flat structure

D. Link structure

Answer: A

Question #:68

The order of fields for a transparent table in the database...

A. Is created in the order of the ABAP Dictionary

B. Needs to match the ABAP Dictionary.

C. Is allowed to be different than the ABAP Dictionary.

Answer: C

Question #:69

The database always uses the primary key when the WHERE clause contains any of the key fields.

A. False

B. True

Answer: A

Question #:70

You want to develop a program that processes character type data. When you implement the program, you can
either use the classical string statements or the newer strings expressions and functions What are the

main benefits of using string expressions and string functions? There are 2 correct answers to this question.

A. You can write compact syntax instead of a long sequence of statements

B.

100% Success with DumpsPedia.com 21 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

B. You can write code that is very easy to read and understand

C. You can improve the performance significantly

D. You can reduce the number of intermediate variables

Answer: A D

Question #:71

The target structure of a SELECT statement requires the field names to match the columns selected and to be
in the same left-justified order.

A. False

B. True

Answer: A

Question #:72

Which statement cannot use a subquery.

A. None of the above

B. SELECT

C. INSERT

D. DELETE

E. UPDATE

Answer: B D E

Question #:73

A screen has the following PAI flow logic:

PROCESS AFTER INPUT

FIELD A MODULE check_A

FIELD A MODULE check_B

CHAIN.

FIELD:C,D

100% Success with DumpsPedia.com 22 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

MODULE check_CD

ENDCHAIN

FIELD:C,B.

MODULE check_CB

ENDCHAIN

What happens if the application senda a type E message during the check_CB module processing?

Please choose the correct answer.

Note: Answers of this question are not verified by our experts, please study yourself and select the appropriate
answers.

Response:

(1/1 Points)

The screen is displayed again and the PBO flow logic is processed. Only fields B and C are ready for input.

The screen is displayed again without processing the PBO logic flow. Only fields B and C are ready for input.

The screen is NOT displayed again. Processing terminates and the user must restart the ABAP program.

The screen is displayed again without processing the PBO flow logic. All fields are ready for input.

Question #:74

What is the difference between a Unicode and non-Unicode program? Select all that apply

A. Offset positioning in a Unicode structure is restricted to flat data objects.

B. Byte-type data objects cannot be assigned to character-type data objects.

C. Offset positioning in a Unicode structure is restricted to character data ^ •—I objects.

D. Byte-type data objects cannot be compared to character-type data objects.

Answer: A B C D

Question #:75

A watchpoint stops program execution every time the condition specified is met

A.

100% Success with DumpsPedia.com 23 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

A. False

B. True

Answer: A

Question #:76

Which does the field catalog allow you to do? Select all that apply. (S. 503) {3 Richtig}

A. Change the display order of a column

B. Change the title of a column

C. Produce a striped pattern for the display lines

D. Add a field to the display

E. Specify the sort order of the display table

Answer: A B D

Question #:77

Authorizations are handled automatically during access to the database interface to restrict data access of the
user.

A. False

B. True

Answer: A

Question #:78

The static sequence of the default next screen can be established by the value in the screen attribute Next
Screen.

A. False

B. True

Answer: B

Question #:79

You cannot use a SORT statement for a sorted internal table.

100% Success with DumpsPedia.com 24 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

A. False

B. True

Answer: B

Question #:80

ABAP is a programming language that... (Select all that apply.)

A. Processes and formats data.

B. Interacts with the user.

C. Controls the business logic.

D. Separates program code from language text.

E. Executes on all three levels of the three-tier architecture

Answer: A B C D

Question #:81

The USER has the following fields: ID, FIRSTJMAME, LAST_NAME. FIRST_NAME, LAST_NAME have
the same basic type and length. You want to compare fields FIRST_NAME, LAST_NAME to each other.

Which of the following SELECT statements can you use?

There are 2 correct answers to this question.

Response:

(1/1 Points)

A. SELECT*FROM users INTO TABLE lt_users WHERE first_name = users last_name

B. SELECT*FROM users AS a INTO TABLE lt_users WHERE a»first_name = a»last_name

C. SELECT*FROM users INTO TABLE lt_users WHERE first name = users »last_name.

D. SELECT*FROM users AS a INTO TABLE lt_users WHERE a first_name = last_name.

Answer: B C

Question #:82

100% Success with DumpsPedia.com 25 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

Which of the following tools and programming techniques use the SQL data definition language? There are 2
correct answers to this question.

A. Core data service (CDS) access control

B. Open SQL

C. ABAP Dictionary

D. Core data services (CDS) data definition

Answer: A B

Question #:83

Which property of the InputField Ul element must be bound to a context attribute? Please choose the correct
answer.

A. enable

B. value

C. state

D. visible

Answer: B

Question #:84

Beginning with SAP NetWeaver 7.40, if SAP HANA (an in-memory database) is being used as a database,
then table buffering is no longer effective and is therefore not possible.

A. True

B. False

Answer: B

Question #:85

What are the two main methods to add a system to the SAP HANA Studio? There are 2 correct answers to this
question

A. Manually

B. By Importing a Landscape

C.

100% Success with DumpsPedia.com 26 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

C. By Resource console

D. Automatically

Answer: A B

Question #:86

When do you need to use the GROUP BY clause in the SELECT statement? Please choose the correct answer.

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

B. If you want to use ORDER BY to specify a sub-order

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

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

Answer: D

Question #:87

Using the screen system table, what can you modify through a LOOP AT SCREEN ... ENDLOOP construct?
Please choose the correct answer.

A. Values of screen elements

B. Attributes of screen elements

C. Function code of buttons

D. Screen status

Answer: B

Question #:88

What is the central goal of using SAP HANA? Please choose the correct answer.

A. Positive Impact on Business

B. Monitor database for record keeping

C. To set Priorities for system

D. Accelerate Performance

Answer: D

100% Success with DumpsPedia.com 27 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

Question #:89

What must you take into consideration when you use the new open SQL syntax (available as of SAP Net
weaver 7.4 SP05)? There are 2 correct answers to this question.

A. All arithmetic expressions can be used for all type of variables.

B. All Keywords are case sensitive.

C. All fields in the GROUP BY clause must be separated by commas.

D. All ABAP variables must be escaped with a proceeding @ sign.

Answer: C D

Question #:90

The FIELD statement does not have any effect in the PBO event block, and it should not be used in the PBO
event block.

A. True

B. False

Answer: A

Question #:91

The new bottlenecks avoided by addressing two challenges, what are they? There are 2 correct answers to this
question.

A. Avoid single network

B. Avoid CPU cache misses

C. Avoid idling CPU cores

D. Avoid optimizing data

Answer: B C

Question #:92

You can maintain SAPscript forms and SAP Smart Forms within the ABAP Workbench.

A. True

100% Success with DumpsPedia.com 28 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

B. False

Answer: B

Question #:93

The READ-ONLY attribute cannot be addressed outside the class.

A. False

B. True

Answer: A

Question #:94

Which features does the source code editor provide in ABAP Development Tools for SAP NetWeaver? There
are 2 correct answers to this question.

A. Screen editing

B. Quickfix

C. Content assistance

D. Form-based class builder

Answer: B C

Question #:95

Which type of view uses an inner join in a search help? Please choose the correct answer.

A. Maintenance view

B. Help view

C. Database view

D. Candidate key view

Answer: C

Question #:96

When included in a structure, which elementary field types allow the structure to be considered a
character-type data object? Select all that apply. (S. 365) {4 Richtig}

100% Success with DumpsPedia.com 29 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

A. X

B. C

C. D

D. STRING

E. F

F. XSTRING

G. T

H. I

I. N

Answer: B C G I

Question #:97

It is possible to make multiple changes to data objects at the same time in the Debugger

A. False

B. True

Answer: B

Question #:98

Name the views that are available to administer and monitor one or several SAP HANA systems? There are 2
correct answers to this question

A. The System Monitor view

B. The Administration view

C. The Landscape view

D. The Security view

Answer: A B

Question #:99

100% Success with DumpsPedia.com 30 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

Declaration of an internal table with a header line can be used in a class implementation.

A. True

B. False

Answer: B

Question #:100

Global data types defined in SAP systems are...

A. ABAP Dictionary types.

B. Data defined in the program that is visible to all the routines/statements '—' within the ABAP program.

C. Date types defined in the program using ABAP Dictionary types.

Answer: A

Question #:101

Which modularization units can raise an exception? Select all that apply

A. Methods

B. Subroutines (FORM routines)

C. Function modules

Answer: A B C

Question #:102

Compared to a predefined ABAP type what additional properties can be assigned to a domain? There are 3
correct answers to this question.

A. Fixed values

B. Search helps

C. Value tables

D. Conversion exits

E. Parameter IDs

Answer: A C D

100% Success with DumpsPedia.com 31 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

Question #:103

The BINARY SEARCH addition cannot be used with the READ statement for the HASHED table.

A. False

B. True

Answer: B

Question #:104

The ALV is entirely implemented using ABAP Objects.

A. False

B. True

Answer: A

Question #:105

Value help can be supplied from which of the following? Select all that apply.

A. Fixed values

B. Search help for a screen field

C. Search help for table or structure fields

D. Key values of a check table

E. Search help for a check table

F. Search help from a text table

G. Process On Value request

H. Search help for a data element

Answer: A B C D E F G H

Question #:106

Which is not a Golden Rule for Open SQL? Please choose the correct answer.

A.

100% Success with DumpsPedia.com 32 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

A. Minimize the Amount of Data Transferred

B. Keep the result set large

C. Reduce the Database Load

D. Minimize the Number of Database Accesses

Answer: B

Question #:107

Local update tasks are quicker because they stay within the same work process.

A. False

B. True

Answer: A

Question #:108

Which of the following are true statements? Select all that apply

A. Table fields can be assigned to a data element.

B. A reference table and field are required for fields with the data types QUAN •—I and CURR

C. Search helps can be defined for a table field that is assigned to a predefined '—' data type

D. Table fields can be assigned to an ABAP Dictionary data type directly.

Answer: A B D

Question #:109

A data object is concretely defined by means of the data type and occupied

memory. It contains data with which ABAP programs work at runtime.

A. True

B. False

Answer: A

Question #:110

100% Success with DumpsPedia.com 33 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

What character is used as a symbol for the operand type in an expression?

A. None of the above

B. @

C. #

D. ~

Answer: C

Question #:111

The addition NO-EXTENSION for SELECT-OPTIONS will allow only one line in the selection table.

A. True

B. False

Answer: A

Question #:112

Which of the following is true? Select all that apply. (S. 105) {2 Richtig}

A. The repository objects and cross-client customization objects are recorded

in a task belonging to a local change request if there is no consolidation route

leading from the current system defined in the Transport Management System for the transport layer.

B. The repository objects and the cross-client customization are recorded in a

task belonging to the transportable request if the consolidation route is defined in the Transport
Management System.

Answer: A B

Question #:113

Is it possible to have multiple active implementations of business add-ins at a time? Select all that apply

A. It can have multiple active implementations if the Multiple use checkbox is '—' selected.

B. It cannot have a multiple active implementation.

C.

100% Success with DumpsPedia.com 34 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

C. It can have multiple implementations if the Filter-Depend, checkbox is '—' selected.

Answer: A C

Question #:114

What does the enhancement category for a database table or structure do? Select all that apply.

A. Specifies the types of changes that can be made to the structure

B. Can produce warnings at incompatible points for the structure

C. Can identify where program behavior may change

D. Makes a table Unicode-compliant

Answer: A B C

Question #:115

If you are using external debugging (debugging of HTTP and RFC requests, which arrive in your ABAP
system), what will the Debugger do?

A. May or may not stop, depending on external factors.

B. Always stop when the external breakpoint is reached.

C. Never stop; external breakpoints operate on users other than your own.

Answer: A

Question #:116

Code within an explicit enhancement section can be replaced by the customer.

A. False

B. True

Answer: B

Question #:117

Function modules provide which types of parameters? Select all that apply.

A. Return values

B.

100% Success with DumpsPedia.com 35 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

B. Output

C. Exceptions

D. Input

E. Input/output (changing)

Answer: B C D E

Question #:118

Each ABAP program that actually contains executable statements... (Select all that apply.)

A. Assigns every executable statement to a processing block regardless of it ^ '—' being in a processing
block.

B. Only assigns executable statements in a processing block to a processing •—I block

C. Has declarative statements outside of processing blocks that are considered •—I local

D. Uses event blocks to trigger events in ABAP.

E. Has declarative statements inside of processing blocks that are considered •—I local

F. Is divided into processing blocks.

G. Can be tested from the ABAP Workbench by pressing (F8)

Answer: A F

Question #:119

Update tasks are the only way to make changes to the database

A. False

B. True

Answer: A

Question #:120

Internal tables can also be modified after executing the READ statement with the addition ASSIGNING. (S.
204) {1 Richtig}

A. False

B.

100% Success with DumpsPedia.com 36 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

B. True

Answer: B

Question #:121

The binding between a Ul element and a context attribute is a two-way relationship

A. True

B. False

Answer: A

Question #:122

You can use the logical expression IS SUPPLIED for any formal parameter passed to which modularization
unit? Select all that apply.

A. Instance method

B. Subroutine (FORM routine)

C. Function module

D. Static method

Answer: A C D

Question #:123

What is the allowed length of the ABAP Dictionary data type DF16_DEC?

A. The allowed length is between 0 and 15 digits.

B. The allowed length is between 0 and 16 digits.

C. The allowed length is between 1 and 15 digits

D. The allowed length is 16 digits.

Answer: C

Question #:124

Which statements are considered obsolete and cannot be used in ABAP Objects? Select all that apply. (S. 556)
{9 Richtig}

100% Success with DumpsPedia.com 37 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

A. DATA - BEGIN OF ... OCCURS

B. RANGES

C. LOOPATdbtab

D. LEAVE

E. GE OF

F. INFOTYPES s/ TABLES

G. SEARCH

H. DATA - 1YPE - OCCURS

Answer: A B C D E F G H

Question #:125

You use the addition OBLIGATORY to define the input field of a parameter as a required field.

A. True

B. False

Answer: A

Question #:126

What is the result of the following arithmetic operation?

DATA: int TYPE I.

int = 5*(3/10).{1 Richtig}

A. 1

B. D2

C. 1.5

D. 0

Answer: D

Question #:127

100% Success with DumpsPedia.com 38 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

The OCCURS statement is required to define an internal table with a header line.

A. False

B. True

Answer: A

Question #:128

What is the default selection screen number for the ABAP program?

A. 1100

B. None of the above

C. 1000

D. 100

Answer: C

Question #:129

The system class CL_ABAP_MATH contains constants for maximum and minimum values for the numeric
data type

A. True

B. False

Answer: A

Question #:130

A. Database view

B. Help view

C. Maintenance view

Answer: C

Question #:131

Subclasses inherit all the components of the parent class.

A.

100% Success with DumpsPedia.com 39 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

A. False

B. True

Answer: B

Question #:132

What is the default length of the type C data type?

A. 1

B. 10

C. 1-65535

Answer: A

Question #:133

Which statement is true?

A. An SAP LUW must be placed within a database LUW.

B. A database LUW must be placed within an SAP LUW.

Answer: A

Question #:134

To reserve an area on the screen for an ALV Grid Control, you must do the following:

A. Use the Screen Painter

B. Create an object (instantiate the object) of the class CL_GUI_CUSTOM_CONTAINER

C. Create an object (instantiate the object) of the class CL_GUI_ALV_GRID

D. Create an object (instantiate the object) of the class CL_SALV_TABLE

Answer: A

Question #:135

You use the CREATE OBJECT statement to create both types of ALV.

A. False

100% Success with DumpsPedia.com 40 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

B. True

Answer: A

Question #:136

Private components of the class cannot be addressed directly from outside the class except when the friendship
concept applies

A. False

B. True

Answer: B

Question #:137

ABAP Unit Test Browser is included in Object Navigator with SAP NetWeaver 7.0 EHP 2.

A. False

B. True

Answer: B

Question #:138

Under which circumstances will the classic Debugger start as the Debugger?

A. None; the new Debugger will always start as the Debugger

B. When the number of debugging sessions exceeds half the number of dialog '—' sessions.

C. If you manually switched to the classic Debugger during your last session

D. When you specify the default as the classic Debugger in the settings of the ^ '—' Object Navigator.

E. When five modes already exist for this logon session.

Answer: D E

Question #:139

The user interface consists of the GUI status and GUI title.

A. True

100% Success with DumpsPedia.com 41 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

B. False

Answer: A

Question #:140

Which of the following is a true statement? Select all that apply.

A. An access key is required to enhance an SAP application using a user exit.

B. An access key is required to implement an implicit enhancement point.

C. An access key is required to modify SAP repository objects.

D. An access key is required to implement business add-ins.

Answer: A C

Question #:141

A work process...

A. Becomes inactive while waiting for a user

B. Stays linked to a screen through the dispatcher

C. Uses a common memory area called shared memory

Answer: C

Question #:142

The dispatcher handles all communication between users, work processes, and other (external) systems.

A. False

B. True

Answer: A

Question #:143

All breakpoints are valid for the entire Debugger session, and all can be changed by the Debugger

A. False

B.

100% Success with DumpsPedia.com 42 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

B. True

Answer: B

Question #:144

Which screen in the ABAP Dictionary allows you to log data changes to the table?

A. Delivery and Maintenance tab

B. Attributes tab

C. Utilities • Database Object • Database Utility

D. Technical Settings

E. Utilities • Settings

Answer: D

Question #:145

Each work process... (select all that apply.)

A. Can only make database changes within a single database LUW.

B. Is independent of other work processes

C. Uses a pool of database connections established when the SAP NetWeaver AS for ABAP started.

D. Uses a database connection to a work process established when the SAP NetWeaver AS for ABAP
started.

E. Can make database changes spanning multiple database LUWs

Answer: B C D

Question #:146

Which actions release a database lock (with a default value for _SCOPE)? Select all that apply.

A. An /n in the command field

B. The display of a dialog message type E

C. ENQUEUE_<lock_object>

D. A call to a function module

100% Success with DumpsPedia.com 43 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

E. DEQUEUE_<lock_object>

F. COMMIT WORK

G. A CALL TRANSACTION / A SUBMIT (Sepeperat)

H. The display of an SAP screen

I. The display of a dialog message type A

J. ROLLBACK WORK

Answer: A E F I J

Question #:147

What is the difference between SAP Basis and SAP NetWeaver? Please choose the correct answer.

A. All versions of SAP NetWeaver require the use of UTF-8

B. All versions of SAP NetWeaver include the ability to handle HTTP requests

C. There is no difference; the name change was driven by marketing alone

D. All versions of SAP NetWeaver require the use of Unicode

Answer: B

Question #:148

An internal table is an ABAP program variable.

A. False

B. True

Answer: B

Question #:149

When does the lifetime of a component controller begin and end? (S. 530) {1 Richtig}

A. It begins with the Web Dynpro component and ends with the Web Dynpro application that called it

B. It lasts from creating data within the controller to cover the whole period' during which the component is
in use.

C.

100% Success with DumpsPedia.com 44 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

C. It begins the first time the Web Dynpro application is called at runtime and ends when the Web Dynpro
application that called and instantiated the component ends.

Answer: B

Question #:150

There are____versions of the ABAP Editor.

A. 2

B. 4

C. 3

Answer: C

Question #:151

What are the differences between displaying in a full screen and in a container? Select all that apply. (S. 503)
{2 Richtig}

A. Only a full-screen ALV allows the use of event handling.

B. The full screen requires Dynpro programming.

C. Only an ALV in a container allows the use of event handling

D. Any type of ALV allows the use of event handling.

E. The only difference is that the container name must be specified when creating the ALV object.

F. The container requires the use of an additional object (a container control).

Answer: D F

Question #:152

A view can only be displayed in which circumstances? Please choose the correct answer.

A. It has been embedded in a window.

B. It can always be displayed.

C. It cannot always be displayed.

D. It contains an inbound and outbound plug.

100% Success with DumpsPedia.com 45 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

Answer: A

Question #:153

In a subclass, you want to redefine a method of the super class. Which of the following conditions must be
fulfilled? There are 2 correct answers to this question.

A. The super class method is abstract

B. The subclass method has same visibility as the super class method

C. The subclass method has a lower visibility than the super class method

D. The superclass method is an instance method

Answer: B D

Question #:154

Each ABAP program starts with an introductory statement. Which statements are correct? Select all that apply.

A. The introductory statement must be the first line in the program

B. The introductory statement can be modified.

C. The introductory statement must be the first statement in the program.

D. The introductory statement must never be modified.

Answer: B C

Question #:155

When starting the Debugger, what circumstance causes the runtime error DEBUGGING_NOT_POSSIBLE?

A. When the number of debugging sessions on the server exceeds the value '—' defined by the profile
parameter rdisp/wpdbug_max_no

B. Starting a non-exclusive mode in a productive system

C. When more than five sessions are already associated with this login user

Answer: B

Question #:156

Which of the following statements are correct? Select all that apply.

100% Success with DumpsPedia.com 46 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

A. An enhancement spot can contain an explicit enhancement point, explicit '—' enhancement section, and
new BAdl.

B. An enhancement spot can contain either an explicit enhancement point

and enhancement section or a new BAdl only, but all three cannot be in the same enhancement spot.

C. An enhancement spot can contain one or more simple or composite '—' enhancements.

D. An enhancement spot can contain an explicit enhancement point and an enhancement section.

Answer: B C D

Question #:157

Explicit enhancement points and sections are defined by the SAP application programmer.

A. True

B. False

Answer: A

Question #:158

It is recommended that you place the COMMIT WORK in the update task.

A. True

B. False

Answer: B

Question #:159

Which selection screen elements allow user input in ABAP Reports? There are 2 correct answers to this
question

A. SELECTION-SCREEN COMMENT

B. SELECT-OPTIONS

C. PARAMETERS

D. SELECTION-SCREEN BLOCK

Answer: B C

100% Success with DumpsPedia.com 47 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

Question #:160

An internal table can have at most 15 secondary keys.

A. False

B. True

Answer: B

Question #:161

Only one text table can be linked to a table.

A. True

B. False

Answer: A

Question #:162

The READ statement with the addition BINARY SEARCH for a sorted internal table is better for
performance.

A. False

B. True

Answer: A

Question #:163

The READ statement with the addition BINARY SEARCH for a sorted internal table is better for
performance.

A. False

B. True

Answer: A

Question #:164

Which of the following rules must you follow when creating subscreens? There are 2 correct answers to this

100% Success with DumpsPedia.com 48 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

question.

A. Subscreens CANNOT have a field of type OK.

B. Subscreens can have a dialog module containing SET PF-STATUS.

C. Subscreens can call other subscreens.

D. Subscreens CANNOT have an AT EXIT-COMMAND module.

Answer: A D

Question #:165

The valid value for a decimal floating point number of type decfloat34 is a number between 1E6145 and
-1E-6143for a negative number, 0, and +1E-6143 to 1E6145.

A. True

B. False

Answer: A

Question #:166

Each component has an interface; of what does this interface consist? Select all that apply.

A. Interface controller

B. Interface view

C. Interface context

Answer: A B

Question #:167

List down the elements involved in User Management and Security in SAP HANA? There are 3 correct
answers to this question

A. Assign security

B. Assign job security

C. Manage users

D. Create users

E.

100% Success with DumpsPedia.com 49 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

E. Work management

Answer: A C D

Question #:168

How would you find out if an application program offers a program exit? Select all that apply.

A. Look for a customer exit in the SAP reference IMG within an application ^ Uarea

B. Use the Application Hierarchy

C. Search for the character string CUSTOMER-FUNCTION

D. Use the Repository Information System

Answer: A B C D

Question #:169

Which of the following is a true statement? Select all that apply

A. A package can be nested.

B. All customer repository objects have to be assigned to a package.

C. Packages use interfaces and visibility to make their elements visible to other packages.

D. The transport layer is a mandatory input field for the package

Answer: A B C

Question #:170

Which of the following actions can be performed in the Process After Input (PAI) processing block? Please
choose the correct answer.

A. Set the title bar.

B. Set the GUI status of the screen.

C. Modify screen attributes dynamically.

D. Check the function code.

Answer: D

100% Success with DumpsPedia.com 50 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

Question #:171

In addition to the visible part (the layout), a view also contains a controller and a context

A. True

B. False

Answer: A

Question #:172

Local data objects can be defined using ABAP Dictionary types

A. False

B. True

Answer: B

Question #:173

You can define multiple elements in a single line by defining the element

within the block SELECTION-SCREEN BEGIN OF LINE and SELECTION-SCREEN END

OF LINE.

A. False

B. True

Answer: B

Question #:174

Which actions release a database lock? Select all that apply.

A. The display of an SAP screen

B. ROLLBACK WORK

C. ENQUEUE_<lock_object>

D. An/n in the command field

E. COMMIT WORK

F.

100% Success with DumpsPedia.com 51 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

F. The display of a dialog message type E

G. A Submit

H. A CALL TRANSACTION

I. A SUBMIT (Sepeperat)

J. A call to a function module

K. The display of a dialog message type A

Answer: A B D E F G H K

Question #:175

Each ABAP program starts with an introductory statement. Which statements are correct? Select all that apply.

A. The introductory statement must be the first statement in the program.

B. The introductory statement must be the first line in the program

C. The introductory statement can be modified.

D. The introductory statement must never be modified.

Answer: B C

Question #:176

The Java stack and the ABAP stack of an SAP NetWeaver Application Server must always be installed
together

A. False

B. True

Answer: A

Question #:177

What are the elements of ABAP Database Integration? There are 3 correct answers to this question.

A. Client database handling

B. Other DB

C. DB For ABAP

100% Success with DumpsPedia.com 52 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

D. Application server

E. DB client-server

Answer: B C D

Question #:178

What can be exposed in the component interface of a Web ciynpro component? Please choose the correct
answer.

A. Custom methods of the component controller

B. Standard hook methods of the component controller

C. Custom methods of the component controller

D. Public attributes of WINDOW controllers

Answer: C

Question #:179

What will happen at runtime when accessing a buffered table? Please choose the correct answer.

A. If table data is read using indexes, the table buffer will not be filled.

B. If data is read from the table buffer, the existing indexes are not used.

C. Following an update to a buffered record, all table buffers in the system will be updated.

D. All SELECT statements will read data from the buffer.

Answer: B

Question #:180

A transparent table can include a deep structure

A. True

B. False

Answer: B

Question #:181

100% Success with DumpsPedia.com 53 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

The constructor method is always defined in the private visibility section of the class.

A. True

B. False

Answer: B

Question #:182

What must you specify in a Unicode system when opening a file in TEXT MODE?

A. The byte order

B. The ENCODING addition

C. The code page

Answer: B

Question #:183

Which modularization units are global? Select all that apply

A. Function modules

B. Subroutines (FORM routines)

C. Methods within a local class in the program

D. Methods within class pools

Answer: A D

Question #:184

When must a foreign key have domain equality?

A. For a text table

B. Always

C. For a check field

D. Never

Answer: C

100% Success with DumpsPedia.com 54 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

Question #:185

Where are fixed values for fields stored?

A. Field

B. Structure

C. Table \/ Q Domain

D. Data element

Answer: D

Question #:186

All Open SQL commands allow processing on multiple rows.

A. False

B. True

Answer: B

Question #:187

When you define local classes in ABAP, which syntactical sequence must you follow?

A. PUBLIC SECTION, PROTECTED SECTION, PRIVATE SECTION

B. The order doesn't matter

C. The order is handled automatically.

D. PRIVATE SECTION, PROTECTED SECTION, PUBLIC SECTION

Answer: A

Question #:188

What are functions of the ABAP Managed Database Procedure (AMDP) framework? There are 2 correct
answers to this question.

A. It deletes obsolete versions of the database procedure synchronously.

B. It creates the database procedure when the AMDP is first called.

C.

100% Success with DumpsPedia.com 55 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

C. It deletes obsolete versions of the database procedure asynchronously

D. It creates the database procedure when the AMDP is first activated.

Answer: B C

Question #:189

Database access can occupy most of the runtime in an ABAP program. Which

tools are available to assist you to diagnose performance issues in your program? Select all that apply}

A. ABAP Objects Runtime Analysis (Transaction ATRA)

B. Performance Trace (Transaction ST05)

C. ABAP Trace (Transaction SAT)

D. ABAP Objects Runtime Analysis (Transaction SE30)

Answer: A B C D

Question #:190

Which you should specify in a non-Unicode system when opening a file in TEXT MODE? Select all that
apply.

A. The ENCODING addition

B. The byte order

C. The code page

Answer: B C

Question #:191

What are the basic principles of ALV SAP HANA? There are 2 correct answers to this question.

A. Only retrieve the database data which is to be displayed on screen

B. Data described declaratively instead of passing big internal tables

C. The ALV Optimization for SAP HANA to display data on the screen

D. To ensure that the user chooses the data on the selection screen is displayed

Answer: A B

100% Success with DumpsPedia.com 56 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

Question #:192

Subclasses can access the private components of the parent class.

A. True

B. False

Answer: B

Question #:193

The constructor method is called automatically when you create an instance of the class.

A. True

B. False

Answer: A

Question #:194

A structure has enhancement category 3, can be enhanced (character-type). Which set of elementary types is
allowed for the new fields? Please choose the correct answer.

A. F,I,P,X

B. C,D,N,T

C. C,D,N,X

D. D,I,string, T

Answer: B

Question #:195

Which of the following statements are correct? Select all that apply (S. 470) {4 Richtig}

A. You can call private methods within the public methods without reference ^ '—' to the object or class.

B. None of the above

C. Static methods can be defined in both the public and private visibility section of the class.

D. Class methods assigned to the public visibility section can be accessed outside the class using the static

100% Success with DumpsPedia.com 57 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750
D.
component selector and the class name.

E. Only public methods can be addressed outside the class.

Answer: A C D E

Question #:196

For which of the following requirements can you implement a functional method? There are 2 correct answers
to this question.

A. A handler method for an event that has a returning parameter

B. A factory method that returns an object reference

C. A method to set an instance attribute with one importing parameter and no other parameters

D. A private static helper method that returns a single value as the result of an algorithm

Answer: B D

Question #:197

One of your SAP systems needs to be migrated from its current database to an SAP HANA database. You
want to avoid any functional issues after the migration.

What should you search for and if necessary replace in the existing custom ABAP code? There are 3 correct
answers to this question.

A. Direct access to a cluster on the database

B. Left outer joins in open SQL statements

C. ORDER BY Clauses in Open SQL statements

D. Native SQL statements

E. Code that relies on implicit database sorting

Answer: A D E

Question #:198

The FIELD statement with the ON INPUT addition is used to conditionally call the ABAP dialog module. The
ABAP dialog module is called if the value of the screen field is other than the initial value. (S. 411) {1
Richtig}

A. True

100% Success with DumpsPedia.com 58 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

B. False

Answer: A

Question #:199

Enhancement definitions and implementations can be displayed in the Enhancement Information System.

A. True

B. False

Answer: A

Question #:200

If a user has an object locked in a task within a request (transport), then no one else can change it until the task
and request are released.

A. True

B. False

Answer: B

Question #:201

How do you embed a subscreen in a main screen? Please choose the correct answer.

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

B. Use SET SUBSCREEN in a PBO module of the main screen.

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

D. Use CALL SUBSCREEN in a PBO module of the main screen

Answer: C

Question #:202

Which of the following is correct?

A. The screen attributes can be modified in the PROCESS BEFORE OUTPUT event block.

B. None of the above

100% Success with DumpsPedia.com 59 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

C. The screen attributes can be modified in the PROCESS AFTER INPUT even block.

D. The screen attributes can be modified in the PROCESS BEFORE OUTPUT and PROCESS AFTER
INPUT event blocks.

Answer: A

Question #:203

Which of the following regarding search helps is a true statement? Select all that apply.

A. The interface for the search help is defined by the IMP (import) and EXP '—' (export) flags of the search
help parameter

B. The LPos parameter defines the position of the search help parameter in the '—' search hit list.

C. The text table for the selection method is automatically populated if the

text table is attached to the database table being used as the selection method.

D. The SPos parameter defines the position of the input field on the dialog '—' screen.

Answer: A B C D

Question #:204

An internal table can be defined using the DATA statement.

A. False

B. True

Answer: B

Question #:205

Given the code in the exhibit (see Figure 17.9) and the knowledge that both lcl_truck and lcl_car inherit from
lcl_vehicle, which statements are true? Select all that apply

100% Success with DumpsPedia.com 60 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

A. The code will produce a runtime error.

B. The code shows two valid up casts.

C. The table lt_vehicle contains three vehicles.

D. The code is not syntactically correct.

E. The code shows no valid up casts.

F. The code shows three valid up casts.

Answer: A B C

Question #:206

The Repository Browser is started by default when you execute Transaction SE80 for the Object Navigator

A. True

B. False

Answer: A

Question #:207

The valid value for a decimal floating point number of type decfloat16 is a number between 1E385 and
-1E-383 for a negative number, 0, and 1E-383 to 1E385 for a positive number.

A. True

B. False

Answer: A

Question #:208

100% Success with DumpsPedia.com 61 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

Identify the types of controller. Select all that apply.

A. Consumer controller

B. View controller

C. Window controller

D. Component controller

E. Custom controller

F. Configuration controller

Answer: B C D E F

Question #:209

Explain Transitioning ABAP Code to SAP HANA - Performance Considerations? There are 3 correct answers
to this question.

A. Some codes immediately run faster

B. Classical performances recommendations for open SQL remain valid

C. Some codes transferred to other systems

D. Some codes impacted positively and should be priorities

E. Some shifts in priorities, examples, nested selects(higher) indices(lower)

Answer: A B E

Question #:210

Two structures in Unicode programs are only compatible if all alignment gaps are identical on all platforms.

A. True

B. False

Answer: A

Question #:211

One of the prerequisites for the replacement object is that the structure type

100% Success with DumpsPedia.com 62 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

defined for the CDS view should match the structure of the database table

A. False

B. True

Answer: B

Question #:212

You use the ABAP trace (SAT) to measure the run time of a program. In a class, method X checks the validity
of its importing parameters and calls method Y.

What pattern of gross and net run time would you expect to see the in the ABAP trace results for method X?
Please choose the correct answer.

A. The net run time is greater than the gross run time.

B. The net run time is equal to Zero.

C. The gross and net run times are identical.

D. The net run time is less than the gross run time.

Answer: D

Question #:213

To which ABAP Dictionary definition can you assign fixed values? Please choose the correct answer.

A. Field of a transparent table

B. Domain

C. Data element

D. Component of a structure

Answer: B

Question #:214

One of the prerequisites for the replacement object is that the structure type

defined for the CDS view should match the structure of the database table

A. False

100% Success with DumpsPedia.com 63 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

B. True

Answer: B

Question #:215

An internal table line type with a deep or nested structure can be defined for internal tables with a header line.

A. True

B. False

Answer: B

Question #:216

You must call a method to actually display the contents of the display table after you create an ALV

A. True

B. False

Answer: A

Question #:217

How many kinds of internal tables are supported in the ABAP language?

A. 2

B. 1

C. 3

Answer: C

Question #:218

Where do you create online documentation ((F1) help) for fields on the screen?

A. Table

B. Domain

C. Structure

D.

100% Success with DumpsPedia.com 64 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

D. Data element

E. Field

Answer: D

Question #:219

Repository objects are client-specific.

A. True

B. False

Answer: B

Question #:220

Which of the following standard types is numeric? Select all that apply.

A. P

B. I

C. Decfloat32

D. F

Answer: A B D

Question #:221

Your selection screen can be modified at which event?

A. AT SELECTION-SCREEN OUTPUT

B. AT SELECTION-SCREEN

C. None of the above

D. AT SELECTION-SCREEN ON <field_name>

Answer: A

Question #:222

The addition NO-INTERVALS for SELECT-OPTIONS will allow only single fields on the selection screen.

100% Success with DumpsPedia.com 65 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

A. True

B. False

Answer: A

Question #:223

ABAP data types can be used for a domain definition.

A. True

B. False

Answer: B

Question #:224

Which statements are true about a class that has granted friendship to another class? Select all that apply.

A. The friend has access to private attributes.

B. The friend has access to public attributes.

C. All classes that inherit from the friend (subclasses) also have the same '—' access.

D. The friend has access to protected attributes.

E. All classes the friend has granted friendship access status to also have the '—' same access.

Answer: A B C D

Question #:225

Which of the following statements are true? Select all that apply. (S. 470) {2 Richtig}

A. Static attributes are declared with the CLASS-DATA statement.

B. A static attribute is the same across all instances of the class. There is only one static attribute across all
instances of the class.

C. Static attributes cannot be changed by an object.

D. Static attributes can be declared only in the private visibility section of the class

Answer: A B

100% Success with DumpsPedia.com 66 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

Question #:226

Which of the following tool is introduced as a holistic quality assurance tool? Choose the correct answer

A. ABAP Test Cockpit (ATC)

B. DBA Cockpit

C. DBMS Cockpit

D. BW system

Answer: A

Question #:227

How do you create lock objects and lock modules for use in ABAP programs that access the database? Please
choose the correct answer.

A. Use the ABAP dictionary to create the lock objects. Use the function builder to create the lock modules

B. Use the Function Builder to create the lock modules and the lock objects

C. Use the Function Builder to create the lock modules. The lock objects are created in the program logic

D. Use the ABAP Dictionary to create the lock objects. The lock modules are created automatically

Answer: D

Question #:228

How can Unicode checks be made? Select all that apply. (S. 365) {2 Richtig}

A. Only in a Unicode system or as part of a conversion to a Unicode system

B. In any system (after release 6.10) by specifying the program has Unicode checks active

C. By running Transaction UCCHECK

D. Cannot be enforced

Answer: B C

Question #:229

Protected attributes can be accessed by methods of the class and its subclasses.

A. True

100% Success with DumpsPedia.com 67 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

B. False

Answer: A

Question #:230

Which must a search help do? Select all that apply.

A. Determine the values for selection by the user

B. sed from a screen

C. Use a table or a view for data selection

D. Have a dialog with the user

E. Allow the user to select a response

Answer: A B D E

Question #:231

What does a Web Dynpro component contain? Select all that apply.

A. A context

B. Exactly one interface controller

C. Ul elements

D. Multiple views within a window

E. Component controller

Answer: B D E

Question #:232

When does the lifetime of a Web Dynpro component begin and end? Please choose the correct answer.

A. It ends each time it is called, and it ends when the component completes.

B. It begins when instantiated and it ends when the program ends or the object is freed.

C. It begins the first time it is called at runtime, and it ends with the Web Dynpro application that called
and ^ instantiated the component ends.

D.

100% Success with DumpsPedia.com 68 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

D. It begins each time it is called, and it ends when the component completes.

Answer: C

Question #:233

Which elementary field types are considered a character type? Select all that apply.

A. N

B. X

C. F

D. C

E. I

F. STRING

G. XSTRING

H. T

I. D

Answer: A D F H

Question #:234

Which desktops are part of the newABAP debugger? There are 3 correct answers to this question.

A. Objects

B. Session

C. Desktop 1

D. List

E. Break./Watchpoints

Answer: A C E

Question #:235

What is the best order to provide an event handler for an ALV?

A.

100% Success with DumpsPedia.com 69 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

A. Create the ALV, write the handler, register for the event, display the ALV

B. Write the handler, register for the event, create the ALV, display the ALV

C. Write the handler, create the ALV, display the ALV, register for the event

D. Register for the event, write the handler, create the ALV, display the ALV

E. Write the handler, create the ALV, register for the event, display the ALV

Answer: E

Question #:236

You can modify an internal table by using the UPDATE statement

A. False

B. True

Answer: A

Question #:237

At most, a menu bar can have 10 menus. (S. 411) {1 Richtig}

A. False

B. True

Answer: A

Question #:238

Your ABAP program contains an Open SQL join of two clientdependent tables. You want to replace this with
a

native SQL SELECT statement.

Which of the following changes to the SELECT statement can you use to retrieve the same data as before?

There are 2 correct answers to this question.

A. Include the client field in the WHERE condition.

B. Include the client field in the join condition.

C. Use the CLIENT SPECIFIED addition.

100% Success with DumpsPedia.com 70 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

D. Include the client field in the field list.

Answer: A B

Question #:239

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

A. SET SCREEN 0

B. CALL SCREEN

C. LEAVE TO SCREEN

D. LEAVE SCREEN

Answer: A

Question #:240

Which of the following is a true statement? Select all that apply.

A. A standard table should always have a unique key.

B. A sorted table can have a unique or a non-unique key.

C. A hashed table should always have a unique table key.

Answer: B C

Question #:241

A transport company keeps track of this availability in two tables, table VEHICLES and table TRANSPORT.
To accept a new transport of a certain capacity must be found in table VEHICLES. If a record is found, a
record is created in table TRANSPORT. The capacity is then adjusted in table VEHICLES.\

You have four function modules at your disposal.

UPD_VEHI_A and UPD_VEHI_B update a matching report in table VEHICLES. If an error occurs both issue
a message of type X. If no error occurs only UPD_VEHI_A issues a message of type X. If no error occurs
UPD_VEHI_A issues a message of type I.

UPD_TRAN_A and UPD_TRAN_B create a single record in table TRANSPORT. If an error occurs both
issues a message of type X. If no error occurs only UPD_TRAN_A issues a message of type I.

Which of the following function module calls ensures a single logical unit of work? Please choose the correct
answer.

100% Success with DumpsPedia.com 71 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

A. 1. UPD_TRAN_A

2. UPD_VEHI_B

B. 1. UPD_VEHI_A

2. UPD_TRAN_B

C. 1. UPD_VEHI_A

2. UPD_TRAN_A

D. 1. UPD_TRAN_B

2. UPD VEHI B

Answer: B

Question #:242

What are the main points of SAP HANA High Availability Per Datacenter that are available even in the event
of a disaster?

There are 2 correct answers to this question

A. Shared file systems for only one server

B. High availability configuration

C. Services-Name and index server on all nodes

D. Active clusters for all servers

Answer: B C

Question #:243

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.

A. CO (contains only)

B. GT (greater than)

C.

100% Success with DumpsPedia.com 72 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

C. LIKE (fits pattern)

D. EQ (equals)

E. CP (covers pattern)

Answer: B C D

Question #:244

When are referential joins executed in analytical views? Choose the correct answer

A. When fields from both the tables are requested

B. When fields are optimized

C. When fields are selected

D. When all the tables are optimized

Answer: A

Question #:245

V1 update tasks are always non-restartable, whereas V2 update tasks are always restartable.

A. True

B. False

Answer: B

Question #:246

Which of the following statements are true? Select all that apply

A. Projection views can have more than one table included for the view definition.

B. You cannot use a pooled or cluster table for a database view.

C. The tables included in the maintenance view should have foreign key relationships.

D. The tables included in the help view should have foreign key relationships.

Answer: A B C

Question #:247

100% Success with DumpsPedia.com 73 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

Discuss the conditions required to ensure the Referential Integrity? There are 2 correct answers to this question

A. There are three joins in the table

B. Referential integrity holds true in both the directions

C. There are two joins in the able

D. There is at least one join in the other table

Answer: B D

Question #:248

Which of the following statements are true? Select all that apply.

A. maintenance view is implemented as an outer join.

B. A database view is implemented as an outer join.

C. database view is implemented as an inner join.

D. A maintenance view is implemented as an inner join.

Answer: A C

Question #:249

Identify the ways to map context structures. Select all that apply.

A. Dynamic context mapping

B. Direct context mapping

C. External context mapping

Answer: B C

Question #:250

In an ABAP program, you to assign an initial value to an elementary data object when you define it. Which
addition must you use?

A. VALUE

B. DEFAULT

C.

100% Success with DumpsPedia.com 74 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

C. READ-ONLY

D. OBLIGATORY

Answer: A

Question #:251

What does the Refactoring Assistant allow you to do? Select all that apply.

A. Move components between superclasses and subclasses

B. Move between classes and interfaces

C. Rename all occurrences of a method

Answer: A B

Question #:252

Customer exits provide program exit, screen exit, and menu exit enhancements.

A. True

B. False

Answer: A

Question #:253

Which message types behave the same regardless of the context in which they are called? Select all that apply

A. S

B. I

C. W

D. A

E. X

F. E

Answer: D E

Question #:254

100% Success with DumpsPedia.com 75 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

What is unique about a singleton? Select all that apply.

A. It must be instantiated using a private instance constructor

B. It must be instantiated using a protected instance constructor

C. It must be instantiated using a static protected constructor

D. It must be defined as FINAL

E. It must be instantiated using a public instance constructor

F. It cannot be defined as FINAL.

G. It must be instantiated using a static private constructor

H. It must be instantiated using a static public constructor

Answer: D G

Question #:255

How to create a core data services view? There are 3 correct answers to this question.

A. Use data services tools for updates

B. Use DDL statement DEFINE VIEW and SQL-like syntax to define the view

C. Use additional annotations - marked with the @ sign

D. Use SQL capabilities for Netweaver

E. Use the ABAP Development Tools for SAP NetWeaver.

Answer: B C E

Question #:256

The Internet Communication Manager (ICM)...

A. Allows the ABAP stack and the Java stack to exchange data.

B. Allows SAP NetWeaver Application Server to process HTTP requests.

C. Replaced SAP ITS.

Answer: B

100% Success with DumpsPedia.com 76 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

Question #:257

Which of the following are valid control level changes within a loop over an internal table? There are 2 correct
answers to this question.

LAST

SUM

END of <f>

COLLECT

A, C

Question #:258

Which types of programs or parts of programs can be tested directly from the ABAP Workbench or ABAP
Editor? Select all that apply

A. INTERFACE-POOL

B. TYPE-POOL

C. PROGRAM

D. METHOD

E. INCLUDE

F. FUNCTION-POOL

G. FUNCTION MODULE

H. CLASS-POOL

I. REPORT

Answer: D G H I

Question #:259

What are the declarative statements used to define the selection? Select all that apply.

A. None of the above

B. PARAMETERS

C. SELECT-OPTIONS

D.

100% Success with DumpsPedia.com 77 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

D. SELECTION-SCREEN

Answer: B C D

Question #:260

FORM routines (subroutines) can be used in which program types? Select all that apply

A. Module pools

B. Executables

C. Function groups

D. Class pools

E. Subroutine pools

F. Interface pools

G. Type groups

Answer: A B C E

Question #:261

You have written a program to output data using the ALV grid control. Which sequence of steps should be
executed at runtime? Please choose the correct answer.

A. 1. Create a grid object

2. Create a container object

3. Pass data to the grid object

B. 1. Create a container object

2. Create a grid object

3. Pass data to the grid object

C. 1. Create a grid object

2. Pass data to the grid object

3. Create a container object

100% Success with DumpsPedia.com 78 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

D. 1. Pass data to the grid object

2. Create a container object

3. Create a grid object

Answer: B

Question #:262

Which of the following are incorrect statements? Select all that apply.

A. TYPES: carridjy LIKE spfli-s-carrjd.

B. TYPES: werks TYPE C LENGTH 4.

C. TYPES: datejy TYPE D LENGTH 10.

D. TYPES: Str TYPE STRING LENGTH 20.

Answer: C D

Question #:263

In the CALL CUSTOMER-FUNCTION 'nnn' statement, nnn is a three-digit number

used in SAP programs for which of the following types of enhancement?

A. Customer exits

B. User exits

C. Business add-ins

D. New BAdls

Answer: A

Question #:264

Memory requirements are identical in a non-Unicode system and in a Unicode system.

A. True

B. False

100% Success with DumpsPedia.com 79 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

Answer: B

Question #:265

What is the correct order for using a lock object?

A. Read the data, set the lock, change the data, release the lock

B. Set the lock, read the data, change the data, release the lock

C. Set the lock, read the data, release the lock, change the data

Answer: B

Question #:266

What is the default length of the type P data type?

A. 1

B. 8

C. 1-16

Answer: B

Question #:267

You can define a selection screen as a subscreen or tab strip control.

A. True

B. False

Answer: B

Question #:268

Where should the labels for fields be stored?

A. Data element

B. Structure

C. Field

D. Domain

100% Success with DumpsPedia.com 80 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

E. Table

Answer: A

Question #:269

What is the Web Dynpro programming model is based on?

A. Classic Dynpro programming

B. Model View Controller (MVC)

C. Business Server Pages (BSPs)

D. Internet Transaction Server (ITS)

Answer: B

Question #:270

Public methods can access the private attributes of the same class.

A. True

B. False

Answer: A

Question #:271

What is the root class in the RTTS inheritance tree? Please choose the correct answer.

A. CL_ABAP_TYPEDESCR

B. CL_ABAP_ELEMDESCR

C. CL_ABAP_DATADESCR

D. CL_ABAP_COMPLEXDESCR

Answer: A

Question #:272

You can use a table with a header line for object-oriented programming

A.

100% Success with DumpsPedia.com 81 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

A. True

B. False

Answer: B

Question #:273

What is the maximum number of watchpoints that can exist at one time?

A. No limit

B. 8

C. 10

D. 16

Answer: C

Question #:274

You can use the APPEND statement to fill a sorted internal table.

A. False

B. True

Answer: B

Question #:275

The Next Screen attribute can be temporarily overwritten by the set screen statement (that is, SET SCREEN
200).

A. False

B. True

Answer: B

Question #:276

Open SQL does not allow you to specify a secondary index during a SELECT.

A. True

B.

100% Success with DumpsPedia.com 82 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

B. False

Answer: A

Question #:277

AMDP can detect 3 types of syntax errors in active or inactive source code. What are these errors ? There are
3 correct answers to this question.

A. UNION specific syntax errors

B. Database independent syntax errors

C. SQLScript errors

D. Database platform syntax errors

E. HANA specific syntax errors

Answer: B C E

Question #:278

You can call a module for the FIELD statement to validate user entry on the input field. You can validate the
entry on the input field and send an error or a warning message from an ABAP dialog module.

A. False

B. True

Answer: B

Question #:279

What is the Limitations of ALV for SAP HANA? There are 3 correct answers to this question.

A. Restricted to 10,000 records

B. No unit/ currency split if aggregating amounts/ currency values

C. All unit/ currency restricted to 10,00,00 records

D. Without currency /unit consideration

E. Restricted to 5000 records / unit

Answer: A B D

100% Success with DumpsPedia.com 83 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

Question #:280

Identify the types of layout managers. Select all that apply.

A. reeLayout

B. RowLayout

C. MatrixLayout

D. FlowLayout

E. GridLayout

F. ColumnLayout

Answer: B C D E

Question #:281

The ALV was introduced with ABAP object-oriented capabilities in release 4.5A.

A. False

B. True

Answer: B

Question #:282

The data is transferred and displayed on the screen after the processing of the PBO.

A. True

B. False

Answer: A

Question #:283

How to call the stored procedures in ABAP code?

Please choose the correct answer.

A. Native SQL

B. CDS view

100% Success with DumpsPedia.com 84 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

C. Open SQL

D. Only SQL

Answer: A

Question #:284

You can create projection views for pooled or cluster tables

A. False

B. True

Answer: B

Question #:285

Which of the following statements regarding the event AT SELECTION-SCREEN ON HELP-REQUEST


FOR <FIELD> is correct?

A. None of the above.

B. This event will display self-defined (F1) help for the input field programmed

in the event block and will override any help possibly defined in the ABAP Dictionary for the field.

C. This event will display (F1) help for the input field on the selection screen.

Answer: C

Question #:286

Which of the following ABAP dictionary types can you use to define domains? There are 3 correct answers to
this question.

A. NUMC

B. FLOAT

C. DEC

D. DATE

E. CHAR

Answer: A C D

100% Success with DumpsPedia.com 85 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

Question #:287

At most, how many menu items (including functions, separators and submenus) can a menu have on the
screen?

A. 10

B. 20

C. 15

D. None of the above

Answer: C

Question #:288

Object or class events can trigger any number of handler methods.

A. True

B. False

Answer: A

Question #:289

What are the steps involved in SAP HANA Evolution? There are 3 correct answers to this question.

A. ABAP can access SAP HANA

B. ABAP can run on SAP HANA

C. ABAP applications on SAP HANA

D. Optimized ABAP on SAP HANA

E. ABAP as accelerator on SAP HANA

Answer: A B D

Question #:290

You should always buffer database tables that contain fewer than 100 records.

A. False

B.

100% Success with DumpsPedia.com 86 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

B. True

Answer: A

Question #:291

The line type for a table type can contain a flat, nested, or deep structure.

A. False

B. True

Answer: B

Question #:292

Code within an explicit enhancement point can be enhanced but cannot be replaced.

A. True

B. False

Answer: A

Question #:293

The Repository Information System is a useful tool to search for customer exits/function exits and BAdls in
the SAP system.

A. True

B. False

Answer: A

Question #:294

If data objects of type I are being used to store the result of a calculation, the decimals will be truncated.

A. True

B. False

Answer: B

Question #:295

100% Success with DumpsPedia.com 87 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

It is possible to PERFORM <subroutine> ON COMMIT in an update task.

A. True

B. False

Answer: A

Question #:296

A change request is part of a task.

A. True

B. False

Answer: B

Question #:297

You can have only one selection screen for an ABAP program. (S. 436) {1 Richtig}

A. False

B. True

Answer: A

Question #:298

You can define search helps and parameter IDs for a data element.

A. False

B. True

Answer: B

Question #:299

The software component for a customer package can be…

A. HOME

B. Any SAP software component (i.e., SAP_APPL, SAP_BASIS, SAPJHR, etc.)

100% Success with DumpsPedia.com 88 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

Answer: A

Question #:300

You can list a maximum of six browsers in the Object Navigator. (S. 105) {1 Richtig}

A. True

B. False

Answer: B

Question #:301

The Object Navigator incorporates a total of 11 browsers.

A. False

B. True

Answer: B

Question #:302

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.

A. Hashed table

B. Index table

C. Sorted table

D. Standard table

Answer: B

Question #:303

Setting breakpoints for a method or function module within the Debugger allows the use of (F4) (value help)
to find the correct name.

A. True

B. False

100% Success with DumpsPedia.com 89 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

Answer: A

Question #:304

Which of the following are true statements? Select all that apply. (S. 342) {3 Richtig}

A. You can also select predefined data types to define the data type of the data element.

B. Field labels are defined for the domain

C. Reference data types can be used to define the data type of the data element.

D. The technical attributes of the data element can be defined by a domain, that is, the data type, the field
length, and the number of decimal places.

Answer: A C D

Question #:305

It is possible to use both buffering and secondary indexes to improve performance of a search help.

A. True

B. False

Answer: A

Question #:306

Methods provide which types of parameters? Select all that apply.

A. Output

B. Return values

C. Input

D. Input/output (changing)

E. Exceptions

Answer: A B C D E

Question #:307

To generate the function modules for a lock object for a custom table (ENQUEUEJlock_object] and

100% Success with DumpsPedia.com 90 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

DEQUEUEJIock_object]), which tool would you use?

A. Function Builder (Transaction SE37)

B. General Table Maintenance Dialog (Transaction SE54)

C. ABAP Dictionary (Transaction SE11)

D. Text Elements (Transaction SE32)

E. Reuse Library (Transaction SE83)

Answer: C

Question #:308

A development object can be assigned to only one package

A. False

B. True

Answer: B

Question #:309

The READ-ONLY addition for the attribute declaration can be used in the private and public visibility section.

A. True

B. False

Answer: B

Question #:310

When analyzing a program, which tasks can you perform using the code inspector? There are 3 correct
answers to this question.

A. Discover unused variables.

B. Inspect the memory consumption.

C. Determine used database tables.

D. Execute the extended program check.

E. Evaluate the time needed for program execution.

100% Success with DumpsPedia.com 91 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

Answer: A C D

Question #:311

With what can you simulate multiple inheritance?

A. INTERFACES

B. REDEFINITION

C. INHERITING FROM

Answer: A

Question #:312

If an error or warning message is sent from the ABAP dialog module for the

FIELD statement within the CHAIN and ENDCHAIN statements, then all of the

fields within CHAIN and ENDCHAIN are ready for user input again. (S. 411) {1 Richtig}

A. False

B. True

Answer: B

Question #:313

A development object can be assigned to only one change request.

A. True

B. False

Answer: B

Question #:314

An internal table can have primary keys as well as secondary keys.

A. True

B. False

100% Success with DumpsPedia.com 92 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

Answer: A

Question #:315

Which of the following statements are true? Select all that apply. (S.596) {3 Richtig}

A. Implicit enhancement options allow you to enhance interface parameters for function modules and
methods without modifying the repository object.

B. An implicit enhancement point can be used to insert code in an SAP program and is always available to
the customer.

C. None of the above.

D. Implicit enhancement can be used to enhance SAP objects developed prior to SAP NetWeaver 7.0.

Answer: A B D

Question #:316

What is the ALV Object Model? Please choose the correct answer.

A. A group of hierarchal classes that describe the ALV Grid as a whole but do not inherit from a single
class

B. A group of classes that apply Grid as a whole and inherit from a multiple class

C. A group of classes that describe the ALV Grid as a whole and inherit from a single class

D. A group of classes that describe the BDC Grid as a whole and inherit from a single class

Answer: A

Question #:317

The class constructor method is called automatically when you access the class for the first time.

A. True

B. False

Answer: A

Question #:318

What does a non-exclusive debugging mode mean? Select all that apply.

A.

100% Success with DumpsPedia.com 93 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

A. Debugging is not possible for conversion or field exits

B. Owing to the commit, inconsistent datasets can occur in the database.

C. Debugging is not possible between the statements SELECT and ENDSELECT '—' because the database
cursor needs to be closed using a COMMIT.

D. Someone else is debugging the same source code

E. It may be used anywhere in the landscape.

F. A roll-out is forced in the application after each Debugger view

Answer: A B C F

Question #:319

In addition to the primary key of an internal table, how many secondary indexes can you define for an internal
table? Please choose the correct answer.

A. 0

B. 1

C. 15

D. 10

Answer: C

Question #:320

If you enter the value "0" or blank ("") as the next screen, then the system

resumes processing from the point at which the screen was initiated, assuming the Next Screen attribute is
overridden

dynamically in the program.

A. True

B. False

Answer: A

Question #:321

The READ statement with the BINARY SEARCH addition cannot be used for a sorted internal table.

100% Success with DumpsPedia.com 94 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

A. False

B. True

Answer: A

Question #:322

You cannot use the LIKE statement to define an attribute in a class.

A. True

B. False

Answer: B

Question #:323

Which of the following steps are required to set up a shared memory area? There are 3 correct answers to this
question.

A. Generate an area root class

B. Declare a catalog object

C. Call the attach_for_write method of area root class

D. Set the root object

E. Enable multiple versions of an area root class

Answer: A C D

Question #:324

What do you need to have in your program to respond to the DOUBLE_CLICK event raised by an instance of
the CL_GUI_ALV_GRID class?

There are 3 correct answers to this question.

A. A SET HANDLER statement to register the handler to the event

B. A handler class

C. A CATCH statement to capture the event

D. A method to read the registration table

100% Success with DumpsPedia.com 95 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

E. A handler method for the event

Answer: A B E

Question #:325

Subroutines provide which types of parameters? Select all that apply.

A. Output

B. Return values

C. Exceptions

D. Input

E. Input/output (changing)

Answer: A E

Question #:326

When to use Enhanced Open SQL?

There are 2 correct answers to this question.

A. To view scalar components

B. To access system fields

C. Need the query in one piece of code only

D. At the time of Dictionary Views

Answer: B C

Question #:327

You are working with ABAP Development Tools (ADT) For Eclipse. Which of the following options belongs
to the settings of a specific ABAP project rather than the entire Eclipse workbench? Please choose the correct
answer.

A. Statement template options

B. Editor shortcut key options

C. Code completion options

D.

100% Success with DumpsPedia.com 96 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

D. Code formatting options

Answer: D

Question #:328

Lock objects are only required when doing dialog programming; SAP's best practice does not require them
when doing background or en masse changes, as there is no COMMIT WORK that will occur.

A. False

B. True

Answer: A

Question #:329

Which statement will interrupt the processing of the current screen and branch to new screen?

A. LEAVE TO SCREEN <NNNN>

B. SET SCREEN <NNNN>

C. None of the above

D. CALL SCREEN <NNNN>

Answer: D

Question #:330

In which of the following situations could a row store table be more suitable than a column store table? There
are 2 correct answers to this question.

A. The table contains data that you want to aggregate.

B. The table contains mainly distinct values per column across rows.

C. The table contains text that you want to search.

D. The table contains only a small number of records.

Answer: B D

Question #:331

At most, how many buttons can the application toolbar have on the screen?

100% Success with DumpsPedia.com 97 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

A. 20

B. None of the above

C. 35

D. 10

E. 30

Answer: C

Question #:332

Each button on a Dynpro (screen) requires the assignment of a function code. This function code...

A. Can be used to identify when the button is clicked by looking for the function code in the screen's
OK_CODE •—I field.

B. Is used to define global variables that receive a value when the button is '—' clicked.

C. Prevents the function code from be assigned to a menu item.

Answer: A

Question #:333

The _WAIT parameter of a lock object waits for the lock to be successful.

A. False

B. True

Answer: A

Question #:334

Which statements are true? Select all that apply.

A. The ALV Object Model requires a table refresh after programmatically changing the ALV

B. The ALV Grid can define a sort criteria for initial display.

C. The ALV Object Model uses a reference to the data table for display.

D. The ALV Object Model can define a sort criteria for initial display.

E.

100% Success with DumpsPedia.com 98 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
Braindumps Questions SAP - C_TAW12_750

E. The ALV Grid uses a reference to the data table for display.

F. The ALV Grid requires a table refresh after programmatically changing the DALV.

Answer: B C D E F

100% Success with DumpsPedia.com 99 ofthe


99waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.exams4success.com/
THANK YOU FOR DOWNLOADING
C_TAW12_750 UPDATED EXAM DUMPS

Note: Thanks For Trying The Demo Of Our C_TAW12_750 Exam Product
Questions

Visit Our Site to Purchase the Full Set of Actual C_TAW12_750 Exam
Questions With Answers.

100% Money Back Guarantee

Visit The Link Below

https://www.exams4success.com/sap/c_taw12_750-pdf-exam-dump
s

Use Coupon “E4S25%” for extra 25% discount on the purchase of PDF
Questions and Answers. Pass your C_TAW12_750 certification exam in
first try.

https://www.exams4success.com/

You might also like