New Year Sale - Special 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: 70dumps

C_ABAPD_2309 Questions and Answers

Question # 6

Which ABAP SQL clause allows the use of inline declarations?

A.

FROM

B.

INTO CORRESPONDING FIELDS OF

C.

INTO

D.

FIELDS

Full Access
Question # 7

What are advantages of using a field symbol for internal table row access? Note: There are answers to this question.

A.

The field symbol can be reused for other programs.

B.

A MODIFY statement to write changed contents back to the table is not required.

C.

The row content is copied to the field symbol instead to a work area

D.

Using a field symbol is faster than using a work area.

Full Access
Question # 8

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 # 9

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 # 10

For the assignment, gv_target = gv_source.

which of the following data declarations will always work without truncation or rounding? Note: There

are 2 correct answers to this question.

A.

DATA gv_source TYPE string, to DATA gv_target TYPE c.

B.

DATA gv_source TYPE c. to DATA gv_target TYPE string.

C.

DATA gv_source TYPE d. to DATA gv_target TYPE string.

D.

DATA gv_source TYPE p LENGTH 8 DECIMALS 3. to DATA gv_target TYPE p LENGTH 16 DECIMALS 2.

Full Access
Question # 11

Which internal table type allows unique and non-unique keys?

A.

Sorted

B.

Hashed

C.

Standard

Full Access
Question # 12

when you attempt to activate the definition, what will be the response?

A.

Activation error because the field names of the union do not match

B.

Activation error because the field types of the union do not match

C.

Activation error because the key fields of the union do not match

D.

Activation successful

Full Access
Question # 13

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 # 14

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 # 15

When does SAP recommend to use a sorted or a hashed table respectively? Note: There are 2 correct answers to this question.

A.

A hashed table, when you read a single record and specify the complete key.

B.

A hashed table, when you read a subset in a loop and specify a part of the key from the left without gaps.

C.

A sorted table, when you read a subset in a loop and specify a part of the key from the left ^ without gaps.

D.

A sorted table, when you read a single record and specify non key fields.

Full Access
Question # 16

In RESTful Application Programming, a business object contains which parts? Note: There are 2 correct answers to this question.

A.

CDS view

B.

Behavior definition

C.

Authentication rules

D.

Process definition

Full Access
Question # 17

Setting a field to read-only in which object would make the field read-only in all applications of the RESTful Application Programming model?

A.

Service definition

B.

Behaviour definition

C.

Projection view

D.

Metadata extension

Full Access
Question # 18

In ABAP SQL, which of the following retneves the association field _Airline-Name of a CDS view?

A.

\ Airnline-Name

B.

@_Airline-Name

C.

/_Anine-Name

D.

*_Airline-Name

Full Access
Question # 19

Which type of legacy code does SAP recommend you eliminate when you review modifications as part of an SAP S/4HANA system conversion? Note: There are 2 correct answers to this question.

A.

Code that supports a critical business process

B.

Code that now is identical to a standard SAP object

C.

Code that has less than 10% usage according to usage statistics

D.

Code that can be redesigned as a key user extension

Full Access
Question # 20

with which predicate condition can you ensure that the CAST will work?

A.

IS SUPPLIED

B.

IS NOT INITIAL

C.

IS INSTANCE OF

D.

IS BOUND

Full Access
Question # 21

In a RESTful Application Programming application, in which objects do you bind a CDS view to create a value help? Note: There are 3 correct answers to this question.

A.

Data model view

B.

Behavior definition

C.

Metadata Extension

D.

Service Definition

E.

Projection View

Full Access
Question # 22

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 # 23

What are some features of a unique secondary key? Note: There are 2 correct answers to this question.

A.

It is created when a table is filled.

B.

It is updated when the modified table is read again.

C.

It is created with the first read access of a table.

D.

It is updated when the table is modified.

Full Access
Question # 24

When accessing the subclass instance through go_super, what can you do? Note: There are 2 correct answers to this question.

A.

Access the inherited private components.

B.

Access the inherited public components.

C.

Call a subclass specific public method

D.

Call inherited public redefined methods.

Full Access
Question # 25

Which of the following are parts of answers to this question.

A.

Partitioning attributes

B.

Extension

C.

Field list

D.

Semantic table attributes

Full Access