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?
When you create an exception class, what does SAP recommend you do?
(Select 3 correct answers)
Which of the following integration frameworks have been released for ABAP Cloud development? (Select 3)
What are some principles of encapsulation?
(Select 2 correct answers)
Given this code,
DATA(structure_variable) =
REDUCE structure_type(
INIT h_structure_variable TYPE structure_type
FOR row IN source_itab
NEXT
h_structure_variable-f1 += row-f1
h_structure_variable-f2 += row-f2 ).
Which of the following statements are correct? (Select 2 correct answers)
Which of the following is a technique for defining access controls?
What is the purpose of a foreign key relationship between two tables in the ABAP Dictionary?
You want to join two database tables, T_CARRIER and T_CONNECTIONS, to retrieve all carriers, whether they have corresponding connections or not.
Which statements would achieve this?
Note: There are 2 correct answers to this question.
Which of the following are rules that extensions in SAP S/4HANA Cloud, public edition must adhere to? (Select 3 correct answers)
Which internal table type allows unique and non-unique keys?
What RAP object contains only the fields required for a particular app?
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?
In CDS views, what do joins and associations have in common?
(Select 2 correct answers)
In a CDS view, where can a value help be defined?
You have a superclass super1 and a subclass sub1 of super1. Each class has an instance constructor and a static constructor. The first statement of your program creates an instance of sub1.
In which sequence will the constructors be executed?
Which of the following custom code use cases falls under Tier 1 extensibility guidelines?
Which statement creates a reference variable for class CL_VEHICLE?
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?
In a subclass sub1, you want to redefine a component of a superclass super1.
How do you achieve this?
Note: There are 2 correct answers to this question.
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)
When defining a METHOD, which parameter type can only have 1 value?
In a class you use the statement DATA var TYPE …
What may stand in place of the type?
(Select 2 correct answers)
When you join two database tables, which of the following rules applies to the database fields you use in the join?
Which RAP object can be used to organize the display of fields in an app?