Which of the following Core Data Services built-in functions returns a result of type INT4?
(Select 2 correct answers)
You have attached a system field to an input parameter of a CDS view entity as follows:
define view entity Z_ENTITY
with parameters
@Environment.systemField: #SYSTEM_LANGUAGE
language : spras
What are the effects of this annotation? (Select 2 correct answers)
Which of the following are rules that extensions in SAP S/4HANA Cloud, public edition must adhere to? (Select 3 correct answers)
Given the following Core Data Service View Entity Data Definition:
@AccessControl.authorizationCheck: #NOT_REQUIRED
DEFINE VIEW ENTITY demo_flight_info_union AS
SELECT FROM scustom {
KEY id,
KEY 'Customer' AS partner,
name,
city,
country
}
UNION
SELECT FROM stravelag {
KEY agencynum AS id,
'Agency' AS partner,
name,
city,
country
}
When you attempt to activate the definition, what will be the response?
Given the following Core Data Service view entity data definition:
@AccessControl.authorizationCheck: #NOT_REQUIRED
DEFINE VIEW ENTITY demo_cds_param_view_entity
WITH PARAMETERS
p_date : abap.dats
AS SELECT FROM sflight
{
key carrid,
key connid,
key fldate,
price,
seatsmax,
seatsocc
}
WHERE fldate >= $parameters.p_date;
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.
Which of the following ABAP SQL aggregate functions accept an ABAP SQL expression (e.g., f1 + f2) as input?
(Select 2 correct answers)
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.
Which of the following types of Core Data Services Views can be used at the consumption layer?
Note: There are 3 correct answers to this question.
Which of the following are personas under the SAP S/4HANA Cloud Extensibility Framework?
(Select 2 correct answers)
In what order are objects created to generate a RESTful Application Programming application?
When you work with a test class, you can set up some prerequisites before the actual testing.
In which sequence will the following fixtures be called by the test environment?
In a booking record, how can you calculate the difference in days between the order date (type D) and the flight date (type D) of a flight?
Which of the following rules apply for dividing with ABAP SQL?
Note: There are 3 correct answers to this question.
In RESTful Application Programming, a business object contains which parts?
Note: There are 2 correct answers to this question.
When you create an exception class, what does SAP recommend you do?
(Select 3 correct answers)