You want to create custom fields using the Custom Fields and Logic extensibility app. Which of the following statements do you need to consider?
There are 2 correct answers to this question.
A. You must assign the fields to a business context.
B. You can only use String-like data types for the fields.
C. You can translate the fields into different languages.
D. You must define the fields as read-only fields.
You want to define a CDS-based BOPF Business Object that consists of a root node (ZI_DocumentTP) and a child node (ZI_ItemTP). Which annotation is mandatory in the data definition of CDS view ZI_ItemTP?
Please choose the correct answer.
A. @ObjectModel.writeActivePersistence: I...I
B. @ObjectModel.transactionalProcessingEnabled: true
C. @ObjectModel.association.type: [#TO_COMPOSITION_CHILD]
D. @ObjectModel.compositionRoot: false
In your system landscape, you create a Custom Business Object in the SAP S/4HANA On- Premise edition. Which steps are necessary to use the Custom Business Object as the basis for an SAP Fiori app?
There are 2 correct answers to this question.
A. Create a project in the SAP Gateway Service Builder (SEGW)and reference your Custom Business Object as data source
B. Register the OData service based on your Custom Business Object in SAP Gateway
C. Activate the UI Generation checkbox in the Custom Business Objects app
D. Activate the Service Generation checkbox in the Custom BusinessObjects app
Which of the following Open SQL statements are syntactically correct in release 7.50? There are 3 correct answers to this question.
A. SELECT FROM sbook . FIELDS carrid, connid, loccuram, loccurkey . INTO TABLE @lt_booking. WHERE customid = @lv_customer.
B. SELECT carrid, connid, loccuram, loccurkey . FROM sbook .INTO TABLE @lt_booking. WHERE customid = @lv_customer.
C. SELECT carrid connid loccuram loccurkey. FROM sbook. INTOTABLE lt_booking. WHERE customid = lv_customer.
D. SELECT carrid connid loccuram loccurkey . FROM sbook . WHERE customid = lv_customer. INTOTABLE lt_booking.
E. SELECT FROM sbook. FIELDS carrid, connid, loccuram, loccurkey . WHERE customid =@lv_customer. INTOTABLE @lt_booking.
You have a field currcode in a CDS view definition. You want to annotate the field with a label. Which of the following are syntactically correct?
There are 2 correct answers to this question.
A. currcode, @>EndUserText.label: 'Currency Code'
B. @ C. @EndUserText.label: 'Currency Code' currcode, D. currcode @
What can you use as data source for an SAP Fiori App Launcher - Dynamic? Please choose the correct answer.
A. Target mapping
B. OData service
C. SAPUI5 service
D. Source mapping
What can you define in an SAP Fiori catalog? There are 2 correct answers to this question.
A. Links
B. Target Mappings
C. Groups
D. Tiles
The class CL_CLASS contains a public static method DO_SOMETHING with an importing parameter
PARAM TYPE i. Your program contains the following data declaration: DATA var TYPE string.
Which of the following method calls is syntactically correct?
There are 2 correct answers to this question.
A. cl_class=>do_something( param = CONV #( var ) ).
B. cl_class=>do_something( param = var ).
C. cl_class=>do_something( param = EXACT #( var ) ).
D. cl_class=>do_something( param = CAST #( var ) ).
You want to add a validation to a Custom Business Object. Which pattern do you choose for your custom logic?
Please choose the correct answer.
A. Before Modification
B. After Modification
C. Before Save
D. After Save
There are many syntax differences between SAP HANA SQLScript and Open SQL. Which of the following rules are common ground between the two languages?
There are 2 correct answers to this question.
A. Host variables are escaped with an at symbol (@)
B. Statements are ended with a period (.)
C. Comments can be marked by an asterisk (*) at position 1
D. Key words can be upper-case or lower-case