Weekend Sale Special - Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: top65certs

Complete C_ABAPD_2309 SAP Materials

SAP Certified Associate - Back-End Developer - ABAP Cloud Questions and Answers

Question 17

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

Options:

A.

String

B.

T

C.

C

D.

P

Question 18

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

Options:

A.

IS SUPPLIED

B.

IS NOT INITIAL

C.

IS INSTANCE OF

D.

IS BOUND

Question 19

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

Options:

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.

Question 20

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

Options:

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,