Special Summer 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

target_itab = VALUE #( FOR row IN source_itab (

field1 = row-field1

field2 = row-field2

field3 = row-field3 )

).

Which of the following statements are correct? Note: There are 2 correct answers to this question.

A.

FOR defines a loop that runs over the content of source_itab

B.

source_itab is only visible within the loop.

C.

row is a predefined name and cannot be chosen arbitrarily.

D.

row is only visible within the loop.

Full Access
Question # 5

In what order are objects created to generate a RESTful Application Programming application?

A.

Database table 1

B.

Service binding Projection view 4

C.

Service definition 3

D.

Data model view 2

E.

D A B C

F.

B D C A

G.

A D C B

Full Access
Question # 6

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

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

You have a superclass superl and a subclass subl of superl. Each class has an instance constructor and a static constructor. The first statement of your program creates an instance of subl. In which sequence will the constructors be executed?

Full Access
Question # 9

In a test method you call method cl_abap_unit_assert=>assert_equals( .. ) in the following way:

CLASS Itcl1 DEFINITION FOR TESTING RISK LEVEL HARMLESS DURATION SHORT.

PRIVATE SECTION.

METHODS m1 FOR TESTING.

ENDCLASS.

CLASS Itcl1 IMPLEMENTATION.

METHOD m1.

DATA: go_test_object TYPE REF TO zcl_to_be_tested.

CONSTANTS: Ico_exp TYPE string VALUE 'test2'.

CREATE OBJECT go_test_object.

cl_abap_unit_assert=>assert_equals(

EXPORTING

act = go_class->mv_attribute

exp = lco_exp

msg = 'assert equals failed ' && go_test_object->mv_attribute && ' ' && lco_exp

ENDMETHOD.

ENDCLASS.

What will happen if method parameters act and exp are not equal?

A.

The tested unit will automatically be appended to a default ABAP Test Cockpit Variant.

B.

The tested unit cannot be transported.

C.

The test will be aborted.

D.

There will be a message in the test log.

Full Access
Question # 10

Which of the following are features of Core Data Services? Note: There are 3 correct answers to this question.

A.

Inheritance

B.

Associations

C.

Annotations

D.

Delegation

E.

Structured Query Language (SQL)

Full Access
Question # 11

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

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

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

When processing an internal table with the statement LOOP AT itab... ENDLOOP, what system variable contains the current row number?

A.

sy-index

B.

sy-subrc

C.

sy-linno

D.

sy-tabix

Full Access
Question # 15

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

Which ABAP SQL clause allows the use of inline declarations?

A.

FROM

B.

INTO CORRESPONDING FIELDS OF

C.

INTO

D.

FIELDS

Full Access
Question # 17

You are designing the following select statement in ABAP Open SQL:

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.

#6

C.

#8

D.

#4

Full Access
Question # 18

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

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

Given the following code,

DATA gv_text1 TYPE string. "#EC_NEEDED

DATA gv_text2 TYPE string ##NEEDED.

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

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

In which products must you use the ABAP Cloud Development Model? Note: There are 2 correct answers to this question.

A.

SAP S/4HANA Cloud, private edition

B.

SAP BTP, ABAP environment

C.

SAP S/4HANA on premise

D.

SAP S/4HANA Cloud, public edition

Full Access
Question # 23

As a consultant you are posed the following question from a client who is using SAP S/4HANA Cloud,

public edition and also SAP BTP, ABAP environment.

"We are currently using an SAP Fiori app based on SAP Fiori elements that analyzes open orders. We

have determined that it should be extended via a new button on the UI which will perform an on-

the-fly calculation and display the result in a quick popup for the enduser. We have been informed by

SAP that all underlying stack layers for the SAP Fiori app have been extensibility enabled."

Based on this which of the following extension types would you recommend to the customer to add

the new button?

A.

RAP BO Behavior Extension

B.

SAP HANA database table extension

C.

RAP BO Node Extension

D.

Business Service Extension

Full Access
Question # 24

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