Weekend Sale Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: buysanta

Exact2Pass Menu

Question # 4

Which patterns raise an exception? Note: There are 3 correct answers to this question.

A.

DATA: gv_target TYPE p DECIMALS 2. CONSTANTS: go intl TYPE i VALUE 3. gv_target -U EXACT (2 gcojntl).

B.

DATA: gv_target TYPE string. □ CONSTANTS: gco_string TYPE LENGTH 16 VALUE 0123456789ABCDEF*. gv_target = EXACT # gco_string+5 (5) ).

C.

DATA: gv_target TYPE c LENGTH 5. V □ CONSTANTS: ECO string TYPE string VALUE 0123456789ABCDEF". gv_target - EXACT (gco_string + 5 (6) ).

D.

DATA: Ev target TYPE p DECIMALS 3. CONSTANTS: gcojntl TYPE i VALUE 2. Ev_target -U EXACT #2 / gcojntl ).

E.

DATA: gv_target TYPE d. s/ □ CONSTANTS: gco_date TYPE d VALUE '20331233*. gv_target EXACT ( geo_date).

Full Access
Question # 5

What are valid statements? Note: There are 3 correct answers to this question

A.

In class CL1, the interface method is named if-ml.

B.

Class CL2 uses the interface.

C.

Class CL1 uses the interface.

D.

In class CL2, the interface method is named ifl-ml.

E.

Class CL1 implements the interface.

Full Access
Question # 6

You want to define the following CDS view entity with an input parameter:

Define view entity Z_CONVERT With parameters currency : ???

Which of the following can you use to replace "???? Note: There are 2 correct answers to this

question.

A.

built-in ABAP type

B.

A built-in ABAP Dictionary type

C.

A data element

D.

A component of an ABAP Dictionary structure

Full Access
Question # 7

Which ABAP SQL clause allows the use of inline declarations?

A.

FROM

B.

INTO CORRESPONDING FIELDS OF

C.

INTO

D.

FIELDS

Full Access
Question # 8

In class ZCL_CLASS_A, you use the statement DATA var TYPE ***

What may stand in place of ***? Note: There are 2 correct answers to this question.

A.

The name of a type defined privately in class ZCL_CLASS_A

B.

The name of a data element from the ABAP Dictionary

C.

The name of a type defined privately in another class

D.

The name of a domain from the ABAP Dictionary

Full Access
Question # 9

You want to provide a short description of the data definition for developers that will be attached to the database view

Which of the following annotations would do this if you inserted it on line #27

A.

@UI headerinto description label

B.

@UI.badge.title.label

C.

@EndUserText.quickInfo

D.

@EndUserText label

Full Access
Question # 10

You have two internal tables itab1 and itab2.What is true for using the expression itab1 = corresponding #( itab2 )? Note: There are 2 correct answers to this question.

A.

Fields with the same name but with different types may be copied from itab2 to itab1.

B.

itab1 and itab2 must have at least one field name in common.

C.

Fields with the same name and the same type will be copied from itab2 to itab1.

D.

itab1 and itab2 must have the same data type.

Full Access
Question # 11

What are some of the reasons that Core Data Services are preferable to the classical approach to data modeling? Note: There are 2 correct answers to this question.

A.

They implement code pushdown.

B.

They avoid data transfer completely.

C.

They transfer computational results to the application server.

D.

They compute results on the application server.

Full Access
Question # 12

In the assignment, data (gv_result) = 1/8. what will be the data type of gv_result?

A.

OTYPE I

B.

TYPE DEFLOAT 16

C.

TYPE P DECIMALS 3

D.

TYPE P DECIMALS 2

Full Access
Question # 13

In this nested join below in which way is the join evaluated?

A.

From the left to the right in the order of the tables:

1.

a is joined with b

2.

b is joined with c

B.

From the right to the left in the order of the tables:

1.

b is joined with c.

2.

b is joined with a.

C.

From the top to the bottom in the order of the on conditions

1.

b is joined with c

2.

a is joined with b

D.

From the bottom to the top in the order of the on conditions:

1.

a is joined with b

2.

b is joined with c

Full Access
Question # 14

What RESTful Application Programming object contains only the fields required for a particular app?

A.

Database view

B.

Metadata extension

C.

Projection View

D.

Data model view

Full Access
Question # 15

What is the purpose of a foreign key relationship between two tables in the ABAP Dictionary?

A.

To document the relationship between the two tables

B.

To ensure the integrity of data in the corresponding database tables

C.

To create a corresponding foreign key relationship in the database

Full Access
Question # 16

What are some properties of database tables? Note: There are 2 correct answers to this question.

A.

They store information in two dimensions.

B.

They may have key fields.

C.

They can have any number of key fields.

D.

They can have relationships to other tables.

Full Access
Question # 17

What are valid statements? Note: There are 2 correct answers to this question.

A.

##NEEDED is checked by the syntax checker.

B.

The pragma is not checked by the syntax checker.

C.

#EC_NEEDED is not checked by the syntax checker.

D.

The pseudo-comment is checked by the syntax checker

Full Access
Question # 18

Exhibit:

What are valid statements? Note: There are 3 correct answers to this question.

A.

go_if 1 may call method ml with go_ift->ml().

B.

Instead of go ell = NEW #(...) you could use go ifl = NEW cll(. ... ).

C.

go_cll may call method ml with go_dl->ifl-ml().

D.

Instead of go_cll = NEW #() you could use go_iff - NEW #(...).

E.

go_ifl may call method m2 with go if->m2(...).

Full Access
Question # 19

Class super has subclass sub. Which rules are valid for the sub constructor? Note: There are 2 correct answers to this question.

A.

The method signature can be changed.

B.

Import parameters can only be evaluated after calling the constructor of super.

C.

The constructor of super must be called before using any components of your own instance.

D.

Events of your own instance cannot be raised before the registration of a handler in super.

Full Access
Question # 20

Which statement can you use to change the contents of a row of data in an internal table?

A.

Append table

B.

Modify table

C.

Insert table

D.

Update table

Full Access
Question # 21

What would be the correct expression to change a given string value 'mr joe doe' into 'JOE' in an ABAP SQL field list?

A.

SELECT FROM TABLE dbtabl FIELDS

Of1,

upper(left( 'mr joe doe', 6)) AS f2_up_left, f3,

B.

SELECT FROM TABLE dbtabl FIELDS

Of1,

left(lower(substring( 'mr joe doe', 4, 3)), 3) AS f2_left_lo_sub, f3,

C.

SELECT FROM TABLE dbtabl FIELDS

Of1,

substring(upper('mr joe doe'), 4, 3) AS f2_sub_up, f3,...

D.

SELECT FROM TABLE dbtabl FIELDS

Of1,

substring(lower(upper( 'mr joe doe' ) ), 4, 3) AS f2_sub_lo_up, f3,

Full Access
Question # 22

Using ABAP SQL, which select statement selects the mat field on line #17?

A.

SELECT mat FROM Material...

B.

SELECT mat FROM demo_sales_cds_so_i_ve...

C.

SELECT mat FROM demo_sales_so_i...

D.

SELECT mat FROM demo sales cds material ve...

Full Access
Question # 23

/DMO/I_Connection is a CDS view.

What variable type is connection full based on the following code? DATA connection full TYPE

/DMD/I_Connection.

A.

Simple variable

B.

Structure

C.

Internal Table

Full Access
Question # 24

In ABAP SQL, which of the following retrieves the association field_Airline-Name of a CDS view?

A.

\_Airline-Name

B.

/_Airline Name

C.

@_Airline-Name

D.

"_Airline Name

Full Access