What RAP object contains only the fields required for a particular app?
What describes multi-column internal tables?
Which RAP object can be used to organize the display of fields in an app?
Constructors have which of the following properties?
(Select 2 correct answers)
When defining a METHOD, which parameter type can only have 1 value?
After you created a database table in the RESTful Application Programming model, what do you create next?
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?
While debugging an ABAP program, you want the program to stop whenever the value of a variable changes. Which of the following do you use?
Given the following code which defines an SAP HANA database table in SAP S/4HANA Cloud, public edition:
@EndUserText.label : 'Draft table for entity /DMO/R_AGENCY'
@AbapCatalog.tableCategory : #TRANSPARENT
@AbapCatalog.deliveryClass : #A
@AbapCatalog.dataMaintenance : #RESTRICTED
define table /dmo/agency_d {
key mandt : mandt not null;
key agencyid : /dmo/agency_id not null;
key draftuuid : sdraft_uuid not null;
name : /dmo/agency_name;
street : /dmo/street;
postalcode : /dmo/postal_code;
city : /dmo/city;
}
You are a consultant and the client wants you to extend this SAP database table with a new field called zz_countrycode on line #14.
Which of the following is the correct response?