Winter Special Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: myex65

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, which EML statement retrieves an object?

A.

Find entity

B.

Select entity

C.

Get entity

D.

Read entity

Full Access
Question # 5

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

Exhibit

Which of the following ABAP SQL snippets are syntactically correct ways to provide a value for the parameter on line #4? Note: There are 2 correct answers to this question

A.

...SELECT * FROM deno_cds_param_view_entity (p_date = @ (cl_abap_context_info->get_system_date ())...

B.

...SELECT * FROM deno_cds_param_view_entity (p_date - '20230101')... )

C.

...SELECT * FROM demo_cds_param_view_entity (p_date: 20238181')... )

D.

...SELECT * FROM demo_cds_param_view entity (p_date: $session.system_date)...

Full Access
Question # 7

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

After you created a database table in the RESTful Application Programming model, what do you create next?

A.

A metadata extension

B.

A projection view

C.

A data model view

D.

A service definition

Full Access
Question # 9

For what kind of applications would you consider using on-stack developer extensions? Note: There are 2 correct answers to this question.

A.

Applications that provide APIs for side by side SAP BTP apps

B.

Applications that access SAP S/4HANA data using complex SQL

C.

Applications that integrate data from several different systems

D.

Applications that run separate from SAP S/4HANA

Full Access
Question # 10

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

The "demo_ods_assoc_spfi data source referenced in line #4 contains a field "connid" which you would like to expose in the element list.

Which of the following statements would do this if inserted on line #8?

A.

demo_ods_assoc_spfli.connid,

B.

demo_ods_assoc_spfli-connid/

C.

spfli-connid,

D.

_spfli.connid/

Full Access
Question # 12

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

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

Exhibit:

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

Given the following Core Data Services View Entity Data Definition:?demo_cds_assoc_spfli? data source referenced in line #4 contains a field ?connid? which you would like to expose in the element list. Which of the following statements would do this if inserted on line #8?

A.

spfli-connid,

B.

demo_cds_assoc_spfli-connid,

C.

demo_cds_assoc_spfli.connid,

D.

_spfli.connid,

Full Access
Question # 16

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

You are given the following information:

1.

The data source "spfli" on line #2 is an SAP HANA

database table

2.

"spfli" will be a large table with over one million rows.

3.

This program is the only one in the system that accesses

the table.

4.

This program will run rarely.

Based on this information, which of the following general

settings should you set for the spfli database table? Note:

There are 2 correct answers to this question.

A.

"Storage Type" to "Column Store"

B.

"Load Unit to "Column Loadable"

C.

"Storage Type" to "Row Store"

D.

"Load Unit' to 'Page Loadable"

Full Access
Question # 18

What are some characteristics of secondary keys for internal tables? Note: There are 3 correct answers to this question.

A.

Secondary keys must be chosen explicitly when you actually read from an internal table.

B.

Multiple secondary keys are allowed for any kind of internal table.

C.

Hashed secondary keys do NOT have to be unique.

D.

Sorted secondary keys do NOT have to be unique.

E.

Secondary keys can only be created for standard tables.

Full Access
Question # 19

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

Which of the following are parts of the definition of a new database table? Note: There are 2 correct answers to this question.

A.

Partitioning attributes

B.

Extension

C.

Semantic table attributes

D.

Field list

Full Access
Question # 21

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

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

Why would you use Access Controls with CDS Views? Note: There are 2 correct answers to this question.

A.

Only the data corresponding to the user's authorization is transferred from the database to the application layer.

B.

The system field sy-subrc is set, giving you the result of the authorization check

C.

You do not have to remember to implement AUTHORITY CHECK statements.

D.

All of the data from the data sources is loaded into your application automatically and filtered there according to the user's authorization.

Full Access
Question # 24

In ABAP SQL, which of the following can be assigned an alias? Note: There are 2 correct answers to this question.

A.

order criterion (from order by clause)

B.

field (from field list)

C.

database table

D.

group criterion (from group by clause)

Full Access
Question # 25

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