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)
In RESTful Application Programming, a business object contains which parts?
Note: There are 2 correct answers to this question.
What RESTful Application Programming feature is used to ensure the uniqueness of a semantic key?
You select a field flight_date with type DATS in the field list of a CDS view.
Which of the following expressions returns the 2-digit month from the field?
(Select 2 correct answers)
In a class you use the statement DATA var TYPE …
What may stand in place of the type?
(Select 2 correct answers)
Which of the following custom code use cases falls under Tier 1 extensibility guidelines?
What are some features of ABAP SQL?
Note: There are 2 correct answers to this question.
Which of the following are reasons that SAP recommends developing Core Data Services view entities as opposed to classic Core Data Services DDIC-based views?
Note: There are 2 correct answers to this question.
You have two database tables - ZDEPARTMENTS and ZEMPLOYEES. They are linked by a foreign key relationship: ZEMPLOYEES is the foreign key table and ZDEPARTMENTS is the check table. A department may have any number of employees (including none at all).
What is the correct cardinality of the foreign key relationship?
Which of the following are valid ABAP SQL type conversions? (Select 3 correct answers)
You want to define the following CDS view entity with an input parameter:
define view entity Z_CONVERT
with parameters i_currency : ???
Which of the following can you use to replace ????
(Select 2 correct answers)
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.
Given the following code excerpt that defines an SAP HANA database table:
DEFINE TABLE demo_table
{
KEY field1 : REFERENCE TO abap.clnt(3);
KEY field2 : abap.char(1332);
@Semantics.quantity.unitOfMeasure : 'demo_table.field4'
field3 : abap.quan(2);
field4 : abap.unit(2);
}
Which field is defined incorrectly?
You want to check the behavior of an ordinary class ZCL_ORDINARY with class LTCL_TEST. How do you specify LTCL_TEST as a test class?
Which of the following Core Data Services built-in functions returns a result of type INT4?
(Select 2 correct answers)