As a consultant you are posed the following question from a client who is using SAP S/4HANA Cloud, public edition and also SAP BTP, ABAP environment.
"We are currently using an SAP Fiori app based on SAP Fiori elements that analyzes open orders. We have determined that it should be extended via a new button on the UI which will perform an on-the-fly calculation and display the result in a quick popup for the enduser. We have been informed by SAP that all underlying stack layers for the SAP Fiori app have been extensibility enabled."
Based on this which of the following extension types would you recommend to the customer to add the new button?
A. RAP BO Behavior Extension
B. SAP HANA database table extension
C. RAP BO Node Extension
D. Business Service Extension
When does SAP recommend to use a sorted or a hashed table respectively? Note: There are 2 correct answers to this question.
A. A hashed table, when you read a single record and specify the complete key.
B. A hashed table, when you read a subset in a loop and specify a part of the key from the left without gaps.
C. A sorted table, when you read a subset in a loop and specify a part of the key from the left ^ without gaps.
D. A sorted table, when you read a single record and specify non key fields.
Setting a field to read-only in which object would make the field read-only in all applications of the RESTful Application Programming model?
A. Service definition
B. Behaviour definition
C. Projection view
D. Metadata extension
Which of the following results in faster access to internal tables? Note: There are 3 correct answers to this question.
A. In a sorted internal table, specifying the primary key partially from the left without gaps.
B. In a sorted internal table, specifying the primary key completely.
C. In a standard internal table, specifying the primary key partially from the left without gaps.
D. In a hashed internal table, specifying the primary key partially from the left without gaps.
E. In a hashed internal table, specifying the primary key completely.
Which of the following are features of Core Data Services? Note: There are 3 correct answers to this question.
A. Inheritance
B. Associations
C. Annotations
D. Delegation
E. Structured Query Language (SQL)
Which field is defined incorrectly?
(Sorry, we do not have a more clear image. If we have a better resource for the image, we will update this one immediately.)
A. field1
B. field3
C. field4
D. field2
Which of the following are ABAP Cloud Development Model rules? Note: There are 2 correct answers to this question.
A. Use public SAP APIs and SAP extension points.
B. Build ABAP RESTful application programming model-based services.
C. Reverse modifications when a suitable public SAP API becomes available.
D. Build ABAP reports with either ABAP List Viewer (ALV) or SAP Fiori.
Which patterns raise an exception? Note: There are 3 correct answers to this question.
A. DATA: gv_target TYPE p DECIMALS 2. CONSTANTS: go intl TYPE i VALUE 3. gv_target -U EXACT (2 gcojntl).
B. DATA: gv_target TYPE string. CONSTANTS: gco_string TYPE LENGTH 16 VALUE 0123456789ABCDEF*. gv_target = EXACT # gco_string+5 (5) ).
C. DATA: gv_target TYPE c LENGTH 5. V CONSTANTS: ECO string TYPE string VALUE 0123456789ABCDEF". gv_target - EXACT (gco_string + 5 (6) ).
D. DATA: Ev target TYPE p DECIMALS 3. CONSTANTS: gcojntl TYPE i VALUE 2. Ev_target -U EXACT #2 / gcojntl ).
E. DATA: gv_target TYPE d. s/ CONSTANTS: gco_date TYPE d VALUE '20331233*. gv_target EXACT ( geo_date).
Which internal table type allows unique and non-unique keys?
A. Sorted
B. Hashed
C. Standard
You have a superclass superl and a subclass subl of superl. Each class has an instance constructor and a static constructor. The first statement of your program creates an instance of subl. In which sequence will the constructors be executed?
Select and Place: