SAP C_CPE_16 SAP Certified Associate – Backend Developer – SAP Cloud Application Programming Model Online Training
SAP C_CPE_16 Online Training
The questions for C_CPE_16 were last updated at Nov 19,2024.
- Exam Code: C_CPE_16
- Exam Name: SAP Certified Associate - Backend Developer - SAP Cloud Application Programming Model
- Certification Provider: SAP
- Latest update: Nov 19,2024
How do you debug a Node.js module in SAP Business Application Studio?
- A . Add the sap.hana.xs.debugger:Debugger role to the HDI container’s #RT user.
- B . Start the debugger from the CF command line interface and run the program.
- C . Set the enabled parameter to true in the section debugger of the xsengine.ini file.
- D . Attach the debugger to the application.
You have configured an approuter by creating the xs-app.json file in the approuter folder with the following content:
What does this routes array tell the approuter? Note: There are 2 correct answers to this question.
- A . The files requested for /app will be put to the resources folder.
- B . All requests starting with /service will be forwarded to the CAP service.
- C . The files in the resources folder will be served for all requests to /app.
- D . All requests starting with /service will be targeted to the folder resources.
What must you do first before you can get visibility into how a process is running?
- A . Save the version of the process you are working on.
- B . Circulate the process for pre-approvals before finalizing it.
- C . Prepare the process to be consumed by the visibility scenario.
- D . Purchase the visibility dashboard capabilities from the SAP store.
What is the correct sequence of steps when implementing Tenant-aware Persistence?
- A . Configure a data source
Configure Hibernate for multi-tenancy
Persisting and accessing the data
Tenant onboarding and offboarding - B . Configure a data source
Configure Hibernate for multi-tenancy
Tenant onboarding and offboarding
Persisting and accessing the data - C . Tenant onboarding and offboarding
Configure a data source
Configure Hibernate for multi-tenancy
Persisting and accessing the data - D . Configure Hibernate for multi-tenancy Configure a data source
Tenant onboarding and offboarding Persisting and accessing the data
Which configuration steps are necessary to set process conditions in SAP Build Process Automation? Note: There are 3 correct answers to this question.
- A . Define If/Else criteria
- B . Map condition input to process content
- C . Add environment variables
- D . Define flow for different conditional paths
- E . Add a condition to the process
What are tasks of the approuter? Note: There are 3 correct answers to this question.
- A . Routing requests from the web browser to the provider of the UI service.
- B . Routing requests from the application to the SAP Launchpad service.
- C . Authorizing users for the CAP service and the provider of the UI service.
- D . Routing requests from the web browser to the CAP service.
- E . Forwarding user requests to the XSUAA service for authentication and authorization.
How do you run a CI/CD build manually without pushing changes to Git?
- A . Select Deploy from the project’s context menu in the Project Explorer
- B . Submit Changes via Sync & Share action
- C . Select "Trigger a Build’ in the CI/CD job’s context menu
- D . Create and run "Build task" in Task Explorer
When creating a CI/CD job, what does defining Source Control Management (SCM) credentials enable?
- A . Retrieving your project from SCM when its build is triggered
- B . Managing your SCM credentials
- C . Modifying your project source code automatically
Which of the following are features of Kubernetes? Note: There are 3 correct answers to this question.
- A . Immutability and self-healing
- B . Hardware virtualization
- C . Service Discovery and load balancing
- D . Operating system management Storage orchestration
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?
- A . const cds = require(‘@sap/cds’)
module.exports = cds.service.impl(function () {
const {Supplier) = this.entities()
this after(‘each Supplier, row =>{ console.log("Read Supplier: ${row.ID}’)
}) - B . 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}")
})
}) - C . const cds = require(‘@sap/cds")
module.exports = cds service.impl(function() {
const {Supplier) = this.entities()
this.on(‘each, Supplier, row => console.log("Read Supplier: ${row.ID}")
}) - D . const cds = require(‘@sap/cds’)
module.exports = cds.service.impl(function() {
const {Supplier) = this.entities()
this after(‘each Supplier, row => { output.log("Read Supplier: $[row.ID}")
})
})