SAP C_ABAPD_2309 Exam Practice Questions (P. 1)
- Full Access (79 questions)
- Six months of Premium Access
- Access to one million comments
- Seamless ChatGPT Integration
- Ability to download PDF files
- Anki Flashcard files for revision
- No Captcha & No AdSense
- Advanced Exam Configuration
Question #1
What are advantages of using a field symbol for internal table row access? (Choose two.)
- AUsing a field symbol is faster than using a work area.
- BThe field symbol can be reused for other programs.
- CThe row content is copied to the field symbol instead to a work area.
- DA MODIFY statement to write changed contents back to the table is not required.
send
light_mode
delete
Question #2
Given the following code excerpt that defines an SAP HANA database table:

Which field is defined incorrectly?

Which field is defined incorrectly?
send
light_mode
delete
Question #3
You have the following CDS definition:

(The data sources are joined by the field carrier_id. The name of the corresponding field in Z_SOURCE2 is carrier_id.)
Which of the following ON conditions must you insert in place of “???”?

(The data sources are joined by the field carrier_id. The name of the corresponding field in Z_SOURCE2 is carrier_id.)
Which of the following ON conditions must you insert in place of “???”?
- AON Z_Source1.carrier_id=Z_Source2.carrier_id
- BON $projection.Carrier= Source2.carrier id
- CON $projection.Carrier = _Source2.carrier
- DON $projection.carrier_id = Z_Source2.carrier_id
send
light_mode
delete
Question #4
Which of the following ABAP SQL statements are valid? (Choose two.)
- ASELECT FROM/dmo/connection -
FIELDS -
carrid,
airpfrom,
MAX(distance) AS dist_max,
MIN(distance) AS dist_min -
GROUP BY carrid, airpfrom -
INTO TABLE @DATA(It_hits). - BSELECT FROM /dmo/connection -
FIELDS -
carrid,
airpfrom,
MAX (distance) AS dist_max,
MIN(distance) AS dist_min -
INTO TABLE @DATA(It_hits). - CSELECT FROM /dmo/connection -
FIELDS -
MAX(distance) AS dist_max,
MIN (distance) AS dist_min -
INTO TABLE @DATA(It_hits). - DSELECT FROM /dmo/connection -
FIELDS -
carrid,
airpfrom
GROUP BY carrid, connid -
INTO TABLE @DATA(It_hits).
send
light_mode
delete
Question #5
What would be the correct expression to change a given string value ‘mr joe doe’ into ‘JOE’ in an ABAP SQL field list?
- ASELECT FROM TABLE dbtad1 -
FIELDS -
f1,
substring (upper( ‘mr joe doe’), 4, 3 ) AS f2_sub_up,
f3, … - BSELECT FROM TABLE dbtab 1 -
FIELDS -
f1,
left( lower( substring( ‘mr joe doe’ , 4, 3 ) ) , 3 ) AS f2_left_lo_sub, f3, … - CSELECT FROM TABLE dbtad1 -
FIELDS -
f1,
substring ( lower( upper( ‘mr joe doe’) ), 4, 3 ) AS f2_sub_lo_up, f3, … - D. SELECT FROM TABLE dbtad1
FIELDS -
f1,
upper(left( ‘mr joe doe’ , 6 ) ) AS f2_up_left,
f3, …
send
light_mode
delete
All Pages