Group 2 Flashcards
You are using Core Data Services (CDS) to define the persistence layer in SAP Business Application Studio. Which folder of the project do you use to create the design time files?
src
Why would you create a calculation view?
To define a virtual modeling layer on top of tables
Which major logical areas are involved when working with files locally in Git?
There are 3 correct answers to this question.
Staging area
Local Git repository
Working directory
Which option do you use to move staged files to a local repository?
Commit
How do you define an entity for a business application that supports multiple languages dynamically?
There are 2 correct answers to this question.
The entity attributes that need to support multiple languages need to be marked with a special keyword called localized.
A text table gets created for each entity that has attributes defined as localized.
What are the properties of access control with @restrict?
There are 3 correct answers to this question.
grant
to
where
In SAP HANA Cloud, which tasks are handled by the cloud provider?
There are 3 correct answers to this question.
Backing up and restoring, and recovering the database software
Tuning the database to run optimally on the underlying operating system, and hardware
Installing, configuring, and upgrading the operating system
What is a Core Data Services (CDS) association?
A relationship between entities
What is the SAP Business Application Studio user interface made up of?
Views
What can you set in a package.json file to configure a Multi-Target Application (MTA) project?
There are 2 correct answers to this question.
The version
The options of the deploy program
What can you do to personalize SAP Business Application Studio?
There are 2 correct answers to this question.
Customize its native functionalities.
Implement an open-source extension.
You want to implement an event handler to show a console log once a supplier record is read. What is the correct syntax to implement this?
const cds = require(‘@sap/cds’)module.exports = cds.service.impl(function () { const {Supplier} = this.entities()this.on(‘each’,Supplier, row =>{ output.log(Read Supplier: ${row.ID}
)})})
HINT: this on and output.log is what to remember
You are asked to develop a UI application that can be used by a global audience. Which UI5 features can support this requirement?
There are 3 correct answers to this question.
Translation and internationalization
Extensibility concepts at code and application level
High contrast theme to aid visually impaired users
Which database features are typically NOT required by analytical applications that run on SAP HANA Cloud?
There are 2 correct answers to this question.
Pre-calculated aggregates
Indexes
What extension is created for the runtime object when using files under the data folder during the Build activity?
.hdbtabledata