Labour Day Sale - Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: mxmas70

Home > SAP > SAP Certified Associate > C_ABAPD_2309

C_ABAPD_2309 SAP Certified Associate - Back-End Developer - ABAP Cloud Question and Answers

Question # 4

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

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

Which restrictions exist for ABAP SQL arithmetic expressions? Note: There are 2 correct answers to this question.

A.

Floating point types and integer types can NOT be used in the same expression.

B.

The operator/is allowed only in floating point expressions.

C.

Decimal types and integer types can NOT be used in the same expression.

D.

The operator is allowed only in floating point expressions.

Full Access
Question # 7

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

A.

"zcxl" is a dictionary structure, and "paraml" and "param2" are this structure.

B.

"paraml11 and "param2" are predefined names.

C.

The code creates an exception object and raises an exception.

D.

"previous" expects the reference to a previous exception

Full Access
Question # 8

Which of the following integration frameworks have been released for ABAP cloud development? Note: There are 3 correct answers to this question.

A.

SOAP consumption

B.

CDS Views

C.

Business Add-ins (BAdls)

D.

Business Events

E.

OData services

Full Access
Question # 9

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

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

Which of the following types are permitted to be used for on line #4? Note: There are 2 correct answers to this question.

A.

A database table from the ABAP Dictionary

B.

A CDS DDIC-based view

C.

An external view from the ABAP Dictionary

D.

A database view from the ABAP Dictionary

Full Access
Question # 12

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

Which of the following is a generic internal table type?

A.

SORTED TABLE

B.

INDEX TABLE

C.

STANDARD TABLE

D.

HASHED TABLE

Full Access
Question # 15

What are the effects of this annotation? Note: There are 2 correct answers to this question.

A.

The value of sy-langu will be passed to the CDS view automatically both when you use the -1 CDS view in ABAP and in another CDS view entity (view on view).

B.

You can still override the default value with a value of your own.

C.

The value of sy-langu will be passed to the CDS view automatically when you use the CDS view in ABAP but not when you use it in another view entity

D.

It is no longer possible to pass your own value to the parameter.

Full Access
Question # 16

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

Which RESTful Application Programming object can be used to organize the display of fields in an app?

A.

Data model view

B.

Metadata extension

C.

Service definition

D.

Projection view

Full Access
Question # 18

To adhere to the most recent ABAP SQL syntax conventions from SAP, on which line must you insert the "INTO TABLE @gt flights" clause to complete the SQL statement?

A.

#15

B.

#4

C.

#6

D.

#8

Full Access
Question # 19

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

Which function call returns 0?

A.

Count_any_of ( val - ‘ABAP ABAP abap' sub "AB" )

B.

Count (val - 'ABAP ABAP abap' sub - 'AB' )

C.

find_any_of (val = "ABAP ABAP abap' sub = "AB")

D.

find_any_not_of( val 'ABAP ABAP abap’ sub = 'AB')

Full Access
Question # 21

Which extensibility type does SAP recommend you use to enhance the existing UI for an SAP Fiori app?

A.

Key user

B.

Classic

C.

Side-by-side

D.

Developer

Full Access
Question # 22

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

Which of the following are valid sort operations for internal tables? Note: There are 3 correct answers to this question.

A.

Sort a standard table using

SORT itab ASCENDING.

Sort a sorted table using

B.

SORT itab BY fieldl ASCENDING field2 DESCENDING.

Sort a standard table using

C.

SORT itab BY field1 field2.

Sort a standard table using

D.

SORT itab.

Sort a sorted table using

E.

SORT itab DESCENDING.

Full Access
Question # 24

Which of the following are ABAP Cloud Development Model rules?

Note: There are 2 correct answers to this question.

A.

Use public SAP APIs and SAP extension points.

B.

Build ABAP RESTful application programming model-based services.

C.

Reverse modifications when a suitable public SAP API becomes available.

D.

Build ABAP reports with either ABAP List Viewer (ALV) or SAP Fiori.

Full Access