Which statement can you use to change the contents of a row of data in an internal table?
In CDS views, what do joins and associations have in common?
(Select 2 correct answers)
Which models must you use to develop artifacts that expose ABAP-based backend services based on semantic data models? (Select 2)
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 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)
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)
In a CDS view, where can a value help be defined?
In what order are objects created to generate a RESTful Application Programming application?
Setting a field to read-only in which object would make the field read-only in all applications of the RAP model?
What is a class defined as part of an ABAP program called?
How can you control data access of a business user?
(Select 3 correct answers)
Which of the following Core Data Services built-in functions returns a result of type INT4?
(Select 2 correct answers)
How do you make class sub1 a subclass of class super1?
What can you do in SAP S/4HANA Cloud, public edition? (2 correct)
What are some necessary parts of the singleton pattern? (Select 3)
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)
When you create an exception class, what does SAP recommend you do?
(Select 3 correct answers)
Which internal table type allows unique and non-unique keys?
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.
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.
What can be translated?
(Select 3 correct answers)
Which of the following are valid ABAP SQL type conversions? (Select 3 correct answers)
Which RAP object can be used to organize the display of fields in an app?
Which of the following rules apply for dividing with ABAP SQL?
Note: There are 3 correct answers to this question.