Questions
ayuda
option
My Daypo

ERASED TEST, YOU MAY BE INTERESTED ONC_CPE_14_2

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
C_CPE_14_2

Description:
C_CPE_14

Author:
C_CPE
(Other tests from this author)

Creation Date:
25/12/2022

Category:
Personal

Number of questions: 40
Share the Test:
Facebook
Twitter
Whatsapp
Share the Test:
Facebook
Twitter
Whatsapp
Last comments
No comments about this test.
Content:
You use SAP Continuous Integration and Delivery for your CAP project. Where can you access the Webhook Event Receiver? On the Repositories tab On the Credentials tab On the Jobs tab.
Using a terminal in SAP Business Application Studio, you want to enable authentication support via XSUAA in CAP for SAP BTP. Which command must you run in the terminal? cds compile srv --to xsuaa >xs-security.json npm i --save xs-security.json cds compile srv --to xsuaa >@sap/xssec @sap/xsenv npm i --save @sap/xssec @sap/xsenv.
Your customer presents you with the following UI requirements: The same visualizations for all users. Extraction of key information to identify a root cause. Searching, filtering, and sorting of items. Which SAP Fiori elements floorplan do you recommend they use? Analytical list page List report Worklist Object page.
You have developed a risk service application in CAP. To which file must you add restrictions - @(restrict...) - to add authorizations to your service? xs-security.js srv/risk-service.js srv/risk-service.cds package-lock.json.
In an SAP Business Application Studio project, what does the "cf push" command do?qs.html) It deploys the application modules defined in the manifest.yaml file into the Cloud Foundry account. It updates the service instances of the services defined in the service-manifest.yml file. It creates the service instances of the services defined in the service-manifest.yml file.
What are some core principles of the design philosophy of SAP Fiori? Note: There are 3 to choose. Coherent Intuitive Productive Adaptive Role-based.
During application development, what are some principles of dealing with application errors? Note: There are 2 to choose. Hide errors and continue silently Log unexpected errors Use try/catch blocks sparingly Use as many try/catch blocks as possible.
What are some characteristics of JSON files? Note: There are 2 to choose. JSON files contain JavaScript commands. JSON files contain human-readable data. JSON files are also valid YAML files. JSON files are based on XML.
Which event phases can you use with CAP event handlers by default? Note: There are 3 to choose. before after on between while.
What kind of offering is Cloud Foundry? Infrastructure as a Service (IaaS) Platform as a Service (PaaS) Software as a Service (SaaS) Functions as a Service (FaaS).
How many administrators can be assigned to a global account? 1 - n O -1 0 – n.
According to SAP CAP best practices, which error types should you NOT catch? Note: There are 2 to choose. Unexpected errors Programming errors Rejections of promises Runtime errors.
What is the standard health check time limit of a Cloud Foundry application? 180 second 30 seconds 60 seconds 90 seconds.
Which of the following can be used as a management tool for SAP Business Technology Platform? Note: There are 2 to choose. SAP Solution Manager Cloud Foundry CLI SAP BTP CLI SAP Business Application Studio.
What are some characteristics of OData? OData is an architectural design template for hypermedia information systems. OData builds on HTTP, AtomPub, and JSON using URIs to address and access data feed resources. OData is RESTful. OData uses the SOAP protocol.
Which are standard build packs provided by SAP to develop applications in the SAP BTP, Cloud Foundry environment? Note: There are 3 to choose. Node.js Java Docker HTML5 Python.
What are standard events that CAP handles by default? Note: There are 3 to choose. READ REFRESH WRITE CREATE UPDATE.
What do you need to consider when working with subaccounts in SAP BTP? Note: There are 2 to choose. The subdomain is the unique identifier of a subaccount. A service must be entitled to the subaccount before you can subscribe to it. A subaccount must be registered through a booster. The subdomain of a subaccount must be unique within a region.
In your Git system, you have set up a webhook for your SAP Continuous Integration and Delivery pipeline. What kind of request does this webhook send to the specified payload URL? POST request PATCH request GET request PUT request.
When using namespaces, what does SAP recommend you use to construct names for namespaces? Cascades of acronyms Reverse domain names Your organization's name.
Which identifier is used by the XSUAA service to distinguish applications and scopes? tenant-mode xsappname VCAP_SERVICES xs-security.
You have developed a CAP project and added the XSUAA security configuration. What information is stored in the xs-security.json file? Note: There are 2 to choose. scopes users role-templates roles.
You have configured an approuter by creating the xs-app.json file in the approuter folder with the following content: { ..."authenticationMethod": "route", ... }, "routes": [{ "source": "^/app/(.*)$", "target": "$1", "localDir": "resources", "authenticationType": "xsuaa" }, { "source": "^/service/(.*)$", "destination": "srv-binding", "authenticationType": "xsuaa" }] } What does this routes array tell the approuter? Note: There are 2 correct answers to this question. All requests starting with /service will be forwarded to the CAP service. The files in the resources folder will be served for all requests to /app. The files requested for /app will be put to the resources folder. All requests starting with /service will be targeted to the folder resources.
You want to use the SAP Cloud Connector to connect an SAP S/4HANA system to the SAP BTP. Where does the SAP Cloud Connector need to be installed? In the on-premise network of the SAP S/4HANA system In an SAP BTP subaccount In a virtual machine independent from the on-premise network and the SAP BTP.
In SAP Business Application Studio, what is a dev space? A pre-configured shared virtual machine A pre-configured private development environment A pre-configured private virtual machine A pre-configured shared development environment.
Which dev space type in SAP Business Application Studio do you need when you want to create a CAP project? Full Stack Cloud Application Basic SAP Fiori SAP Mobile Application.
Which of the following can be used as identity providers for SAP BTP applications? Note: There are 2 to choose. Identity authentication tenant SAP Authorization and Trust Management Service SAP S/4HANA on-premise SAP S/4HANA Cloud.
What is the maximum number of running threads per application instance? 14200 1024 10420 8192.
Which of the following SAP Fiori pages areas are mandatory? Note: There are 2 to choose. Toolbars Header Footer Content.
You have created an SAP BTP subaccount and want to use Cloud Foundry. What is the correct order of next steps? Enable Cloud Foundry. Create space . Create org. Create quota plan Create quota plan. Create org. Create space. Enable Cloud Foundry Create quota plan. Enable Cloud Foundry. Create space. Create org Enable Cloud Foundry. Create org. Create space. Create quota plan.
What are some advantages of building an account model based on functional areas such as Sales or IT? Note: There are 2 to choose. It increases scalability of the solution It increases the number of concurrent users It reduces maintenance and governance effort It reduces the total cost of ownership (TCO).
What is one of the required steps to enable authentication support in CAP? Install a package.json module called passport Install a Node.js module called passport. Install a YAML module called passport. Install a CDS module called passport.
Which of the following are benefits of SAP Business Application Studio? Note: There are 3 to choose. Access to Visual Studio Code-compatible extensions Maintenance of all development projects in one central dev space Desktop client-based access Central administration Browser-based access.
Which files are added to your CAP project when you run the "cds add pipeline" command in an SAP Business Application Studio terminal? Note: There are 2 to choose. A .pipeline folder with a manifest.yml file A .pipeline folder with a config.yml file A file named Jenkinsfile A Jenkins folder with a manifest.yml file.
You want to create a new service definition in your CAP project. In which folder do you place the service definition .cds file? /db /srv /root /app.
What information does the SAP Destination service provide to your applications to connect to a remote service or system? Semantic information about the target resource Connectivity proxy information for the target resource Technical information about the target resource.
You initialize a new CAP project with initial project structure using a generator in SAP Business Application Studio. What are some of the default elements being created? Note: There are 2 to choose folder /approuter file package.json folder /app file manifest.yml.
You use the Cloud MTA Build Tool to create an MTA archive (.mtar) from your project source. What command must you run to do this in one step? mbt build mbt make mbt init.
Which of the following are capabilities of the SAP Cloud Connector? Note: There are 2 to choose. Providing control over cloud to cloud connections Connect an SAP S/4HANA Cloud system with the SAP BTP Providing control over cloud to on-premise connections Connecting an SAP S/4HANA system with the SAP BTP.
In SAP Fiori, how are drafts used? Note: There are 2 to choose. To prevent an object being edited by multiple users concurrently To prevent data loss in case an app terminates unexpectedly To enable empty states of apps To enable responsiveness of apps.
Report abuse Consent Terms of use