option
Cuestiones
ayuda
daypo
buscar.php

Snorkel01

COMENTARIOS ESTADÍSTICAS RÉCORDS
REALIZAR TEST
Título del Test:
Snorkel01

Descripción:
Snorkel01

Fecha de Creación: 2022/04/26

Categoría: Otros

Número Preguntas: 79

Valoración:(0)
COMPARTE EL TEST
Nuevo ComentarioNuevo Comentario
Comentarios
NO HAY REGISTROS
Temario:

Which language do you use to create a data model in a CAP project. SQL. Core Data Services Query Language (CQL). Core Data Services Definition Language (CDL). ABAP.

Your customer presents you with the following UI requirements: Users need to work through a comparatively small set of items, one by one. Multiple views of the same content. One kind of data visualization. Which SAP Fiori elements floorplan do you recommend they use?. Analytical list page. Worklist. Object page. List report.

Which dev space type in SAP Business Application Studio do you need when you want to create a CAP project?. SAP Mobile Application. Full Stack Cloud Application. SAP Fiori. Basic.

Your company is using the SAP Authorization and Trust Management service in conjunction with the XSUAA service to authorize their applications. Where do you bundle your defined scopes in role-templates?. In an xs-security.json file. In an instance of the XSUAA service. In a role-collection.

What information does the SAP Destination service provide to your applications to connect to a remote service or system?. Connectivity proxy information for the target resource. Semantic information about the target resource. Technical information about the target resource.

Your CAP project contains an entity called Books. You want to extend the Books entity with the managed aspect. You have already imported the aspect from the '@sap/cds/common' package (see attached graphic). Which is a valid way to extend the entity with the aspect?. Entity Books : managed{ key ID : UUID @(Cora.Computed : true); title : String; author : String; }. Entity Books : { key ID : UUID @(Cora.Computed : true); title : String; author : String; } aspect managed : Books{}. Entity Books : { key ID : UUID @(Cora.Computed : true); title : String; author : String; aspect : managed; }.

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?. PATCH request. POST request. PUT request. GET request.

When using namespaces, what does SAP recommend you use to construct names for namespaces?. Cascades of acronyms. Your organization's name. Reverse domain names.

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 subaccount must be registered through a booster. A service must be entitled to the subaccount before you can subscribe to it. The subdomain of a subaccount must be unique within a region,.

In an SAP Business Application Studio project, what does the "cf push" command do?. It creates the service instances of the services defined in the service-manifest.yml file. 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.

You want to register custom event handlers using instances of CAP Node.js SDK classes. Which one do you use?. cds.Request. cds.Service. cds.Event.

What is recommended by SAP when you publish an API? Note: There are 2 to choose. Use meaningful, clear, and self-explanatory API names. Remove obsolete APIs without notice. Provide good API documentation. Use version numbers in the API names.

In the SAP BTP, what is the correct order of entities?. Directory. Global account. Subaccount. Environment. Global account. Subaccount. Directory. Environment. Environment. Global account. Directory. Subaccount. Global account. Directory. Subaccount. Environment.

Which identifier is used by the XSUAA service to distinguish applications and scopes?. tenant-mode. xs-security. xsappname. VCAP_SERVICES.

What is the standard health check time limit of a Cloud Foundry application?. 60 seconds. 30 seconds. 180 seconds. 90 seconds.

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. file package.json. file manifest.yml. folder /approuter. folder /app.

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. 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 forwarded to the CAP service. All requests starting with /service will be targeted to the folder resources.

You want to create a new service definition in your CAP project. In which folder do you place the service definition .cds file?. /app. /db. /srv. /root.

What are some characteristics of JSON files? Note: There are 2 to choose. JSON files contain human-readable data. JSON files are based on XML. JSON files are also valid YAML files. JSON files contain JavaScript commands.

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 reduces the total cost of ownership (TCO). it reduces maintenance and governance effort. It increases scalability of the solution. It increases the number of concurrent users.

How many administrators can be assigned to a global account?. 0 - 1. 1 - n. 0 – n.

Which of the following are capabilities of the SAP Cloud Connector? Note: There are 2 to choose. Providing control over cloud to on-premise connections. Providing control over cloud to cloud connections. Connect an SAP S/4HANA Cloud system with the SAP BTP. Connecting an SAP S/4HANA system with the SAP BTP.

During application development, what are some principles of dealing with application errors? Note: There are 2 to choose. Hide errors and continue silently. Use try/catch blocks sparingly. Use as many try/catch blocks as possible. Log unexpected errors.

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 file named Jenkinsfile. A Jenkins folder with a manifest.yml file. A .pipeline folder with a config.yml file.

What is a rule of thumb for when to use namespaces in your models?. When your models are reused in other projects. When your model names are unique. When your app rarely exposes services.

To grant a user access to an application in an SAP BTP subaccount, what must you assign to this user?. A role. A role template. A role collection.

What are tasks of the approuter? Note: There are 3 to choose. Routing requests from the web browser to the CAP service. Authorizing users for the CAP service and the provider of the UI service. Routing requests from the web browser to the provider of the UI service. Routing requests from the application to the SAP Launchpad service. Forwarding user requests to the XSUAA service for authentication and authorization.

What are some core principles of the design philosophy of SAP Fiori? Note: There are 3 to choose. Productive. Adaptive. Role-based. Intuitive. Coherent.

When deploying applications on SAP BTP, what is the maximum application package size?. 2 GB. 1 GB. 2.5 GB. 1.5 GB.

Which are standard build packs provided by SAP to develop applications in the SAP BTP, Cloud Foundry environment? Note: There are 3 to choose. Docker. Java. Python. HTML5. Node.js.

Which web browsers are officially supported in SAP Business Application Studio? Note: There are 2 to choose. Google Chrome. macOS Safari. Mozilla Firefox. Microsoft Edge.

According to SAP CAP best practices, which error types should you NOT catch? Note: There are 2 to choose. Unexpected errors. Runtime errors. Programming errors. Rejections of promises.

What does SAP Fiori elements use to generate the UI? Note: There are 2 to choose. Custom UI logic. Annotations in the OData service. Authorizations in the OData service. The entity definition of the OData service.

How can you bring your company's user base into your SAP BTP subaccount?. Create the users manually in the security section of your subaccount. Establish a trust relationship with your corporate identity provider. Import the users via .csv file upload in the SAP BTP cockpit. Establish a trust relationship with the default identity provider.

In SAP Fiori, how are drafts used? Note: There are 2 to choose. To prevent an object being edited by multiple users concurrently. To enable empty states of apps. To prevent data loss in case an app terminates unexpectedly. To enable responsiveness of apps.

Before you can use SAP Continuous Integration and Delivery in your CAP project, what must you do in your SAP BTP account? Note: There are 2 to choose. Subscribe to an SAP CI/CD service plan. Assign an appropriate role collection to your user. Create an SAP CI/CD service instance. Assign an appropriate role template to your user.

What is JavaScript Object Notation (JSON)?. A simple way to annotate objects in JavaScript. An open-standard format to structure data transferred using web technologies. A notation command for automatically instantiating JavaScript objects. An open-standard format to structure JavaScript programs.

By default, which file describes scopes and role-templates of an application for the instantiation of an XSUAA service instance?. xs-security.json. package.json. manifest.yml. services-manifest.yml.

To establish trust, which of the following can be targets of the SAP Authorization and Trust Management Service?. multi-environments. identity-providers. platforms. users.

On SAP BTP, what request rate limit tries to protect the Cloud Foundry API against misuse?. 10k requests per hour per user. 1k requests per hour for all users. 100k requests per hour per user. 50k requests per hour for all users.

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. SAP BTP CLI. SAP Business Application Studio. Cloud Foundry CLI.

Which of the following are benefits of SAP Business Application Studio? Note: There are 3 to choose. Access to Visual Studio Code-compatible extensions. Browser-based access. Maintenance of all development projects in one central dev space. Central administration. Desktop client-based access.

You have created an SAP BTP subaccount and want to use Cloud Foundry. What is the correct order of next steps?. Create quota plan. Enable Cloud Foundry. Create space. Create org. Create quota plan. Create org. Create space. Enable Cloud Foundry. Enable Cloud Foundry. Create space . Create org. Create quota plan. Enable Cloud Foundry. Create org. Create space. Create quota plan.

Which basic user types exist on the SAP Business Technology Platform? Note: There are 2 to choose. Platform users. Application users. Technical users. Business users.

What are valid actions using subaccounts in SAP BTP? Note: There are 2 to choose. Creating Cloud Foundry orgs explicitly. Disabling the Cloud Foundry environment once you have enabled it. Creating many subaccounts assigned to the Cloud Foundry environment. Deleting a subaccount with service subscriptions.

You want to connect an SAP backend system to the SAP BTP using the SAP Cloud Connector. Which additional SAP BTP services are required for the connection? Note: There are 2 to choose. SAP Destination service. SAP Keystore service. SAP Connectivity service. SAP Cloud Transport Management service.

Which of the following are characteristics of the SAP Business Technology Platform, ABAP Environment? Note: There are 2 to choose. Runs within the Kyma environment. Is based on the latest ABAP platform cloud release. Runs within the Cloud Foundry environment. Is based on the latest SAP NetWeaver Application Server for ABAP release.

Your customer presents you with the following UI requirements: Users work on different kinds of items. Different visualizations without interactions between the visualizations. No drilldown. Which SAP Fiori elements floorplan do you recommend they use?. Object page. Analytical list page. Worklist. List report.

What are some characteristics of CAP event handling? Note: There are 2 to choose. You can register only one event handler for a specific event. You must use the handler registration API srv.emit(<event>) to de-register event handlers. You can register event handlers with instances of cds.service to add custom logic. You can register multiple event handlers for each event phase.

Ordene la frase correctamente: after, ‘book.language_==_‘en’, ‘book.price_=_book.price_*_0.95, book.price_=_book.price_*_0.9 ‘READ’, forEach, ‘bookshop-service’,.

At which of the following levels can you assign entitlements? Note: There are 2 to choose. Global account. Environment. Cloud Foundry org. Directory.

Ordene la frase correctamente: Scope, Role User, Role_collection,.

What are some characteristics of YAML files? Note: There are 2 to choose. YAML files can be used as configuration files. YAML files are based on XML. YAML files rely on correct indentation. YAML files are also valid JSON files.

In SAP Business Application Studio, what is a dev space?. A pre-configured private virtual machine. A pre-configured shared development environment. A pre-configured shared virtual machine. A pre-configured private development environment.

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 init. mbt make.

ou 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 an SAP BTP subaccount. In the on-premise network of the SAP S/4HANA system. In a virtual machine independent from the on-premise network and the SAP BTP.

What kind of offering is Cloud Foundry?. Platform as a Service (PaaS). Infrastructure as a Service (IaaS). Software as a Service (SaaS). Functions as a Service (FaaS).

Which management tool can you use to deploy a CAP project into a space of your SAP BTP subaccount?. Cloud Foundry command line interface. APIs for SAP BTP. SAP BTP command line interface.

What is the maximum number of running threads per application instance?. 8192. 1024. 14200. 10420.

What is one of the required steps to enable authentication support in CAP?. Install a package.json module called passport. Install a CDS module called passport. Install a Node.js module called passport. Install a YAML module called passport.

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. roles. users. scopes. role-templates.

Which of the following environments run on the SAP multi-cloud foundation? Note: There are 2 to choose. Kyma environment. Cloud Foundry environment. Netweaver environment. Neo environment.

What are standard events that CAP handles by default? Note: There are 3 to choose. WRITE. UPDATE. READ. CREATE. REFRESH.

Which of the following benefits best describe the SAP BTP, Cloud foundry environment? Note: There are 3 to choose. Automatic application routing, load balancing, health checks, and multilevel self-healing. Integration of the SAP NetWeaver platform. Platform-managed application security patching and updates. Orchestration of microservices and serverless functions. Simplified developer experience for business application development.

In your Git system, you have set up a webhook for your SAP Continuous Integration and Delivery pipeline. What does the webhook require to send a request to the specified payload URL? Note: There are 2 to choose. A password. A secret. A content type. A user.

You have developed a risk service application in CAP. To which file must you add restrictions - @(restrict...) - to add authorizations to your service?. srv/risk-service.js. package-lock.json. xs-security.js. srv/risk-service.cds.

Which of the following dev space types contains the Java extension by default? Note: There are 2 to choose. SAP Fiori. SAP HANA Native Application. Full Stack Cloud Application. SAP Mobile Application.

What are some characteristics of OData? Note: There are 2 to choose. OData builds on HTTP, AtomPub, and JSON using URIs to address and access data feed resources. OData is RESTful. OData uses the SOAP protocol. OData is an architectural design template for hypermedia information systems.

Which of the following can be used as identity providers for SAP BTP applications? Note: There are 2 to choose. SAP Authorization and Trust Management Service. Identity authentication tenant. SAP S/4HANA Cloud. SAP S/4HANA on-premise.

What are some principles of continuous integration? Note: There are 2 to choose. Automated tests. Automated deployment to the productive system. Automated builds. Automated code change pushes.

Ordene la frase correctamente: Req.warn – – 3 – 1 2 – Req.error Req.info 4 Req.notify.

At what level can you select a region?. Directory. Global account. Subaccount. Environment.

What are some features of the SAP Cloud Connector? Note: There are 2 to choose. Monitoring requests. Securing the activation of traffic traces. Configuring trust. Managing HTML5 applications.

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?. Worklist. Object page. Analytical list page. List report.

Which event phases can you use with CAP event handlers by default? Note: There are 3 to choose. on. while. after. before. between.

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 Jobs tab. On the Credentials tab.

Which of the following SAP Fiori pages areas are mandatory? Note: There are 2 to choose. Header. Content. Toolbars. Footer.

You have set up a pipeline in the SAP Continuous Integration and Delivery service with automated deployment. A build was initiated and failed. What do you check to find out which step of the pipeline failed?. The webhook of your version control system. The webhook event receiver. The stages of the failed job run. The stages in the config.yml in the .pipeline folder.

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?. npm i --save @sap/xssec @sap/xsenv. cds compile srv --to xsuaa >@sap/xssec @sap/xsenv. cds compile srv --to xsuaa >xs-security.json. npm i --save xs-security.json.

Denunciar Test