SAP C_ABAPD_2507 - SAP Certified Associate - Back-End Developer - ABAP Cloud
Which of the following are personas under the SAP S/4HANA Cloud Extensibility Framework?
(Select 2 correct answers)
What RAP object contains only the fields required for a particular app?
What can be translated?
(Select 3 correct answers)
Which statement creates a reference variable for class CL_VEHICLE?
Constructors have which of the following properties?
(Select 2 correct answers)
Given the following Core Data Services (CDS) View Entity data definition:
DEFINE VIEW ENTITY demo_cds_view_entity
AS SELECT FROM spfli
{
cityfrom,
cityto,
carrid,
connid
}
When you attempt to activate the definition, what will be the response?
Which of the following are valid ABAP SQL type conversions? (Select 3 correct answers)
Given the following data definitions:
DATA: text TYPE string VALUE 'Date 1972-04-01 is in ISO format'.
DATA: regex TYPE string VALUE '[0-9]{4}(-[0-9]{2})(2}'.
In which of the following functions can you use regular expressions?
(Select 3 correct answers)
Which internal table type allows unique and non-unique keys?
You want to extract date information of a flight date (f_info) and format it like yyyy-dd-mm using the following code:
SELECT FROM TABLE dbtab1
FIELDS f1,
extract_year( f_info ) && '-' && extract_month( f_info ) && '-' && extract_day( f_info ) ...
For the extract_* functions to work, what can be the data dictionary types of f_info?
Note: There are 3 correct answers to this question.