Questions
ayuda
option
My Daypo

ERASED TEST, YOU MAY BE INTERESTED ONLPM_TEST1

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
LPM_TEST1

Description:
Test134

Author:
larry13
(Other tests from this author)

Creation Date:
17/08/2022

Category:
Others

Number of questions: 40
Share the Test:
Facebook
Twitter
Whatsapp
Share the Test:
Facebook
Twitter
Whatsapp
Last comments
No comments about this test.
Content:
Which sequence of steps do you follow to enable the SAP Job Scheduling service to work with a new application? Create an instance of the SAP Job Scheduling service.Create an xsuaa service instance.Deploy the application.Bind the SAP Job Scheduling service instance to your application.Bind the xsuaa service instance to your application Create an instance of the SAP Job Scheduling service.Create an xsuaa service instance.Deploy the application.Bind the xsuaa service instance to your application.Bind the SAP Job Scheduling service instance to your application. Create an instance of the SAP Job Scheduling service.Create an xsuaa service instance.Bind the xsuaa service instance to your application.Bind the SAP Job Scheduling service instance to your application.Deploy the application. Create an instance of the SAP Job Scheduling service.Create an xsuaa service instance.Bind the SAP Job Scheduling service instance to your application.Bind the xsuaa service instance to your application.Deploy the application.
What is the SAP Business Application Studio user interface made up of? Tiles Frames Windows Views.
What do you use to update the Git history of the local file you are working on Check out Commit Stage Save.
What can you use for Core Data Services (CDS)-based security in the SAP Cloud Application Programming Model?Note: There are 2 correct Answers to this question. Scopes Privileges Authorizations Roles.
How do you define an entity for a business application that supports multiple languages dynamically?Note: 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. The entity that needs to support multiple languages needs to be marked with a special keyword called localized. A text table gets created for each entity attribute that is defined as localized.
What properties can you set in the procedure header when developing a procedure?Note: There are 3 correct Answers to this question. Begin/end statements Language (SQLScript/R) Read/write access Expression Security (invoker/definer).
Which sequence of steps do you follow when working with files locally in Git in SAP Business Application Studio? (a)Check out (b)Create, modify,save(c)Stage(d)Commit(e)Stage (a)Create, modify,save(b)Check out(c)Commit(d)Stage (a)Create, modify,save(b)Commit (c)Check out (a)Create, modify,save(b)Stage(c)Check out (e)Commit.
According to the golden path for the SAP Cloud Application Programming Model, what does the framework do when you add custom logic?Note: There are 2 correct Answers to this question. Parse output. Include tenant isolation. Serialize inputs. Handle database connections.
What is mandatory when working on public Git in a distributed environment? Connect to a central repository to share your project contribution. Keep the entire history of your project locally. Buy the software license on the Git website. Block the piece of code you are working on in the central repository.
What is the purpose of an mtad.yaml file? Add system-specific details to an MTA application. Deploy an MTA application. Archive an MTA application. Develop and build an MTA application.
What is an event handler? A method A procedure An interface A function.
Which method can you use to collect error messages with high severity and return them to the caller in the request-response? req.reply req.reject req.notify req.error.
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.after('each',Supplier, row =>{ console.log(`Read Supplier: ${row.ID}`)})}) 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}`)})}) 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}`)})}) 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}`) })}).
You are executing a job using the SAP Job Scheduling service in asynchronous mode.Which HTTP status code does the application return as acknowledgement response? 201- CREATED 200- OK 204- NO CONTENT 202- ACCEPTED.
How do you control the flow of logic when using SQLScript?Note: There are 3 correct Answers to this question. By using WHILE loops By branching logic based on some conditions By using SELECT statements By manipulating scalar variables By using GRANT or REVOKE statements.
Which tasks does the User Account and Authentication (XSUAA) service accomplish?Note: There are 3 correct Answers to this question. It dispatches requests to microservices. It identifies the user by e-mail or user ID. It decides if a user is allowed to perform an activity. It assigns the principals to a user session. It stores the real users' identities.
What can you do when using the golden path for the SAP Cloud Application Programming Model?Note: There are 2 correct Answers to this question. Reuse existing services. Define your data model. Handle database connections. Perform health checks.
Which file can an administrator use to augment the Multi-Target Application (MTA) model in the deployment descriptor? mtaext.yaml mtad.yaml manifest.yaml mta.yaml.
Which actions are executed in Cloud Foundry under the Deploy & Execute phase when you run an application? Note: There are 3 correct Answers to this question. Copy the application image to the BLOB store Release the application and provide the metadata information. Execute service wiring to dependent services. Download required libraries/dependencies. Start a new container with the application image.
Why should you register an error handler in your service implementation for the exception of the CAP SDK for Node.js? To force the execution of the CRUD operation To provide a meaningful error message To ensure that the end user receives a message To avoid a break in the app execution.
What can you use to register the JavaScript implementation of an event handler for external services to the framework? An inline function passed to result of cds.serve() An @impl annotation in your CDS model file A .js file with the same name as the .cds file An inline function passed to result of cds.connect().
Why would you choose an HDI-shared service plan instead of a schema service plan? Note: There are 3 correct Answers to this question. You want to create database objects using source files. You want to use containers to isolate objects You want to use SAP Business Application Studio. You want to use synonyms to access external data You want to develop calculation views.
How does SAP recommend implementing error handling in application development?Note: There are 2 correct Answers to this question. Focus on business logic. Use try/catch blocks for unexpected errors Log unexpected errors. Hide errors and let the app run.
What can you specify as <phase> in the statement srv.<phase>(<event>)?Note: There are 2 correct Answers to this question. end before after begin.
What does the SAP Cloud Application Programming Model provide to enhance cloud-native technologies?Note: There are 3 correct Answers to this question. Data access layers Destination service (Generic) service providers Service SDKs Cloud Foundry service.
On which Core Data Services (CDS) element can you define a security restriction in the SAP Cloud Application Programming Model?Note: There are 3 correct Answers to this question. Services Associations Actions Functions Types.
Which major logical areas are involved when working with files locally in Git?Note: There are 3 correct Answers to this question. Local Git repository Working directory Central Git repository Staging area Team repository.
What can you use to define data models in the SAP Cloud Application Programming Model? CDS Java CDS Notations Node.js.
Which file in a Multi-Target Application (MTA) project contains the plugin name and version of every supported file suffix? .hdbsynonymconfig .hdbprojectiononviewconfig .hdiconfig .hdinamespace.
What can you set in a package.json file to configure a Multi-Target Application (MTA) project?Note: There are 2 correct Answers to this question. The version The service name The schema version The options of the deploy program.
Which resource types can you use in an mta.yaml file?Note: There are 3 correct Answers to this question. com.sap.xs.pgp com.sap.xs.uaa com.sap.xs.hdi-container com.sap.xs.web com.sap.xs.hana-sbss.
What can you do once a development space is created in SAP Business Application Studio?Note: There are 2 correct Answers to this question. Modify the list of optional extensions. Export the content as a compressed file. Change the initial name. Choose a different application type.
What extension is created for the runtime object when using files under the data folder during the Build activity? .hdbdatatable .cdstabledata .hdbtabledata .hdbtable.
Why do you use request objects in the event handlers?Note: There are 3 correct Answers to this question To give information on the HTTP method To call external services To register another set of handlers To send an arbitrary event To provide error messages to the client.
Which Core Data Services (CDS) object type can you use to read and write data for an application? Entity Composition Namespace Types.
Which of the following annotations provides the most fine-grained control for Core Data Services (CDS) security? @restrict @readonly @insertonly @requires.
Which request headers values are passed when the scheduler invokes the endpoint?Note: There are 2 correct Answers to this question. req.headers.connection x-sap-job-id req.headers.authorization x-sap-job-schedule-id.
You are debugging a procedure and you want to do the following:Delete all breakpoints.Run the program to the end.Do NOT plan any further debugging activity.What is the sequence of steps you should follow? (a)Remove all breakpoints in the debugger pane.(b)Detach the debugger from the running application.(c)Resume module execution. (a)Detach the debugger from the running application.(b)Remove all breakpoints in the debugger pane.(c)Resume module execution. (a)Detach the debugger from the running application.(b)Resume module execution.(c)Remove all breakpoints in the debugger pane. (a)Remove all breakpoints in the debugger pane.(b)Resume module execution.(c)Detach the debugger from the running application.
As developer of an SAP HANA Cloud application, what do you define in the Application Security Descriptor file? Roles Authorizations Scopes Privileges.
Which of the following parts does the MTA development descriptor (mta.yaml) contain?Note: There are 2 correct Answers to this question. Modules Code Global elements HTML elements.
Report abuse Consent Terms of use